/* ═══════════════════════════════════════════════════════════════
   TARO-NAVIGATION — Strict Stylesheet (WCAG AA compliant)
   Palette: iceberg + ocean + white (light-only)
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties (Light Mode — iceberg/ocean/white) ─── */
:root {
  /* Backgrounds (all light — iceberg/white) */
  --bg: #FFFFFF;                  /* Pure white — main background */
  --bg-alt: #F1F7FB;              /* Very faint iceberg tint — alt section bg */
  --bg-iceberg: #E3EEF6;          /* Iceberg light — cards/badges/inputs bg */
  --bg-iceberg-deep: #CFE0EC;     /* Deeper iceberg — borders, dividers bg */

  /* Text (deep ocean shades — all WCAG AA on white) */
  --text: #0A2E47;                /* Deep ocean — primary text, ~13.5:1 on white (AAA) */
  --text-muted: #2C5F7C;          /* Medium ocean — secondary text, ~6.8:1 on white (AA) */
  --text-subtle: #5B7A8C;         /* Slate-blue — tertiary/meta text, ~4.6:1 on white (AA) */

  /* Accent (ocean blue) */
  --accent: #006994;              /* Ocean blue — AA on white (~5.9:1 normal, AAA large) */
  --accent-hover: #004F70;        /* Deeper ocean — hover state (~8:1 on white) */
  --accent-bg: #CFE0EC;           /* Iceberg bg for badges/washes */

  /* Borders */
  --border: #CFE0EC;              /* Iceberg border — subtle */
  --border-strong: #A3BFD2;       /* Stronger iceberg border */

  /* Semantic (kept sparingly, solid only) */
  --burgundy: #8A2533;            /* Stop-list "no" semantic — AA on white */
  --green: #1B7A3E;               /* "yes" semantic — AA on white */

  /* Cards */
  --card-bg: #FFFFFF;
  --input-bg: #FFFFFF;
  --input-border: #A3BFD2;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;

  /* Layout */
  --container-max: 1120px;
  --container-narrow: 720px;
  --container-wide: 900px;

  /* Radius */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 999px;

  /* Transition */
  --transition: 0.2s ease;

  /* Subtle shadows only (ocean-tinted, no harsh color) */
  --shadow-sm: 0 1px 2px rgba(10,46,71,0.05);
  --shadow-md: 0 2px 8px rgba(10,46,71,0.08);
  --shadow-lg: 0 8px 24px rgba(10,46,71,0.10);
  --shadow-xl: 0 12px 32px rgba(10,46,71,0.12);
}

/* ─── Reset & Base ─── */
/* Light-only theme per user directive; no dark mode. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ─── Layout Utilities ─── */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: var(--container-narrow); }
.container-wide { max-width: var(--container-wide); }

.font-heading { font-family: var(--font-heading); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* Font-size utilities (used inline in HTML) */
.text-2xl { font-size: 1.5rem; }
.text-xl { font-size: 1.25rem; }
.text-lg { font-size: 1.125rem; }
.text-md { font-size: 1rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

/* ─── Text Colors (Strict, AA-compliant) ─── */
/* Gradient text classes are now SOLID accent color (no gradient) */
.text-gradient-copper,
.text-gradient-animated {
  color: var(--accent);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.text-burgundy { color: var(--burgundy); }
.text-copper { color: var(--accent); }
.text-accent { color: var(--accent); }
.text-copper-20 { color: var(--accent); opacity: 0.6; }
.text-copper-40 { color: var(--accent); opacity: 0.7; }
.text-copper-60 { color: var(--accent); opacity: 0.85; }
.text-green { color: var(--green); }
.text-steel { color: var(--text-muted); }
.text-steel-50 { color: var(--text-subtle); }
.text-steel-60 { color: var(--text-subtle); }
.text-white { color: #FFFFFF; }
.text-white-80 { color: var(--text); }

/* Background utility classes — neutralized to iceberg/white */
.bg-burgundy-light { background: var(--bg-alt); }
.bg-green-light { background: var(--bg-alt); }
.bg-burgundy-10 { background: var(--accent-bg); }
.bg-green-10 { background: var(--accent-bg); }
.bg-copper-10 { background: var(--accent-bg); }

.underline { text-decoration: underline; text-underline-offset: 2px; }

/* ─── Icon Sizes ─── */
.icon-xxs { width: 14px; height: 14px; }
.icon-xs { width: 16px; height: 16px; }
.icon-sm { width: 20px; height: 20px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 32px; height: 32px; }

.star-filled { fill: var(--accent); }

/* ─── Animations (kept minimal: hover, reveal, accordion, chat) ─── */
@keyframes cursor-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes availability-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.6); }
}

/* ─── Decorative Elements (DISABLED per strict design) ─── */
/* All visual-noise decorations are hidden; HTML keeps elements for backward compat */
.stars-bg,
.star,
.hero-overlay,
.hero-mesh-gradient,
.hero-orb,
.hero-orb-1,
.hero-orb-2,
.copper-line-art,
.compass-rose-float,
.noise-overlay,
.card-day-compass,
.floating-particles,
.floating-particle {
  display: none !important;
}

/* Geometric pattern: disable pseudo-element */
.geometric-pattern { position: relative; }
.geometric-pattern::before {
  content: none;
}

/* Ornamental divider: collapse to a simple 1px line, hide ornate SVG */
.ornamental-divider {
  display: block;
  height: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  background: transparent;
  position: relative;
}
.ornamental-divider svg { display: none; }

/* Mystical border: remove all pseudo-elements (Card of Day section) */
.mystical-border { position: relative; }
.mystical-border::before,
.mystical-border::after { content: none; }

/* Glow-pulse: no animation */
.glow-pulse { animation: none; box-shadow: none; }

/* ─── Section Base ─── */
.section {
  padding: 80px 0;
  position: relative;
}
@media (min-width: 768px) {
  .section { padding: 112px 0; }
}

.section-white { background: var(--bg); }
.section-bg-light { background: var(--bg-alt); }
/* section-navy-dark kept as a class alias (HTML compatibility) but uses light bg */
.section-navy-dark { background: var(--bg-alt); }

/* Pricing section needs overflow visible for the featured badge */
#pricing.section { overflow: visible; }

.section-number {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--font-heading);
  font-size: 0.75rem; font-weight: 600;
  color: var(--accent);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
  letter-spacing: 0.05em;
  z-index: 10; line-height: 1.5;
  background: var(--bg);
}
.section-number::before {
  content: '···';
  margin-right: 4px;
  letter-spacing: 1px;
  font-size: 0.6rem;
  vertical-align: middle;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header-sm { text-align: center; margin-bottom: 24px; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.875rem; font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.2;
  color: var(--text);
  margin-top: 12px;
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 2.5rem; } }

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}

.section-subtitle-sm {
  font-size: 0.875rem;
  color: var(--text-subtle);
  margin-top: 4px;
}

.section-body {
  font-size: 1.125rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

/* ─── Card Shared ─── */
.card-lift-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card-lift-hover:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.card-title-sm {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: var(--text);
}
.card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
}
.card-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}
.card-text-sm {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}
.card-text-lg {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ─── Grid Layouts ─── */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: 1fr 1fr 1fr; gap: 32px; } }

/* ─── Buttons (solid colors, no gradients) ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  text-align: center;
  padding: 12px 24px;
  font-size: 1rem;
  line-height: 1.4;
}
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1.125rem; }
.btn-block { width: 100%; }

/* Primary: solid ocean accent background, white text (5.9:1 — AA pass) */
.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
  border: 1px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}

/* Copper = primary alias (kept for HTML compatibility; now ocean) */
.btn-copper {
  background: var(--accent);
  color: #FFFFFF;
  border: 1px solid var(--accent);
}
.btn-copper:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}

/* Outline: transparent + strong border + text color */
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline-copper {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--accent);
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.btn-outline-copper:hover {
  background: var(--accent-bg);
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── HEADER (light, white bg + iceberg border) ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--bg);
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.logo-link:hover .logo-text { color: var(--accent); }

.desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
}
@media (min-width: 768px) { .desktop-nav { display: flex; } }

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--accent);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-more { position: relative; }
.nav-more-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  transition: color var(--transition);
  padding: 4px 0;
}
.nav-more-btn:hover { color: var(--accent); }
.nav-more-dropdown {
  display: none;
  position: absolute;
  right: 0; top: 100%;
  margin-top: 8px;
  width: 200px;
  padding: 8px 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  z-index: 50;
}
.nav-more-dropdown.open { display: block; }
.nav-more-link {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav-more-link:hover {
  color: var(--accent);
  background: var(--bg-iceberg);
}

.header-cta { padding: 8px 20px; font-size: 0.875rem; }

.mobile-menu-btn {
  display: block;
  color: var(--text);
  background: none;
  border: none;
  padding: 8px;
}
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,46,71,0.4);
  z-index: 49;
}
.mobile-nav-backdrop.open { display: block; }

.mobile-nav-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 280px;
  max-width: 80vw;
  background: var(--bg);
  z-index: 50;
  overflow-y: auto;
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-nav-panel.open { transform: translateX(0); }

.mobile-panel-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.mobile-panel-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
}
.mobile-close-btn {
  color: var(--text);
  background: none;
  border: none;
  padding: 8px;
}
.mobile-close-btn:hover { color: var(--accent); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mobile-nav-link {
  display: block;
  padding: 12px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav-link:hover {
  color: var(--accent);
  background: var(--bg-iceberg);
}

.mobile-panel-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ─── Section Navigator (right side, clickable dots) ─── */
/* Vertical column of clickable dots — each dot jumps to its section.
   Active section is enlarged + accent-colored. Hover reveals label. */
.section-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 14px 8px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}
/* Hide on small screens — mobile users scroll naturally */
@media (max-width: 1023px) {
  .section-nav { display: none; }
}

.section-nav__dot {
  position: relative;
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.section-nav__dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: all 0.25s ease;
  box-sizing: border-box;
}
.section-nav__dot:hover::before {
  background: var(--accent);
  transform: scale(1.25);
}
.section-nav__dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 50%;
}
.section-nav__dot.is-active::before {
  width: 12px;
  height: 12px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 105, 148, 0.15);
}

/* Label tooltip — appears on hover/focus to the LEFT of the dot */
.section-nav__label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  background: var(--bg);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.section-nav__label::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--bg);
}
.section-nav__dot:hover .section-nav__label,
.section-nav__dot:focus-visible .section-nav__label,
.section-nav__dot.is-active .section-nav__label {
  opacity: 1;
  transform: translateY(-50%) translateX(-2px);
}

/* ─── Cursor Glow (disabled — visual noise) ─── */
.cursor-glow {
  display: none;
}

/* ─── HERO (light iceberg-tinted background) ─── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-alt);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 128px 20px 160px;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-content { padding: 160px 20px 160px; }
}

.hero-text-block { max-width: 750px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  background: var(--bg-iceberg);
}
.hero-badge i { color: var(--accent); }
.hero-badge span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}
@media (min-width: 640px) { .hero-heading { font-size: 3rem; } }
@media (min-width: 768px) { .hero-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-heading { font-size: 4.25rem; } }

/* Hero subtitle: deep ocean text on iceberg-tinted bg */
.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 600px;
  color: var(--text-muted);
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }

.hero-typewriter {
  margin-bottom: 40px;
  min-height: 2em;
}
.typewriter-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--accent);
}
@media (min-width: 768px) { .typewriter-text { font-size: 1.5rem; } }
.typewriter-cursor {
  color: var(--accent);
  font-weight: 300;
  margin-left: 2px;
  animation: cursor-blink 1s step-end infinite;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) { .hero-cta-row { flex-direction: row; } }

.btn-hero-primary {
  background: var(--accent);
  color: #FFFFFF;
  font-weight: 700;
  padding: 18px 32px;
  font-size: 1.125rem;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
}
.btn-hero-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 32px;
  font-size: 1.125rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-strong);
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
  background: transparent;
  transition: all var(--transition);
}
.btn-hero-secondary:hover {
  background: var(--bg-iceberg);
  border-color: var(--accent);
  color: var(--accent);
}

.hero-stats {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 500px;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
}
@media (min-width: 768px) { .hero-stat-value { font-size: 1.875rem; } }

/* Stat label: subtle ocean text on iceberg bg */
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-subtle);
  margin-top: 4px;
  font-weight: 500;
}
@media (min-width: 768px) { .hero-stat-label { font-size: 0.875rem; } }

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-strong);
  margin: 0 16px;
  align-self: center;
}
@media (min-width: 640px) { .hero-stat-divider { margin: 0 24px; } }

.scroll-down-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text);
}
.scroll-down-indicator span {
  font-size: 0.875rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
}
.scroll-down-indicator i {
  color: var(--accent);
  animation: float 1.5s ease-in-out infinite;
}

/* ─── COMPARISON ─── */
/* Two side-by-side cards, always visible — no slider, no tabs. */
#comparison .section-header { margin-bottom: 40px; }

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 767px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.comparison-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.comparison-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.comparison-card--traditional {
  border-top-color: var(--burgundy);
  background:
    linear-gradient(180deg, rgba(138, 37, 51, 0.045) 0%, rgba(138, 37, 51, 0) 140px),
    var(--card-bg);
}
.comparison-card--tarot {
  border-top-color: var(--accent);
  background:
    linear-gradient(180deg, rgba(0, 105, 148, 0.06) 0%, rgba(0, 105, 148, 0) 140px),
    var(--card-bg);
}

.comparison-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.comparison-card__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.comparison-card--traditional .comparison-card__icon {
  background: rgba(138, 37, 51, 0.10);
  border-color: rgba(138, 37, 51, 0.20);
  color: var(--burgundy);
}
.comparison-card--tarot .comparison-card__icon {
  background: rgba(0, 105, 148, 0.10);
  border-color: rgba(0, 105, 148, 0.20);
  color: var(--accent);
}
.comparison-card__heading { display: flex; flex-direction: column; gap: 2px; }
.comparison-card__tag {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-subtle);
}
.comparison-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25;
}
.comparison-card--traditional .comparison-card__title { color: var(--burgundy); }
.comparison-card--tarot .comparison-card__title { color: var(--accent); }

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: background var(--transition), transform var(--transition);
}
.comparison-list li:hover {
  background: var(--bg-iceberg);
  transform: translateX(2px);
}
.comparison-list__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 1px;
}
.comparison-card--traditional .comparison-list__icon {
  background: rgba(138, 37, 51, 0.12);
  color: var(--burgundy);
}
.comparison-card--tarot .comparison-list__icon {
  background: rgba(0, 105, 148, 0.12);
  color: var(--accent);
}
.comparison-list__text {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

/* ─── ADVANTAGE CARDS ─── */
.advantage-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.advantage-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.advantage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.advantage-card:hover::before { transform: scaleX(1); }

.advantage-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--accent-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.advantage-icon i { color: var(--accent); }
.advantage-card:hover .advantage-icon { background: var(--accent-bg); }
.advantage-card:hover .card-title-sm { color: var(--accent); }

/* ─── METHOD ─── */
.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .method-grid { grid-template-columns: 1fr 1.2fr; gap: 64px; }
}

.method-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.method-image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  object-fit: cover;
}
.method-image-accent-1,
.method-image-accent-2 {
  display: none;
}

.method-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.method-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.method-list-icon {
  margin-top: 4px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--accent-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.method-list-icon i { color: var(--accent); }
.method-list-item span {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.method-quote-block {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.method-quote-text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
}

/* ─── PROCESS ─── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .process-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
}

.process-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  overflow: hidden;
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.process-card:hover::before { transform: scaleX(1); }

.process-card-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 24px;
  position: relative;
}

.process-card-icon-small {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--accent-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-card-icon-small i { color: var(--accent); }

.process-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--text-subtle);
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
}
.process-duration i { color: var(--accent); }

.online-format-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 56px;
  box-shadow: var(--shadow-sm);
}

.online-format-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .online-format-grid { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
}

.online-feature {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all var(--transition);
  background: var(--bg);
}
.online-feature:hover {
  background: var(--bg-alt);
  border-color: var(--accent);
}
.online-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.online-feature-icon i { color: var(--accent); }
.online-feature h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 4px;
}
.online-feature p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.process-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin: 48px auto 0;
  box-shadow: var(--shadow-sm);
}
.process-result-badge i { color: var(--green); }
.process-result-badge span {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
}

/* ─── CTA BANNER (solid ocean accent, white text) ─── */
.cta-banner {
  padding: 56px 0;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}
.cta-accent-top, .cta-accent-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--bg-iceberg);
}
.cta-accent-top { top: 0; }
.cta-accent-bottom { bottom: 0; }

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 10;
}
@media (min-width: 640px) {
  .cta-inner { flex-direction: row; justify-content: center; }
}

.cta-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: #FFFFFF;
}
@media (min-width: 768px) { .cta-heading { font-size: 1.875rem; } }

/* ─── STOP LIST (neutral bg-alt + burgundy left border for "stop" semantic) ─── */
.stoplist-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  margin-bottom: 16px;
}
.stoplist-badge i { color: var(--burgundy); }
.stoplist-badge span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--burgundy);
}

.stoplist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .stoplist-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.stoplist-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--burgundy);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.stoplist-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-strong);
  display: inline-block;
}

.stoplist-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.stoplist-items li:last-child { margin-bottom: 0; }
.stoplist-items li i { color: var(--burgundy); margin-top: 2px; }
.stoplist-items li span {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1.2fr; gap: 64px; }
}

.about-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-image {
  aspect-ratio: 3/4;
  width: 100%;
  object-fit: cover;
}
.about-image-accent { display: none; }

.about-blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
  position: relative;
}
.about-blockquote i { color: var(--accent); }
.about-blockquote-text {
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.7;
  font-family: var(--font-body);
  margin-top: 8px;
}

/* ─── JOURNEY TIMELINE ─── */
.journey-timeline {
  position: relative;
}
.journey-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border-strong);
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .journey-timeline::before { left: 20px; }
}

.journey-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
}
.journey-item:last-child { margin-bottom: 0; }

.journey-card-desktop { display: none; }
@media (min-width: 768px) {
  /* space-between pushes the two halves to opposite sides so the
     centered dot sits in the middle gap and never overlaps a card */
  .journey-item { justify-content: space-between; }
  .journey-card-desktop { display: block; width: calc(50% - 40px); }
  .journey-card-left { padding-right: 32px; text-align: right; }
  .journey-card-right { padding-left: 32px; text-align: left; }
  .journey-card-spacer { width: calc(50% - 40px); }
}

.journey-card-mobile {
  display: block;
  flex: 1;
  padding-left: 16px;
}
@media (min-width: 768px) { .journey-card-mobile { display: none; } }

.journey-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  z-index: 2;
  margin: 0 16px;
  border: 4px solid var(--bg);
}
@media (max-width: 767px) {
  .journey-dot { margin-bottom: 20px; }
  .journey-item { flex-direction: column; align-items: center; }
  .journey-card-mobile { padding-left: 0; width: 100%; }
  .journey-card-mobile .journey-card { margin-top: 4px; }
}
@media (min-width: 768px) {
  .journey-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
}

.journey-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.2s ease;
}
.journey-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

/* ─── TESTIMONIALS ─── */
.testimonial-carousel {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) { .testimonial-carousel { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonial-carousel { grid-template-columns: 1fr 1fr 1fr; } }

@media (max-width: 639px) {
  .testimonial-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 16px;
    padding: 0 16px;
  }
  .testimonial-carousel::-webkit-scrollbar { display: none; }
  .testimonial-carousel .testimonial-card {
    scroll-snap-align: center;
    flex-shrink: 0;
    width: calc(100% - 32px);
  }
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.testimonial-quote-decor {
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-bg);
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
  z-index: 0;
}

.testimonial-quote-icon { margin-bottom: 24px; position: relative; z-index: 1; }
.testimonial-quote-icon i { color: var(--accent); }

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.testimonial-stars i { color: var(--accent); }

.testimonial-text {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-subtle);
  margin-top: 2px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 640px) { .testimonial-controls { display: none; } }

.testimonial-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all var(--transition);
}
.testimonial-arrow:hover {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.testimonial-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ─── RESULTS ─── */
.result-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.result-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.result-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--accent-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.result-icon i { color: var(--accent); }

.result-counter {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 12px;
}
.result-ring { width: 100px; height: 100px; }
.result-ring-progress {
  transition: stroke-dashoffset 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
  stroke: var(--accent);
}
.result-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
@media (min-width: 768px) { .result-value { font-size: 1.875rem; } }

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

/* Featured card: iceberg-deep background + 2px ocean accent border */
.pricing-card-featured {
  background: var(--bg-iceberg-deep);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: visible !important;
  color: var(--text);
}
.pricing-card-featured::before { content: none; }

.pricing-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  z-index: 20;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text);
}
.pricing-card-featured .pricing-title { color: var(--text); }

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.pricing-card-featured .pricing-desc { color: var(--text-muted); }

.pricing-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.pricing-card-featured .pricing-price { color: var(--accent); }

.pricing-badge { margin-bottom: 24px; }
.pricing-badge span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid var(--border);
}
.pricing-card-featured .pricing-badge span {
  background: var(--bg);
  color: var(--accent);
  border-color: var(--border-strong);
}

.pricing-features {
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.pricing-features li i { color: var(--accent); margin-top: 2px; }
.pricing-features li span {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.pricing-card-featured .pricing-features li i { color: var(--accent); }
.pricing-card-featured .pricing-features li span { color: var(--text-muted); }

/* ─── TERMS ─── */
.terms-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.term-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.term-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.term-icon {
  margin-top: 4px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--accent-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.term-icon i { color: var(--accent); }

.term-title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}
.term-text {
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: none;
  background: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
  color: var(--accent);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ─── CARD OF THE DAY ─── */
.card-day-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  margin-bottom: 16px;
}
.card-day-badge i { color: var(--accent); }
.card-day-badge span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent);
}

.card-day-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
@media (min-width: 640px) { .card-day-row { gap: 24px; } }
@media (min-width: 768px) { .card-day-row { gap: 32px; } }

/* Tarot card */
.tarot-card-wrapper {
  width: 140px;
  height: 260px;
  perspective: 1000px;
  cursor: pointer;
  transition: transform var(--transition);
}
@media (min-width: 640px) {
  .tarot-card-wrapper { width: 160px; height: 280px; }
}
.tarot-card-wrapper:hover:not(.flipped) {
  transform: translateY(-8px) scale(1.03);
}

.tarot-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}
.tarot-card-wrapper.flipped .tarot-card-inner {
  transform: rotateY(180deg);
}

.tarot-card-front, .tarot-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Tarot card front: iceberg-deep bg with ocean accent border */
.tarot-card-front {
  background: var(--bg-iceberg-deep);
  border: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: var(--shadow-md);
}
.tarot-card-front .inner-border-1 {
  position: absolute;
  inset: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
}
.tarot-card-front .inner-border-2 {
  position: absolute;
  inset: 20px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.tarot-card-front .card-star {
  margin-bottom: 8px;
  color: var(--accent);
}
.tarot-card-front .card-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.tarot-card-front .card-position {
  position: absolute;
  bottom: 16px;
  font-family: var(--font-heading);
  font-size: 10px;
  color: var(--text-subtle);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tarot-card-front .corner {
  position: absolute;
  width: 12px;
  height: 12px;
}
.tarot-card-front .corner-tl {
  top: 12px; left: 12px;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
}
.tarot-card-front .corner-tr {
  top: 12px; right: 12px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
}
.tarot-card-front .corner-bl {
  bottom: 12px; left: 12px;
  border-bottom: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
}
.tarot-card-front .corner-br {
  bottom: 12px; right: 12px;
  border-bottom: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
}

/* Tarot card back: iceberg bg with ocean accent border */
.tarot-card-back {
  background: var(--bg-iceberg);
  border: 2px solid var(--accent);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: var(--shadow-lg);
}
.tarot-card-back .card-back-content { text-align: center; }
.tarot-card-back .position-badge {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  background: var(--bg);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}
.tarot-card-back .card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent);
  margin-bottom: 4px;
  line-height: 1.3;
}
.tarot-card-back .card-short-meaning {
  font-size: 10px;
  color: var(--text-subtle);
  font-family: var(--font-heading);
  margin-bottom: 8px;
}
.tarot-card-back .card-message {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

.card-day-messages { display: none; }
@media (max-width: 767px) {
  .card-day-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }
  .card-day-messages .msg-card {
    background: var(--bg-iceberg);
    border-radius: var(--radius-lg);
    padding: 16px;
    border: 1px solid var(--accent);
    text-align: left;
  }
  .card-day-messages .msg-position {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 600;
  }
  .card-day-messages .msg-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--accent);
    margin: 4px 0;
  }
  .card-day-messages .msg-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
  }
}

.card-day-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ─── BOOKING FORM ─── */
.booking-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
@media (min-width: 640px) { .trust-bar { gap: 24px; } }
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-item span:first-child { font-size: 1rem; }
.trust-item span:last-child {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}
@media (min-width: 640px) { .trust-item span:last-child { font-size: 0.9375rem; } }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input::placeholder { color: var(--text-subtle); }
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 105, 148, 0.15);
}
.form-input.error {
  border-color: var(--burgundy);
  background: rgba(138, 37, 51, 0.04);
}

.form-textarea { min-height: 100px; resize: vertical; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%235B7A8C' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-textarea-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}
.char-counter {
  font-size: 0.75rem;
  color: var(--text-subtle);
  font-weight: 500;
}
.char-counter.warn { color: var(--accent); }

.form-error {
  font-size: 0.875rem;
  color: var(--burgundy);
  margin-top: 4px;
  font-weight: 500;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.consent-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.consent-label a { color: var(--accent); font-weight: 600; }
.consent-label a:hover { color: var(--accent-hover); }

/* Countdown widget (iceberg bg, deep ocean text — AA contrast) */
.countdown-widget {
  margin-top: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--bg-iceberg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.countdown-widget::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 20px;
}
.countdown-clock {
  color: var(--accent);
}
.countdown-header span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}

.countdown-date {
  text-align: center;
  margin: 12px 0 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
}

.countdown-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.countdown-box { text-align: center; }
.countdown-value {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
}
.countdown-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.625rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
}
.countdown-separator {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-subtle);
  margin-bottom: 20px;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 48px 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(27, 122, 62, 0.2);
}
.success-icon i { color: #FFFFFF; }
.success-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 12px;
}
.success-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.success-sub {
  font-size: 0.875rem;
  color: var(--text-subtle);
  margin-bottom: 32px;
}

/* ─── FOOTER (light iceberg-alt bg + ocean text) ─── */
.site-footer {
  background: var(--bg-alt);
  color: var(--text-muted);
  padding: 64px 0 32px;
  position: relative;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 32px; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.footer-stat { text-align: center; }
.footer-stat > span:first-child {
  color: var(--accent);
}
.footer-stat > span:last-child {
  color: var(--text-subtle);
}
.footer-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-strong);
}

.footer-legal-name {
  font-size: 0.875rem;
  color: var(--text-subtle);
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color var(--transition);
  position: relative;
  display: inline-block;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-links a:hover::after { width: 100%; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-contact-item i { color: var(--accent); }

.footer-disclaimer {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-bottom: 24px;
}
.footer-disclaimer p {
  font-size: 0.75rem;
  color: var(--text-subtle);
  line-height: 1.6;
}
.footer-disclaimer strong {
  color: var(--text-muted);
}

.footer-gradient-divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: 0 0 24px;
}

.footer-copyright { text-align: center; }
.footer-copyright p {
  font-size: 0.875rem;
  color: var(--text-subtle);
}

/* ─── COOKIE BANNER (light white bg + iceberg border, AA contrast) ─── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px;
}
.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-top: 4px solid var(--accent);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .cookie-inner { flex-direction: row; align-items: center; }
}

/* Cookie text: deep ocean text on white (~13.5:1) — maximum readability */
.cookie-text {
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.6;
  flex: 1;
  font-weight: 400;
}
/* Cookie links: ocean accent — AA-compliant on white */
.cookie-text a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-text a:hover { color: var(--accent-hover); }

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-policy-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.cookie-policy-link:hover { color: var(--accent-hover); }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFFFF;
  border: none;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.back-to-top:hover {
  transform: scale(1.05);
  background: var(--accent-hover);
  box-shadow: var(--shadow-lg);
}

/* ─── MODALS ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(10, 46, 71, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(2px);
}
.modal-content {
  max-width: 672px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.modal-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.modal-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
}
.modal-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: none;
  border: none;
  transition: color var(--transition), background var(--transition);
}
.modal-close:hover {
  color: var(--text);
  background: var(--bg-alt);
}

.modal-body { padding: 24px; }
.modal-section { margin-bottom: 20px; }
.modal-section:last-child { margin-bottom: 0; }
.modal-section h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 8px;
}
.modal-section p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  white-space: pre-line;
}

/* ─── Scroll Reveal ─── */
.reveal-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Availability Indicator ─── */
.availability-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.availability-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  animation: availability-pulse 2s ease-in-out infinite;
}

/* ─── Custom Scrollbar (subtle, strict) ─── */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 5px;
  border: 2px solid var(--bg-alt);
}
::-webkit-scrollbar-thumb:hover { background: var(--text-subtle); }

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