/* =============================================================
   EXPERIA — Section Styles
   ============================================================= */

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  background: var(--bg-dark);
  padding: 80px 0 0;
  overflow: hidden;
}

.video-section .section-inner {
  text-align: center;
  padding-bottom: 48px;
}

.video-section .eyebrow { color: var(--accent); }

.video-heading {
  color: var(--text-on-dark);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.video-body {
  color: var(--text-on-dark-muted);
  max-width: 520px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  background: #000;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: 0 -16px 60px rgba(0,0,0,0.4);
}

.section-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}

/* Video hidden until confirmed loadable */
.section-video { display: none; }
.video-ready .section-video { display: block; }
.video-ready .video-placeholder { display: none !important; }

/* Placeholder shown by default until video confirmed */
.video-placeholder {
  display: flex;
  aspect-ratio: 16 / 9;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  border-radius: 8px 8px 0 0;
}

.video-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--text-on-dark-faint);
  text-align: center;
  padding: 32px;
}

.video-play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}

.video-placeholder-label {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-on-dark-muted);
}

.video-placeholder-sub {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--text-on-dark-faint);
}

.video-placeholder-sub code,
.video-admin-hint code {
  font-family: monospace;
  background: rgba(255,255,255,0.08);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 0.9em;
}

/* Admin bar */
.video-admin-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  background: rgba(0,0,0,0.7);
  border-top: 0.5px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.video-replace-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.video-replace-btn:hover { opacity: 0.88; }

.video-admin-hint {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-on-dark-faint);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .video-container { border-radius: 6px 6px 0 0; }
}
@media (max-width: 768px) {
  .video-section { padding: 60px 0 0; }
  .video-section .section-inner { padding-bottom: 32px; }
  .video-container { border-radius: 0; }
  .video-admin-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  z-index: 1000;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 6px 12px;
  border: 0.5px solid var(--border-strong);
  border-radius: var(--radius-btn);
  background: transparent;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }
.theme-toggle svg { transition: transform 0.2s ease; }
.theme-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.theme-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-primary);
  border: 0.5px solid var(--border-strong);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 140px;
  overflow: hidden;
  display: none;
  z-index: 100;
}
.theme-dropdown.open { display: block; }

.theme-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.theme-option:hover { background: var(--bg-accent-pale); color: var(--text-primary); }
.theme-option.active { color: var(--accent); font-weight: 500; }

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 1.5px solid var(--text-primary);
  border-radius: var(--radius-btn);
  color: var(--text-primary);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 100vh;
  padding-top: 64px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Left padding aligns the text with the centered .section-inner below.
     520 = half the 1200 container (600) minus its 80 padding.
     100% = the hero's left column width (scrollbar-safe). */
  padding: 80px 64px 80px max(80px, calc(100% - 520px));
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 2.5rem;
}

.hero-trust-bar {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding-top: 24px;
  border-top: 0.5px solid var(--border);
}

.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-number {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
}

.trust-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.04em;
  max-width: 110px;
  line-height: 1.4;
}

.hero-image {
  position: relative;
  overflow: hidden;
}


.hero-image .image-placeholder {
  min-height: 100%;
  height: 100%;
}

/* ============================================================
   PAIN STRIP
   ============================================================ */
.pain-strip {
  background: var(--bg-dark);
  padding: 72px 80px;
}

.pain-strip-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.pain-strip .eyebrow {
  color: var(--accent);
  margin-bottom: 1.75rem;
}

.pain-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text-on-dark);
  margin-bottom: 1.75rem;
}

.pain-follow {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
}

/* ============================================================
   WHAT IS SECTION
   ============================================================ */
.what-is {
  padding: 100px 0;
}

.what-is .section-inner {
  display: flex;
  flex-direction: column;
}

.what-is .section-heading {
  max-width: 680px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  background: var(--border);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.pillar {
  background: var(--bg-primary);
  padding: 36px 32px;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.pillar-body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ============================================================
   THE WORK  (deliverable cards + social row)
   ============================================================ */
.the-work {
  background: var(--bg-primary);
  padding: 100px 0;
}

.the-work .eyebrow,
.the-work .work-heading,
.work-subheading {
  text-align: center;
}

.work-heading {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.work-card {
  display: flex;
  flex-direction: column;
}

.work-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  background: var(--bg-dark);
}

.social-card .work-card-media {
  aspect-ratio: 1 / 1;
}

/* Real image file (shows when present, falls back to placeholder on 404) */
.slot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.slot-img.img-missing { display: none; }

/* Admin-uploaded image sits on top of everything */
.work-card-media .stored-img,
.proof-media .stored-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* Placeholder fills the fixed-ratio media box */
.card-placeholder {
  position: absolute;
  inset: 0;
  min-height: 0;
  height: 100%;
  width: 100%;
  padding: 16px;
  text-align: center;
}
.card-placeholder span {
  font-size: 0.8125rem;
  line-height: 1.4;
}

.work-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 18px;
  margin-bottom: 8px;
}

.work-card-body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Social sub-row */
.work-subheading {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 72px;
}

.social-grid {
  margin-top: 32px;
}

.social-title {
  font-size: 1rem;
  text-align: center;
  margin-top: 14px;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

/* ============================================================
   PROOF  (launch + client photos)
   ============================================================ */
.proof {
  background: var(--bg-warm);
  padding: 100px 0;
}

.proof .eyebrow,
.proof .proof-heading {
  text-align: center;
}

.proof-heading {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.proof-item {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.proof-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  background: var(--bg-dark);
}

.proof-caption {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--bg-accent-pale);
  padding: 100px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--accent-light);
  z-index: 0;
}

.step {
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.step:first-child { padding-left: 0; }
.step:last-child  { padding-right: 0; }

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  z-index: 1;
  /* Mask the connecting line so it breaks cleanly around each numeral */
  background: var(--bg-accent-pale);
  box-shadow: 0 0 0 12px var(--bg-accent-pale);
}

.step-number::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 18px;
  margin-bottom: 10px;
}

.step-body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ============================================================
   WHAT'S INCLUDED
   ============================================================ */
.whats-included {
  background: var(--bg-warm);
  padding: 100px 0;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  margin-top: 56px;
  align-items: start;
}

.checklist {
  display: flex;
  flex-direction: column;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-muted);
}
.checklist-item:first-child { border-top: 0.5px solid var(--border); }

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-pale);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Aside dark card */
.aside-card {
  background-color: var(--bg-dark);
  background-image: var(--gradient-accent);
  border-radius: var(--radius-card);
  padding: 40px;
  position: sticky;
  top: 88px;
}

.aside-eyebrow {
  color: var(--accent-light) !important;
  margin-bottom: 1rem;
}

.aside-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-on-dark);
  margin-bottom: 32px;
  border: none;
  padding: 0;
}

.aside-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.aside-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.aside-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text-on-dark);
  line-height: 1;
}

.aside-stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.aside-footnote {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-on-dark-faint);
  border-top: 0.5px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* ============================================================
   INQUIRY FORM
   ============================================================ */
.inquiry {
  background: var(--bg-primary);
  padding: 100px 0;
}

.inquiry .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.inquiry-text {
  padding-top: 8px;
}

.inquiry-text .section-body {
  max-width: 100%;
}

.inquiry-form-wrap {
  background: var(--bg-accent-pale);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-field label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.form-optional {
  font-weight: 300;
  color: var(--text-light);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--border-strong);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  line-height: 1.6;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-light);
  font-weight: 300;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--accent);
}

.form-field textarea {
  min-height: 100px;
}

.form-confirm {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--accent);
  text-align: center;
  margin-top: 16px;
  display: none;
}
.form-confirm.visible { display: block; }

/* ============================================================
   LOGO RIBBON
   ============================================================ */
.logo-ribbon {
  background: var(--bg-primary);
  padding: 56px 0 48px;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  overflow: hidden;
}

.logo-ribbon .section-inner {
  margin-bottom: 32px;
}

.ribbon-track-wrapper {
  overflow: hidden;
  position: relative;
}

.ribbon-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
}

.ribbon-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 52px;
  flex-shrink: 0;
  filter: grayscale(100%) opacity(0.45);
  transition: filter 0.25s ease;
  cursor: default;
}
.ribbon-logo:hover { filter: grayscale(0%) opacity(1); }

.ribbon-logo img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Uploaded logo image: hidden until it loads, then it replaces the text monogram */
.ribbon-logo .logo-img { display: none; }
.ribbon-logo.has-logo .logo-img { display: block; }
.ribbon-logo.has-logo .logo-abbrev,
.ribbon-logo.has-logo .logo-full { display: none; }

.logo-abbrev {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  line-height: 1;
}

.logo-full {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 5px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--bg-section-alt);
  padding: 90px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--bg-primary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.6;
  color: var(--accent-light);
  display: block;
  margin-bottom: 20px;
  user-select: none;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  font-weight: 400;
  flex: 1;
  border: none;
  padding: 0;
  margin-bottom: 24px;
}

.testimonial-divider {
  height: 0.5px;
  background: var(--border);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.testimonial-info { display: flex; flex-direction: column; gap: 2px; }

.testimonial-name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.testimonial-title,
.testimonial-org {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--bg-primary);
  padding: 100px 0;
}

.faq-inner {
  max-width: 880px;
  margin: 0 auto;
}

.faq-inner .section-heading {
  max-width: 100%;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 0.5px solid var(--border);
}
.faq-item:first-child { border-top: 0.5px solid var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: color 0.18s;
}
.faq-question:hover { color: var(--accent); }
.faq-question[aria-expanded="true"] { color: var(--accent); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer.open { max-height: 400px; }

.faq-answer p {
  padding: 0 4px 24px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background-color: var(--bg-dark);
  background-image: var(--gradient-dark);
  padding: 100px 80px;
  text-align: center;
}

.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.final-cta .eyebrow { color: var(--accent-light); }

.final-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-style: italic;
  font-weight: 500;
  color: var(--text-on-dark);
  margin-bottom: 1.25rem;
}

.final-cta-body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
  max-width: 100%;
  margin: 0 auto 2.5rem;
}

.final-cta-reassure {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-on-dark-faint);
  margin-top: 18px;
  letter-spacing: 0.04em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark-deeper);
  padding: 32px 0;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-on-dark-muted);
  display: flex;
  gap: 6px;
  align-items: center;
}

.footer-brand-sub {
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-on-dark-faint);
}

.footer-admin {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-on-dark-faint);
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 4px;
  opacity: 0.5;
  transition: color 0.18s, opacity 0.18s;
}
.footer-admin:hover,
.footer-admin:focus-visible {
  color: var(--accent);
  opacity: 1;
}
