*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-dark: #0d1117;
  --bg-mid: #141b24;
  --bg-panel: #1c2635;
  --text-primary: #ffffff;
  --text-body: rgba(255,255,255,0.82);
  --text-muted: rgba(255,255,255,0.55);
  --gold: #b8a04c;
  --gold-dim: rgba(184,160,76,0.25);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Helvetica Neue', Arial, sans-serif;
  --max-w: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  background: var(--bg-dark) url('bg-texture.png') center top / cover;
  background-attachment: fixed;
  color: var(--text-body);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Label ── */
.section-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text-primary);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 32px;
}

/* ── Buttons ── */
.btn {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  display: inline-block;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
}
.btn-primary:hover { background: #c9b35e; }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: rgba(184,160,76,0.12); }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-dim);
  padding: 16px 0;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo svg { height: 48px; width: auto; }
.nav .btn { padding: 10px 24px; font-size: 11px; }

/* ── Section spacing ── */
.section { padding: 88px 0; }
.section--mid { background: rgba(20,27,36,0.85); }
.section--dark { background: rgba(13,17,23,0.8); }

/* ── Hero ── */
.hero { padding: 120px 0 96px; }
.hero .container { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: center; }
.hero-content { grid-column: 1; }
.hero-video {
  position: relative;
  grid-column: 2;
  aspect-ratio: 9 / 16;
  background: var(--bg-mid) url('videos/0509-poster.jpg') center/cover no-repeat;
  border: 1px solid rgba(184, 160, 76, 0.35);
  border-radius: 16px;
  cursor: pointer;
  width: 100%;
  padding: 0;
  overflow: hidden;
  font-family: var(--sans);
  color: var(--text-muted);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-video::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.55) 100%);
  transition: background 0.25s ease;
  pointer-events: none;
}
.hero-video:hover, .hero-video:focus-visible {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.hero-video:hover::before,
.hero-video:focus-visible::before {
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.65) 100%);
}
.hero-video:hover .hero-video__play,
.hero-video:focus-visible .hero-video__play {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translate(-50%, -50%) scale(1.06);
}
.hero-video__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(184, 160, 76, 0.7);
  background: rgba(13, 17, 23, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.hero-video__play svg { width: 26px; height: 26px; }
.hero-video__label {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.hero-video:hover .hero-video__label,
.hero-video:focus-visible .hero-video__label { color: var(--gold); }

/* ── Hero video modal ── */
.video-modal {
  position: fixed; inset: 0; z-index: 3500;
  background: rgba(0,0,0,0.85);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.video-modal[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.video-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.video-modal__close {
  position: absolute; top: -44px; right: 0;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  font-size: 28px; line-height: 1;
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.video-modal__close:hover, .video-modal__close:focus-visible {
  background: rgba(255,255,255,0.1); color: #ffffff; outline: none;
}
.video-modal__player {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 80vh;
  margin: 0 auto;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.video-modal__player video {
  width: 100%; height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}
.video-modal__throbber {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}
.video-modal__throbber.is-visible { opacity: 1; }
.video-modal__spinner {
  width: 44px; height: 44px;
  border: 3px solid rgba(255,255,255,0.18);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: lm-spin 0.9s linear infinite;
}
.video-modal__error {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  margin: 0; padding: 0 24px;
  color: rgba(255,255,255,0.75);
  font-family: var(--serif);
  font-style: italic;
  text-align: center;
  font-size: 14px;
}
@keyframes lm-spin { to { transform: rotate(360deg); } }
@media (max-width: 540px) {
  .video-modal { padding: 16px; }
  .video-modal__close { top: -40px; }
  .video-modal__dialog { max-width: 100%; }
  .video-modal__player { max-height: 75vh; }
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.hero-eyebrow em {
  color: var(--gold);
  font-style: italic;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-primary);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
  max-width: 720px;
}
.hero-sub {
  font-size: 20px;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 24px;
  max-width: 640px;
}
.hero-body {
  max-width: 640px;
  margin-bottom: 40px;
}
.hero-body p { margin-bottom: 16px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-ctas .btn { flex: 1; min-width: 200px; text-align: center; }
.hero-vf-widget { margin-top: 24px; }

/* ── Social proof ── */
.social-proof {
  text-align: center;
  padding: 56px 0;
}
.social-proof blockquote {
  font-size: 20px;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 16px;
}
.social-proof .meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.vouchedfor-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: 24px;
  text-decoration: none;
  transition: background 0.25s ease;
}
.vouchedfor-badge:hover { background: rgba(184,160,76,0.12); }

/* ── Problem ── */
.problem-list {
  list-style: none;
  max-width: 720px;
  margin-bottom: 40px;
}
.problem-list li {
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.problem-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.problem-closing {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  font-style: italic;
  max-width: 720px;
  color: var(--text-primary);
}

/* ── How it works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.step-card { }
.step-num {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}
.step-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 12px;
}
.ongoing-panel {
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px 32px;
  font-style: italic;
}
.ongoing-panel strong {
  font-style: italic;
  color: var(--text-primary);
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.about-body p { margin-bottom: 16px; }
.differentiator { margin-bottom: 24px; }
.differentiator strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.about-closing {
  font-style: italic;
  color: var(--gold);
  margin: 32px 0;
}
.about-quals {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.photo-frame {
  position: relative;
}
.photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.7);
  object-fit: cover;
}
.photo-frame::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid var(--gold-dim);
  pointer-events: none;
}
/* ── Pull quote ── */
.pull-quote {
  text-align: center;
  padding: 64px 0;
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 32px);
  font-style: italic;
  color: var(--text-primary);
  max-width: 720px;
  margin: 0 auto 16px;
  line-height: 1.4;
}
.pull-quote cite {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── MyThanks App ── */
.app-section { padding: 88px 0; }
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.app-copy h2 { margin-bottom: 16px; }
.app-copy .lead {
  font-size: 19px;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 24px;
}
.app-features {
  list-style: none;
  margin-bottom: 32px;
}
.app-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.app-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}
.app-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}
.app-badges a img {
  height: 44px;
  width: auto;
}
.app-visual {
  text-align: center;
}
.app-visual img {
  max-width: 280px;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 768px) {
  .app-grid { grid-template-columns: 1fr; gap: 40px; }
  .app-visual { order: -1; }
  .app-visual img { max-width: 320px; }
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.testimonial {}
.testimonial--feature {
  grid-column: 1 / -1;
  max-width: 820px;
  margin: 0 auto 8px;
  text-align: center;
}
.testimonial--feature .quote-mark { text-align: left; }
.testimonial--feature blockquote { font-size: 20px; line-height: 1.55; }
.testimonial .quote-mark {
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  font-family: Georgia, serif;
  margin-bottom: -8px;
}
.testimonial blockquote {
  font-style: italic;
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text-body);
}
.testimonial .attribution {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Video testimonials — grid of click-to-enlarge cards ── */
.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .video-testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 640px) {
  .video-testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
}
.video-testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  border-radius: 12px;
  outline-offset: 4px;
}
.video-testimonial:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}
.video-testimonial__player {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.video-testimonial:hover .video-testimonial__player,
.video-testimonial:focus-visible .video-testimonial__player {
  border-color: rgba(184,160,76,0.5);
  box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}
.video-testimonial__poster {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}
.video-testimonial__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(184,160,76,0.7);
  background: rgba(13,17,23,0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.video-testimonial:hover .video-testimonial__play,
.video-testimonial:focus-visible .video-testimonial__play {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translate(-50%, -50%) scale(1.06);
}
.video-testimonial__play svg { width: 22px; height: 22px; }
.video-testimonial .attribution {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.video-testimonial .pull-line {
  font-style: italic;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

/* ── Video testimonial lightbox ── */
.vt-lightbox {
  position: fixed; inset: 0; z-index: 4000;
  background: rgba(0,0,0,0.85);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.vt-lightbox[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.vt-lightbox__dialog {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  max-height: 80vh;
}
.vt-lightbox__close {
  position: absolute; top: -44px; right: 0;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px; line-height: 1;
  color: rgba(255,255,255,0.75);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.vt-lightbox__close:hover, .vt-lightbox__close:focus-visible {
  background: rgba(255,255,255,0.1); color: #ffffff; outline: none;
}
.vt-lightbox__video {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80vh;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
@media (max-width: 540px) {
  .vt-lightbox { padding: 16px; }
  .vt-lightbox__close { top: -40px; }
  .vt-lightbox__dialog { max-height: 78vh; }
  .vt-lightbox__video { max-height: 78vh; }
}

/* ── Lead magnet ── */
.lead-magnet {
  border: 1px solid var(--gold-dim);
  background: rgba(155,136,66,0.03);
  padding: 64px;
  text-align: center;
}
.lead-magnet h2 { margin-bottom: 16px; }
.lead-magnet p { max-width: 600px; margin: 0 auto 32px; font-style: italic; }

/* ── Lead magnet landing page ── */
.lm-hero { padding: 88px 0 64px; }
.lm-hero .container { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.lm-hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 48px);
  color: var(--text-primary);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}
.lm-hero-sub {
  font-size: 20px;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 24px;
}
.lm-hero-body p { margin-bottom: 16px; }
.lm-form-card {
  background: var(--bg-panel);
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  padding: 32px;
  position: sticky;
  top: 96px;
}
.lm-form-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 8px;
}
.lm-form-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.lm-form-card .form__group { margin-bottom: 14px; }
.lm-form-card .btn { width: 100%; text-align: center; margin-top: 6px; }
.lm-form-card .smallprint {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-top: 14px;
  margin-bottom: 0;
  letter-spacing: 0.3px;
}
.lm-form-card .smallprint a { color: var(--text-muted); }
.lm-form-card .smallprint a:hover { color: var(--gold); }

.lm-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}
.lm-benefit h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 8px;
}
.lm-benefit .benefit-num {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}

.lm-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.lm-trust-strip strong { color: var(--gold); font-weight: 600; }

.lm-thanks {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--gold-dim);
  background: rgba(155,136,66,0.04);
  border-radius: 8px;
}
.lm-thanks h3 { font-family: var(--serif); font-size: 24px; color: var(--text-primary); font-weight: 400; margin-bottom: 12px; }

@media (max-width: 820px) {
  .lm-hero .container { grid-template-columns: 1fr; }
  .lm-form-card { position: static; }
  .lm-benefits { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Good fit ── */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.fit-column h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 24px;
}
.fit-list {
  list-style: none;
}
.fit-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fit-list--good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}
.fit-list--bad li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* ── FAQs ── */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--serif);
  font-size: 18px;
  text-align: left;
  padding: 24px 40px 24px 0;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 24px;
  font-family: var(--sans);
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question::after {
  content: '×';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 1200px;
}
.faq-answer-inner {
  padding-bottom: 24px;
  color: var(--text-body);
  max-width: 720px;
}
.faq-answer-inner p + p {
  margin-top: 12px;
}

/* ── Useful documents ── */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.doc-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px 24px;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.doc-card:hover {
  border-color: var(--gold-dim);
  background: rgba(184,160,76,0.04);
}
.doc-card .doc-icon {
  font-size: 24px;
  margin-bottom: 4px;
}
.doc-card h3 {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text-primary);
  font-weight: 400;
}
.doc-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.doc-card .doc-link {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
}
@media (max-width: 768px) {
  .docs-grid { grid-template-columns: 1fr; }
}

/* ── Privacy modal ── */
.policy-modal .modal {
  max-width: 800px;
}
.policy-modal .modal__policy-content {
  padding: 2.5rem;
  max-height: 80vh;
  overflow-y: auto;
}
.policy-modal .modal__policy-content h2 {
  font-size: 24px;
  margin-bottom: 16px;
}
.policy-modal .modal__policy-content h3 {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text-primary);
  font-weight: 400;
  margin: 24px 0 8px;
}
.policy-modal .modal__policy-content p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
}
.policy-modal .modal__policy-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy-modal .modal__policy-content a:hover {
  color: #c9b35e;
}
.policy-modal .modal__policy-content ul {
  margin: 0 0 16px 22px;
  padding: 0;
}
.policy-modal .modal__policy-content ul li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.65;
}
.policy-modal .modal__policy-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ── Final CTA ── */
.final-cta {
  text-align: center;
  border-top: 1px solid var(--gold-dim);
  padding-top: 88px;
}
.final-cta .section-label { margin-bottom: 16px; }
.final-cta h2 { margin-bottom: 16px; }
.final-cta p { margin-bottom: 40px; }
.final-cta .hero-ctas { justify-content: center; }

/* ── Footer ── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 40px;
}
.footer-logo svg {
  height: 24px;
  width: auto;
  opacity: 0.5;
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-links a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-legal {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 860px;
}
.footer-legal a { color: var(--text-muted); }
.footer-legal a:hover { color: var(--gold); }
.footer-copyright {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.footer-credit {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.footer-credit a {
  color: inherit;
  text-decoration: none;
}
.footer-credit .vk-mark { color: #ebbd3d; }
.vk-credit {
  display: inline-grid;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: bottom;
}
.vk-credit > span {
  grid-area: 1 / 1;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.vk-credit__hover { transform: translateX(-100%); }
.vk-credit:hover .vk-credit__default { transform: translateX(100%); }
.vk-credit:hover .vk-credit__hover { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .vk-credit > span { transition: none; }
}

/* ── Contact Modal ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }

.modal {
  background: var(--bg-mid); border-radius: 8px;
  max-width: 720px; width: 90%; max-height: 90vh; overflow-y: auto; position: relative;
  transform: translateY(20px) scale(0.97); transition: transform 0.3s;
  border: 1px solid rgba(255,255,255,0.08);
}
.modal-overlay.is-open .modal { transform: translateY(0) scale(1); }

.modal__close {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  font-size: 1.5rem; color: var(--text-muted); cursor: pointer;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all 0.2s; z-index: 1;
}
.modal__close:hover { background: rgba(255,255,255,0.06); color: var(--text-primary); }

.modal__inner { display: grid; grid-template-columns: 1fr 1fr; }

.modal__sidebar {
  padding: 2.5rem; background: var(--bg-panel);
  border-radius: 8px 0 0 8px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 2rem;
}

.modal__testimonial {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--text-body); line-height: 1.6;
  border-left: 2px solid var(--gold); padding-left: 1rem;
}
.modal__testimonial cite {
  display: block; font-family: var(--sans); font-style: normal;
  font-size: 0.75rem; color: var(--text-muted); margin-top: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}

.modal__contact-info { display: flex; flex-direction: column; gap: 1rem; }
.modal__contact-row { display: flex; flex-direction: column; gap: 0.15rem; font-size: 0.875rem; }
.modal__contact-row strong {
  font-family: var(--sans); font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
}
.modal__contact-row span, .modal__contact-row a { color: var(--text-primary); font-size: 0.9375rem; text-decoration: none; }
.modal__contact-row a:hover { color: var(--gold); }
.modal__meeting-link {
  display: inline-block; margin-top: 0.5rem; font-family: var(--sans);
  font-size: 0.8125rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); text-decoration: none; transition: color 0.2s;
}
.modal__meeting-link:hover { color: #c9b35e; }

.modal__form-side { padding: 2.5rem; }
.modal__form-side h3 { font-family: var(--serif); font-size: 1.25rem; color: var(--text-primary); font-weight: 400; margin-bottom: 1.5rem; }
.form__group { margin-bottom: 1rem; }
.form__group label {
  display: block; font-family: var(--sans); font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.35rem;
}
.form__group input, .form__group textarea {
  width: 100%; padding: 0.65rem 0.85rem; border: 1px solid rgba(255,255,255,0.12); border-radius: 4px;
  font-family: var(--serif); font-size: 0.9375rem; color: var(--text-primary);
  background: rgba(255,255,255,0.04); transition: border-color 0.2s;
}
.form__group input:focus, .form__group textarea:focus { outline: none; border-color: var(--gold); }
.form__group textarea { resize: vertical; min-height: 80px; }
.modal__form .btn { width: 100%; margin-top: 0.5rem; text-align: center; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 80px 0 64px; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-video { grid-column: 1; max-width: 280px; margin: 0 auto; }

  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .about-photo .photo-frame { max-width: 320px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 40px; }
  .fit-grid { grid-template-columns: 1fr; gap: 40px; }
  .lead-magnet { padding: 40px 24px; }
  .footer-links { flex-direction: column; gap: 12px; }
  .modal__inner { grid-template-columns: 1fr; }
  .modal__sidebar { border-radius: 8px 8px 0 0; }
}
