/* ============================================
   GROWTH LAB CO — Main Stylesheet (Light Theme)
   Font: Outfit / Montserrat
   Accent: #A070F8 Electric Violet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700&display=swap');

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

:root {
  --white:         #FFFFFF;
  --bg:            #F8F8FB;
  --bg-dark:       #181840;
  --bg-dark2:      #181038;
  --accent:        #A070F8;
  --accent-soft:   #C4A0FF;
  --accent-deep:   #9878F0;
  --accent-text:   #7C3AED;
  --gradient:      linear-gradient(135deg, #A070F8 0%, #9878F0 100%);
  --text:          #0F0C1D;
  --text-body:     #4A4A6A;
  --text-muted:    #6E6E92;
  --border:        rgba(0,0,0,0.07);
  --card-shadow:   0 2px 20px rgba(0,0,0,0.06);
  --card-shadow-h: 0 8px 40px rgba(160,112,248,0.18);
  --radius:        14px;
  --radius-lg:     22px;
  --radius-xl:     32px;
  --transition:    0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4,
.hero__headline,
.section-title,
.stat-item__value,
.footer__big-brand,
.trust__logo-name,
.demo-cta h2,
.nav__logo-text,
.footer__brand-name {
  font-family: 'Outfit', sans-serif;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; background: none; }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Focus states (keyboard nav) ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Skip link ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  background: var(--text);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus-visible {
  top: 1rem;
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

/* Native cursor is hidden only once main.js confirms the custom cursor is live (see initCursor) — avoids an invisible cursor if JS fails to load */
.cursor-active,
.cursor-active * {
  cursor: none !important;
}

/* ── Gradient text util ── */
.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Animated gradient on hero "Smarter." ── */
.hero__headline .grad-text {
  background: linear-gradient(
    135deg,
    #A070F8 0%,
    #C878FF 20%,
    #8855FF 40%,
    #D490FF 60%,
    #9878F0 80%,
    #A070F8 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s linear infinite;
}

@keyframes gradientFlow {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--text);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,12,29,0.25);
}

.btn-accent {
  background: var(--gradient);
  color: #fff;
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(160,112,248,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(0,0,0,0.18);
}
.btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(0,0,0,0.35);
  background: rgba(0,0,0,0.03);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
}

.btn-large { padding: 0.875rem 2rem; font-size: 1rem; }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.92);
  padding: 0.85rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.nav__logo img { height: 30px; width: auto; }

.nav__logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--text); }

.nav__ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 60px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 99;
}
.nav__mobile.open { display: flex; }
.nav__mobile a { font-size: 1.25rem; font-weight: 600; color: var(--text-body); }
.nav__mobile a:hover { color: var(--text); }
.nav__mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: min(300px, 80%);
}
.nav__mobile-ctas .btn { justify-content: center; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 60px;
}

/* ── Dreamy cloud sky background ── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg,
    #EDE8FF 0%,
    #E4DAFF 15%,
    #EEE6FF 35%,
    #F8F0FF 55%,
    #FFF5FE 75%,
    #FFFFFF 100%
  );
}

/* Shared cloud base */
.hero__cloud {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* Cloud 1 — large lavender, top-left */
.hero__cloud--1 {
  width: 900px; height: 600px;
  top: -180px; left: -200px;
  background: radial-gradient(ellipse, rgba(200,170,255,0.65) 0%, rgba(180,150,255,0.25) 50%, transparent 75%);
  filter: blur(70px);
  animation: cloud-1 18s ease-in-out infinite alternate;
}

/* Cloud 2 — pink/rose, top-right */
.hero__cloud--2 {
  width: 700px; height: 500px;
  top: -80px; right: -150px;
  background: radial-gradient(ellipse, rgba(255,200,240,0.7) 0%, rgba(240,170,255,0.3) 45%, transparent 72%);
  filter: blur(80px);
  animation: cloud-2 22s ease-in-out infinite alternate;
}

/* Cloud 3 — soft violet, center */
.hero__cloud--3 {
  width: 600px; height: 400px;
  top: 120px; left: 25%;
  background: radial-gradient(ellipse, rgba(210,185,255,0.5) 0%, rgba(195,165,255,0.2) 50%, transparent 72%);
  filter: blur(90px);
  animation: cloud-3 28s ease-in-out infinite alternate;
}

/* Cloud 4 — white/cream puff, bottom-left */
.hero__cloud--4 {
  width: 500px; height: 350px;
  bottom: 60px; left: -50px;
  background: radial-gradient(ellipse, rgba(255,245,255,0.9) 0%, rgba(235,220,255,0.45) 50%, transparent 75%);
  filter: blur(60px);
  animation: cloud-4 15s ease-in-out infinite alternate;
}

/* Cloud 5 — light blue-purple, bottom-right */
.hero__cloud--5 {
  width: 550px; height: 400px;
  bottom: 0; right: -80px;
  background: radial-gradient(ellipse, rgba(185,175,255,0.55) 0%, rgba(200,185,255,0.2) 50%, transparent 72%);
  filter: blur(75px);
  animation: cloud-5 24s ease-in-out infinite alternate;
}

/* Cloud 6 — bright puff highlight, top-center */
.hero__cloud--6 {
  width: 400px; height: 300px;
  top: 30px; left: 40%;
  background: radial-gradient(ellipse, rgba(255,240,255,0.8) 0%, rgba(240,220,255,0.35) 50%, transparent 70%);
  filter: blur(55px);
  animation: cloud-6 20s ease-in-out infinite alternate;
}

@keyframes cloud-1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(70px, 50px) scale(1.08); }
}
@keyframes cloud-2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-60px, 40px) scale(1.06); }
}
@keyframes cloud-3 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(40px, -35px) scale(1.1); }
}
@keyframes cloud-4 {
  from { transform: translate(0,0); }
  to   { transform: translate(50px, -30px) scale(1.05); }
}
@keyframes cloud-5 {
  from { transform: translate(0,0); }
  to   { transform: translate(-45px, -50px) scale(1.07); }
}
@keyframes cloud-6 {
  from { transform: translate(0,0); }
  to   { transform: translate(-30px, 40px) scale(0.95); }
}

/* Floating particles */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero__particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 10px rgba(160,112,248,0.6);
  opacity: 0;
  animation: hero-particle-float 7s ease-in-out infinite;
}

@keyframes hero-particle-float {
  0%   { transform: translateY(0) scale(0.6); opacity: 0; }
  15%  { opacity: 0.85; }
  50%  { transform: translateY(-70px) scale(1); opacity: 1; }
  85%  { opacity: 0.3; }
  100% { transform: translateY(-130px) scale(0.5); opacity: 0; }
}

/* Hero content */
.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(160,112,248,0.1);
  border: 1px solid rgba(160,112,248,0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero__headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero__headline .word {
  display: inline-block;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-body);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 4rem;
}

/* ── WebGL hero canvas ── */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  touch-action: none;
}

/* When WebGL shader loads, switch hero to dark mode */
.hero--shader {
  background: #080414 !important;
}
.hero--shader .hero__orb-1,
.hero--shader .hero__orb-2,
.hero--shader .hero__orb-3 { display: none; }

.hero--shader .hero__badge {
  background: rgba(160,112,248,0.14);
  border-color: rgba(160,112,248,0.35);
  color: rgba(210,180,255,0.92);
}

.hero--shader .hero__headline .word { color: rgba(255,255,255,0.95); }
.hero--shader .hero__headline .word.grad-text {
  background: linear-gradient(135deg, #D4AAFF, #8888FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero--shader .hero__sub { color: rgba(255,255,255,0.65); }

.hero--shader .btn-outline--glow {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
}
.hero--shader .btn-outline--glow:hover {
  border-color: rgba(160,112,248,0.7);
  color: #fff;
}

.hero--shader .hero__stats {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.06) inset;
}

.hero--shader .hero__stat-lbl { color: rgba(255,255,255,0.45); }
.hero--shader .hero__stat-div { background: rgba(255,255,255,0.1); }

/* ── Hero stats (replaces mockup) ── */
.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(160,112,248,0.18);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem 3rem;
  width: min(860px, 92%);
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(160,112,248,0.12), 0 1px 0 rgba(255,255,255,0.8) inset;
}

.hero__stat {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.hero__stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.05;
  margin-bottom: 0.375rem;
  /* slide-up reveal */
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), opacity 0.7s ease;
}

.hero__stat.visible .hero__stat-num {
  transform: translateY(0);
  opacity: 1;
}

.hero__stat-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}

.hero__stat-div {
  width: 1px;
  height: 52px;
  background: rgba(160,112,248,0.2);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .hero__stats {
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 1.25rem;
  }
  .hero__stat { padding: 0.875rem 0; }
  .hero__stat-div {
    width: 80%;
    height: 1px;
    align-self: center;
  }
}

/* ── Get In Touch glow button ── */
.btn-outline--glow {
  position: relative;
  overflow: hidden;
}

.btn-outline--glow::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-outline--glow:hover::after { opacity: 1; }
.btn-outline--glow:hover { border-color: transparent; color: var(--accent); }

/* Shimmer sweep on hover */
.btn-outline--glow::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(160,112,248,0.12), transparent);
  transition: left 0.5s ease;
}
.btn-outline--glow:hover::before { left: 140%; }

/* Hero mockup (kept for reference, no longer used) */
.hero__mockup {
  position: relative;
  z-index: 2;
  width: min(900px, 95%);
  margin-inline: auto;
  animation: float 6s ease-in-out infinite;
}

.hero__mockup-inner {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(160,112,248,0.2);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.04),
    0 20px 60px rgba(160,112,248,0.15),
    0 60px 120px rgba(0,0,0,0.06);
  backdrop-filter: blur(20px);
}

.mockup__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.mockup__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup__dot:nth-child(1) { background: #FF5F57; }
.mockup__dot:nth-child(2) { background: #FEBC2E; }
.mockup__dot:nth-child(3) { background: #28C840; }

.mockup__url {
  flex: 1;
  height: 22px;
  background: rgba(0,0,0,0.05);
  border-radius: 100px;
  margin-left: 0.5rem;
}

.mockup__body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.875rem;
}

.mockup__card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}

.mockup__card-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.mockup__card-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.mockup__card-sub {
  font-size: 0.7rem;
  color: #22C55E;
  font-weight: 600;
}

.mockup__bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
  margin-top: 0.75rem;
}

.mockup__bar-item {
  flex: 1;
  background: rgba(160,112,248,0.15);
  border-radius: 3px;
  transition: background 0.2s;
}
.mockup__bar-item:nth-child(3),
.mockup__bar-item:nth-child(5) {
  background: var(--accent);
}

.mockup__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
.mockup__pill.green { background: rgba(34,197,94,0.12); color: #16A34A; }
.mockup__pill.violet { background: rgba(160,112,248,0.12); color: var(--accent); }

.mockup__line-chart {
  width: 100%;
  height: 48px;
  margin-top: 0.75rem;
}

/* ══════════════════════════════════
   TICKER
══════════════════════════════════ */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  padding: 0.875rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  gap: 3.5rem;
  animation: ticker 30s linear infinite;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.ticker__item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════
   SECTIONS SHARED
══════════════════════════════════ */
section { padding: 6rem 0; }

.section-bg-soft { background: var(--bg); }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-text);
  background: rgba(160,112,248,0.1);
  border: 1px solid rgba(160,112,248,0.2);
  border-radius: 100px;
  padding: 0.3rem 0.875rem;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 520px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Stagger children */
.stagger-child {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.stagger-child.visible { opacity: 1; transform: translateY(0) scale(1); }

/* Step flow item reveal */
.step-flow__item {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.step-flow__item.flow-visible { opacity: 1; transform: translateX(0); }
/* Active step override */
.step-flow__item.active { border-color: rgba(160,112,248,0.25); background: rgba(160,112,248,0.07); }

/* ══════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════ */
.problem { background: var(--white); }

.problem__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.problem__header .section-sub { margin-inline: auto; }

/* Sticky stacking problem cards */
.problem-stack {
  position: relative;
  max-width: 880px;
  margin: 0 auto 3rem;
}

.problem-stack__card {
  position: sticky;
  background: linear-gradient(160deg, #F5EEFF 0%, #FFFFFF 60%);
  border: 1.5px solid rgba(160,112,248,0.28);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(160,112,248,0.16);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.problem-stack__card:nth-child(1) { top: 110px; }
.problem-stack__card:nth-child(2) { top: 126px; }
.problem-stack__card:nth-child(3) { top: 142px; }

.problem-stack__num {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-text);
  margin-bottom: 0.75rem;
}

.problem-stack__text h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.625rem;
  line-height: 1.25;
}

.problem-stack__text p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.65;
}

.problem-stack__stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(160,112,248,0.08);
  border: 1px solid rgba(160,112,248,0.25);
  border-radius: var(--radius-lg);
}

.problem-stack__stat-val {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.problem-stack__stat-val span {
  font-size: 1.25rem;
  font-weight: 700;
  margin-left: 0.15em;
}

.problem-stack__stat-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.5rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .problem-stack__card {
    position: static;
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 1.5rem;
  }
}

.problem__end {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-body);
}
.problem__end span { color: var(--text); font-weight: 700; }

/* ══════════════════════════════════
   PROBLEM CTA
══════════════════════════════════ */
.problem-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2.5rem;
  margin-top: 3rem;
}

.problem-cta__text {
  font-size: 1.25rem;
  color: var(--text);
  font-weight: 700;
  max-width: 600px;
}

.problem-cta__btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ══════════════════════════════════
   PROCESS (category-list style)
══════════════════════════════════ */
.process { padding: 7rem 0; }

.process__header {
  text-align: center;
  margin-bottom: 4rem;
}

.process__heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--text);
}

.process__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 860px;
  margin: 0 auto;
}

/* Each item */
.process__item {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  cursor: default;
  transition:
    border-color 0.3s ease,
    background  0.3s ease,
    box-shadow  0.3s ease;
}

.process__item:hover {
  border-color: var(--accent);
  background: rgba(160,112,248,0.03);
  box-shadow: 0 8px 32px rgba(160,112,248,0.12);
}

/* Corner brackets — hidden by default, visible on hover */
.process__bracket {
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.process__item:hover .process__bracket { opacity: 1; }

.process__bracket--tl { top: 12px; left: 12px; }
.process__bracket--br { bottom: 12px; right: 12px; }

.process__bracket--tl::before,
.process__bracket--tl::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 1px;
}
.process__bracket--tl::before { top: 0; left: 0; width: 14px; height: 2px; }
.process__bracket--tl::after  { top: 0; left: 0; width: 2px;  height: 14px; }

.process__bracket--br::before,
.process__bracket--br::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 1px;
}
.process__bracket--br::before { bottom: 0; right: 0; width: 14px; height: 2px; }
.process__bracket--br::after  { bottom: 0; right: 0; width: 2px;  height: 14px; }

/* Inner layout */
.process__inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 2.5rem;
}

/* Step number */
.process__num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding-top: 0.35rem;
  flex-shrink: 0;
  min-width: 24px;
  transition: color 0.25s;
}
.process__item:hover .process__num { color: var(--accent-text); }

/* Text block */
.process__text { flex: 1; }

.process__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  transition: color 0.25s;
  margin-bottom: 0;
}
.process__item:hover .process__title { color: var(--accent); }

/* Description — hidden by default, revealed on hover */
.process__desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition:
    max-height 0.4s cubic-bezier(0.16,1,0.3,1),
    opacity    0.35s ease,
    transform  0.35s ease;
  margin-top: 0;
}
.process__item:hover .process__desc {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 0.625rem;
}

/* Arrow icon */
.process__icon {
  font-size: 1.5rem;
  color: var(--text-muted);
  flex-shrink: 0;
  padding-top: 0.25rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s, transform 0.25s, color 0.25s;
}
.process__item:hover .process__icon {
  opacity: 1;
  color: var(--accent);
  transform: translateX(0);
}

/* Mobile: always show description */
@media (max-width: 640px) {
  .process__desc {
    max-height: 200px !important;
    opacity: 1 !important;
    transform: none !important;
    margin-top: 0.625rem !important;
  }
  .process__icon { display: none; }
  .process__inner { padding: 1.5rem; gap: 1.25rem; }
  .process__heading { font-size: clamp(2.5rem, 10vw, 4rem); }
}

/* ══════════════════════════════════
   BENTO GRID
══════════════════════════════════ */
.bento { padding: 6rem 0; }
.bento__header { text-align: center; margin-bottom: 3.5rem; }

.bento__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
  position: relative;
}

.bento-card:hover {
  box-shadow: var(--card-shadow-h);
  transform: translateY(-3px);
}

.bento-card--a { grid-column: span 2; }
.bento-card--b { grid-column: span 2; }
.bento-card--c { grid-column: span 2; }
.bento-card--d { grid-column: span 2; }
.bento-card--e { grid-column: span 4; }

.bento-card__step {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.625rem;
}

.bento-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.bento-card__body {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Oval stat card */
.bento-oval {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin-bottom: 1.25rem;
}

.bento-oval__bg {
  position: absolute;
  width: 200px;
  height: 80px;
  color: rgba(160,112,248,0.07);
}

.bento-oval__text {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  line-height: 1;
}

/* Mini flow pills */
.mini-flow {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.mini-flow-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0.875rem;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.mini-flow-item.done {
  background: rgba(160,112,248,0.06);
  border-color: rgba(160,112,248,0.2);
  color: var(--text);
}

.mini-flow-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.mini-flow-item.done .dot { background: var(--accent); }

/* Growth graph */
.bento-graph {
  width: 100%;
  height: 56px;
  margin-top: 1.25rem;
}

/* Metrics row */
.bento-metrics-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.25rem;
}

.bento-metric-item {
  flex: 1;
  text-align: center;
  padding: 0.5rem;
}

.bento-metric-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.bento-metric {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.bento-metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Mini bar chart */
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 48px;
}

.mini-bar {
  flex: 1;
  background: rgba(160,112,248,0.1);
  border-radius: 3px 3px 0 0;
}
.mini-bar.active {
  background: linear-gradient(to top, #A070F8, #9070F0);
}

/* Bento responsive */
@media (max-width: 1024px) {
  .bento-card--a,
  .bento-card--b,
  .bento-card--c { grid-column: span 3; }
  .bento-card--d { grid-column: span 3; }
  .bento-card--e { grid-column: span 6; }
}

@media (max-width: 640px) {
  .bento__grid { grid-template-columns: 1fr; }
  .bento-card--a,
  .bento-card--b,
  .bento-card--c,
  .bento-card--d,
  .bento-card--e { grid-column: span 1; }
}

/* ══════════════════════════════════
   MEET MIA — AI Voice Agent
══════════════════════════════════ */
.mia { padding: 6rem 0; }

.mia__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mia__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(160,112,248,0.1);
  border: 1px solid rgba(160,112,248,0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-text);
  margin-bottom: 1.25rem;
}
.mia__badge i { font-size: 0.9rem; }

.mia__text .section-title { margin-bottom: 1rem; }
.mia__text .section-sub { margin-bottom: 1.75rem; max-width: 540px; }

.mia__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.mia__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.5;
}
.mia__features li i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.mia__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.mia__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.mia__stat { display: flex; flex-direction: column; gap: 0.25rem; }
.mia__stat-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mia__stat-lbl { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; }

/* ── Visual: incoming-call phone mockup ── */
.mia__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.mia__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(160,112,248,0.22) 0%, transparent 70%);
  filter: blur(30px);
  animation: aurora-breathe 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.mia__phone {
  position: relative;
  z-index: 1;
  width: 260px;
  background: linear-gradient(160deg, #2A1F55 0%, #181030 100%);
  border-radius: 2.5rem;
  padding: 0.75rem;
  box-shadow: 0 30px 70px rgba(40,20,90,0.35), 0 4px 0 rgba(255,255,255,0.06) inset;
}

.mia__phone-notch {
  width: 80px; height: 18px;
  background: #110A26;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 0.5rem;
}

.mia__phone-screen {
  background: linear-gradient(160deg, #F8F0FF 0%, #EFE4FF 100%);
  border-radius: 1.875rem;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mia__call-status {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 2rem;
}

.mia__call-avatar {
  position: relative;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
}

.mia__call-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: call-ring 2.2s ease-out infinite;
}
.mia__call-ring--2 { animation-delay: 0.7s; }

@keyframes call-ring {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

.mia__call-name { font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.mia__call-sub { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: auto; }

.mia__waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 32px;
  margin-top: 2rem;
}
.mia__waveform span {
  width: 4px;
  border-radius: 2px;
  background: var(--accent);
  animation: wave-bar 1.2s ease-in-out infinite;
}
.mia__waveform span:nth-child(1) { height: 30%; animation-delay: 0s; }
.mia__waveform span:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.mia__waveform span:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.mia__waveform span:nth-child(4) { height: 45%; animation-delay: 0.3s; }
.mia__waveform span:nth-child(5) { height: 80%; animation-delay: 0.4s; }
.mia__waveform span:nth-child(6) { height: 55%; animation-delay: 0.5s; }
.mia__waveform span:nth-child(7) { height: 35%; animation-delay: 0.6s; }

@keyframes wave-bar {
  0%, 100% { transform: scaleY(0.4); }
  50%      { transform: scaleY(1); }
}

/* Floating glass cards */
.mia__floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1.125rem;
  box-shadow: var(--card-shadow-h);
  z-index: 2;
}
.mia__floating-card i { font-size: 1.25rem; color: var(--accent); }
.mia__floating-val { font-size: 0.875rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.mia__floating-lbl { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }

.mia__floating-card--1 { top: 8%; left: -8%; animation: float 5s ease-in-out infinite; }
.mia__floating-card--2 { bottom: 12%; right: -10%; animation: float 6s ease-in-out 1s infinite; }

@media (max-width: 1024px) {
  .mia__inner { grid-template-columns: 1fr; gap: 3rem; }
  .mia__visual { min-height: 420px; }
  .mia__floating-card--1 { left: 0; }
  .mia__floating-card--2 { right: 0; }
}

@media (max-width: 480px) {
  .problem-cta { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
  .problem-cta__btns { width: 100%; }
  .problem-cta__btns .btn { flex: 1; justify-content: center; }
  .mia__stats { gap: 1.5rem; }
  .mia__floating-card { display: none; }
}

/* ══════════════════════════════════
   HOW IT WORKS — alternating rows
══════════════════════════════════ */
.how { background: var(--bg); }

.how__header {
  text-align: center;
  margin-bottom: 5rem;
}
.how__header .section-sub { margin-inline: auto; }

.how__step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.how__step-row:last-child { margin-bottom: 0; }
.how__step-row.reverse { direction: rtl; }
.how__step-row.reverse > * { direction: ltr; }

.how__step-text { }

.how__step-num {
  display: inline-flex;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(160,112,248,0.1);
  border: 1px solid rgba(160,112,248,0.2);
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.how__step-text h3 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}

.how__step-text p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 420px;
}

.how__step-visual {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.how__step-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(160,112,248,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Mini flow diagrams inside step visuals */
.step-flow {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.step-flow__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-flow__item.active {
  background: rgba(160,112,248,0.07);
  border-color: rgba(160,112,248,0.25);
}

.step-flow__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(160,112,248,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.step-flow__item.active .step-flow__icon {
  background: var(--gradient);
}

.step-flow__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.step-flow__sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.step-flow__connector {
  display: flex;
  align-items: center;
  padding-left: 1.2rem;
}
.step-flow__connector::before {
  content: '';
  width: 2px;
  height: 20px;
  background: rgba(160,112,248,0.2);
}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services { background: var(--white); position: relative; overflow: hidden; }

.services__watermark {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 580px;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
  filter: saturate(0) brightness(0);
}
.services__watermark img { width: 100%; height: auto; display: block; }
.services > .container { position: relative; z-index: 1; }

/* Animated background glow behind the offer cards */
.offers-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: aurora-breathe 8s ease-in-out infinite alternate;
}
.offers-glow--1 {
  width: 420px; height: 420px;
  top: 5%; left: -8%;
  background: radial-gradient(circle, rgba(160,112,248,0.18) 0%, transparent 70%);
}
.offers-glow--2 {
  width: 380px; height: 380px;
  bottom: -5%; right: -6%;
  background: radial-gradient(circle, rgba(160,112,248,0.14) 0%, transparent 70%);
  animation-delay: 2s;
}

.services__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services__header .section-sub { margin-inline: auto; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  box-shadow: var(--card-shadow-h);
  transform: translateY(-5px);
}
.service-card:hover::after { opacity: 1; }

.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(160,112,248,0.08);
  border: 1px solid rgba(160,112,248,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.65;
}

.service-card-wide {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: box-shadow var(--transition);
}
.service-card-wide:hover { box-shadow: var(--card-shadow-h); }

.service-card-wide__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(160,112,248,0.08);
  border: 1px solid rgba(160,112,248,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  color: var(--accent);
}

.service-card-wide__text h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem; }
.service-card-wide__text p  { font-size: 0.9375rem; color: var(--text-body); line-height: 1.6; }

/* ── Two offerings (Custom Automation / Rapid Growth Engine) ── */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Glow sweep that fades in on hover */
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(160,112,248,0.16) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.offer-card:hover {
  box-shadow: var(--card-shadow-h);
  border-color: rgba(160,112,248,0.4);
  transform: translateY(-6px) scale(1.015);
}
.offer-card:hover::before { opacity: 1; }

.offer-card--flagship {
  border-color: rgba(160,112,248,0.3);
  background: linear-gradient(160deg, rgba(160,112,248,0.05) 0%, var(--white) 55%);
}

.offer-card__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-text);
  background: rgba(160,112,248,0.1);
  border: 1px solid rgba(160,112,248,0.2);
  border-radius: 100px;
  padding: 0.3rem 0.875rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.offer-card h3 {
  position: relative;
  z-index: 1;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.offer-card p {
  position: relative;
  z-index: 1;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.offer-card__features {
  position: relative;
  z-index: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
  flex: 1;
}

.offer-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
}
.offer-card__features li strong { color: var(--text); font-weight: 700; }

.offer-card__features li i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.offer-card .btn { align-self: flex-start; position: relative; z-index: 1; }

@media (max-width: 900px) {
  .offers-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   TOOLS
══════════════════════════════════ */
.tools { background: var(--bg); }

.tools__header { text-align: center; margin-bottom: 3.5rem; }
.tools__header .section-sub { margin-inline: auto; }

.tools__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.tool-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.tool-chip:hover {
  box-shadow: 0 8px 24px rgba(160,112,248,0.12);
  transform: translateY(-3px);
}

.tool-chip__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(160,112,248,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
}

.tool-chip__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-body);
}

.tools__note {
  background: white;
  border: 1px solid rgba(160,112,248,0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}
.tools__note strong { color: var(--accent); }

/* ══════════════════════════════════
   STATS
══════════════════════════════════ */
.stats {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: linear-gradient(135deg,
    #F3ECFF 0%,
    #EEE8FF 30%,
    #F8F0FF 60%,
    #FFF5FE 100%
  );
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(160,112,248,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-item__value {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 0.875rem;
  color: var(--text-body);
  font-weight: 500;
}

/* ══════════════════════════════════
   ASSESSMENT TEASER
══════════════════════════════════ */
.assessment-teaser {
  background: #181840;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.assessment-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(160,112,248,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.assessment-teaser__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.assessment-teaser h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.94);
  margin-bottom: 1.25rem;
}

.assessment-teaser h2 .grad-text {
  background: linear-gradient(135deg, #fff 0%, #C4A0FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.assessment-teaser p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ══════════════════════════════════
   TRUST CTA CARD (keep for reference, unused)
══════════════════════════════════ */
.trust-cta { padding: 6rem 0; background: var(--bg); }

.trust-cta__card {
  background: linear-gradient(to bottom, #5524B7, #380B60);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  position: relative;
  overflow: hidden;
}

/* Subtle glow overlay */
.trust-cta__card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(180,130,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* Avatar + social proof pill */
.trust-cta__social {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 1rem 0.375rem 0.375rem;
  background: rgba(160,112,248,0.12);
  border: 1px solid rgba(160,112,248,0.4);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 1;
}

.trust-cta__avatars {
  display: flex;
  align-items: center;
}

.trust-cta__avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  object-fit: cover;
  margin-left: -8px;
}
.trust-cta__avatars img:first-child { margin-left: 0; }

/* Heading */
.trust-cta__heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 720px;
  background: linear-gradient(135deg, #FFFFFF 0%, #CAABFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

/* Body */
.trust-cta__body {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

/* CTA button — white pill on dark */
.trust-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  z-index: 1;
}

.trust-cta__btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

@media (max-width: 640px) {
  .trust-cta__card { padding: 3.5rem 1.5rem; }
  .trust-cta__social { flex-direction: column; text-align: center; padding: 0.75rem 1rem; }
  .trust-cta__btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════
   CINEMATIC FOOTER
══════════════════════════════════ */

/* Wrapper creates the scroll-reveal clip window */
.footer-wrapper {
  position: relative;
  height: 100vh;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: rgba(255,255,255,0.8);
}

/* Aurora glow */
.footer__aurora {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw; height: 60vh;
  background: radial-gradient(ellipse,
    rgba(160,112,248,0.18) 0%,
    rgba(152,120,240,0.12) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(40px);
  animation: aurora-breathe 10s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes aurora-breathe {
  from { transform: translate(-50%,-50%) scale(1);   opacity: 0.7; }
  to   { transform: translate(-50%,-50%) scale(1.15); opacity: 1;  }
}

/* Grid bg */
.footer__grid {
  position: absolute;
  inset: 0;
  background-size: 56px 56px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  pointer-events: none;
  z-index: 0;
}

/* Giant background text */
.footer__giant {
  position: absolute;
  bottom: -4vh;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(6rem, 22vw, 20rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.8;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.05);
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, transparent 70%);
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* Marquee strip */
.footer__marquee {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  padding: 0.875rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.footer__marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: ticker 32s linear infinite;
}

.footer__marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.footer__marquee-item::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Main center content */
.footer__center {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  gap: 2.5rem;
}

.footer__heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(160,112,248,0.25));
}

/* Glass pills */
.footer__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  max-width: 700px;
}

.footer__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  text-decoration: none;
}

.footer__pill:hover {
  background: linear-gradient(145deg, rgba(160,112,248,0.25), rgba(152,120,240,0.1));
  border-color: rgba(160,112,248,0.5);
  color: #fff;
  box-shadow: 0 0 30px rgba(160,112,248,0.2);
  transform: translateY(-3px);
}

.footer__pill--primary {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
}
.footer__pill--primary:hover {
  background: var(--gradient-h);
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(160,112,248,0.5);
}

/* Bottom bar */
.footer__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.footer__brand img { height: 26px; filter: brightness(10); }
.footer__brand-name { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.9); }

.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 500; }

.footer__back-top {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer__back-top:hover {
  background: rgba(160,112,248,0.2);
  border-color: rgba(160,112,248,0.4);
  color: #fff;
  transform: translateY(-3px);
}

/* ── Magnetic button wrapper ── */
.magnetic-wrap { display: inline-block; }

/* ── Floating mockup ── */
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-12px); }
}
.hero__mockup { animation: float 6s ease-in-out infinite; }

/* ── Smooth custom cursor ── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor__dot {
  position: absolute;
  top: -4px; left: -4px;
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.1s ease;
}
.cursor__ring {
  position: absolute;
  top: -20px; left: -20px;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease, opacity 0.3s ease;
}
.cursor--hover .cursor__ring {
  width: 60px; height: 60px;
  top: -30px; left: -30px;
  border-color: rgba(160,112,248,0.8);
}
.cursor--click .cursor__dot { transform: scale(2.5); }

@media (hover: none) { .cursor { display: none; } }

/* ── Section heading reveal clip ── */
.heading-clip {
  overflow: hidden;
  display: block;
}
.heading-clip .inner {
  display: block;
  transform: translateY(100%);
  transition: transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.heading-clip.visible .inner { transform: translateY(0); }

/* ── Responsive footer ── */
@media (max-width: 768px) {
  .footer__bottom { padding: 1.25rem 1.5rem; }
  .footer__heading { font-size: clamp(2.5rem, 12vw, 5rem); }
  .footer__giant { font-size: clamp(4rem, 30vw, 10rem); }
  .footer__pills { gap: 0.625rem; }
  .footer__pill { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
}

@media (max-width: 480px) {
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer__pill--sm { display: none; }
}

/* ══════════════════════════════════
   CTA MODAL (Get In Touch — GHL form embed)
══════════════════════════════════ */
.cta-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.cta-modal[hidden] { display: none; }

.cta-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,12,29,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cta-modal.open .cta-modal__overlay { opacity: 1; }

.cta-modal__panel {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  padding: 2.5rem;
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
}
.cta-modal.open .cta-modal__panel { transform: translateY(0) scale(1); opacity: 1; }

.cta-modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text-body);
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
}
.cta-modal__close:hover { background: rgba(160,112,248,0.12); color: var(--accent-text); }

.cta-modal__panel--form {
  width: min(560px, 100%);
}

.cta-modal__embed {
  width: 100%;
  height: 65vh;
  min-height: 480px;
  max-height: 640px;
}

.cta-modal__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.cta-modal__sub {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}


@media (max-width: 480px) {
  .cta-modal__panel { padding: 1.75rem 1.5rem; }
}

/* ══════════════════════════════════
   KEYFRAMES
══════════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Cloud-blur word entrance — words drift up from a dreamy blur */
@keyframes cloudReveal {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(22px) scale(0.93);
  }
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0) scale(1);
  }
}
@keyframes fadeDown {
  from { opacity:0; transform:translateY(-10px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .how__step-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .how__step-row.reverse { direction: ltr; }
  .trust__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }

  .nav__links, .nav__ctas { display: none; }
  .nav__hamburger { display: flex; }

  .problem__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .service-card-wide { flex-direction: column; gap: 1rem; }
  .tools__grid { grid-template-columns: repeat(3, 1fr); }
  .mockup__body { grid-template-columns: 1fr 1fr; }
  .mockup__body .mockup__card:last-child { display: none; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__nav { justify-content: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .assessment-teaser__band { padding: 3rem 2rem; margin: 0 1rem; }
  .demo-cta h2 { font-size: clamp(2.5rem, 10vw, 5rem); }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .tools__grid { grid-template-columns: repeat(2, 1fr); }
  .demo-cta__btns { flex-direction: column; width: 100%; max-width: 300px; margin-inline: auto; }
  .demo-cta__btns .btn { width: 100%; justify-content: center; }
}
