/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

:root {
  --ink: #0B1A2E;
  --ink-soft: #3A4A63;
  --ink-dim: #6B7A92;
  --bg: #FAFAF7;
  --bg-warm: #F4F1EA;
  --white: #FFFFFF;
  --accent: #4F76B4;
  --accent-bright: #4f76b4ab;
  --accent-soft: #D1FAE5;
  --accent-glow: #4f76b431;
  --gold: #C9A961;
  --border: #E6E1D6;
  --border-soft: #EFEBE2;
  --shadow-sm: 0 1px 2px rgba(11, 26, 46, 0.04), 0 1px 3px rgba(11, 26, 46, 0.06);
  --shadow-md: 0 4px 12px rgba(11, 26, 46, 0.06), 0 2px 4px rgba(11, 26, 46, 0.04);
  --shadow-lg: 0 20px 40px -12px rgba(11, 26, 46, 0.12), 0 8px 16px -8px rgba(11, 26, 46, 0.08);
  --shadow-xl: 0 40px 80px -20px rgba(11, 26, 46, 0.18), 0 16px 32px -12px rgba(11, 26, 46, 0.10);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --serif: 'Fraunces', Georgia, serif;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); line-height: 1.05; font-weight: 400; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); line-height: 1.1; font-weight: 400; }
h3 { font-size: 1.35rem; line-height: 1.3; font-weight: 500; }
p { color: var(--ink-soft); }
em { font-style: italic; color: var(--accent); font-family: var(--serif); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 10px 20px;
  font-size: 0.88rem;
}
.btn-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-link {
  background: transparent;
  color: var(--ink-soft);
  padding: 10px 0;
  font-size: 0.9rem;
}
.btn-link:hover { color: var(--accent); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-xl { padding: 20px 40px; font-size: 1.05rem; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent-bright), var(--accent));
  box-shadow: 0 0 0 3px var(--accent-glow);
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
@media (max-width: 820px) { .nav-links { display: none; } }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 100px 0 120px;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 50% 10%, var(--accent-glow), transparent 70%),
    radial-gradient(ellipse 600px 300px at 20% 80%, rgba(201, 169, 97, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.pulse {
  width: 8px; height: 8px;
  background: var(--accent-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

.hero-title { margin-bottom: 24px; max-width: 900px; margin-left: auto; margin-right: auto; }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--ink-soft);
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-cta-row {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
  align-items: center;
}

/* Founders image */
.founders-image {
  max-width: 400px;
  margin: 50px auto 0px;
  position: relative;
}
.founders-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(11, 26, 46, 0.12));
}
@media (max-width: 560px) {
  .founders-image { max-width: 340px; margin-bottom: 0px; }
}

/* Infinite marquee */
.marquee {
  margin-top: 64px;
  margin-bottom: -60px;
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee-scroll 40s linear infinite;
}
.marquee-track img {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
  opacity: 0.9;
  padding-right: 48px;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .marquee-track img { height: 44px; padding-right: 32px; }
  .marquee { margin-top: 48px; }
}

.trust-bar {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.trust-item { text-align: center; padding: 0 16px; }
.trust-num {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.trust-label {
  font-size: 0.82rem;
  color: var(--ink-dim);
  margin-top: 4px;
}
.trust-divider {
  width: 1px;
  background: var(--border);
}
@media (max-width: 720px) {
  .trust-divider { display: none; }
  .trust-bar { flex-direction: column; gap: 16px; padding: 20px; }
}

/* ============ SECTION HEADERS ============ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-eyebrow.dim { color: var(--ink-dim); }
.section-title { margin-bottom: 20px; }
.section-sub { font-size: 1.08rem; color: var(--ink-soft); }

/* ============ CALCULATOR ============ */
.calc-section { padding: 100px 0; background: var(--white); position: relative; }
.calc-card {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--white) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  max-width: 1040px;
  margin: 0 auto;
}

.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 760px) {
  .calc-inputs { grid-template-columns: 1fr; gap: 32px; }
  .calc-card { padding: 28px; }
}
.input-group { display: flex; flex-direction: column; }
.input-label-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.input-group label {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  min-width: 0;
}
.input-value {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  min-width: 120px;
  text-align: right;
  flex-shrink: 0;
}
.input-hint {
  font-size: 0.8rem;
  color: var(--ink-dim);
  margin-top: 10px;
  font-style: italic;
}

/* Slider custom */
.calc-hint-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 10px 18px;
  background: var(--accent-glow);
  border: 1px dashed var(--accent-bright);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--accent);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  animation: hintBounce 2.4s ease-in-out infinite;
}
.calc-hint-icon {
  font-size: 1rem;
  animation: hintPoint 1.6s ease-in-out infinite;
}
@keyframes hintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes hintPoint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.input-icon {
  display: inline-block;
  margin-right: 4px;
  font-size: 1rem;
}

.slider-wrap {
  position: relative;
  padding-top: 38px;
}
.slider-bubble {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  padding: 5px 12px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 6px 16px rgba(11, 26, 46, 0.25);
  transition: left 0.12s ease, transform 0.12s ease;
  z-index: 2;
  font-variant-numeric: tabular-nums;
  min-width: 86px;
  text-align: center;
}
.slider-bubble::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--ink);
}
.slider-wrap:hover .slider-bubble,
.slider-wrap:focus-within .slider-bubble {
  transform: translateX(-50%) scale(1.05);
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  background: var(--border);
  border-radius: 999px;
  outline: none;
  transition: background 0.2s;
  cursor: pointer;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 32px; height: 32px;
  background: radial-gradient(circle at 30% 30%, var(--white) 0%, #f4f1ea 100%);
  border: 4px solid var(--accent);
  border-radius: 50%;
  cursor: grab;
  box-shadow:
    0 0 0 6px var(--accent-glow),
    0 6px 16px rgba(79, 118, 180, 0.35);
  transition: transform 0.15s, box-shadow 0.2s;
}
.slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow:
    0 0 0 10px var(--accent-glow),
    0 8px 22px rgba(79, 118, 180, 0.45);
}
.slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.25);
}
.slider::-moz-range-thumb {
  width: 32px; height: 32px;
  background: radial-gradient(circle at 30% 30%, var(--white) 0%, #f4f1ea 100%);
  border: 4px solid var(--accent);
  border-radius: 50%;
  cursor: grab;
  box-shadow:
    0 0 0 6px var(--accent-glow),
    0 6px 16px rgba(79, 118, 180, 0.35);
}

.slider-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--ink-dim);
  position: relative;
}
.slider-scale span {
  position: relative;
  padding-top: 8px;
}
.slider-scale span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
}

.calc-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 8px 0 24px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.calc-arrow .arrow-line {
  flex: 1;
  height: 1px;
  max-width: 140px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
}

/* Results */
.calc-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .calc-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.result-card {
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 0;
  overflow: hidden;
}
.result-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.result-primary {
  background: linear-gradient(135deg, var(--ink) 0%, #1a2d4a 100%);
  border: none;
}
.result-primary .result-label,
.result-primary .result-foot { color: rgba(255, 255, 255, 0.65); }
.result-primary .result-value { color: var(--white); }
.result-roi {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  border: none;
}
.result-roi .result-label,
.result-roi .result-foot { color: rgba(255, 255, 255, 0.8); }
.result-roi .result-value { color: var(--white); }

.result-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-dim);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.result-value {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-height: 1.1em;
  will-change: transform, opacity;
}
.result-foot {
  font-size: 0.75rem;
  color: var(--ink-dim);
}

.calc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.calc-foot strong { color: var(--ink); }

/* ============ SYSTEM / STEPS ============ */
.system-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-bright);
}
.step-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.92rem; }

.system-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  flex-wrap: wrap;
}
.system-cta span { color: var(--ink-soft); font-size: 0.95rem; }

/* ============ FRICTION ============ */
.friction-section { padding: 120px 0; background: var(--white); }
.friction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .friction-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .friction-grid { grid-template-columns: 1fr; } }

.friction-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: transform 0.3s, box-shadow 0.3s;
}
.friction-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.friction-positive { background: linear-gradient(135deg, #F0FDF4 0%, #FAFAF7 100%); border-color: var(--accent-soft); }

.friction-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
  background: #FEE2E2;
  color: #B91C1C;
}
.friction-positive .friction-icon { background: var(--accent-soft); color: var(--accent); }
.friction-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.friction-card p { font-size: 0.92rem; }

/* ============ EXPECTATIONS / FUNNEL ============ */
.expectations-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}
.funnel {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
@media (max-width: 640px) { .funnel { padding: 24px; } }

.funnel-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border);
}
.funnel-row:last-child { border-bottom: none; }
@media (max-width: 640px) {
  .funnel-row { grid-template-columns: 1fr; gap: 8px; }
}

.funnel-label { }
.funnel-stage {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.funnel-desc { font-size: 0.82rem; color: var(--ink-dim); }
.funnel-bar {
  position: relative;
  height: 44px;
  background: var(--bg-warm);
  border-radius: 999px;
  overflow: hidden;
}
.funnel-bar::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--fill);
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-bright) 100%);
  border-radius: 999px;
  animation: fillBar 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  transform-origin: left;
  transform: scaleX(0);
}
@keyframes fillBar { to { transform: scaleX(1); } }
.funnel-metric {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
  z-index: 2;
}
.funnel-final .funnel-bar::before {
  background: linear-gradient(90deg, var(--ink) 0%, var(--accent) 100%);
}
.funnel-final .funnel-metric { color: var(--white); right: auto; left: 20px; }

.expectations-foot {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.expectations-foot strong { color: var(--ink); }

/* ============ PROOF ============ */
.proof-section { padding: 120px 0; background: var(--white); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 760px) { .proof-grid { grid-template-columns: 1fr; } }

.proof-video, .proof-testimonial, .proof-screenshot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.proof-video:hover, .proof-testimonial:hover, .proof-screenshot:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.proof-video {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #1a2d4a 0%, var(--ink) 100%);
}
.proof-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.proof-video-frame wistia-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.proof-video-frame wistia-player:not(:defined) {
  background: linear-gradient(135deg, #1a2d4a 0%, var(--ink) 100%);
  display: block;
  width: 100%;
  height: 100%;
}
.proof-video-meta {
  padding: 18px 20px;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.proof-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.proof-stat { font-size: 0.82rem; color: var(--accent-soft); }

.proof-testimonial {
  padding: 36px;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg) 100%);
  position: relative;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--accent);
  line-height: 0.8;
  opacity: 0.3;
  margin-bottom: 8px;
}
.proof-testimonial p {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 16px;
}
.proof-attrib { font-size: 0.85rem; color: var(--ink-dim); }
.proof-attrib strong { color: var(--ink); }

.proof-screenshot {
  background: var(--ink);
  padding: 0;
}
.screenshot-header {
  background: #14243d;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.screenshot-header .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.screenshot-header .dot:nth-child(1) { background: #FF5F57; }
.screenshot-header .dot:nth-child(2) { background: #FEBC2E; }
.screenshot-header .dot:nth-child(3) { background: #28C840; }
.screenshot-title {
  margin-left: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}
.screenshot-body { padding: 16px; }
.notif {
  padding: 10px 12px;
  margin-bottom: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  border-left: 2px solid var(--accent-bright);
  animation: slideIn 0.5s ease forwards;
  opacity: 0;
}
.notif:nth-child(1) { animation-delay: 0.1s; }
.notif:nth-child(2) { animation-delay: 0.2s; }
.notif:nth-child(3) { animation-delay: 0.3s; }
.notif:nth-child(4) { animation-delay: 0.4s; }
.notif:nth-child(5) { animation-delay: 0.5s; }
.notif:nth-child(6) { animation-delay: 0.6s; }
.notif-highlight {
  background: var(--accent-glow);
  color: var(--accent-bright);
  font-weight: 600;
  text-align: center;
  border-left-color: var(--accent-bright);
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

.proof-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-dim);
  font-style: italic;
  max-width: 600px;
  margin: 24px auto 0;
}

/* ============ FIT ============ */
.fit-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 820px) { .fit-grid { grid-template-columns: 1fr; gap: 32px; } }

.fit-col {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.fit-yes { border-top: 4px solid var(--accent); }
.fit-no {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-warm) 100%);
  border-top: 4px solid var(--ink-dim);
}
.fit-title { margin-bottom: 24px; font-size: 1.6rem; }
.fit-list { list-style: none; }
.fit-list li {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border-soft);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.fit-list li:last-child { border-bottom: none; }
.fit-list strong { color: var(--ink); font-weight: 600; }
.check, .x {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 2px;
}
.check { background: var(--accent-soft); color: var(--accent); }
.x { background: #F3F4F6; color: var(--ink-dim); }

/* ============ CTA ============ */
.cta-section { padding: 120px 0; background: var(--white); }
.cta-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 48px;
  background: linear-gradient(135deg, var(--ink) 0%, #14243d 100%);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 20%, var(--accent-glow), transparent 60%),
    radial-gradient(ellipse 600px 400px at 80% 80%, rgba(201, 169, 97, 0.1), transparent 60%);
  pointer-events: none;
}
.cta-card > * { position: relative; z-index: 1; }

.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--accent-soft);
  margin-bottom: 28px;
}
.cta-title { color: var(--white); margin-bottom: 20px; }
.cta-title em { color: var(--accent-bright); }
.cta-sub {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.02rem;
}
.cta-card .btn-primary {
  background: var(--accent-bright);
  color: var(--ink);
}
.cta-card .btn-primary:hover { background: var(--white); }
.cta-foot {
  margin-top: 28px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-foot-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 560px) { .cta-card { padding: 56px 24px; } }

/* Booking steps (1-2-3) */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 36px auto 28px;
  max-width: 680px;
}
.booking-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.booking-step:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-bright);
  transform: translateY(-2px);
}
.booking-step-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-bright);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
}
.booking-step-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  line-height: 1.3;
}
.booking-step-text span {
  display: block;
  font-weight: 400;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.booking-step-sep {
  color: rgba(255,255,255,0.3);
  font-size: 1.2rem;
  font-weight: 300;
}
@media (max-width: 640px) {
  .booking-steps { gap: 8px; }
  .booking-step-sep { display: none; }
  .booking-step { flex: 1 1 100%; justify-content: flex-start; }
}

/* Booking pointer (arrow + pulse) */
.booking-pointer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  margin: 4px auto 20px;
  background: var(--accent-bright);
  color: var(--ink);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(79, 118, 180, 0.4);
  position: relative;
}
.booking-pointer-pulse {
  width: 9px; height: 9px;
  background: var(--ink);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.booking-pointer-arrow {
  display: inline-block;
  font-size: 1.1rem;
  animation: arrowDown 1.6s ease-in-out infinite;
}
@keyframes arrowDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Booking iframe wrapper */
.booking-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.08);
  overflow: hidden;
  margin: 0 auto;
  max-width: 760px;
  position: relative;
  scroll-margin-top: 100px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}
.booking-wrap.booking-highlight {
  transform: translateY(-4px);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.5),
    0 0 0 3px var(--accent-bright),
    0 0 0 8px var(--accent-glow);
}
.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.booking-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}
.booking-header-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  animation: pulse 2s infinite;
}
.booking-header-right {
  font-size: 0.78rem;
  color: var(--ink-dim);
  font-weight: 500;
}
.booking-frame {
  position: relative;
  min-height: 600px;
  background: var(--white);
}
.booking-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  font-size: 0.9rem;
  z-index: 0;
}
.booking-frame iframe {
  position: relative;
  width: 100%;
  min-height: 600px;
  border: none;
  display: block;
  z-index: 1;
  background: var(--white);
}
@media (max-width: 640px) {
  .booking-header-right { display: none; }
  .booking-frame, .booking-frame iframe { min-height: 560px; }
}

/* ============ FOOTER ============ */
.footer {
  padding: 48px 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-note {
  font-size: 0.85rem;
  color: var(--ink-dim);
  margin-top: 8px;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--ink-dim);
}

/* ============ CHECKOUT PAGE (start.html) ============ */
.checkout-page { background: var(--bg); }

.nav-minimal .nav-help {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}
.nav-help-label { color: var(--ink-dim); }
.nav-help-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.nav-help-link:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .nav-help-label { display: none; }
  .nav-help-link { font-size: 0.8rem; }
}

/* HERO */
.checkout-hero {
  position: relative;
  padding: 80px 0 60px;
  text-align: center;
  overflow: hidden;
}
.checkout-hero .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 50% 10%, var(--accent-glow), transparent 70%),
    radial-gradient(ellipse 600px 300px at 20% 80%, rgba(201, 169, 97, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.checkout-hero .container { position: relative; z-index: 1; }
.checkout-hero .hero-title {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.1;
}
.checkout-hero .hero-sub {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.checkout-hero .hero-sub strong { color: var(--ink); }

/* RECAP STATS */
.recap-section {
  padding: 40px 0 20px;
  background: var(--bg);
}
.recap-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
}
.recap-header .section-title {
  font-size: 1.6rem;
  margin-bottom: 0;
}
.recap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .recap-grid { grid-template-columns: 1fr; }
}
.recap-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.recap-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.recap-stat-primary {
  background: linear-gradient(135deg, var(--ink) 0%, #14243d 100%);
  border: none;
}
.recap-stat-primary .recap-stat-value { color: var(--white); }
.recap-stat-primary .recap-stat-label { color: var(--accent-bright); }
.recap-stat-primary .recap-stat-foot { color: rgba(255,255,255,0.5); }

.recap-stat-value {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.recap-stat-value span {
  font-size: 1.6rem;
  color: var(--ink-dim);
  font-weight: 400;
}
.recap-stat-primary .recap-stat-value span { color: rgba(255,255,255,0.55); }
.recap-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.recap-stat-foot {
  font-size: 0.78rem;
  color: var(--ink-dim);
}

/* PRICING */
.pricing-section {
  padding: 80px 0 60px;
  background: var(--bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 48px;
  align-items: stretch;
}
@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; }
}

.pricing-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-bright);
}
.pricing-card-popular {
  background: linear-gradient(180deg, #0f2040 0%, var(--ink) 100%);
  color: var(--white);
  border: 2px solid var(--accent-bright);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}
.pricing-card-popular:hover {
  transform: scale(1.03) translateY(-4px);
  border-color: var(--accent-bright);
}
@media (max-width: 960px) {
  .pricing-card-popular { transform: none; }
  .pricing-card-popular:hover { transform: translateY(-4px); }
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--accent-bright);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(79, 118, 180, 0.4);
  white-space: nowrap;
}
.pricing-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.pricing-card-popular .pricing-name { color: var(--white); }

.pricing-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
  min-height: 42px;
}
.pricing-card-popular .pricing-desc { color: rgba(255,255,255,0.7); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
  font-family: var(--serif);
  color: var(--ink);
}
.pricing-card-popular .pricing-price { color: var(--white); }
.pricing-currency {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink-dim);
  align-self: flex-start;
  margin-top: 6px;
}
.pricing-card-popular .pricing-currency { color: rgba(255,255,255,0.6); }
.pricing-amount {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-period {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-dim);
  margin-left: 4px;
}
.pricing-card-popular .pricing-period { color: rgba(255,255,255,0.6); }

.pricing-sub {
  font-size: 0.82rem;
  color: var(--ink-dim);
  margin-bottom: 28px;
  font-style: italic;
}
.pricing-card-popular .pricing-sub { color: rgba(255,255,255,0.5); }

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  padding: 0;
  flex: 1;
}
.pricing-features li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--border-soft);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features strong { color: var(--ink); font-weight: 600; }
.pricing-card-popular .pricing-features li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.1);
}
.pricing-card-popular .pricing-features strong { color: var(--white); }
.pricing-features .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 1px;
}
.pricing-card-popular .pricing-features .check {
  background: var(--accent-bright);
  color: var(--ink);
}

.pricing-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 1rem;
  margin-bottom: 12px;
}
.pricing-btn-popular {
  background: var(--accent-bright);
  color: var(--ink);
}
.pricing-btn-popular:hover {
  background: var(--white);
  color: var(--ink);
}
.pricing-card-popular .pricing-btn {
  background: var(--accent-bright);
  color: var(--ink);
}
.pricing-card-popular .pricing-btn:hover {
  background: var(--white);
}
.pricing-secure {
  text-align: center;
  font-size: 0.76rem;
  color: var(--ink-dim);
}
.pricing-card-popular .pricing-secure { color: rgba(255,255,255,0.55); }

/* PRICING TRUST BAR */
.pricing-trust {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 28px;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 280px;
}
.pricing-trust-item strong { color: var(--ink); font-weight: 600; }
.pricing-trust-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--accent-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
}
.pricing-trust-divider {
  width: 1px;
  background: var(--border);
}
@media (max-width: 820px) {
  .pricing-trust-divider { display: none; }
  .pricing-trust { flex-direction: column; gap: 16px; }
}

/* INCLUDED */
.included-section {
  padding: 80px 0;
  background: var(--white);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) { .included-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .included-grid { grid-template-columns: 1fr; } }
.included-item {
  padding: 28px 24px;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  transition: transform 0.3s, box-shadow 0.3s;
}
.included-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.included-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.included-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.included-item p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* TESTIMONIALS WALL */
.testimonials-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

.test-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}
.test-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.test-card-primary {
  background: linear-gradient(135deg, var(--ink) 0%, #14243d 100%);
  color: var(--white);
  border: none;
}
.test-card-primary .test-quote { color: rgba(255,255,255,0.9); }
.test-card-primary .test-attrib { color: rgba(255,255,255,0.6); }
.test-card-primary .test-attrib strong { color: var(--white); }
.test-card-primary .test-stat { color: var(--accent-bright); }
.test-card-primary .test-stat-label { color: rgba(255,255,255,0.7); }

.test-stat {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.test-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.test-quote {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 16px;
  flex: 1;
}
.test-card:not(.test-card-primary) .test-quote::before {
  content: '"';
  color: var(--accent);
  margin-right: 2px;
}
.test-attrib {
  font-size: 0.82rem;
  color: var(--ink-dim);
}
.test-attrib strong {
  color: var(--ink);
  font-weight: 600;
}

.test-disclaimer {
  text-align: center;
  font-size: 0.76rem;
  color: var(--ink-dim);
  font-style: italic;
  max-width: 640px;
  margin: 32px auto 0;
}

/* FAQ */
.faq-section {
  padding: 90px 0;
  background: var(--white);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: var(--accent-bright);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--accent); }
.faq-body {
  padding: 0 24px 20px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FINAL CTA */
.final-cta-section {
  padding: 80px 0;
  background: var(--bg);
}
.final-cta-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 32px;
  background: linear-gradient(135deg, var(--ink) 0%, #14243d 100%);
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.final-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 300px at 50% 20%, var(--accent-glow), transparent 60%);
  pointer-events: none;
}
.final-cta-card > * { position: relative; z-index: 1; }
.final-cta-title {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 12px;
}
.final-cta-sub {
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}
.final-cta-card .btn-primary {
  background: var(--accent-bright);
  color: var(--ink);
}
.final-cta-card .btn-primary:hover { background: var(--white); }
.final-cta-foot {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.final-cta-foot a {
  color: var(--accent-bright);
  text-decoration: none;
  font-weight: 500;
}
.final-cta-foot a:hover { text-decoration: underline; }

/* ============ REVEAL ON SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
