/* ============================================================================
   MIRROR TRADER — STYLES
   Premium, dark, institutional fintech aesthetic.
   Colors, spacing and type scale are defined as CSS variables in :root so
   the whole visual system can be retuned from one place.
   ============================================================================ */

:root {
  /* Color palette */
  --bg-primary: #0A1929;
  --bg-card: #10233A;
  --bg-card-alt: #132840;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.68);
  --text-tertiary: rgba(255, 255, 255, 0.46);
  --accent: #FF3B3B;
  --accent-hover: #FF5252;
  --accent-soft: rgba(255, 59, 59, 0.12);
  --border-subtle: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --success: #34D399;

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  /* Layout */
  --container-max: 1180px;
  --container-narrow-max: 760px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.6s;
}

/* ---------------------------------------------------------------------- */
/* RESET & BASE                                                           */
/* ---------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p {
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  z-index: 1000;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: var(--space-4);
  top: var(--space-4);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------------------------------------------------------------------- */
/* LAYOUT UTILITIES                                                        */
/* ---------------------------------------------------------------------- */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.container-narrow {
  max-width: var(--container-narrow-max);
}

.text-accent {
  color: var(--accent);
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--space-4);
}

.eyebrow-center {
  text-align: center;
}

.section-headline {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: var(--space-4);
  max-width: 720px;
}

.section-headline-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-supporting {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: var(--space-7);
}

.section-supporting-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

section {
  padding: var(--space-9) 0;
}

@media (max-width: 720px) {
  section {
    padding: var(--space-8) 0;
  }
  .container {
    padding: 0 var(--space-4);
  }
}

/* ---------------------------------------------------------------------- */
/* BUTTONS                                                                 */
/* ---------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(255, 59, 59, 0.45);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
  min-height: 40px;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
  white-space: normal;
  text-align: center;
}

.btn-xl {
  padding: 18px 36px;
  font-size: 17px;
  white-space: normal;
  text-align: center;
}

.btn-block {
  width: 100%;
}

/* ---------------------------------------------------------------------- */
/* NAVBAR                                                                  */
/* ---------------------------------------------------------------------- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(10, 25, 41, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  font-size: 17px;
}

.navbar-logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.navbar-logo svg,
.navbar-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.navbar-wordmark {
  letter-spacing: -0.01em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.navbar-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s var(--ease);
}

.navbar-link:hover,
.navbar-link:focus-visible {
  color: var(--text-primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.navbar-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.navbar-toggle span {
  width: 18px;
  height: 1.6px;
  background: var(--text-primary);
  display: block;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.navbar-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.navbar-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.navbar-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-5) var(--space-5);
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-primary);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu-link {
  padding: var(--space-3) var(--space-2);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu .btn {
  margin-top: var(--space-3);
}

@media (max-width: 860px) {
  .navbar-links {
    display: none;
  }
  .navbar-actions .btn-sm {
    display: none;
  }
  .navbar-toggle {
    display: flex;
  }
}

/* ---------------------------------------------------------------------- */
/* HERO                                                                    */
/* ---------------------------------------------------------------------- */

.hero {
  padding-top: var(--space-9);
  padding-bottom: var(--space-8);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 59, 59, 0.10), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
}

.hero-headline {
  font-size: clamp(32px, 4.6vw, 52px);
  margin-bottom: var(--space-5);
  max-width: 620px;
}

.hero-supporting {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: var(--space-3);
}

.hero-clarification {
  font-size: 15px;
  color: var(--text-tertiary);
  margin-bottom: var(--space-6);
  padding-left: var(--space-4);
  border-left: 2px solid var(--border-strong);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.hero-trust {
  font-size: 13.5px;
  color: var(--text-tertiary);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-headline,
  .hero-supporting {
    max-width: 100%;
  }
}

/* Sample behavioral review visual */

.hero-visual {
  display: flex;
  justify-content: center;
}

.sample-review {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.sample-review-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-card-alt);
}

.sample-review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.sample-review-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.sample-review-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.sample-review-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
}

.sample-review-key {
  font-size: 13px;
  color: var(--text-tertiary);
  display: block;
  margin-bottom: var(--space-1);
}

.sample-review-value {
  font-size: 18px;
  font-weight: 700;
}

.sample-review-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.sample-review-metric {
  font-size: 24px;
  font-weight: 700;
  display: block;
}

.sample-review-metric-suffix {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-tertiary);
}

.sample-review-bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.sample-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.sample-bar-track {
  height: 6px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.sample-bar-fill {
  height: 100%;
  width: var(--bar-value, 0%);
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  border-radius: var(--radius-full);
  transition: width 1s var(--ease);
}

.sample-review-footer {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px dashed var(--border-subtle);
}

.sample-review-badge {
  flex-shrink: 0;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  background: var(--accent-soft);
  color: var(--accent);
}

.sample-review-footer-text {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ---------------------------------------------------------------------- */
/* STATS                                                                   */
/* ---------------------------------------------------------------------- */

.stats-section {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.stats-heading {
  font-size: clamp(24px, 3.4vw, 32px);
  text-align: center;
  margin-bottom: var(--space-3);
}

.stats-supporting {
  text-align: center;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-7);
  font-size: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.stat-card {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-card-alt);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.stat-value {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14.5px;
  color: var(--text-secondary);
  font-weight: 500;
}

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

/* ---------------------------------------------------------------------- */
/* FOUNDER NOTE                                                            */
/* ---------------------------------------------------------------------- */

.founder-section {
  text-align: center;
}

.founder-note {
  font-size: clamp(19px, 2.6vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
}

.founder-signature {
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* ---------------------------------------------------------------------- */
/* BEHAVIOR LEAKS                                                          */
/* ---------------------------------------------------------------------- */

.leaks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.leak-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-top: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-5);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.leak-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--accent);
  box-shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.6);
}

.leak-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
}

.leak-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.leak-icon {
  width: 32px;
  height: 32px;
  color: var(--text-secondary);
}

.leak-icon svg {
  width: 100%;
  height: 100%;
}

.leak-title {
  font-size: 19px;
  margin-bottom: var(--space-3);
}

.leak-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.leaks-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--space-7);
}

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

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

/* ---------------------------------------------------------------------- */
/* HOW IT WORKS                                                           */
/* ---------------------------------------------------------------------- */

.how-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  margin-top: var(--space-7);
}

.how-step {
  position: relative;
  padding-left: var(--space-5);
  border-left: 2px solid var(--border-subtle);
}

.how-step-number {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-3);
}

.how-step-title {
  font-size: 19px;
  margin-bottom: var(--space-2);
}

.how-step-description {
  font-size: 15px;
  color: var(--text-secondary);
}

.how-receive {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  max-width: 620px;
  margin: 0 auto var(--space-6);
}

.how-receive-title {
  font-size: 17px;
  margin-bottom: var(--space-4);
}

.how-receive-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: 15px;
  color: var(--text-secondary);
}

.how-receive-list li:last-child {
  margin-bottom: 0;
}

.how-receive-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.how-disclaimer {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-tertiary);
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* ---------------------------------------------------------------------- */
/* IS THIS FOR YOU                                                        */
/* ---------------------------------------------------------------------- */

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-7);
}

.fit-card {
  border-radius: var(--radius-md);
  padding: var(--space-6);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.fit-card--yes {
  border-color: rgba(52, 211, 153, 0.25);
}

.fit-card--no {
  border-color: rgba(255, 59, 59, 0.25);
}

.fit-card-title {
  font-size: 18px;
  margin-bottom: var(--space-5);
}

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.fit-list li:last-child {
  margin-bottom: 0;
}

.fit-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.fit-icon--yes {
  color: var(--success);
}

.fit-icon--no {
  color: var(--accent);
}

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

/* ---------------------------------------------------------------------- */
/* WHAT YOU'LL LEARN                                                      */
/* ---------------------------------------------------------------------- */

.learn-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.learn-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}

.learn-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  font-size: 17px;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.learn-list li:last-child {
  border-bottom: none;
}

.learn-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}

.learn-cta-wrap {
  display: flex;
  justify-content: center;
}

/* ---------------------------------------------------------------------- */
/* TESTIMONIALS                                                           */
/* ---------------------------------------------------------------------- */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.testimonial-quote {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-primary);
  font-style: italic;
}

.testimonial-author {
  font-size: 13.5px;
  color: var(--text-tertiary);
  font-weight: 500;
}

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

/* ---------------------------------------------------------------------- */
/* LEAD MAGNET                                                            */
/* ---------------------------------------------------------------------- */

.lead-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.lead-card {
  text-align: center;
  background: var(--bg-card-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
}

.lead-headline {
  font-size: clamp(24px, 3.4vw, 30px);
  margin-bottom: var(--space-3);
}

.lead-subheadline {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.lead-form {
  max-width: 420px;
  margin: 0 auto;
}

.lead-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.lead-form input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  min-height: 48px;
}

.lead-form input::placeholder {
  color: var(--text-tertiary);
}

.lead-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.lead-consent {
  font-size: 12.5px;
  color: var(--text-tertiary);
  margin-top: var(--space-3);
  text-align: left;
}

.lead-success {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* CRITICAL: the [hidden] attribute must always win over the flex display
   above. Class selectors and [hidden] have equal specificity, so without
   this explicit override the success block stays visible (as flex) even
   while hidden="" is set on the element before the form is ever submitted. */
.lead-success[hidden] {
  display: none;
}

.lead-success p {
  font-size: 15px;
  color: var(--success);
  font-weight: 500;
}

/* ---------------------------------------------------------------------- */
/* FAQ                                                                     */
/* ---------------------------------------------------------------------- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-7);
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
}

.faq-item-heading {
  margin: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: var(--space-5);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  color: var(--text-tertiary);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  padding: 0 var(--space-5) var(--space-5);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------------------------------------------------------------------- */
/* FINAL CTA / BOOKING                                                    */
/* ---------------------------------------------------------------------- */

.final-section {
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(255, 59, 59, 0.10), transparent 60%);
}

.final-headline {
  font-size: clamp(28px, 4.4vw, 42px);
  margin-bottom: var(--space-3);
}

.final-subtext {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.final-microcopy {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: var(--space-5);
}

.final-microcopy--muted {
  color: var(--text-tertiary);
  margin-top: var(--space-2);
}

/* ---------------------------------------------------------------------- */
/* FOOTER                                                                  */
/* ---------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-8) 0 calc(var(--space-8) + 72px);
  background: var(--bg-primary);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  font-size: 16px;
}

.footer-meta {
  font-size: 13.5px;
  color: var(--text-tertiary);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border-subtle);
}

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.15s var(--ease);
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--accent);
}

.footer-disclaimer {
  font-size: 12.5px;
  color: var(--text-tertiary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  max-width: 760px;
}

.footer-copyright {
  font-size: 12.5px;
  color: var(--text-tertiary);
}

@media (min-width: 861px) {
  .site-footer {
    padding-bottom: var(--space-8);
  }
}

/* ---------------------------------------------------------------------- */
/* POLICY PAGES                                                           */
/* ---------------------------------------------------------------------- */

.policy-section {
  padding-top: var(--space-8);
}

.policy-title {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: var(--space-6);
}

.policy-paragraph {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact-list-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 16px;
  color: var(--text-secondary);
}

.contact-list-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--success);
}

/* ---------------------------------------------------------------------- */
/* MOBILE STICKY CTA                                                      */
/* ---------------------------------------------------------------------- */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 400;
  padding: var(--space-3) var(--space-4);
  padding-bottom: max(var(--space-3), env(safe-area-inset-bottom));
  background: rgba(10, 25, 41, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 860px) {
  .mobile-sticky-cta {
    display: block;
  }
}

/* ---------------------------------------------------------------------- */
/* SCROLL REVEAL ANIMATION                                                */
/* ---------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Ensure content is visible even without JS */
.no-js .reveal {
  opacity: 1;
  transform: none;
}
