/* whitepage-custom.css — GORVULIKENT variant restyle (psihologia investițiilor) */

.wp-body {
  --wp-ink: #1b1c1f;
  --wp-muted: #666a72;
  --wp-line: #ececec;
  --wp-surface: #fbfaf8;
  font-family: "Georgia", "Times New Roman", serif;
}

.wp-body h1,
.wp-body h2,
.wp-body h3,
.wp-body .wp-logo {
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Header */
.wp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--wp-line);
}
.wp-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wp-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--wg-primary);
  color: #fff !important;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 50%;
  text-decoration: none;
}
.wp-nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.wp-nav a {
  color: var(--wp-ink) !important;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.wp-nav a:hover,
.wp-nav__active {
  border-bottom-color: var(--wg-primary);
  color: var(--wg-primary) !important;
}
@media (max-width: 760px) {
  .wp-nav { display: none; }
}

/* Hero */
.wp-hero {
  padding: 64px 24px 40px;
  background: var(--wp-surface);
  border-bottom: 1px solid var(--wp-line);
}
.wp-hero__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .wp-hero__grid { grid-template-columns: 1fr; }
}
.wp-eyebrow {
  display: inline-block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--wg-primary);
  border: 1px solid var(--wg-primary);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.wp-hero__title {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--wp-ink);
  margin: 0 0 18px;
}
.wp-hero__title span {
  color: var(--wg-primary);
}
.wp-hero__lead {
  font-size: 16px;
  color: var(--wp-muted);
  line-height: 1.65;
  max-width: 46ch;
  margin-bottom: 18px;
}
.wp-hero__points {
  color: var(--wp-ink);
  font-size: 14px;
}
.wp-hero__cta {
  margin-top: 28px;
}
.wp-hero__media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.35);
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 2px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

/* Intro */
.wp-intro {
  padding: 40px 24px;
  border-bottom: 1px solid var(--wp-line);
}
.wp-intro__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.wp-intro__inner p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--wp-ink);
}

/* Generic sections */
.wp-section {
  padding: 64px 24px;
  border-bottom: 1px solid var(--wp-line);
}
.wp-section--alt {
  background: var(--wp-surface);
}
.wp-section__header {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}
.wp-section__header h2 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 10px;
}
.wp-section__header p {
  color: var(--wp-muted);
  font-size: 14px;
}

.wp-section__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .wp-section__grid { grid-template-columns: 1fr; }
}
.wp-media-card img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.wp-text-card h2 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 16px;
}
.wp-text-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--wp-muted);
  margin-bottom: 14px;
}

/* Cards */
.wp-cards {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) {
  .wp-cards { grid-template-columns: 1fr; }
}
.wp-card {
  background: #fff;
  border: 1px solid var(--wp-line);
  border-radius: 6px;
  overflow: hidden;
}
.wp-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.wp-card h3 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--wg-primary) !important;
  margin: 18px 20px 8px;
}
.wp-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--wp-muted);
  margin: 0 20px 20px;
}

/* Panel */
.wp-panel {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--wp-line);
  border-radius: 8px;
  padding: 32px;
}
@media (max-width: 860px) {
  .wp-panel { grid-template-columns: 1fr; }
}
.wp-panel__img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.wp-panel__text h2 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 14px;
}
.wp-panel__text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--wp-muted);
  margin-bottom: 12px;
}

/* Contact */
.wp-contact {
  padding: 64px 24px;
  background: var(--wp-surface);
}
.wp-contact__inner {
  max-width: 620px;
  margin: 0 auto;
}
.wp-contact__header {
  text-align: center;
  margin-bottom: 36px;
}
.wp-contact__header h2 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 10px;
}
.wp-contact__header p {
  font-size: 13px;
  color: var(--wp-muted);
}
.wp-form {
  background: #fff;
  border: 1px solid var(--wp-line);
  border-radius: 8px;
  padding: 32px;
}
.wp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 560px) {
  .wp-form__row { grid-template-columns: 1fr; }
}
.wp-form__field { margin-bottom: 20px; }
.wp-form__row .wp-form__field { margin-bottom: 0; }
.wp-form__field label {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wp-muted);
  margin-bottom: 8px;
}
.wp-form__field input {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--wp-ink);
  background: #fff;
}
.wp-form__field input:focus {
  outline: none;
  border-color: var(--wg-primary);
}
.wp-form__agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.wp-form__agree label {
  font-size: 11px;
  color: var(--wp-muted);
  line-height: 1.5;
}
.wp-form__submit {
  width: 100%;
}
.wp-success {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--wg-primary);
  background: #fff5f2;
  border-radius: 6px;
  text-align: center;
  font-size: 13px;
  color: var(--wg-accent);
}

/* Footer */
.wp-footer {
  background: #14151a;
  color: #8a8d94;
  padding: 48px 24px 32px;
  font-size: 12px;
}
.wp-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.wp-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 760px) {
  .wp-footer__grid { grid-template-columns: 1fr; }
}
.wp-footer h5 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}
.wp-footer p {
  margin: 0 0 6px;
  line-height: 1.6;
}
.wp-footer a {
  color: #8a8d94 !important;
  text-decoration: none;
}
.wp-footer a:hover {
  color: var(--wg-primary) !important;
}
.wp-footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.wp-footer__bottom {
  border-top: 1px solid #2a2b31;
  padding-top: 24px;
  text-align: center;
  color: #5c5e65;
}
