/* ═══════════════════════════════════════════════════════════════
   KLYR — DESIGN SYSTEM
   Colors: #F7F6F2 / #1D2329 / #2D9C95 / #F4A340 / #E8ECEB
═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --clr-bg:        #F7F6F2;
  --clr-bg-alt:    #F0EFEA;
  --clr-ink:       #1D2329;
  --clr-ink-soft:  #5a6470;
  --clr-ink-xsoft: #9aa4ae;
  --clr-teal:      #2D9C95;
  --clr-teal-dim:  rgba(45,156,149,.12);
  --clr-teal-glow: rgba(45,156,149,.25);
  --clr-amber:     #F4A340;
  --clr-mist:      #E8ECEB;
  --clr-white:     #ffffff;
  --clr-dark:      #111820;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-card: 0 2px 12px rgba(29,35,41,.06), 0 1px 3px rgba(29,35,41,.04);
  --shadow-card-hover: 0 8px 32px rgba(29,35,41,.12), 0 2px 8px rgba(29,35,41,.06);
  --shadow-teal: 0 8px 32px rgba(45,156,149,.22);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  96px;
  --space-2xl: 140px;
}

/* ─── SCROLLBAR: HIDDEN — replaced by progress bar ── */

/* Firefox */
html {
  scrollbar-width: none;
}

/* Webkit */
::-webkit-scrollbar {
  display: none;
}

/* ─── SCROLL PROGRESS BAR ────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 9999;
  pointer-events: none;
  /* Layered: dim track behind the moving fill */
  background: transparent;
}

/* Track (full width, very faint) */
.scroll-progress::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clr-mist);
  opacity: 0;
  transition: opacity .4s;
}

.scroll-progress.started::before {
  opacity: 1;
}

/* Fill — driven by JS via --p custom property */
.scroll-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--p, 0%);
  background: linear-gradient(
    90deg,
    var(--clr-teal) 0%,
    #3dbdb5 60%,
    var(--clr-amber) 100%
  );
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(45, 156, 149, .5);
  transition: width .1s linear;
}

/* Completion flash */
.scroll-progress.complete::after {
  opacity: 0;
  transition: width .1s linear, opacity .5s .2s ease;
}

/* ─── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background-color: var(--clr-bg);
  color: var(--clr-ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── GRAIN TEXTURE ──────────────────────────────── */
.grain {
  position: fixed;
  inset: -200%;
  width: 400%;
  height: 400%;
  pointer-events: none;
  z-index: 9998;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(2) infinite;
}

@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2%, -4%); }
  50%  { transform: translate(3%, 1%); }
  75%  { transform: translate(-1%, 3%); }
  100% { transform: translate(2%, -2%); }
}

/* ─── CUSTOM CURSOR ──────────────────────────────── */
.cursor,
.cursor-dot {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}

.cursor {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--clr-teal);
  transition: width .25s, height .25s, border-color .25s, opacity .3s, transform .08s;
  opacity: 0;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--clr-teal);
  transition: opacity .3s;
  opacity: 0;
}

body:hover .cursor,
body:hover .cursor-dot { opacity: 1; }

.cursor.hovering {
  width: 56px;
  height: 56px;
  border-color: var(--clr-amber);
  background: rgba(244,163,64,.06);
}

@media (hover: none) {
  .cursor, .cursor-dot { display: none; }
}

/* ─── CONTAINER ──────────────────────────────────── */
.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

/* ─── SECTION SHARED ─────────────────────────────── */
.section { padding: var(--space-xl) 0; }

.section__eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-teal);
  margin-bottom: var(--space-sm);
}

.section__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--clr-ink);
  margin-bottom: var(--space-md);
}

.section__sub {
  font-size: 1.05rem;
  color: var(--clr-ink-soft);
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  letter-spacing: .01em;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
}

.btn:hover::after { background: rgba(255,255,255,.08); }
.btn:active { transform: scale(.97); }

.btn--teal {
  background: var(--clr-teal);
  color: var(--clr-white);
  box-shadow: 0 4px 16px var(--clr-teal-glow);
}

.btn--teal:hover {
  background: #249590;
  box-shadow: 0 6px 24px var(--clr-teal-glow);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-ink);
  border: 1.5px solid rgba(29,35,41,.2);
}

.btn--ghost:hover {
  border-color: var(--clr-teal);
  color: var(--clr-teal);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--clr-ink);
  border: 1.5px solid var(--clr-mist);
}

.btn--outline:hover {
  border-color: var(--clr-teal);
  color: var(--clr-teal);
  transform: translateY(-1px);
}

.btn--sm { font-size: .82rem; padding: 9px 18px; }
.btn--lg { font-size: 1rem; padding: 15px 30px; }
.btn--full { width: 100%; justify-content: center; }

/* ─── REVEAL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1) var(--d, 0ms),
              transform .65s cubic-bezier(.4,0,.2,1) var(--d, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background .4s, box-shadow .4s, padding .3s;
  padding: 0;
}

.nav.scrolled {
  background: rgba(247,246,242,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(29,35,41,.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  height: 76px;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  object-position: center;
}

.nav__links {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.nav__link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--clr-ink-soft);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--clr-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav__link:hover { color: var(--clr-ink); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.active { color: var(--clr-teal); }

.nav__cta { margin-left: var(--space-xs); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--clr-ink);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  background: rgba(247,246,242,.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--clr-mist);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}

.nav__mobile.open { max-height: 320px; }

.nav__mobile ul {
  display: flex;
  flex-direction: column;
  padding: var(--space-sm) var(--space-md);
  gap: 4px;
}

.nav__mobile a {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-ink-soft);
  border-bottom: 1px solid var(--clr-mist);
  transition: color .2s;
}

.nav__mobile a:hover,
.nav__mobile a.mobile-wa { color: var(--clr-teal); }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 88px;
  padding-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(ellipse at center, var(--clr-teal-dim) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  flex: 1;
}

/* ── Badge ── */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--clr-ink-soft);
  background: var(--clr-white);
  border: 1px solid var(--clr-mist);
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  margin-bottom: var(--space-md);
  animation: fadeSlideUp .7s .1s both;
}

.badge-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-teal);
  box-shadow: 0 0 0 0 var(--clr-teal-glow);
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%   { box-shadow: 0 0 0 0 var(--clr-teal-glow); }
  70%  { box-shadow: 0 0 0 7px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* ── Headline ── */
.hero__headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.04em;
  color: var(--clr-ink);
  margin-bottom: var(--space-sm);
  animation: fadeSlideUp .7s .2s both;
}

/* ── Word swap ── */
.hero__swap-wrapper {
  display: block;           /* own line — never affects text above */
  overflow: hidden;
  height: 1.15em;           /* fixed height = one line, layout never shifts */
  color: var(--clr-teal);
  margin-top: .05em;
}

.hero__swap {
  display: block;
  /* No initial animation — the parent .hero__headline already fades in */
}

.hero__swap.swap-out {
  animation: swapOut .32s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.hero__swap.swap-in {
  animation: swapIn .38s cubic-bezier(0, 0, 0.2, 1) forwards;
}

@keyframes swapOut {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-55%); }
}

@keyframes swapIn {
  0%   { opacity: 0; transform: translateY(55%); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Sub & CTAs ── */
.hero__sub {
  font-size: 1.1rem;
  color: var(--clr-ink-soft);
  margin-bottom: var(--space-md);
  animation: fadeSlideUp .7s .3s both;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
  animation: fadeSlideUp .7s .4s both;
}

.hero__anchor {
  font-size: .82rem;
  color: var(--clr-ink-xsoft);
  animation: fadeSlideUp .7s .5s both;
}

.hero__anchor strong { color: var(--clr-ink-soft); }

/* ── Scroll hint ── */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeSlideUp .7s 1s both;
}

.hero__scroll span {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-ink-xsoft);
}

.scroll-track {
  width: 1px;
  height: 40px;
  background: var(--clr-mist);
  border-radius: 1px;
  overflow: hidden;
}

.scroll-thumb {
  width: 100%;
  height: 40%;
  background: var(--clr-teal);
  border-radius: 1px;
  animation: scrollThumb 2s ease-in-out infinite;
}

@keyframes scrollThumb {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(150%); }
  100% { transform: translateY(150%); }
}

/* ═══════════════════════════════════════════════════
   HERO MOCKUP — AUTO-BUILD ANIMATION
═══════════════════════════════════════════════════ */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeSlideUp .8s .4s both;
}

.mockup {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.mockup__shadow {
  position: absolute;
  inset: 16px 16px -20px;
  background: rgba(45,156,149,.15);
  border-radius: var(--radius-lg);
  filter: blur(24px);
  z-index: 0;
}

.mockup__window {
  position: relative;
  z-index: 1;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29,35,41,.08);
  overflow: hidden;
  box-shadow: 0 2px 32px rgba(29,35,41,.1);
}

.mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f1f0ec;
  border-bottom: 1px solid rgba(29,35,41,.06);
}

.mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup__dot.red    { background: #ff5f56; }
.mockup__dot.yellow { background: #ffbd2e; }
.mockup__dot.green  { background: #27c93f; }

.mockup__url {
  font-size: .68rem;
  color: var(--clr-ink-soft);
  background: rgba(29,35,41,.05);
  border-radius: 4px;
  padding: 2px 10px;
  margin-left: 8px;
  flex: 1;
  text-align: center;
  letter-spacing: .02em;
  font-family: monospace;
}

.mockup__body {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
}

/* Build elements — hidden by default, animated by JS */
.build-0, .build-1, .build-2, .build-3, .build-4 {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
}

.build-0.visible, .build-1.visible, .build-2.visible,
.build-3.visible, .build-4.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mockup Nav */
.mb-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: var(--clr-bg-alt);
  border-radius: 8px;
}

.mb-nav-logo {
  width: 32px;
  height: 8px;
  background: var(--clr-ink);
  border-radius: 2px;
  opacity: .7;
}

.mb-nav-links {
  flex: 1;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    rgba(29,35,41,.15) 0, rgba(29,35,41,.15) 20px,
    transparent 20px, transparent 28px
  );
  border-radius: 2px;
}

.mb-nav-btn {
  width: 36px;
  height: 14px;
  background: var(--clr-teal);
  border-radius: 4px;
  opacity: .9;
}

/* Mockup Hero */
.mb-hero {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mb-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mb-h1 {
  height: 11px;
  background: var(--clr-ink);
  border-radius: 3px;
  opacity: .85;
}

.mb-h2 {
  height: 8px;
  width: 75%;
  background: rgba(29,35,41,.3);
  border-radius: 3px;
}

.mb-hero-img {
  width: 80px;
  height: 56px;
  background: linear-gradient(135deg, var(--clr-teal-dim), var(--clr-mist));
  border-radius: 8px;
  flex-shrink: 0;
}

/* Mockup CTA */
.mb-cta {
  display: flex;
  gap: 8px;
}

.mb-btn {
  height: 18px;
  width: 64px;
  border-radius: 9px;
  background: var(--clr-teal);
}

.mb-btn-ghost {
  height: 18px;
  width: 54px;
  border-radius: 9px;
  border: 1.5px solid var(--clr-mist);
}

.mb-btn.active-btn {
  animation: btnPulse 2.5s 3s infinite;
}

@keyframes btnPulse {
  0%, 80%, 100% { box-shadow: 0 0 0 0 var(--clr-teal-glow); }
  40% { box-shadow: 0 0 0 6px transparent; }
}

/* Mockup Cards */
.mb-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.mb-card {
  height: 44px;
  background: var(--clr-bg-alt);
  border-radius: 6px;
  border: 1px solid var(--clr-mist);
}

.mb-card:first-child {
  background: linear-gradient(135deg, var(--clr-teal-dim), transparent);
}

/* Mockup Status */
.mb-status {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}

.mb-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #27c93f;
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.mb-status-text {
  font-size: .62rem;
  font-weight: 600;
  color: #27c93f;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Mockup animated cursor */
.mockup__cursor {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  transition: left .7s cubic-bezier(.4,0,.2,1), top .7s cubic-bezier(.4,0,.2,1);
  opacity: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}

.mockup__cursor.visible { opacity: 1; }

/* Entry animation */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════════════ */
.problem { background: var(--clr-bg); }

.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.problem__card {
  background: var(--clr-white);
  border: 1px solid var(--clr-mist);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: box-shadow .3s, transform .3s;
  position: relative;
  overflow: hidden;
}

.problem__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--clr-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.problem__card:hover::before { transform: scaleX(1); }
.problem__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.problem__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--clr-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--clr-ink-soft);
  transition: background .3s, color .3s;
}

.problem__card:hover .problem__icon-wrap {
  background: var(--clr-teal-dim);
  color: var(--clr-teal);
}

.problem__icon { width: 24px; height: 24px; }

.problem__card h3 {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  color: var(--clr-ink);
}

.problem__card p {
  font-size: .88rem;
  color: var(--clr-ink-soft);
  line-height: 1.5;
}

.problem__resolution {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.problem__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-mist), transparent);
}

.problem__cta-text {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--clr-teal);
  white-space: nowrap;
}

/* SVG draw animations */
.svg-draw {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .8s ease;
}

.svg-pop {
  opacity: 0;
  transition: opacity .4s .5s ease;
}

.problem__card.in-view .svg-draw {
  stroke-dashoffset: 0;
}

.problem__card.in-view .svg-pop {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════
   VALUES SECTION
═══════════════════════════════════════════════════ */
.values {
  background: var(--clr-ink);
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.values::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(45,156,149,.15) 0%, transparent 65%);
  pointer-events: none;
}

.values .section__eyebrow { color: var(--clr-teal); }

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-md);
  border: 1px solid rgba(255,255,255,.06);
}

.values__pillar {
  padding: clamp(32px, 5vw, 56px);
  background: rgba(255,255,255,.02);
  transition: background .3s;
  position: relative;
}

.values__pillar:hover { background: rgba(255,255,255,.05); }

.values__num {
  font-size: .72rem;
  font-weight: 700;
  color: var(--clr-teal);
  letter-spacing: .15em;
  margin-bottom: 20px;
}

.values__word {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--clr-white);
  margin-bottom: 16px;
  filter: blur(8px);
  opacity: 0;
  transition: filter .8s ease, opacity .8s ease;
}

.values__pillar.in-view .values__word {
  filter: blur(0);
  opacity: 1;
}

.values__pillar p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   PROCESS SECTION
═══════════════════════════════════════════════════ */
.process {
  background: var(--clr-bg-alt);
  position: relative;
}

.process__flow {
  margin-top: var(--space-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process__track {
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: var(--clr-mist);
  border-radius: 2px;
  overflow: hidden;
}

.process__track-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--clr-teal), var(--clr-teal));
  border-radius: 2px;
  transition: height .8s cubic-bezier(.4,0,.2,1);
}

.process__step {
  display: flex;
  gap: 24px;
  padding: 28px 0 28px 0;
  position: relative;
}

.process__step:not(:last-child) {
  border-bottom: 1px solid rgba(29,35,41,.06);
}

.process__step-bubble {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 1.5px solid var(--clr-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-ink-soft);
  transition: border-color .3s, color .3s, box-shadow .3s;
  z-index: 2;
}

.process__step-bubble svg {
  width: 22px;
  height: 22px;
}

.process__step.in-view .process__step-bubble,
.process__step:hover .process__step-bubble {
  border-color: var(--clr-teal);
  color: var(--clr-teal);
  box-shadow: 0 0 0 5px var(--clr-teal-dim);
}

.process__step-num-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: .58rem;
  font-weight: 700;
  color: var(--clr-white);
  background: var(--clr-teal);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.process__step-body { flex: 1; padding: 4px 0; }

.process__step-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  color: var(--clr-ink);
}

.process__step-body p {
  font-size: .92rem;
  color: var(--clr-ink-soft);
  line-height: 1.55;
  max-width: 520px;
}

.process__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--clr-teal);
  margin-top: 12px;
  transition: gap .2s;
}

.process__link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════════════════ */
.pricing { background: var(--clr-bg); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.pricing__card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-mist);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}

.pricing__card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(45,156,149,.3);
}

.pricing__card--featured {
  border-color: var(--clr-teal);
  background: linear-gradient(160deg, rgba(45,156,149,.04) 0%, var(--clr-white) 60%);
  box-shadow: 0 0 0 3px var(--clr-teal-dim), var(--shadow-card);
}

.pricing__card--featured:hover {
  box-shadow: 0 0 0 3px var(--clr-teal-glow), var(--shadow-card-hover);
}

.pricing__card--app {
  background: var(--clr-bg-alt);
  border-style: dashed;
}

.pricing__popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-teal);
  background: var(--clr-teal-dim);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 16px;
  width: fit-content;
}

.popular-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-teal);
  animation: popularPulse 3s ease-in-out infinite;
}

@keyframes popularPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--clr-teal-glow); transform: scale(1); }
  50%       { box-shadow: 0 0 0 5px transparent; transform: scale(1.1); }
}

.pricing__header { margin-bottom: 24px; }

.pricing__tier {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-ink-xsoft);
  margin-bottom: 10px;
}

.pricing__price {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--clr-ink);
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.pricing__price .pricing__currency {
  font-size: 1.1rem;
  margin-top: 6px;
  font-weight: 600;
  color: var(--clr-ink-soft);
}

.pricing__card--app .pricing__price {
  font-size: 1.6rem;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pricing__tagline {
  font-size: .85rem;
  color: var(--clr-ink-soft);
}

.pricing__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  font-size: .88rem;
  color: var(--clr-ink-soft);
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--clr-teal-dim);
  flex-shrink: 0;
  position: relative;
}

.check-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 3px;
  border-left: 1.5px solid var(--clr-teal);
  border-bottom: 1.5px solid var(--clr-teal);
  transform: translate(-50%, -60%) rotate(-45deg);
}

.pricing__upsell {
  margin-top: var(--space-md);
}

.pricing__upsell-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--clr-white);
  border: 1px solid var(--clr-mist);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  max-width: 640px;
  margin-inline: auto;
}

.pricing__upsell-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-teal-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing__upsell-inner p {
  font-size: .88rem;
  color: var(--clr-ink-soft);
}

.pricing__upsell-inner strong {
  color: var(--clr-ink);
}

/* ═══════════════════════════════════════════════════
   SPEED SECTION — redesigned
═══════════════════════════════════════════════════ */
.speed {
  background: var(--clr-ink);
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.speed__bg-glow {
  position: absolute;
  bottom: -20%;
  right: -8%;
  width: 560px;
  height: 560px;
  background: radial-gradient(ellipse at center, rgba(45,156,149,.1) 0%, transparent 65%);
  pointer-events: none;
}

.speed .section__eyebrow { color: var(--clr-teal); }
.speed__title { color: var(--clr-white); }

/* ── Stat callout ── */
.speed__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  margin: clamp(40px, 6vw, 64px) 0;
  text-align: center;
}

.speed__stat-num {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
}

.speed__stat-unit {
  font-size: clamp(.8rem, 1.5vw, 1rem);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.speed__stat-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 10px;
  opacity: .4;
}

.speed__stat--them .speed__stat-num {
  color: rgba(255,255,255,.18);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,.1);
  text-decoration-thickness: 3px;
}

.speed__stat--them .speed__stat-unit { color: rgba(255,255,255,.18); }

.speed__stat--us .speed__stat-num {
  color: var(--clr-teal);
  text-shadow: 0 0 60px rgba(45,156,149,.5);
}

.speed__stat--us .speed__stat-unit { color: rgba(255,255,255,.6); }
.speed__stat--us .speed__stat-label { opacity: .6; }

.speed__stat-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.speed__vs-text {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  padding: 6px 14px;
}

/* ── Race bars ── */
.speed__race {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px) clamp(20px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: var(--space-lg);
}

.speed__race-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.speed__race-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.speed__race-name {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.speed__race-name--them { color: rgba(255,255,255,.3); }
.speed__race-name--us   { color: var(--clr-teal); }

.speed__race-duration {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.speed__race-duration--them { color: rgba(255,255,255,.2); }
.speed__race-duration--us   { color: rgba(45,156,149,.8); }

.speed__race-track {
  position: relative;
  height: 10px;
  background: rgba(255,255,255,.05);
  border-radius: 99px;
  overflow: visible;
}

.speed__race-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  border-radius: 99px;
  width: 0%;
}

.speed__race-fill--them {
  background: rgba(255,255,255,.14);
  transition: width 2.6s cubic-bezier(0.1, 0, 0.4, 1);
}

.speed__race-fill--us {
  background: linear-gradient(90deg, var(--clr-teal), #56d4cc);
  box-shadow: 0 0 20px rgba(45,156,149,.55), 0 0 6px rgba(45,156,149,.8);
  transition: width .85s cubic-bezier(0.16, 1, 0.3, 1);
}

.speed__race.in-view .speed__race-fill--them { width: 100%; }
.speed__race.in-view .speed__race-fill--us   { width: 36%; }

/* Pip markers */
.speed__pip {
  position: absolute;
  left: var(--p);
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.speed__pip::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-ink);
  border: 2px solid rgba(255,255,255,.15);
  transition: border-color .3s;
}

.speed__pip span {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .58rem;
  font-weight: 500;
  color: rgba(255,255,255,.2);
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
  pointer-events: none;
}

.speed__pip span em {
  font-style: normal;
  display: block;
  opacity: .6;
}

.speed__pip--end::before { border-color: rgba(255,255,255,.25); }

.speed__pip--us::before {
  border-color: var(--clr-teal);
  background: var(--clr-teal);
  box-shadow: 0 0 10px rgba(45,156,149,.7), 0 0 20px rgba(45,156,149,.3);
  width: 12px;
  height: 12px;
}

.speed__pip--us span {
  color: var(--clr-teal);
  opacity: 1;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(45,156,149,.6);
}

.speed__pip--us span em {
  opacity: .8;
  color: rgba(255,255,255,.5);
  text-shadow: none;
}

.speed__pip--us.speed__pip--end::before {
  border-color: var(--clr-teal);
  background: var(--clr-teal);
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 3px rgba(45,156,149,.25),
              0 0 16px rgba(45,156,149,.8),
              0 0 32px rgba(45,156,149,.4);
  animation: pipPulse 1.8s ease-in-out infinite;
}

@keyframes pipPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(45,156,149,.25), 0 0 16px rgba(45,156,149,.8), 0 0 32px rgba(45,156,149,.4); }
  50%       { box-shadow: 0 0 0 7px rgba(45,156,149,.1), 0 0 24px rgba(45,156,149,.9), 0 0 48px rgba(45,156,149,.5); }
}

/* ── Reason cards ── */
.speed__reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.speed__reason {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: background .3s, border-color .3s, transform .3s;
  position: relative;
  overflow: hidden;
}

.speed__reason::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--clr-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.speed__reason:hover::before { transform: scaleX(1); }

.speed__reason:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(45,156,149,.25);
  transform: translateY(-3px);
}

.speed__reason-num {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--clr-teal);
  margin-bottom: 16px;
}

.speed__reason h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.speed__reason p {
  font-size: .88rem;
  color: rgba(255,255,255,.4);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   PROJECTS SECTION
═══════════════════════════════════════════════════ */
.projects { background: var(--clr-bg); }

.projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.projects__card {
  background: var(--clr-white);
  border: 1px solid var(--clr-mist);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.projects__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* Project preview mockups */
.projects__preview {
  height: 180px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.projects__preview--1 { background: linear-gradient(135deg, #e8f5f4 0%, #f0faf9 100%); }
.projects__preview--2 { background: linear-gradient(135deg, #fdf3e7 0%, #fef9f2 100%); }
.projects__preview--3 { background: linear-gradient(135deg, #1D2329 0%, #2a3540 100%); }

.pp-chrome {
  display: flex;
  gap: 5px;
  padding: 8px 12px;
  background: rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.projects__preview--3 .pp-chrome { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.06); }

.pp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,.12);
}

.projects__preview--3 .pp-dot { background: rgba(255,255,255,.15); }

.pp-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pp-body--dark .pp-nav-bar { background: rgba(255,255,255,.1); }

.pp-nav-bar {
  height: 10px;
  background: rgba(0,0,0,.1);
  border-radius: 4px;
}

.pp-hero-row {
  display: flex;
  gap: 8px;
}

.pp-block-tall {
  flex: 1;
  height: 50px;
  background: rgba(45,156,149,.15);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
  gap: 4px;
}

.pp-block-tall::before,
.pp-block-tall::after {
  content: '';
  height: 6px;
  border-radius: 3px;
  background: rgba(29,35,41,.2);
}

.pp-block-tall::after { width: 60%; }

.pp-block-img {
  width: 56px;
  height: 50px;
  background: linear-gradient(135deg, rgba(45,156,149,.25), rgba(45,156,149,.1));
  border-radius: 6px;
  flex-shrink: 0;
}

.pp-cards-row {
  display: flex;
  gap: 5px;
}

.pp-card-sm {
  flex: 1;
  height: 32px;
  background: rgba(255,255,255,.7);
  border-radius: 5px;
  border: 1px solid rgba(0,0,0,.06);
}

.pp-shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.pp-product {
  height: 44px;
  background: rgba(244,163,64,.15);
  border-radius: 6px;
  border: 1px solid rgba(244,163,64,.1);
}

.pp-body--dark {
  flex-direction: row;
  padding: 0;
  flex: 1;
  min-height: 120px;
}

.pp-sidebar {
  width: 28%;
  background: rgba(255,255,255,.04);
  border-right: 1px solid rgba(255,255,255,.06);
  align-self: stretch;
}

.pp-dash {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pp-stat-row {
  display: flex;
  gap: 5px;
}

.pp-stat {
  flex: 1;
  height: 26px;
  background: rgba(45,156,149,.2);
  border-radius: 4px;
}

.pp-chart-block {
  flex: 1;
  background: rgba(45,156,149,.08);
  border-radius: 4px;
  border: 1px solid rgba(45,156,149,.15);
}

.projects__meta {
  padding: 20px 24px;
}

.projects__badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-teal);
  background: var(--clr-teal-dim);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.projects__meta h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 6px;
  color: var(--clr-ink);
}

.projects__meta p {
  font-size: .85rem;
  color: var(--clr-ink-soft);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   CTA FINAL SECTION
═══════════════════════════════════════════════════ */
.cta-block {
  background: var(--clr-ink);
  position: relative;
  overflow: hidden;
}

.cta-block__inner {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: var(--space-xl) 0;
}

.cta-block__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(45,156,149,.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.cta-block__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-teal);
  margin-bottom: 16px;
}

.cta-block__headline {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: 16px;
}

.cta-block__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--space-md);
}

.cta-block__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-block .btn--ghost {
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.2);
}

.cta-block .btn--ghost:hover {
  color: var(--clr-white);
  border-color: rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--clr-dark);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: var(--space-md) var(--space-lg);
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  border-radius: 8px;
  opacity: .9;
}

.footer__brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.35);
}

.footer__links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

.footer__links a {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}

.footer__links a:hover { color: var(--clr-teal); }

.footer__copy {
  grid-column: 1 / -1;
  font-size: .75rem;
  color: rgba(255,255,255,.2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: var(--space-sm);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .values__grid {
    grid-template-columns: 1fr;
  }

  .values__pillar {
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .speed__reasons {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav__links,
  .nav__cta { display: none; }

  .nav__hamburger { display: flex; }
  .nav__mobile { display: block; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: var(--space-md);
  }

  .hero__badge { margin-inline: auto; }

  .hero__ctas { justify-content: center; }

  .hero__visual { display: none; }

  .problem__grid {
    grid-template-columns: 1fr;
  }

  .values__grid { gap: 0; }

  .process__track { display: none; }

  .process__step { padding-left: 0; }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-inline: auto;
  }

  .speed__stats {
    gap: var(--space-md);
  }

  .speed__stat-num { font-size: 3rem; }

  .speed__reasons {
    grid-template-columns: 1fr;
  }

  .projects__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__links {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .section__title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 64px;
    --space-lg: 48px;
  }

  .hero__headline { font-size: 2rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .problem__resolution { flex-direction: column; gap: 12px; }
  .problem__line { width: 80px; height: 1px; flex: none; }

  .cta-block__btns { flex-direction: column; }
  .cta-block__btns .btn { width: 100%; justify-content: center; }
}
