/* ── DESIGN TOKENS & SYSTEM ── */
:root {
  --font-display: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --bg: #ffffff;
  --bg-2: #f8fafc;
  --surface: rgba(15, 23, 42, 0.025);
  --surface-2: rgba(15, 23, 42, 0.055);
  --line: rgba(15, 23, 42, 0.09);
  --line-strong: rgba(15, 23, 42, 0.16);

  --ink: #0f172a;
  --text: #334155;
  --muted: #64748b;

  --accent: #4f46e5;
  --accent-bright: #4338ca;
  --accent-soft: rgba(79, 70, 229, 0.09);
  --cyan: #0891b2;
  --good: #059669;
  --good-soft: rgba(5, 150, 105, 0.09);
  --warn: #b45309;
  --leak: #e11d48;
  --leak-soft: rgba(225, 29, 72, 0.08);

  --radius: 18px;
  --radius-sm: 10px;
  --radius-full: 9999px;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.05), 0 20px 45px -20px rgba(15, 23, 42, 0.15);
  --shadow-lg: 0 25px 60px -15px rgba(79, 70, 229, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.9);
  --glow: 0 0 0 1px rgba(79, 70, 229, 0.18), 0 16px 40px -14px rgba(79, 70, 229, 0.45);
  --max: 1180px;

  /* fluid type scale */
  --fs-micro: 0.6875rem;
  --fs-caption: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-body: clamp(1rem, 0.965rem + 0.18vw, 1.0625rem);
  --fs-lead: clamp(1.0625rem, 1rem + 0.35vw, 1.2rem);
  --fs-h4: clamp(1.1rem, 1rem + 0.3vw, 1.25rem);
  --fs-h3: clamp(1.25rem, 1.12rem + 0.5vw, 1.5rem);
  --fs-h2: clamp(1.85rem, 1.4rem + 2vw, 2.75rem);
  --fs-h1: clamp(2.35rem, 1.55rem + 3.8vw, 4rem);

  --lh-tight: 1.1;
  --lh-snug: 1.3;
  --lh-body: 1.68;

  /* spacing */
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1.125rem;
  --space-4: 1.75rem;
  --space-5: 2.5rem;
  --space-section: clamp(4.5rem, 8vw, 7.5rem);
  --measure: 64ch;
}

/* ── BASE RESETS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: -0.008em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: var(--lh-tight);
  letter-spacing: -0.028em;
  font-weight: 700;
}
h1 { font-size: var(--fs-h1); letter-spacing: -0.035em; font-weight: 800; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); }
h4 { font-size: var(--fs-h4); line-height: var(--lh-snug); }
p { max-width: var(--measure); }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ── AMBIENT AURORA & GRID BACKGROUND ── */
.aurora {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden;
}
.aurora span {
  position: absolute; border-radius: 50%; filter: blur(95px); opacity: 0.7;
  animation: drift 20s ease-in-out infinite;
}
.aurora span:nth-child(1) {
  width: 48rem; height: 48rem; top: -18rem; right: -12rem;
  background: radial-gradient(circle, rgba(79,70,229,0.18), transparent 65%);
}
.aurora span:nth-child(2) {
  width: 36rem; height: 36rem; top: 38%; left: -14rem;
  background: radial-gradient(circle, rgba(8,145,178,0.13), transparent 65%);
  animation-delay: -6s;
}
.aurora span:nth-child(3) {
  width: 42rem; height: 42rem; bottom: -16rem; right: 8%;
  background: radial-gradient(circle, rgba(5,150,105,0.11), transparent 65%);
  animation-delay: -12s;
}
@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-3.5rem, 2.5rem, 0) scale(1.12); }
}
.grid-bg {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 25%, transparent 75%);
  opacity: 0.85;
}

/* ── LAYOUT UTILITIES ── */
.container {
  width: 100%; max-width: var(--max); margin-inline: auto;
  padding-inline: clamp(1.25rem, 3.5vw, 2.25rem);
}
section { position: relative; padding-block: var(--space-section); }
.section-light { background: transparent; }
.section-tint { background: var(--bg-2); border-block: 1px solid var(--line); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono); font-size: var(--fs-micro); font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-bright);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: ''; width: 1.6rem; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-bright));
}
.gradient-text {
  background: linear-gradient(110deg, var(--accent-bright), var(--cyan) 55%, var(--good));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ── BUTTONS ── */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  border: 1px solid transparent; border-radius: var(--radius-full); cursor: pointer;
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.25s ease, border-color 0.25s ease;
  overflow: hidden; text-align: center;
}
.btn-md { padding: 0.65rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 0.9rem 1.75rem; font-size: 0.98rem; }
.btn-xl { padding: 1.05rem 2.25rem; font-size: 1.05rem; }
.btn-accent {
  background: linear-gradient(120deg, var(--accent), #4f46e5 55%, #4338ca);
  color: #ffffff; box-shadow: var(--glow);
}
.btn-accent::after {
  content: ''; position: absolute; inset: 0; transform: translateX(-120%);
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
}
.btn-accent:hover::after { animation: sheen 0.9s ease; }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(79,70,229,0.3), 0 20px 45px -12px rgba(79,70,229,0.55); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.85); border-color: var(--line-strong); color: var(--ink);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: #ffffff; border-color: var(--accent); color: var(--accent-bright); transform: translateY(-2px); }
@keyframes sheen { to { transform: translateX(120%); } }

/* ── CARDS & PILLS ── */
.card {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,0.95), rgba(248,250,252,0.9));
  backdrop-filter: blur(12px); box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1), border-color 0.3s, box-shadow 0.3s;
}
.card-pad { padding: clamp(1.4rem, 2.5vw, 2rem); }
.card-hover:hover {
  transform: translateY(-5px); border-color: rgba(79,70,229,0.38);
  box-shadow: 0 22px 50px -20px rgba(79,70,229,0.22);
}
.pill {
  display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.35rem 0.85rem; border-radius: var(--radius-full);
  border: 1px solid var(--line-strong); background: var(--surface);
  font-family: var(--font-mono); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
}
.pill.tone-accent { background: var(--accent-soft); border-color: rgba(79,70,229,0.25); color: var(--accent-bright); }
.pill.tone-good { background: var(--good-soft); border-color: rgba(5,150,105,0.25); color: var(--good); }
.pill.tone-warn { background: rgba(180,83,9,0.08); border-color: rgba(180,83,9,0.25); color: var(--warn); }
.pill.tone-leak { background: var(--leak-soft); border-color: rgba(225,29,72,0.25); color: var(--leak); }

.num-chip {
  display: inline-grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 12px;
  font-family: var(--font-mono); font-size: 0.82rem; font-weight: 700;
  background: var(--accent-soft); color: var(--accent-bright); border: 1px solid rgba(79,70,229,0.28);
}

/* ── HEADER NAVIGATION ── */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav-flex {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; height: 4.5rem;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.brand-logo:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}
.brand-logo-img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
@media (max-width: 600px) {
  .brand-logo-img {
    height: 38px;
    max-width: 120px;
  }
}
.nav-links { display: none; gap: 0.35rem; align-items: center; }
@media (min-width: 920px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex !important; }
}
.nav-link {
  padding: 0.45rem 0.85rem; border-radius: var(--radius-full);
  font-size: 0.9rem; font-weight: 500; color: var(--text);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--ink); background: var(--surface-2); }
.nav-cta { display: none; }
.mobile-toggle {
  display: grid; place-items: center; width: 2.65rem; height: 2.65rem; border-radius: 10px;
  border: 1px solid var(--line); background: var(--surface); cursor: pointer; color: var(--ink);
}
@media (min-width: 920px) { .mobile-toggle { display: none; } }
.mobile-drawer {
  display: none; padding-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.mobile-drawer.open { display: block; animation: fadeDown 0.25s ease both; }
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; padding-top: 0.5rem; }
.mobile-nav-list .nav-link { display: block; padding: 0.75rem 1rem; border-radius: 8px; }

/* ── HERO SECTION ── */
.hero {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}
.hero-grid {
  display: grid; gap: 3.5rem; align-items: start;
}
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1.15fr 0.95fr; gap: 3.5rem; }
}
.hero .lede {
  margin-top: 1.25rem; font-size: var(--fs-lead); color: var(--text);
  line-height: 1.62; max-width: 50ch;
}
.guarantee-box {
  margin-top: 1.65rem; padding: 1.15rem 1.35rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(79,70,229,0.06), rgba(8,145,178,0.04));
  border: 1px solid rgba(79,70,229,0.22);
  border-left: 4px solid var(--accent);
  font-size: 0.9375rem; color: var(--ink); line-height: 1.58;
  display: flex; gap: 0.85rem; align-items: flex-start;
}
.guarantee-icon {
  color: var(--accent-bright); flex-shrink: 0; margin-top: 0.15rem;
}
.hero-actions {
  margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center;
}
.micro-trust {
  margin-top: 1.35rem; font-size: 0.835rem; color: var(--muted);
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; line-height: 1.5;
}
.micro-trust-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--good);
}

/* ── HERO INTEGRATED BOOKING CARD ── */
.booking-card {
  background: linear-gradient(155deg, rgba(255,255,255,0.98), rgba(248,250,252,0.94));
  border: 1px solid rgba(79,70,229,0.22);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: clamp(1.4rem, 3vw, 2.1rem);
  position: relative;
}
.booking-card::before {
  content: ''; position: absolute; inset: -1px; border-radius: 23px;
  background: linear-gradient(135deg, rgba(79,70,229,0.4), rgba(8,145,178,0.1), transparent 60%);
  z-index: -1; pointer-events: none;
}
.booking-card-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
  color: var(--accent-bright); background: var(--accent-soft);
  padding: 0.25rem 0.65rem; border-radius: var(--radius-full); margin-bottom: 0.65rem;
  border: 1px solid rgba(79,70,229,0.2);
}
.booking-card h3 { font-size: 1.35rem; margin-bottom: 0.35rem; }
.booking-card .sub { font-size: 0.86rem; color: var(--muted); margin-bottom: 1.35rem; }
.form-group { margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
label {
  font-size: 0.8rem; font-weight: 600; color: var(--ink); display: block; margin-bottom: 0.4rem;
}
input[type=text], input[type=tel], select {
  width: 100%; padding: 0.72rem 0.95rem;
  background: #ffffff; border: 1px solid var(--line-strong);
  color: var(--ink); font-size: 0.92rem; border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}
input[type=text]:focus, input[type=tel]:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
  background: #ffffff;
}
.booking-card .btn { width: 100%; margin-top: 0.6rem; padding-block: 0.95rem; }
.form-note {
  font-size: 0.76rem; color: var(--muted); margin-top: 0.85rem; text-align: center; line-height: 1.45;
}

/* ── TRUST BAR / METRICS STRIP ── */
.trustbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(248,250,252,0.9));
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: 1fr; } }

.stat-card {
  background: #ffffff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1.35rem 1.25rem; text-align: center; box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.stat-card:hover {
  transform: translateY(-3px); border-color: rgba(79,70,229,0.3);
}
.stat-num {
  font-family: var(--font-display); font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 800; line-height: 1; letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--accent-bright), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  margin-top: 0.5rem; line-height: 1.45;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}
@media (max-width: 768px) {
  .logo-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}
.client-badge {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  height: 72px;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
}
.client-badge:hover {
  background: #ffffff;
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}
.client-logo-img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.9;
}
.client-badge:hover .client-logo-img {
  transform: scale(1.04);
  opacity: 1;
}

/* ── PROBLEM SECTION ── */
.problem-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: start;
}
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; gap: 2rem; } }
.pain-cards {
  display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.5rem;
}
.pain-item {
  background: #ffffff; border: 1px solid var(--line); border-left: 4px solid var(--leak);
  border-radius: 12px; padding: 1rem 1.25rem; display: flex; align-items: flex-start; gap: 0.85rem;
  box-shadow: 0 2px 6px rgba(15,23,42,0.03); transition: transform 0.2s ease;
}
.pain-item:hover { transform: translateX(4px); }
.pain-icon {
  color: var(--leak); flex-shrink: 0; margin-top: 0.15rem; font-weight: 800; font-size: 0.95rem;
}
.pain-text { font-size: 0.95rem; color: var(--ink); font-weight: 500; }
.problem-body {
  font-size: 1rem; color: var(--text); line-height: 1.7; background: var(--bg-2);
  border: 1px solid var(--line); border-radius: 14px; padding: 1.35rem 1.5rem; margin-top: 1.5rem;
}

/* ── POSITIONING SECTION ("Fashion-Only") ── */
.positioning-card {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border: 1px solid rgba(79,70,229,0.25);
  border-radius: 24px;
  padding: clamp(2rem, 4.5vw, 3.5rem);
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.positioning-card::before {
  content: ''; position: absolute; top: 0; right: 0; width: 24rem; height: 24rem;
  background: radial-gradient(circle, rgba(79,70,229,0.08), transparent 70%);
  pointer-events: none;
}
.positioning-body {
  font-size: clamp(1.05rem, 1.2vw, 1.18rem); color: var(--text);
  line-height: 1.75; margin-top: 1.5rem; max-width: 68ch;
}

/* ── CASE STUDIES SECTION ── */
.case-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem;
}
@media (max-width: 1040px) { .case-grid { grid-template-columns: 1fr; } }
.case-card {
  background: #ffffff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, box-shadow 0.3s;
  padding: clamp(1.4rem, 2.2vw, 1.85rem);
}
.case-card:hover {
  transform: translateY(-6px); border-color: rgba(79,70,229,0.4);
  box-shadow: 0 20px 40px -15px rgba(79,70,229,0.22);
}
.case-card-header {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-bottom: 1rem;
}
.case-title {
  font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; color: var(--ink); line-height: 1.32;
  margin-bottom: 0.85rem;
}
.case-block {
  margin-bottom: 1rem; font-size: 0.9rem; color: var(--text); line-height: 1.58;
}
.case-block-label {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.35rem; display: block;
}
.case-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.45rem; margin-top: 0.35rem;
}
.case-list li {
  display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.88rem; color: var(--text); line-height: 1.5;
}
.case-check {
  color: var(--good); font-weight: 700; flex-shrink: 0; font-size: 0.85rem; margin-top: 0.1rem;
}
.case-stats-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-top: auto; padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}
.case-stat-box {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 0.65rem 0.5rem; text-align: center;
}
.case-stat-val {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; line-height: 1;
  background: linear-gradient(120deg, var(--accent-bright), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.case-stat-lbl {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 600; color: var(--muted);
  letter-spacing: 0.04em; margin-top: 0.35rem; line-height: 1.35;
}

/* ── PROCESS SECTION ── */
.process-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.5rem;
}
@media (max-width: 990px) { .process-timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-timeline { grid-template-columns: 1fr; } }
.process-step {
  background: #ffffff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem 1.4rem; position: relative; box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.process-step:hover {
  transform: translateY(-4px); border-color: var(--accent);
}
.process-num {
  font-family: var(--font-mono); font-size: 1.35rem; font-weight: 800;
  color: var(--accent-bright); margin-bottom: 0.85rem; display: inline-flex;
  align-items: center; gap: 0.4rem;
}
.process-step h3 { font-size: 1.12rem; margin-bottom: 0.5rem; color: var(--ink); }
.process-step p { font-size: 0.88rem; color: var(--muted); line-height: 1.58; }

/* ── FOUNDER SECTION ── */
.founder-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: center;
}
@media (max-width: 860px) { .founder-grid { grid-template-columns: 1fr; gap: 2rem; } }
.founder-photo-slot {
  position: relative;
  aspect-ratio: 4/4.8;
  max-width: 400px;
  width: 100%;
  margin-inline: auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
}
.founder-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.founder-photo-slot:hover .founder-photo-img {
  transform: scale(1.03);
}
.founder-badge-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.15);
}
.founder-badge-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.founder-badge-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}
.founder-body p {
  font-size: 1.02rem; color: var(--text); line-height: 1.72; margin-top: 1.15rem;
}

/* ── FIT CHECK SECTION ── */
.fit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem;
}
@media (max-width: 768px) { .fit-grid { grid-template-columns: 1fr; } }
.fit-card {
  background: #ffffff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow);
}
.fit-card.fit-yes { border-top: 4px solid var(--good); }
.fit-card.fit-no { border-top: 4px solid var(--leak); }
.fit-header {
  display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1.25rem;
}
.fit-header h3 { font-size: 1.25rem; }
.fit-card.fit-yes .fit-header h3 { color: var(--good); }
.fit-card.fit-no .fit-header h3 { color: var(--leak); }
.fit-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.fit-list li {
  display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; color: var(--text); line-height: 1.55;
}
.fit-icon-yes {
  display: inline-grid; place-items: center; width: 1.35rem; height: 1.35rem; border-radius: 50%;
  background: var(--good-soft); color: var(--good); font-weight: 800; font-size: 0.75rem; flex-shrink: 0; margin-top: 0.15rem;
}
.fit-icon-no {
  display: inline-grid; place-items: center; width: 1.35rem; height: 1.35rem; border-radius: 50%;
  background: var(--leak-soft); color: var(--leak); font-weight: 800; font-size: 0.75rem; flex-shrink: 0; margin-top: 0.15rem;
}

/* ── TESTIMONIALS SECTION ── */
.testi-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem;
}
@media (max-width: 768px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: #ffffff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem); box-shadow: var(--shadow);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 1.25rem; position: relative;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, box-shadow 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.35);
  box-shadow: 0 16px 32px -10px rgba(79, 70, 229, 0.15);
}
.testi-card-top {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.testi-stars {
  color: #f59e0b; font-size: 1rem; letter-spacing: 0.12em; display: flex; gap: 0.15rem;
}
.testi-badge {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600;
  color: var(--accent-bright); background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.2); padding: 0.25rem 0.6rem;
  border-radius: 999px; letter-spacing: 0.03em;
}
.testi-text {
  font-size: 1.02rem; color: var(--ink); line-height: 1.65; font-weight: 500;
  margin: 0;
}
.testi-author {
  display: flex; align-items: center; gap: 0.85rem; padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: linear-gradient(135deg, rgba(79,70,229,0.12), rgba(6,182,212,0.18));
  color: var(--accent-bright); font-family: var(--font-display); font-weight: 700;
  font-size: 0.88rem; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(79, 70, 229, 0.25); flex-shrink: 0;
}
.testi-author-info {
  display: flex; flex-direction: column; gap: 0.15rem;
}
.testi-author-name {
  font-family: var(--font-display); font-size: 0.96rem; font-weight: 700; color: var(--ink); line-height: 1.2;
}
.testi-author-role {
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted); letter-spacing: 0.02em;
}

/* ── FAQ ACCORDION ── */
.faq-wrap { max-width: 820px; margin: 2.5rem auto 0; }
.faq-item {
  background: #ffffff; border: 1px solid var(--line); border-radius: 14px;
  margin-bottom: 0.85rem; overflow: hidden; box-shadow: 0 1px 3px rgba(15,23,42,0.04);
  transition: border-color 0.25s ease;
}
.faq-item:focus-within, .faq-item.open {
  border-color: rgba(79,70,229,0.35);
}
.faq-q {
  width: 100%; text-align: left; padding: 1.25rem 1.5rem; background: none; border: none;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer;
}
.faq-q .chev {
  width: 1.25rem; height: 1.25rem; transition: transform 0.3s ease; color: var(--accent-bright); flex-shrink: 0;
}
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding-inline: 1.5rem;
}
.faq-item.open .faq-a {
  max-height: 250px; padding-bottom: 1.25rem;
}
.faq-a p { font-size: 0.95rem; color: var(--text); line-height: 1.65; }

/* ── FINAL CTA SECTION ── */
.final-cta {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-2) 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
}
.final-cta h2 { font-size: var(--fs-h2); max-width: 24ch; margin-inline: auto; }
.final-cta .body {
  margin: 1.25rem auto 0; font-size: var(--fs-lead); color: var(--muted);
  line-height: 1.68; max-width: 58ch;
}

/* ── FOOTER ── */
footer {
  padding: 3rem 0 2rem; border-top: 1px solid var(--line);
  font-size: 0.88rem; color: var(--muted); background: var(--bg);
}
.footer-row {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.25rem;
}

/* ── STICKY MOBILE CTA ── */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(14px);
  padding: 0.85rem 1.25rem; border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.08);
}
.sticky-cta .btn { width: 100%; }
@media (max-width: 768px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .aurora span { animation: none !important; }
}
