/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0A1628;
  --navy-mid:  #0D1E3A;
  --navy-soft: #112240;
  --gold:      #C9A84C;
  --gold-light:#D4B560;
  --white:     #ffffff;
  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-300:  #d1d5db;
  --gray-400:  #9ca3af;
  --gray-500:  #6b7280;
  --gray-600:  #4b5563;
  --gray-900:  #111827;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== LOGO ===== */
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.3px;
}
.logo span { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .18s, border-color .18s, opacity .18s, transform .12s;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: scale(.98); }

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn--outline:hover { border-color: var(--white); }

.btn--sm  { font-size: 13px; padding: 9px 18px; }
.btn--lg  { font-size: 16px; padding: 15px 32px; }
.btn--full { width: 100%; justify-content: center; }

.btn__loading { display: none; }

.arrow { font-style: normal; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(201,168,76,.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-300);
  transition: color .15s;
}
.nav a:hover { color: var(--white); }
.nav .btn { color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--navy-mid);
    border-top: 1px solid rgba(201,168,76,.15);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 20px;
  }
  .nav.open { display: flex; }
  .nav a { font-size: 16px; }
  .nav .btn { width: 100%; justify-content: center; }
}

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  padding: 80px 0 96px;
  text-align: center;
}

.hero__inner { display: flex; flex-direction: column; align-items: center; gap: 0; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -.5px;
  margin-bottom: 22px;
}

.hero h1 .gold { color: var(--gold); }

.hero__sub {
  font-size: 19px;
  color: #c1c7d0;
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 28px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-400);
}

.hero__trust .dot { color: var(--gray-400); }

/* ===== SECTIONS ===== */
.section { padding: 88px 0; }
.section--white { background: var(--white); }
.section--light  { background: var(--gray-50); }
.section--navy   { background: var(--navy); }

.section__header {
  text-align: center;
  margin-bottom: 56px;
}
.section__header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -.3px;
}
.section__header p {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section__header--light h2 { color: var(--white); }
.section__header--light p  { color: #c1c7d0; }

/* GMB notice */
.gmb-notice {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 18px;
  border-radius: var(--radius);
  margin-top: 20px;
  max-width: 580px;
  text-align: left;
}
.gmb-notice strong { color: #dbb95e; }

/* ===== CARDS 3-COL ===== */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) { .cards-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow .2s, border-color .2s;
}
.card:hover { box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,.3); }

.card__icon {
  font-size: 36px;
  margin-bottom: 18px;
}
.card__emoji {
  font-size: 40px;
  margin-bottom: 16px;
}
.card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

.card--dark {
  background: var(--navy-mid);
  border-color: rgba(201,168,76,.15);
}
.card--dark h3 { color: var(--white); }
.card--dark p  { color: #c1c7d0; }
.card--dark:hover { border-color: rgba(201,168,76,.4); }

/* Checklist */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: #d1d5db;
  line-height: 1.5;
}
.checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== STEPS ===== */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.step__icon {
  font-size: 28px;
  margin-bottom: 14px;
  background: rgba(201,168,76,.1);
  padding: 12px;
  border-radius: var(--radius);
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 260px;
}

.step__arrow {
  font-size: 28px;
  color: var(--gold);
  margin-top: 24px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .steps { flex-direction: column; align-items: center; }
  .step__arrow { transform: rotate(90deg); margin: 0; }
  .step p { max-width: 100%; }
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .cards-grid { grid-template-columns: 1fr; } }

.card--feature {
  padding: 28px;
}
.card--feature h3 { font-size: 17px; margin-bottom: 8px; }
.card--feature p  { font-size: 15px; line-height: 1.7; }
.card--feature .card__emoji { font-size: 28px; margin-bottom: 12px; }

/* ===== APPLY SECTION ===== */
.apply__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 900px) {
  .apply__inner { grid-template-columns: 1fr; gap: 40px; }
}

.apply__copy h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -.3px;
}
.apply__copy > p {
  font-size: 16px;
  color: #c1c7d0;
  line-height: 1.7;
  margin-bottom: 28px;
}

.apply__reqs {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 28px;
}
.apply__reqs-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 14px;
}
.apply__req {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-300);
  margin-bottom: 10px;
  line-height: 1.5;
}
.apply__req:last-child { margin-bottom: 0; }
.req-icon { flex-shrink: 0; }

.apply__contact {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
}
.apply__contact a {
  color: var(--gold);
  font-weight: 600;
  transition: color .15s;
}
.apply__contact a:hover { color: var(--gold-light); }

/* ===== FORM ===== */
.apply__form-wrap {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.apply__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-300);
}
.form__group label .req { color: var(--gold); }

.form__group input,
.form__group select,
.form__group textarea {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .15s;
  outline: none;
  width: 100%;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--gray-400); }
.form__group select { appearance: none; cursor: pointer; }
.form__group select option { background: var(--navy-mid); color: var(--white); }

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold);
}

.form__group textarea { resize: vertical; min-height: 90px; }

.form__hint {
  font-size: 13px;
  color: var(--gray-400);
}

.form__note {
  font-size: 13px;
  color: var(--gray-400);
  text-align: center;
  line-height: 1.55;
  margin-top: -4px;
}

/* Form success */
.form__success {
  text-align: center;
  padding: 32px 16px;
}
.success__icon { font-size: 56px; margin-bottom: 20px; }
.form__success h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.form__success p {
  color: #c1c7d0;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.success__contact a { color: var(--gold); font-weight: 600; }
.success__contact a:hover { color: var(--gold-light); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,.15);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 40px;
}

@media (max-width: 768px) { .footer__inner { grid-template-columns: 1fr; gap: 28px; } }

.footer__brand .logo { display: inline-block; margin-bottom: 14px; }
.footer__brand p {
  font-size: 14px;
  color: #c1c7d0;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 12px;
}
.footer__email {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  transition: color .15s;
}
.footer__email:hover { color: var(--gold-light); }

.footer__links h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer__links a {
  display: block;
  font-size: 14px;
  color: #c1c7d0;
  margin-bottom: 10px;
  transition: color .15s;
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p { font-size: 13px; color: var(--gray-400); }

/* ===== UTILITIES ===== */
.gold { color: var(--gold); }

/* ===== CREDIBILITY STRIP ===== */
.credstrip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: 32px 0;
}

.credstrip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.credstrip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 36px;
}

.credstrip__number {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.3px;
  line-height: 1.2;
}

.credstrip__label {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 4px;
  white-space: nowrap;
}

.credstrip__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .credstrip__inner { gap: 0; }
  .credstrip__item { padding: 12px 20px; }
  .credstrip__divider { display: none; }
}

@media (max-width: 560px) {
  .credstrip__inner { display: grid; grid-template-columns: 1fr 1fr; }
  .credstrip__item { border-bottom: 1px solid rgba(255,255,255,.06); }
}

/* ===== PAIN CARDS ===== */
.card--pain {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--gold);
}

.card--pain h3 { color: var(--gray-900); }
.card--pain .card__icon { font-size: 32px; margin-bottom: 16px; }

/* ===== BEFORE / AFTER ===== */
.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 56px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .before-after {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 24px;
  }
}

.ba-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ba-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}

.ba-col--before .ba-label { color: var(--gray-400); }
.ba-col--after  .ba-label { color: var(--gold); }

.ba-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ba-col--before .ba-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.5;
}

.ba-col--before .ba-list li::before {
  content: '✕';
  color: #e53e3e;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.ba-col--after .ba-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: var(--gray-700, #374151);
  line-height: 1.5;
  font-weight: 500;
}

.ba-col--after .ba-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.ba-arrow {
  font-size: 32px;
  color: var(--gold);
  font-weight: 700;
  text-align: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ba-arrow { transform: rotate(90deg); text-align: center; }
}

/* ===== NOT FOR YOU ===== */
.not-for-you {
  margin-top: 56px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}

.nfy__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.nfy__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.nfy__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #c1c7d0;
  line-height: 1.5;
}

.nfy__x {
  color: #fc8181;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.nfy__closer {
  font-size: 16px;
  color: #c1c7d0;
  font-weight: 500;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.nfy__closer a {
  color: var(--gold);
  font-weight: 700;
  transition: color .15s;
}

.nfy__closer a:hover { color: var(--gold-light); }

@media (max-width: 768px) {
  .not-for-you { padding: 28px 24px; }
}

/* ===== VALUE STACK ===== */
.value-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.vs-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
  transition: background .15s;
}

.vs-item:last-child { border-bottom: none; }
.vs-item:hover { background: var(--gray-50); }

.vs-deliverable {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.vs-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.vs-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.vs-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.vs-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.25);
  padding: 6px 14px;
  border-radius: 999px;
}

.vs-summary {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.vs-summary p {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.7;
}

.vs-summary strong { color: var(--gray-900); }

@media (max-width: 768px) {
  .vs-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 12px;
  }
  .vs-value { align-self: flex-start; }
}

/* ===== GUARANTEE ===== */
.section--guarantee {
  background: var(--navy);
  padding: 56px 0;
}

.guarantee__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
}

.guarantee__icon {
  font-size: 52px;
  flex-shrink: 0;
}

.guarantee__copy h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -.3px;
}

.guarantee__copy p {
  font-size: 17px;
  color: #c1c7d0;
  line-height: 1.7;
  max-width: 640px;
}

@media (max-width: 768px) {
  .guarantee__inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 28px;
    gap: 20px;
  }
}

/* ===== TRUST SIGNALS ===== */
.trust-signals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .trust-signals { grid-template-columns: 1fr; }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow .2s;
}

.trust-item:hover { box-shadow: var(--shadow); }

.trust-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.trust-item p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background .15s;
}

.faq-question:hover { background: var(--gray-50); }

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform .2s;
}

details[open] .faq-question { background: var(--gray-50); }
details[open] .faq-question::after { content: '−'; }

.faq-answer {
  padding: 0 32px 28px;
  background: var(--gray-50);
}

.faq-answer p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .faq-question { padding: 20px 24px; font-size: 16px; }
  .faq-answer { padding: 0 24px 24px; }
}

/* ===== HERO 2-COL LAYOUT ===== */
.hero { padding: 72px 0 88px; }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__content { text-align: left; }
.hero__content .badge { justify-content: flex-start; }
.hero__content .hero__ctas { justify-content: flex-start; }
.hero__content .hero__trust { justify-content: flex-start; }

.hero__photo {
  position: relative;
  flex-shrink: 0;
}

.hero__photo img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  display: block;
  object-fit: cover;
}

.hero__photo-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.hero__photo-dot {
  width: 7px;
  height: 7px;
  background: #48bb78;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}

@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__content { text-align: center; }
  .hero__content .badge { justify-content: center; }
  .hero__content .hero__ctas { justify-content: center; }
  .hero__content .hero__trust { justify-content: center; }
  .hero__photo { max-width: 480px; margin: 0 auto; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, border-color .2s;
}

.testimonial:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,.3);
}

.testimonial__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial__quote {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.testimonial__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(201,168,76,.3);
}

.testimonial__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.testimonial__title {
  font-size: 13px;
  color: var(--gray-400);
}

/* ===== APPLY URGENCY STRIP ===== */
.apply__urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
}

.urgency-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.75); }
}
