/* =========================================================
   tusharsomaiya.com — Cross-Border Wealth Audit
   Dark + gold premium theme
   ========================================================= */

/* -------- Design tokens -------- */
:root {
  /* Backgrounds */
  --bg: #08080c;
  --bg-2: #0d0d14;
  --surface: #13131c;
  --surface-2: #1a1a26;
  --surface-3: #23232f;

  /* Gold scale */
  --gold-50: #fbf4dc;
  --gold-100: #f4e19c;
  --gold-200: #f4cf5c;
  --gold-300: #e5bc48;
  --gold-400: #d4af37;
  --gold-500: #b8860b;
  --gold-600: #8a6409;
  --gold-glow: rgba(244, 207, 92, 0.45);
  --gold-soft: rgba(212, 175, 55, 0.12);
  --gold-border: rgba(212, 175, 55, 0.22);
  --gold-border-strong: rgba(212, 175, 55, 0.45);

  /* Text */
  --text: #f5f5f7;
  --text-dim: #b8b8c4;
  --text-muted: #8a8a99;
  --text-subtle: #5a5a68;

  /* Semantic */
  --warn: #e8a04b;
  --danger: #e07a5f;
  --success: #8cc76a;

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #b8860b 0%, #d4af37 45%, #f4cf5c 100%);
  --grad-gold-text: linear-gradient(135deg, #f4cf5c 0%, #d4af37 50%, #b8860b 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55), 0 8px 20px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.22),
    0 0 0 1px rgba(212, 175, 55, 0.25) inset;

  /* Layout */
  --container: 1140px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Type */
  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* subtle textured bg */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(212, 175, 55, 0.08), transparent 70%),
    radial-gradient(800px 400px at 100% 100%, rgba(184, 134, 11, 0.05), transparent 60%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold-200);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--gold-100);
}

strong {
  color: var(--text);
  font-weight: 600;
}

::selection {
  background: var(--gold-400);
  color: #1a1a0d;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* -------- Gold text helper -------- */
.gold-text {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* -------- Eyebrow label -------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 18px;
  position: relative;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold-400);
  vertical-align: middle;
  margin-right: 10px;
  opacity: 0.7;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--grad-gold);
  color: #1a1203;
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 48px rgba(212, 175, 55, 0.35),
    0 0 0 1px rgba(244, 207, 92, 0.55) inset;
  color: #1a1203;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--gold-border);
}
.btn--ghost:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-border-strong);
  color: var(--gold-100);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 14px;
}
.btn--lg {
  padding: 18px 32px;
  font-size: 17px;
}
.btn--block {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn__play {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-400);
  color: #1a1203;
  font-size: 10px;
  padding-left: 2px;
}
.btn__in {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  background: #0a66c2;
  color: #fff;
  border-radius: 3px;
  font-weight: 700;
  font-size: 11px;
  font-family: Georgia, serif;
  font-style: italic;
}

/* -------- Nav -------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  background: rgba(8, 8, 12, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 14px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--grad-gold);
  color: #1a1203;
  border-radius: 9px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0;
  box-shadow: var(--shadow-gold);
}
.nav__name {
  font-family: var(--font-body);
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
.nav__links a {
  color: var(--text-dim);
  font-weight: 500;
}
.nav__links a:hover {
  color: var(--gold-100);
}

/* -------- Sections -------- */
.section {
  padding: 110px 0;
  position: relative;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.section__title--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.section__title--compact {
  font-size: clamp(28px, 4vw, 42px);
}
.section__lede {
  text-align: center;
  font-size: 18px;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 56px;
}

/* -------- HERO -------- */
.hero {
  position: relative;
  padding: 100px 0 120px;
  text-align: center;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: -10% -20% auto -20%;
  height: 700px;
  background:
    radial-gradient(600px 300px at 50% 20%, rgba(244, 207, 92, 0.14), transparent 70%),
    radial-gradient(900px 500px at 50% 60%, rgba(184, 134, 11, 0.08), transparent 70%);
  z-index: -1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  font-size: 13px;
  color: var(--gold-100);
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--gold-200);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-glow);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.hero__subtitle {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero__proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 820px;
  margin: 0 auto;
  gap: 1px;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  background: var(--gold-border);
}
.proof {
  padding: 24px 12px;
  background: var(--bg);
  text-align: center;
}
.proof__num {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}
.proof__label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* -------- Why / Video section -------- */
.section--why {
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.video-wrap {
  max-width: 880px;
  margin: 20px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--gold-border);
  position: relative;
}
.video-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-gold);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.4;
  pointer-events: none;
}
.video-wrap video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

/* -------- Problem / Split -------- */
.section--problem {
  background: var(--bg);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.split__col {
  padding: 36px 32px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(19, 19, 28, 0.6) 100%);
}
.split__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-300);
  margin-bottom: 20px;
}
.split__punch {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.3;
  margin: 28px 0 0;
}
.split__punch--muted {
  color: var(--text-dim);
  font-size: 20px;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.bullet-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text-dim);
  line-height: 1.55;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 16px;
  height: 2px;
  background: var(--gold-400);
  border-radius: 2px;
}
.bullet-list--warn li::before {
  background: var(--warn);
}
.bullet-list--muted li {
  color: var(--text-muted);
}
.bullet-list--muted li::before {
  background: var(--text-subtle);
}

/* -------- Audit cards -------- */
.section--audit {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  text-align: center;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.card {
  padding: 36px 30px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(244, 207, 92, 0.12), transparent 70%);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-border-strong);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--gold-border);
}
.card__num {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 18px;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.card__title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.card__body {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* -------- About -------- */
.section--about {
  background: var(--bg);
}
.about {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
}
.about__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  background: var(--surface);
  aspect-ratio: 1 / 1;
}
.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5));
  pointer-events: none;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.about__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 14px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-100);
  z-index: 1;
}
.about__body p {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 18px;
}
.about__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* -------- Fit (Who it's for) -------- */
.section--fit {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  text-align: center;
}
.fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}
.fit__col {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gold-border);
  background: var(--surface);
}
.fit__col--no {
  opacity: 0.75;
}
.fit__label {
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--text);
  letter-spacing: 0.02em;
}
.fit__icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.fit__icon--yes {
  background: var(--gold-400);
  color: #1a1203;
}
.fit__icon--no {
  background: var(--surface-3);
  color: var(--text-muted);
}

/* -------- How it works / Steps -------- */
.section--how {
  background: var(--bg);
  text-align: center;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
  counter-reset: none;
}
.step {
  position: relative;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
}
.step__num {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  margin-bottom: 14px;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step__title {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step__body {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.55;
}

/* -------- Pricing -------- */
.section--pricing {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  text-align: center;
}
.pricing {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  margin-top: 40px;
  text-align: left;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.pricing__card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.06), rgba(212, 175, 55, 0.02)),
    var(--surface);
  border: 1px solid var(--gold-border-strong);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
}
.pricing__amount {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.pricing__unit {
  color: var(--text-muted);
  font-size: 15px;
}
.pricing__list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
}
.pricing__list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-dim);
  font-size: 15px;
}
.pricing__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-300);
  font-weight: 700;
}
.pricing__guarantee {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px dashed var(--gold-border);
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}
.pricing__note {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  align-self: center;
}
.pricing__note-title {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.pricing__note p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.pricing__note-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.pricing__note-list li {
  padding-left: 22px;
  position: relative;
}
.pricing__note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 1px;
  background: var(--gold-300);
}

/* -------- Podcast -------- */
.section--podcast {
  background: var(--bg);
  padding: 80px 0;
}
.podcast {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--gold-border);
  position: relative;
}
.podcast__mark {
  font-family: var(--font-display);
  font-size: 140px;
  line-height: 0.4;
  color: var(--gold-400);
  opacity: 0.2;
  position: absolute;
  top: 36px;
  left: 28px;
}
.podcast__body {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.65;
  max-width: 620px;
  margin: 8px auto 18px;
}
.podcast__meta {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* -------- Booking / Form -------- */
.section--book {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.book {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.book__intro p {
  color: var(--text-dim);
  font-size: 16px;
  margin: 12px 0 24px;
}
.book__or {
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 28px 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.book__or::before,
.book__or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold-border);
}
.book__or span {
  padding: 0 4px;
}
.book__hint {
  color: var(--text-dim);
  margin: 0;
}
.book__form {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--gold-border);
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow-md);
}
.field {
  display: grid;
  gap: 6px;
}
.field__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-400);
  background: #050508;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.field textarea {
  resize: vertical;
  min-height: 90px;
}
.field--hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none;
}
.checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
  cursor: pointer;
  padding: 12px 14px;
  background: rgba(212, 175, 55, 0.04);
  border: 1px dashed var(--gold-border);
  border-radius: var(--radius-sm);
}
.checkbox input {
  margin-top: 3px;
  accent-color: var(--gold-400);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.book__privacy {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin: 6px 0 0;
}
.book__status {
  font-size: 14px;
  margin: 4px 0 0;
  text-align: center;
  min-height: 20px;
}
.book__status.is-success {
  color: var(--success);
}
.book__status.is-error {
  color: var(--danger);
}

/* -------- FAQ -------- */
.section--faq {
  background: var(--bg);
  text-align: center;
}
.faq {
  max-width: 820px;
  margin: 40px auto 0;
  text-align: left;
  display: grid;
  gap: 12px;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 4px 0;
  transition: border-color 0.2s ease;
}
.faq__item[open] {
  border-color: var(--gold-border-strong);
}
.faq__item summary {
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 500;
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 50px;
  color: var(--text);
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--gold-300);
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after {
  content: "–";
}
.faq__item p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--text-dim);
  line-height: 1.65;
}

/* -------- Final CTA -------- */
.section--final {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  padding: 120px 0;
  text-align: center;
}
.final {
  max-width: 820px;
  margin: 0 auto;
}
.final__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}
.final__sub {
  font-size: 18px;
  color: var(--text-dim);
  margin: 0 0 40px;
}

/* -------- Footer -------- */
.footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  background: var(--bg);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 14px;
}
.footer__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-muted);
  font-size: 13px;
}
.footer__meta a {
  color: var(--text-dim);
}
.footer__meta a:hover {
  color: var(--gold-100);
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  body {
    font-size: 16px;
  }
  .nav {
    padding: 14px 20px;
  }
  .nav__links {
    display: none;
  }
  .section {
    padding: 80px 0;
  }
  .hero {
    padding: 64px 0 80px;
  }
  .hero__proof {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof:nth-child(1),
  .proof:nth-child(2) {
    border-bottom: 1px solid var(--gold-border);
  }
  .split,
  .fit,
  .pricing,
  .book {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about__photo {
    max-width: 320px;
    margin: 0 auto;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .podcast {
    padding: 40px 24px;
  }
  .podcast__mark {
    font-size: 100px;
    top: 20px;
    left: 16px;
  }
  .book__form {
    padding: 28px 22px;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .container {
    padding: 0 18px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .hero__title {
    font-size: 44px;
  }
  .pricing__amount {
    font-size: 56px;
  }
  .nav__name {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
