/* ─────────────────────────────────────────────────────────────────
   ZOLT — style.css
   Mobile-first, bold-modern aesthetic
   Font: Syne (display) + DM Sans (body)
───────────────────────────────────────────────────────────────── */

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --blue:        #3B5BDB;
  --blue-light:  #5C7CFA;
  --blue-dark:   #2F4AC0;
  --blue-dim:    rgba(59, 91, 219, 0.12);
  --blue-glow:   rgba(59, 91, 219, 0.35);
  --navy:        #0F172A;
  --navy-mid:    #1E293B;
  --navy-light:  #334155;
  --white:       #FFFFFF;
  --off-white:   #F8FAFF;
  --gray-100:    #F1F5F9;
  --gray-300:    #CBD5E1;
  --gray-500:    #64748B;
  --gray-700:    #334155;
  --text-dark:   #0F172A;
  --text-mid:    #334155;
  --text-light:  #64748B;

  --font-display: 'Manrope', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(15,23,42,0.06);
  --shadow-md:   0 8px 32px rgba(15,23,42,0.10);
  --shadow-lg:   0 24px 64px rgba(15,23,42,0.14);
  --shadow-blue: 0 8px 32px rgba(59,91,219,0.25);

  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── LAYOUT UTILITIES ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 768px)  { .container { padding-inline: 40px; } }
@media (min-width: 1200px) { .container { padding-inline: 24px; } }

.br-desktop { display: none; }
@media (min-width: 768px) { .br-desktop { display: block; } }

/* ── SECTION LABELS / HEADINGS ───────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-label--light {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-heading--light { color: var(--white); }

.section-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 560px;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition),
              border-color var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--sm  { font-size: 13px; padding: 9px 20px; }
.btn--lg  { font-size: 16px; padding: 16px 32px; }

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 12px 40px rgba(59,91,219,0.40);
}

.btn--ghost {
  background: transparent;
  color: var(--gray-300);
  border-color: var(--gray-300);
}
.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.3);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  background: var(--off-white);
  box-shadow: var(--shadow-lg);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--white);
}

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

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

.reveal--delay-1 { transition-delay: 0.10s; }
.reveal--delay-2 { transition-delay: 0.20s; }
.reveal--delay-3 { transition-delay: 0.30s; }
.reveal--delay-4 { transition-delay: 0.40s; }

[data-delay="0"] { transition-delay: 0.00s; }
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.40s; }
[data-delay="6"] { transition-delay: 0.48s; }
[data-delay="7"] { transition-delay: 0.56s; }

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition),
              backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(15,23,42,0.08), var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: 20px;
  max-width: 1120px;
  margin-inline: auto;
}

@media (min-width: 768px) { .nav__inner { padding-inline: 40px; } }

.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  transition: opacity var(--transition);
}
.nav__logo:hover { opacity: 0.8; }

.nav__links {
  display: none;
  gap: 32px;
}
@media (min-width: 768px) {
  .nav__links { display: flex; }
}

.nav__link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--blue-light);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }

/* Once scrolled onto white background — switch to dark */
.nav.scrolled .nav__link { color: var(--text-mid); }
.nav.scrolled .nav__link:hover { color: var(--blue); }
.nav.scrolled .nav__link::after { background: var(--blue); }

.nav__ctas {
  display: none;
  gap: 10px;
}
@media (min-width: 768px) {
  .nav__ctas { display: flex; }
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 768px) { .nav__hamburger { display: none; } }

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

/* Once scrolled — hamburger goes dark to match white nav */
.nav.scrolled .nav__hamburger span { background: var(--text-dark); }
.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1),
              padding var(--transition);
}
.nav__mobile.open {
  max-height: 400px;
  padding: 16px 20px 24px;
}
@media (min-width: 768px) { .nav__mobile { display: none; } }

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.nav__mobile-link:hover { color: var(--white); }

.nav__mobile .btn {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

/* Ghost button in mobile menu needs white border */
.nav__mobile .btn--ghost {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
}
.nav__mobile .btn--ghost:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--navy);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero__orb--1 {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(59,91,219,0.45) 0%, transparent 70%);
  animation: orbFloat1 8s ease-in-out infinite;
}

.hero__orb--2 {
  width: 400px; height: 400px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(92,124,250,0.30) 0%, transparent 70%);
  animation: orbFloat2 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(40px, 30px) scale(1.05); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-30px, -20px) scale(1.08); }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 100px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero__badge-dot {
  width: 7px; height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: 0.7; }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 820px;
}

.hero__headline-accent {
  color: var(--blue-light);
  position: relative;
  display: inline;
}

.hero__sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

.hero__stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 24px;
}

@media (min-width: 480px) {
  .hero__stat-row { flex-wrap: nowrap; gap: 0; }
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.hero__stat-divider {
  display: none;
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  margin-inline: 32px;
}
@media (min-width: 480px) { .hero__stat-divider { display: block; } }

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 11px;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollHint 2.5s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   PROBLEM
═══════════════════════════════════════════════════════════════ */
.problem {
  padding: 100px 0 80px;
  background: var(--white);
}

/* Chaos layout — scattered browser-tab style chips */
.problem__chaos {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  padding: 32px 28px;
  background: #FAFAFA;
  border: 1px solid #ECEEF2;
  border-radius: var(--radius-lg);
}

.problem__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid #E2E4EA;
  border-radius: 8px 8px 0 0;
  border-bottom: 2px solid #D1D5DB;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  box-shadow: 0 -2px 6px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  cursor: default;
  position: relative;
  transition: border-bottom-color var(--transition);
}

/* Each tab gets a unique accent colour on the bottom border — they look unrelated */
.problem__tab--1 { border-bottom-color: #94A3B8; }
.problem__tab--2 { border-bottom-color: #F59E0B; }
.problem__tab--3 { border-bottom-color: #10B981; }
.problem__tab--4 { border-bottom-color: #6366F1; }
.problem__tab--5 { border-bottom-color: #EF4444; }
.problem__tab--6 { border-bottom-color: #EC4899; }

.problem__tab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1D5DB;
  flex-shrink: 0;
}
.problem__tab--1 .problem__tab-dot { background: #94A3B8; }
.problem__tab--2 .problem__tab-dot { background: #F59E0B; }
.problem__tab--3 .problem__tab-dot { background: #10B981; }
.problem__tab--4 .problem__tab-dot { background: #6366F1; }
.problem__tab--5 .problem__tab-dot { background: #EF4444; }
.problem__tab--6 .problem__tab-dot { background: #EC4899; }

.problem__tab-icon { font-size: 15px; }

/* The label underneath the chaos — reads as a sigh */
.problem__chaos-label {
  width: 100%;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px dashed #E2E4EA;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-display);
  color: #EF4444;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.problem__conclusion {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.65;
}

.problem__conclusion-line {
  flex-shrink: 0;
  width: 3px;
  height: 56px;
  background: var(--blue);
  border-radius: 2px;
  margin-top: 4px;
}

.problem__conclusion p { font-weight: 300; }

/* ═══════════════════════════════════════════════════════════════
   ZOLT WAY
═══════════════════════════════════════════════════════════════ */
.zoltway {
  position: relative;
  padding: 100px 0;
  background: var(--navy);
  overflow: hidden;
}

.zoltway__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.zoltway__orb {
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(59,91,219,0.35) 0%, transparent 65%);
  filter: blur(60px);
  border-radius: 50%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.zoltway .container { position: relative; z-index: 2; }

.zoltway__body {
  font-size: clamp(16px, 2.2vw, 19px);
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 40px;
  font-weight: 300;
}

.zoltway__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.zoltway__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 10px 20px;
  border-radius: 100px;
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition);
  cursor: default;
}

.zoltway__pill::before {
  content: '✕';
  color: #F87171;
  font-size: 11px;
}

.zoltway__pill:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}

/* ── RESOLVED ITEMS (replaces pills) ────────────────────────── */
.zoltway__resolved {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.zoltway__resolved-item {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.zoltway__resolved-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.zoltway__resolved-item:nth-child(1) { transition-delay: 0.1s; }
.zoltway__resolved-item:nth-child(2) { transition-delay: 0.22s; }
.zoltway__resolved-item:nth-child(3) { transition-delay: 0.34s; }

.zoltway__resolved-check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.35);
  border-radius: 50%;
  font-size: 13px;
  color: #4ADE80;
  font-weight: 800;
}

.zoltway__resolved-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* The strikethrough part = the old problem, now crossed out */
.zoltway__resolved-text s {
  text-decoration: line-through;
  text-decoration-color: rgba(239,68,68,0.7);
  text-decoration-thickness: 2px;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
}

/* The resolution after the dash — bright and confident */
.zoltway__resolved-text em {
  font-style: normal;
  color: #ffffff;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════════════ */
.features {
  padding: 100px 0 80px;
  background: var(--off-white);
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

@media (min-width: 580px) {
  .features__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .features__grid { grid-template-columns: repeat(4, 1fr); }
}

.features__card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.features__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}

.features__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59,91,219,0.2);
}

.features__card:hover::after { opacity: 1; }

.features__card-icon {
  font-size: 28px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.features__card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.features__card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.features__footer {
  text-align: center;
  padding: 20px;
}

.features__footer span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════════ */
.howitworks {
  position: relative;
  padding: 100px 0;
  background: var(--white);
}

.howitworks__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 48px;
}

@media (min-width: 700px) {
  .howitworks__split {
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: center;
  }
}

.howitworks__col {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}

@media (max-width: 699px) {
  .howitworks__col { margin-bottom: 8px; }
}

.howitworks__col-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.howitworks__col-label--zolt { color: var(--blue); }

.howitworks__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.howitworks__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.hw-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.hw-check--you {
  background: var(--gray-300);
  color: var(--text-mid);
}

.hw-check--zolt {
  background: var(--blue);
  color: var(--white);
}

.howitworks__divider {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
}

@media (min-width: 700px) {
  .howitworks__divider { display: flex; }
}

.howitworks__divider-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gray-300), transparent);
}

.howitworks__divider-icon {
  font-size: 20px;
  background: var(--blue);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
  animation: pulse 2.5s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   STAGES — Start / Sell / Scale
═══════════════════════════════════════════════════════════════ */
.stages {
  padding: 100px 0;
  background: var(--off-white);
}

.stages__track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 700px) {
  .stages__track { grid-template-columns: repeat(3, 1fr); }
  .stages__line {
    position: absolute;
    top: 40px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--blue-dim), var(--blue), var(--blue-dim));
    z-index: 0;
  }
}

.stages__line { display: none; }
@media (min-width: 700px) { .stages__line { display: block; } }

.stages__card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
  cursor: default;
  overflow: hidden;
}

.stages__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stages__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59,91,219,0.2);
}
.stages__card:hover::before { transform: scaleX(1); }

.stages__num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.stages__card:hover .stages__num { color: var(--blue-dim); }

.stages__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.stages__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stages__body {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   WHO IT'S FOR
═══════════════════════════════════════════════════════════════ */
.who {
  padding: 100px 0;
  background: var(--white);
}

.who__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 48px;
}

@media (min-width: 580px) {
  .who__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .who__grid { grid-template-columns: repeat(3, 1fr); }
}

.who__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition), background var(--transition);
  cursor: default;
}

.who__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(59,91,219,0.2);
  background: var(--off-white);
}

.who__icon {
  font-size: 30px;
  line-height: 1;
}

.who__card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.who__card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   SOCIAL PROOF
═══════════════════════════════════════════════════════════════ */
.proof {
  padding: 80px 0;
  background: var(--gray-100);
  text-align: center;
}

.proof__heading {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 48px;
}

.proof__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.proof__logo-placeholder {
  width: 140px;
  height: 52px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-300);
  font-family: var(--font-display);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.proof__logo-placeholder:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════════════════════════
   CLOSING CTA
═══════════════════════════════════════════════════════════════ */
.cta {
  position: relative;
  padding: 120px 0;
  background: var(--navy);
  text-align: center;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta__orb--1 {
  position: absolute;
  width: 600px; height: 600px;
  top: -250px; left: -150px;
  background: radial-gradient(circle, rgba(59,91,219,0.40) 0%, transparent 70%);
  filter: blur(70px);
  border-radius: 50%;
  animation: orbFloat1 10s ease-in-out infinite;
}

.cta__orb--2 {
  position: absolute;
  width: 400px; height: 400px;
  bottom: -180px; right: -100px;
  background: radial-gradient(circle, rgba(92,124,250,0.35) 0%, transparent 70%);
  filter: blur(60px);
  border-radius: 50%;
  animation: orbFloat2 12s ease-in-out infinite;
}

.cta .container { position: relative; z-index: 2; }

.cta__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.cta__sub {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}

.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  padding: 32px 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-light);
}

.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-display);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION SPACING (sections alternate light/dark naturally)
═══════════════════════════════════════════════════════════════ */
section { scroll-margin-top: var(--nav-h); }

/* ── REDUCED MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* ── LOGO ────────────────────────────────────────────────────── */
.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 32px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}

/* On dark hero background: show white logo */
.nav__logo-img--dark  { display: none; }
.nav__logo-img--white { display: block; }

/* Once nav is scrolled (white background): show dark logo */
.nav.scrolled .nav__logo-img--dark  { display: block; }
.nav.scrolled .nav__logo-img--white { display: none; }

/* Footer logo */
.footer__logo-img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.footer__logo-img:hover { opacity: 1; }