/* ============================================================
   ERUDITE LIFE — SHARED DESIGN SYSTEM
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── TOKENS ── */
:root {
  --ink:        #070b14;
  --ink-2:      #0d1525;
  --ink-3:      #141d30;
  --teal:       #1ab5ab;
  --teal-dark:  #138f87;
  --teal-bright:#22d4c8;
  --teal-glow:  rgba(26,181,171,0.18);
  --teal-mid:   rgba(26,181,171,0.08);
  --teal-border:rgba(26,181,171,0.25);
  --gold:       #c8a84b;
  --gold-light: rgba(200,168,75,0.10);
  --white:      #ffffff;
  --off:        #e8edf5;
  --muted:      #a8b8cc;
  --dim:        #6b7a90;
  --glass:      rgba(255,255,255,0.04);
  --border:     rgba(255,255,255,0.07);
  --radius:     14px;
  --radius-lg:  20px;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── BASE ── */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--ink);
  color: var(--off);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Page fade-in / fade-out transitions */
body { opacity: 1; transition: opacity 0.28s ease; }
body.page-exit { opacity: 0; }

/* ── ATMOSPHERE ── */
.aurora {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none; overflow: hidden;
}
.aurora::before, .aurora::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: aurora-drift 20s ease-in-out infinite alternate;
}
.aurora::before {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,181,171,0.3), transparent 65%);
  top: -20%; left: -10%;
}
.aurora::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,90,180,0.2), transparent 65%);
  bottom: -15%; right: -5%;
  animation-delay: -10s;
}
@keyframes aurora-drift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(50px,35px) scale(1.07); }
  100% { transform: translate(-25px,60px) scale(0.95); }
}

.diamond-bg {
  position: absolute; inset: 0;
  opacity: 0.025;
  background-image:
    repeating-linear-gradient(45deg, var(--teal) 0, var(--teal) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, var(--teal) 0, var(--teal) 1px, transparent 0, transparent 50%);
  background-size: 40px 40px;
  pointer-events: none;
}

/* ── LAYOUT ── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 5%; }
section { position: relative; z-index: 2; }
.section-pad { padding: 100px 0; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, .font-serif { font-family: 'Playfair Display', Georgia, serif; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 22px; height: 1.5px;
  background: var(--teal);
}

.display {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.1;
  color: var(--white); letter-spacing: -0.02em;
}
.display em, .section-title em { font-style: italic; color: var(--teal); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.15;
  color: var(--white); letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.lead {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.75; font-weight: 400;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: all var(--transition); border: none;
  white-space: nowrap;
}
.btn-teal {
  background: var(--teal); color: #02100e;
}
.btn-teal:hover {
  background: var(--teal-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,181,171,0.35);
}
.btn-glass {
  background: var(--glass); color: var(--off);
  border: 1px solid var(--border); backdrop-filter: blur(12px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--teal-border); transform: translateY(-2px);
}
.btn-outline-teal {
  background: transparent; color: var(--teal);
  border: 1.5px solid var(--teal-border);
}
.btn-outline-teal:hover {
  background: var(--teal-mid);
  border-color: var(--teal);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-arrow::after { content: ' →'; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,11,20,0.88);
  backdrop-filter: blur(20px) saturate(160%);
  border-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 72px;
}
.nav-logo img {
  height: 42px; display: block;
  filter: drop-shadow(0 0 10px rgba(26,181,171,0.25));
}
.nav-links {
  display: flex; gap: 4px; list-style: none; align-items: center;
}
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.88rem; font-weight: 500;
  padding: 8px 14px; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { background: var(--glass); }
.nav-cta {
  background: var(--teal) !important; color: #02100e !important;
  padding: 9px 18px !important; border-radius: 7px;
}
.nav-cta:hover { background: var(--teal-bright) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--off); border-radius: 2px;
  transition: all 0.2s;
}

/* ── HERO (shared base) ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy .display { margin-bottom: 22px; }
.hero-copy .lead { max-width: 500px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.hero-stat strong {
  display: block;
  font-size: 1.55rem; font-weight: 700;
  color: var(--white); font-family: 'Playfair Display', serif;
}
.hero-stat span {
  font-size: 0.75rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.07em;
}

/* ── TRUST MARQUEE ── */
.marquee-bar {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0; overflow: hidden;
  background: rgba(26,181,171,0.04);
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee-scroll 32s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap; font-size: 0.78rem; font-weight: 600;
  color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase;
}
.marquee-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal); opacity: 0.7;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── GLASS CARD (hero form) ── */
.glass-card {
  background: linear-gradient(135deg, rgba(26,181,171,0.10), rgba(26,181,171,0.02));
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.38), inset 0 1px 0 rgba(26,181,171,0.12);
}
.glass-card.float-anim { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Form fields inside glass card */
.form-label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #c8d8ea; margin-bottom: 7px;
}
.form-input, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 11px 14px;
  color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 0.9rem; margin-bottom: 14px;
  outline: none; transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.form-input:focus, .form-select:focus {
  border-color: var(--teal);
  background: rgba(26,181,171,0.07);
}
.form-input::placeholder { color: rgba(255,255,255,0.38); }
.form-select option { background: var(--ink-2); color: var(--white); }
.form-fine { font-size: 0.7rem; color: rgba(255,255,255,0.45); text-align: center; margin-top: 10px; line-height: 1.5; }

/* ── STEP PROGRESS INDICATOR ── */
.step-progress {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 1.5rem;
}
.step-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); transition: background 0.25s, transform 0.25s;
  flex-shrink: 0;
}
.step-dot.active { background: var(--teal); transform: scale(1.3); }
.step-dot.done { background: rgba(26,181,171,0.4); }
.step-connector { flex: 1; height: 1.5px; background: var(--border); max-width: 32px; }
.step-label-txt {
  font-size: 0.65rem; color: var(--dim);
  text-transform: uppercase; letter-spacing: 0.09em;
  margin-left: 8px; white-space: nowrap;
}

/* Q-Cards (coverage type selectors) */
.q-section { margin-bottom: 1.25rem; }
.q-section-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #c8d8ea; margin-bottom: 0.5rem;
}
.q-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.q-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 12px;
  cursor: pointer; transition: all 0.18s;
}
.q-card:hover { border-color: var(--teal-border); background: var(--teal-mid); }
.q-card.q-selected {
  border-color: var(--teal);
  background: rgba(26,181,171,0.12);
}
.q-card-icon { font-size: 1.1rem; margin-bottom: 4px; }
.q-card-title { font-size: 0.82rem; font-weight: 700; color: var(--white); }
.q-card-sub { font-size: 0.72rem; color: var(--muted); line-height: 1.4; margin-top: 2px; }

/* Segmented toggles */
.seg-row { display: flex; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.seg-group { flex: 1; min-width: 0; }
.seg-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #c8d8ea; margin-bottom: 0.45rem; }
.seg-toggle { display: flex; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.seg-btn {
  flex: 1; padding: 8px 6px; border: none; background: none;
  color: var(--muted); font-size: 0.78rem; font-weight: 600;
  cursor: pointer; transition: all 0.18s; white-space: nowrap;
}
.seg-btn.active { background: var(--teal); color: #02100e; }
.seg-btn:not(.active):hover { background: var(--teal-mid); color: var(--white); }

/* Age wheel */
.age-wheel-wrap {
  position: relative; height: 140px;
  border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; background: rgba(255,255,255,0.03);
  cursor: ns-resize; user-select: none;
}
.age-wheel { height: 100%; overflow-y: scroll; scroll-snap-type: y mandatory; scrollbar-width: none; }
.age-wheel::-webkit-scrollbar { display: none; }
.age-wheel-item {
  height: 28px; display: flex; align-items: center; justify-content: center;
  scroll-snap-align: center; font-size: 0.88rem; color: var(--muted);
  transition: color 0.15s, font-size 0.15s;
}
.age-wheel-item.selected { color: var(--teal); font-size: 1.1rem; font-weight: 700; }
.age-wheel-selector {
  position: absolute; top: 50%; left: 8%; right: 8%; height: 28px;
  transform: translateY(-50%);
  border-top: 1px solid rgba(26,181,171,0.4);
  border-bottom: 1px solid rgba(26,181,171,0.4);
  pointer-events: none; z-index: 2;
}
.age-wheel-fade {
  position: absolute; left: 0; right: 0; height: 50px; pointer-events: none; z-index: 2;
}
.age-wheel-fade-top { top: 0; background: linear-gradient(to bottom, rgba(13,21,37,0.97) 0%, transparent 100%); }
.age-wheel-fade-bottom { bottom: 0; background: linear-gradient(to top, rgba(13,21,37,0.97) 0%, transparent 100%); }

/* Coverage slider */
.coverage-slider-wrap {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 1rem; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 10px; transition: border-color 0.2s;
}
.coverage-slider-wrap:focus-within { border-color: var(--teal); }
.coverage-slider-min, .coverage-slider-max { font-size: 0.7rem; color: var(--dim); flex-shrink: 0; }
.coverage-slider {
  -webkit-appearance: none; flex: 1; height: 3px; border-radius: 2px;
  background: linear-gradient(to right, var(--teal) 0%, var(--teal) var(--cpct,21%), rgba(255,255,255,0.12) var(--cpct,21%), rgba(255,255,255,0.12) 100%);
  outline: none; cursor: pointer; border: none; padding: 0;
}
.coverage-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px;
  border-radius: 50%; background: var(--teal);
  border: 2px solid var(--ink-2); box-shadow: 0 0 8px rgba(26,181,171,0.5);
  cursor: pointer; transition: transform 0.15s;
}
.coverage-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

/* Hobby icebreaker */
.hobby-section {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(26,181,171,0.15);
  border-radius: 12px; padding: 1rem; margin-bottom: 1.25rem;
}
.hobby-prompt { display: block; font-size: 0.78rem; color: var(--muted); text-align: center; margin-bottom: 0.5rem; font-style: italic; }
.hobby-input {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.7rem 1rem; font-size: 0.85rem; color: var(--off);
  font-family: inherit; outline: none; box-sizing: border-box; transition: border-color 0.2s;
}
.hobby-input::placeholder { color: var(--dim); }
.hobby-input:focus { border-color: var(--teal); }

/* OTP code input */
.otp-input {
  width: 100%; text-align: center; font-size: 1.6rem; letter-spacing: 0.5rem;
  color: var(--teal); background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 0.85rem 1rem; margin-bottom: 1rem;
  font-family: 'Playfair Display', serif; outline: none; transition: border-color 0.2s;
}
.otp-input:focus { border-color: var(--teal); }

/* ── BENTO GRID ── */
.bento { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.bento-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 26px;
  position: relative; overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: default;
}
.bento-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(26,181,171,0.09), transparent 60%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.bento-card:hover::after { opacity: 1; }
.bento-card:hover { transform: translateY(-4px); border-color: var(--teal-border); box-shadow: 0 16px 48px rgba(0,0,0,0.28); }
.bento-card.span-3 { grid-column: span 3; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-2 { grid-column: span 2; }
.bento-card.span-6 { grid-column: span 6; }
.bento-card.featured {
  background: linear-gradient(135deg, rgba(26,181,171,0.12), rgba(26,181,171,0.03));
  border-color: var(--teal-border);
}
.bento-card.featured::before {
  content: 'Most Popular'; position: absolute; top: 18px; right: 18px;
  background: var(--teal); color: #02100e;
  font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 3px 10px; border-radius: 20px;
}
.bento-card.tagline {
  background: linear-gradient(135deg, var(--gold-light), transparent);
  border-color: rgba(200,168,75,0.2);
  display: flex; flex-direction: column; justify-content: center;
}
.bento-card.tagline blockquote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.05rem; color: var(--white); line-height: 1.65;
}
.bento-card.tagline cite { display: block; margin-top: 12px; font-size: 0.78rem; color: var(--gold); font-style: normal; font-weight: 600; }
.bento-icon { font-size: 26px; margin-bottom: 16px; display: block; }
.bento-card h3 {
  font-size: 1.08rem; font-weight: 700; color: var(--white);
  margin-bottom: 8px; font-family: 'Playfair Display', serif;
}
.bento-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--teal);
  text-decoration: none; margin-top: 16px; transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }

/* ── PROCESS STEPS ── */
.process-step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 20px; position: relative; padding-bottom: 36px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step:not(:last-child)::before {
  content: ''; position: absolute;
  left: 26px; top: 54px; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--teal), transparent); opacity: 0.25;
}
.step-circle {
  width: 52px; height: 52px; min-width: 52px;
  background: var(--ink-3); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: var(--teal);
  font-family: 'Playfair Display', serif;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative; z-index: 1;
}
.process-step:hover .step-circle {
  background: var(--teal-mid); border-color: var(--teal-border);
  box-shadow: 0 0 24px var(--teal-glow);
}
.step-body { padding-top: 12px; }
.step-body h4 { font-family: 'Playfair Display', serif; font-size: 1.02rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.step-body p { font-size: 0.86rem; color: var(--muted); line-height: 1.7; }

/* ── DIFFERENTIATOR CARDS ── */
.diff-card {
  display: flex; gap: 18px; padding: 22px;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--glass);
  transition: border-color var(--transition), background var(--transition);
}
.diff-card:hover { border-color: var(--teal-border); background: var(--teal-mid); }
.diff-glyph {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--teal-glow); border: 1px solid var(--teal-border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.diff-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.diff-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

/* ── TESTIMONIAL CARDS ── */
.t-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 26px;
  transition: transform var(--transition), border-color var(--transition);
}
.t-card:hover { transform: translateY(-4px); border-color: var(--teal-border); }
.t-card.t-featured {
  background: linear-gradient(135deg, rgba(26,181,171,0.1), rgba(26,181,171,0.03));
  border-color: var(--teal-border);
}
.t-stars { color: var(--teal); font-size: 0.82rem; letter-spacing: 2px; margin-bottom: 14px; }
.t-card blockquote { font-size: 0.9rem; color: var(--off); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.t-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 18px; }
.t-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal-glow); border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.76rem; color: var(--teal);
}
.t-author strong { display: block; font-size: 0.84rem; font-weight: 700; color: var(--white); }
.t-author span { font-size: 0.75rem; color: var(--muted); }

/* ── QUOTE (pull-quote) ── */
.pull-quote {
  position: relative; padding: 46px 42px;
  background: linear-gradient(135deg, rgba(26,181,171,0.09), rgba(26,181,171,0.02));
  border: 1px solid var(--teal-border); border-radius: 22px;
}
.pull-quote::before {
  content: '"'; position: absolute; top: -24px; left: 22px;
  font-family: 'Playfair Display', serif; font-size: 13rem; line-height: 1;
  color: var(--teal); opacity: 0.07; pointer-events: none;
}
.pull-quote blockquote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.25rem; color: var(--white); line-height: 1.65;
  position: relative; z-index: 1; margin-bottom: 26px;
}
.quote-person { display: flex; align-items: center; gap: 14px; }
.quote-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid var(--teal); background: var(--teal-glow);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: var(--teal);
}
.quote-person strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--white); }
.quote-person span { font-size: 0.78rem; color: var(--muted); }

/* ── CTA BLOCK ── */
.cta-block {
  position: relative; padding: 80px 60px;
  background: linear-gradient(135deg, rgba(26,181,171,0.14), rgba(26,181,171,0.03));
  border: 1px solid var(--teal-border); border-radius: 26px;
  text-align: center; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute;
  top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,181,171,0.1), transparent 65%);
  pointer-events: none;
}
.cta-block .display { font-size: clamp(1.7rem,3.5vw,2.8rem); margin-bottom: 18px; }
.cta-block .lead { max-width: 520px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 18px; font-size: 0.78rem; color: var(--dim); }

/* Deco diamonds */
.deco-diamond { position: absolute; opacity: 0.06; pointer-events: none; }
.deco-diamond svg { width: 100%; height: 100%; }
.deco-d1 { width: 240px; height: 240px; top: -50px; left: -50px; }
.deco-d2 { width: 160px; height: 160px; bottom: -30px; right: -20px; }

/* ── BADGE FLOATS ── */
.badge-float {
  position: absolute; background: var(--ink-2);
  border: 1px solid var(--teal-border); border-radius: 10px;
  padding: 10px 14px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite reverse;
}
.badge-float.b1 { bottom: -22px; left: -36px; }
.badge-float.b2 { top: -18px; right: -18px; }
.badge-live { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px #22c55e; flex-shrink: 0; }
.badge-float span { font-size: 0.76rem; font-weight: 600; color: var(--off); white-space: nowrap; }

/* ── COMPARE TABLE ── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.compare-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.compare-card.compare-featured { border-color: var(--teal-border); background: linear-gradient(135deg, var(--teal-mid), transparent); }
.compare-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.compare-list li { font-size: 0.84rem; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
.compare-list li .check { color: var(--teal); flex-shrink: 0; }
.compare-list li .cross { color: #e05c5c; flex-shrink: 0; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-weight: 600; color: var(--white);
  font-size: 0.95rem; gap: 16px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--teal); }
.faq-toggle {
  width: 28px; height: 28px; min-width: 28px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--muted); transition: transform 0.3s, border-color 0.2s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); border-color: var(--teal); color: var(--teal); }
.faq-a { display: none; padding-bottom: 20px; }
.faq-a p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── MOBILE STICKY CTA ── */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: linear-gradient(135deg, var(--ink-2), var(--ink-3));
  border-top: 1px solid var(--teal-border);
  padding: 12px 16px; gap: 10px;
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
}
.mobile-cta-bar .btn { flex: 1; justify-content: center; font-size: 0.82rem; padding: 12px 10px; }

/* ── FOOTER ── */
footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
  background: rgba(0,0,0,0.15);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-brand img { height: 34px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.84rem; color: var(--muted); line-height: 1.75; max-width: 280px; }
.footer-col h5 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--off); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.84rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 0.74rem; color: var(--dim);
}

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 80px; right: 20px; z-index: 9998;
  background: var(--ink-2); border: 1px solid var(--teal-border);
  border-radius: 12px; padding: 14px 20px; min-width: 240px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  transform: translateX(120%); transition: transform 0.3s ease;
}
.toast.show { transform: translateX(0); }
.toast-title { font-weight: 700; font-size: 0.88rem; color: var(--white); margin-bottom: 4px; }
.toast-msg { font-size: 0.8rem; color: var(--muted); }

/* ── HERO 2-COL LAYOUT ── */
.hero-2col {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 60px; align-items: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
  .hero-2col { grid-template-columns: 1fr; }
  .hero-2col .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .bento-card.span-3, .bento-card.span-2, .bento-card.span-4 { grid-column: span 6; }
  .compare-grid { grid-template-columns: 1fr; }
  .nav-links li:not(:last-child) { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cta-block { padding: 48px 24px; }
  .hero-stats { gap: 16px; }
  .q-cards { grid-template-columns: 1fr; }
}

/* ── SVG ICON SYSTEM ── */
.ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1em; height: 1em; color: currentColor;
  flex-shrink: 0;
}
.ic svg { width: 100%; height: 100%; }
.ic-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; min-width: 44px;
  background: var(--teal-glow);
  border: 1px solid var(--teal-border);
  border-radius: 12px;
  color: var(--teal);
}
.ic-wrap svg { width: 22px; height: 22px; }
.ic-wrap-sm {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; min-width: 36px;
  background: var(--teal-glow);
  border: 1px solid var(--teal-border);
  border-radius: 10px;
  color: var(--teal);
}
.ic-wrap-sm svg { width: 18px; height: 18px; }
/* Bento icon — large display */
.bento-icon-svg {
  width: 48px; height: 48px;
  background: var(--teal-glow);
  border: 1px solid var(--teal-border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); margin-bottom: 18px;
}
.bento-icon-svg svg { width: 26px; height: 26px; }
/* Diff glyph override */
.diff-glyph-svg {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--teal-glow);
  border: 1px solid var(--teal-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.diff-glyph-svg svg { width: 22px; height: 22px; }
/* Glass card feature icon */
.feat-icon {
  width: 52px; height: 52px;
  background: var(--teal-glow);
  border: 1px solid var(--teal-border);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); margin: 0 auto 16px;
}
.feat-icon svg { width: 28px; height: 28px; }

/* ── COMPARE GRID ── */
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.compare-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
}
.compare-card.compare-featured {
  background: linear-gradient(135deg, rgba(26,181,171,0.1), rgba(26,181,171,0.03));
  border-color: var(--teal-border);
}
.compare-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); margin-bottom: 18px; }
.compare-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.compare-list li { display: flex; gap: 10px; font-size: 0.84rem; color: var(--muted); line-height: 1.5; }
.check { color: var(--teal); flex-shrink: 0; font-weight: 700; }
.cross { color: #e05252; flex-shrink: 0; font-weight: 700; }

/* ── PROCESS MINI (for product pages) ── */
.process-mini {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  transition: border-color var(--transition);
}
.process-mini:hover { border-color: var(--teal-border); }
.process-mini h4 { font-size: 0.95rem; color: var(--white); font-weight: 700; }
.process-mini p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

/* ── SEG ROW ── */
.seg-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.seg-group { flex: 1; min-width: 140px; }
.seg-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dim); margin-bottom: 6px; }

/* ── BADGE FLOATS (hero) ── */
.badge-float {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: rgba(7,11,20,0.85); border: 1px solid var(--border);
  border-radius: 40px; padding: 8px 14px; font-size: 0.76rem; color: var(--muted);
  backdrop-filter: blur(12px); white-space: nowrap;
}
.b1 { bottom: 20px; left: -20px; }
.b2 { top: 20px; right: -20px; }
.badge-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 8px var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
