/* ==========================================================================
   PRO360 Technology — pro360.technology
   Brand: deep teal-navy #04323F · gold #F1CC56
   ========================================================================== */

:root {
  /* Brand */
  --navy-900: #021d25;
  --navy-800: #04262f;
  --navy-700: #04323f;
  --navy-600: #06414f;
  --navy-500: #0a5566;
  --gold-500: #f1cc56;
  --gold-400: #f7dc85;
  --gold-600: #d4ab34;

  /* Neutrals */
  --ink: #0b1418;
  --slate-700: #33474e;
  --slate-500: #64808a;
  --slate-300: #b3c4ca;
  --slate-100: #eef3f5;
  --paper: #ffffff;
  --paper-alt: #f6f9fa;

  /* Type */
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --wrap: 1200px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(4, 50, 63, .06), 0 4px 12px rgba(4, 50, 63, .05);
  --shadow-md: 0 8px 30px rgba(4, 50, 63, .10);
  --shadow-lg: 0 24px 70px rgba(4, 50, 63, .16);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; letter-spacing: -.025em; margin: 0 0 .5em; font-weight: 800; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* -------------------------------------------------------------- layout -- */
.wrap { width: min(100% - 48px, var(--wrap)); margin-inline: auto; }
.section { padding: 110px 0; position: relative; }
.section--tight { padding: 80px 0; }
.section--alt { background: var(--paper-alt); }
.section--dark { background: var(--navy-800); color: var(--slate-300); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--navy-500); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.section--dark .eyebrow { color: var(--gold-500); }

.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.section-head p { font-size: 18.5px; color: var(--slate-500); margin: 0; }
.section--dark .section-head p { color: var(--slate-300); }

.gold { color: var(--gold-500); }

/* ------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-size: 15.5px; font-weight: 700; letter-spacing: -.01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  box-shadow: 0 10px 30px rgba(241, 204, 86, .28);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(241, 204, 86, .38); }
.btn--navy { background: var(--navy-700); color: #fff; box-shadow: var(--shadow-md); }
.btn--navy:hover { transform: translateY(-2px); background: var(--navy-600); }
.btn--ghost {
  color: #fff; border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .04); backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: rgba(241, 204, 86, .5); }
.btn--lg { padding: 17px 34px; font-size: 16.5px; }

/* ---------------------------------------------------------------- nav -- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0;
  transition: background .3s var(--ease), padding .3s var(--ease), box-shadow .3s var(--ease);
}
.nav__inner { display: flex; align-items: center; gap: 28px; }
.nav__logo { flex: none; }
.nav__logo img { height: 34px; width: auto; max-width: none; }
.nav__links { display: flex; gap: 30px; margin-left: auto; white-space: nowrap; }
.nav__links a {
  font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, .82);
  position: relative; padding: 6px 0; transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold-500); border-radius: 2px; transition: width .28s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: #fff; }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }

.nav.is-stuck {
  background: rgba(2, 29, 37, .88);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 12px 0;
}
.nav.is-solid .nav__links a { color: rgba(255, 255, 255, .82); }

.nav__burger { display: none; width: 42px; height: 42px; border-radius: 10px; align-items: center; justify-content: center; }
.nav__burger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; position: relative; transition: .25s var(--ease); }
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: .25s var(--ease);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }
.nav.is-open .nav__burger span { background: transparent; }
.nav.is-open .nav__burger span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__burger span::after { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------- hero -- */
.hero {
  position: relative; overflow: hidden;
  padding: 168px 0 96px;
  background:
    radial-gradient(1100px 620px at 50% -8%, rgba(10, 85, 102, .55), transparent 62%),
    radial-gradient(760px 460px at 88% 18%, rgba(241, 204, 86, .10), transparent 60%),
    linear-gradient(178deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: var(--slate-300);
  text-align: center;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(1000px 620px at 50% 20%, #000 30%, transparent 78%);
  pointer-events: none;
}
.hero > .wrap { position: relative; z-index: 2; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 8px; border-radius: 999px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  font-size: 13.5px; font-weight: 600; color: rgba(255, 255, 255, .88);
  margin-bottom: 28px; backdrop-filter: blur(8px);
}
.hero__badge b {
  background: var(--gold-500); color: var(--navy-900);
  padding: 3px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 800; letter-spacing: .04em;
}

.hero__kicker {
  font-family: Georgia, "Times New Roman", serif; font-style: italic;
  font-size: clamp(22px, 3vw, 34px); color: rgba(255, 255, 255, .9);
  display: flex; align-items: center; justify-content: center; gap: 22px;
  margin-bottom: 6px; font-weight: 400;
}
.hero__kicker::before, .hero__kicker::after {
  content: ""; width: clamp(30px, 8vw, 88px); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 204, 86, .7), transparent);
}
.hero h1 {
  font-size: clamp(40px, 7.2vw, 88px); font-weight: 800; letter-spacing: -.035em;
  color: #fff; margin: 0 0 22px;
}
.hero h1 .gold { display: inline-block; background: linear-gradient(120deg, var(--gold-400), var(--gold-600)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: clamp(17px, 2vw, 21px); color: rgba(255, 255, 255, .74); max-width: 660px; margin: 0 auto 20px; }

.hero__divider { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 36px; }
.hero__divider i { display: block; height: 2px; width: 90px; border-radius: 2px; background: linear-gradient(90deg, transparent, var(--gold-500)); }
.hero__divider i + i { background: linear-gradient(90deg, var(--gold-500), transparent); }
.hero__divider b { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 14px var(--gold-500); }

.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }

/* ------------------------------------------------------ dashboard mock -- */
.mock { position: relative; max-width: 1000px; margin: 0 auto; }
.mock__glow {
  position: absolute; inset: -6% -4% -18%;
  background: radial-gradient(closest-side, rgba(10, 85, 102, .75), transparent 74%);
  filter: blur(46px); z-index: 0;
}
.mock__frame {
  position: relative; z-index: 1;
  border-radius: 14px; overflow: hidden; text-align: left;
  background: linear-gradient(160deg, #06303c, #042129);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .55), 0 0 0 1px rgba(241, 204, 86, .08);
}
.mock__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px; background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.mock__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .18); }
.mock__url {
  margin-left: 12px; flex: 1; max-width: 320px;
  background: rgba(0, 0, 0, .28); border-radius: 6px;
  padding: 4px 12px; font-family: var(--font-mono); font-size: 11.5px; color: rgba(255, 255, 255, .5);
}
.mock__body { display: grid; grid-template-columns: 186px 1fr; min-height: 430px; }

.mock__side { padding: 20px 14px; border-right: 1px solid rgba(255, 255, 255, .07); background: rgba(0, 0, 0, .16); }
.mock__brand { display: flex; align-items: center; gap: 9px; padding: 0 8px 18px; }
.mock__brand i { width: 22px; height: 22px; border-radius: 6px; background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); display: block; }
.mock__brand span { font-size: 13.5px; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.mock__nav li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px; margin-bottom: 3px;
  font-size: 12.5px; font-weight: 600; color: rgba(255, 255, 255, .55);
}
.mock__nav li i { width: 14px; height: 14px; border-radius: 4px; background: rgba(255, 255, 255, .18); flex: none; }
.mock__nav li.on { background: rgba(241, 204, 86, .12); color: #fff; box-shadow: inset 2px 0 0 var(--gold-500); }
.mock__nav li.on i { background: var(--gold-500); }

.mock__main { padding: 22px 24px; }
.mock__h { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 20px; }
.mock__h h4 { color: #fff; font-size: 18px; margin: 0 0 3px; }
.mock__h p { font-size: 12px; color: rgba(255, 255, 255, .45); margin: 0; }
.mock__pill { padding: 6px 14px; border-radius: 999px; background: var(--gold-500); color: var(--navy-900); font-size: 11.5px; font-weight: 800; }

.mock__kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }
.mock__kpi { padding: 12px 13px; border-radius: 10px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .07); }
.mock__kpi span { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; color: rgba(255, 255, 255, .45); margin-bottom: 5px; }
.mock__kpi b { font-size: 19px; color: #fff; font-weight: 800; letter-spacing: -.02em; }
.mock__kpi em { display: block; font-style: normal; font-size: 10.5px; color: #6fe0a8; margin-top: 3px; font-weight: 700; }

.mock__chart {
  border-radius: 12px; padding: 16px; background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
}
.mock__chart-h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mock__chart-h b { font-size: 12.5px; color: #fff; }
.mock__chart-h span { font-size: 11px; color: var(--gold-500); font-weight: 700; }
.mock__bars { display: flex; align-items: flex-end; gap: 9px; height: 118px; }
.mock__bars i {
  flex: 1; border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--gold-500), rgba(241, 204, 86, .18));
  transform-origin: bottom; animation: grow 1.1s var(--ease) both;
}
@keyframes grow { from { transform: scaleY(.04); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }

/* ------------------------------------------------------- floating chips */
.hero__chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 900px; margin: 38px auto 0; position: relative; z-index: 3; }
.chip {
  padding: 20px 18px; border-radius: 14px; text-align: center;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(18px) saturate(150%);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.chip:hover { transform: translateY(-6px); border-color: rgba(241, 204, 86, .45); background: rgba(255, 255, 255, .1); }
.chip i {
  width: 40px; height: 40px; border-radius: 11px; margin: 0 auto 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(241, 204, 86, .22), rgba(241, 204, 86, .06));
  border: 1px solid rgba(241, 204, 86, .3);
}
.chip i svg { width: 19px; height: 19px; stroke: var(--gold-500); }
.chip b { display: block; font-size: 14px; color: #fff; font-weight: 700; }
.chip span { display: block; font-size: 12px; color: rgba(255, 255, 255, .55); margin-top: 3px; }

/* --------------------------------------------------------- stats strip -- */
.stats { background: var(--navy-900); padding: 0; }
.stats__inner {
  display: grid; grid-template-columns: repeat(4, 1fr) auto; align-items: center; gap: 20px;
  padding: 30px 34px; border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .12);
  transform: translateY(-52px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}
.stat { text-align: center; border-right: 1px solid rgba(255, 255, 255, .1); }
.stat:last-of-type { border-right: 0; }
.stat b { display: block; font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -.03em; color: var(--gold-500); }
.stat span { font-size: 13px; color: rgba(255, 255, 255, .6); }

/* ------------------------------------------------------------ marquee -- */
.marquee { padding: 0 0 26px; background: var(--navy-900); overflow: hidden; }
.marquee__row {
  display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
  font-size: 14.5px; font-weight: 600; letter-spacing: .06em; color: rgba(255, 255, 255, .5);
}
.marquee__row i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-500); }
.marquee__row em { font-style: normal; color: var(--gold-500); }

/* --------------------------------------------------------- categories -- */
.cats { display: block; }
.cat + .cat { margin-top: 58px; padding-top: 54px; border-top: 1px solid #e5edef; }
.cat__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 30px; flex-wrap: wrap;
}
.cat__head h3 {
  display: flex; align-items: center; gap: 13px; margin: 0;
  font-size: clamp(21px, 2.6vw, 29px); letter-spacing: -.02em;
}
.cat__head h3::before {
  content: ""; width: 26px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--navy-500));
}
.cat__head p { margin: 0; font-size: 15.5px; color: var(--slate-500); max-width: 400px; }
@media (max-width: 620px) {
  .cat__head { gap: 8px; margin-bottom: 22px; }
  .cat__head p { max-width: none; }
}

/* ------------------------------------------------------------ product -- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--4 { grid-template-columns: 1fr; } }

.product {
  position: relative; padding: 30px 28px 28px; border-radius: var(--radius-lg);
  background: var(--paper); border: 1px solid #e2eaed;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  overflow: hidden; display: flex; flex-direction: column;
}
.product::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--navy-500));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.product:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product:hover::before { transform: scaleX(1); }

.product__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--navy-700), var(--navy-500));
  box-shadow: 0 8px 22px rgba(4, 50, 63, .28); margin-bottom: 20px;
}
.product__icon svg { width: 24px; height: 24px; stroke: var(--gold-500); }
.product__tag {
  position: absolute; top: 26px; right: 26px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy-500); background: var(--slate-100); padding: 5px 11px; border-radius: 999px;
}
.product h3 { font-size: 21px; margin-bottom: 8px; }
.product > p { font-size: 15.5px; color: var(--slate-500); margin-bottom: 20px; }
.product__list { margin-top: auto; border-top: 1px solid #eaf0f2; padding-top: 18px; }
.product__list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--slate-700); padding: 5px 0; font-weight: 500;
}
/* clickable product card */
a.product { color: inherit; }
a.product:hover h3 { color: var(--navy-600); }
.product__go {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-size: 14.5px; font-weight: 700; color: var(--navy-600);
}
.product__go svg { width: 15px; height: 15px; stroke: currentColor; transition: transform .25s var(--ease); }
a.product:hover .product__go svg { transform: translateX(4px); }

.product__list li::before {
  content: ""; flex: none; width: 15px; height: 15px; margin-top: 4px; border-radius: 50%;
  background: rgba(241, 204, 86, .2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9862a' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/9px no-repeat;
}

/* ----------------------------------------------------- planning chain -- */
.chain { display: grid; gap: 0; }
.chain__row {
  position: relative; display: flex; align-items: center; gap: 16px;
  padding: 15px 18px; border-radius: 12px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .09);
}
.chain__row + .chain__row { margin-top: 26px; }
.chain__row + .chain__row::before {
  content: ""; position: absolute; left: 33px; top: -22px; height: 22px; width: 2px;
  background: linear-gradient(180deg, rgba(241, 204, 86, .2), var(--gold-500));
}
.chain__row + .chain__row::after {
  content: ""; position: absolute; left: 29px; top: -8px;
  width: 10px; height: 10px; border-right: 2px solid var(--gold-500);
  border-bottom: 2px solid var(--gold-500); transform: rotate(45deg);
}
.chain__op {
  flex: none; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 14px; font-weight: 700;
  background: rgba(241, 204, 86, .14); color: var(--gold-500); border: 1px solid rgba(241, 204, 86, .3);
}
.chain__txt { flex: 1; }
.chain__txt b { display: block; color: #fff; font-size: 14.5px; font-weight: 700; letter-spacing: -.01em; }
.chain__txt span { font-size: 12px; color: rgba(255, 255, 255, .5); }
.chain__val { font-family: var(--font-mono); font-size: 15px; font-weight: 700; color: var(--gold-500); white-space: nowrap; }
.chain__row--goal { background: rgba(241, 204, 86, .12); border-color: rgba(241, 204, 86, .35); }
.chain__row--goal .chain__txt b { color: #fff; }
.chain__row--final { background: rgba(111, 224, 168, .1); border-color: rgba(111, 224, 168, .3); }
.chain__row--final .chain__op { background: rgba(111, 224, 168, .16); color: #6fe0a8; border-color: rgba(111, 224, 168, .35); }
.chain__row--final .chain__val { color: #6fe0a8; }

/* ------------------------------------------------------- loan pipeline -- */
.pipe { display: grid; gap: 10px; }
.pipe__row {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px; border-radius: 12px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .09);
}
.pipe__row b {
  flex: none; width: 26px; height: 26px; border-radius: 8px;
  display: grid; place-items: center; font-size: 11.5px; font-weight: 800;
  background: rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .6);
}
.pipe__row span { font-size: 14.5px; font-weight: 600; color: rgba(255, 255, 255, .82); }
.pipe__row em {
  margin-left: auto; font-style: normal; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .5);
}
.pipe__row.done b { background: rgba(111, 224, 168, .18); color: #6fe0a8; }
.pipe__row.done em { background: rgba(111, 224, 168, .14); color: #6fe0a8; }
.pipe__row.now {
  background: rgba(241, 204, 86, .12); border-color: rgba(241, 204, 86, .35);
}
.pipe__row.now b { background: var(--gold-500); color: var(--navy-900); }
.pipe__row.now span { color: #fff; }
.pipe__row.now em { background: var(--gold-500); color: var(--navy-900); }

.pipe__case {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; margin-bottom: 16px; border-radius: 12px;
  background: rgba(0, 0, 0, .22); border: 1px solid rgba(255, 255, 255, .1);
}
.pipe__case b { display: block; color: #fff; font-size: 15px; }
.pipe__case span { font-size: 12.5px; color: rgba(255, 255, 255, .5); }
.pipe__case i {
  font-style: normal; font-size: 19px; font-weight: 800; letter-spacing: -.02em;
  color: var(--gold-500);
}

.pipe__foot {
  margin-top: 16px; padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255, 255, 255, .5);
}
.pipe__foot b { color: var(--gold-500); font-weight: 800; }

/* ---------------------------------------------------------- capability -- */
.cap {
  padding: 28px 26px; border-radius: var(--radius);
  background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .1);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.cap:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .07); border-color: rgba(241, 204, 86, .35); }
.cap i { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(241, 204, 86, .12); border: 1px solid rgba(241, 204, 86, .25); margin-bottom: 16px; }
.cap i svg { width: 20px; height: 20px; stroke: var(--gold-500); }
.cap h4 { font-size: 17px; margin-bottom: 7px; }
.cap p { font-size: 14.5px; color: var(--slate-300); margin: 0; opacity: .82; }

/* --------------------------------------------------------------- split -- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split__media {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900));
  padding: 28px; box-shadow: var(--shadow-lg);
}
.split h2 { font-size: clamp(28px, 3.4vw, 40px); }
.split p { font-size: 17px; color: var(--slate-500); }

.checklist li { display: flex; gap: 13px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid #e8eef0; }
.checklist li:last-child { border-bottom: 0; }
.checklist i {
  flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(241, 204, 86, .18); margin-top: 1px;
}
.checklist i svg { width: 14px; height: 14px; stroke: var(--gold-600); }
.checklist b { display: block; color: var(--ink); font-size: 15.5px; }
.checklist span { font-size: 14.5px; color: var(--slate-500); }

/* checklist on dark sections */
.section--dark .checklist li { border-bottom-color: rgba(255, 255, 255, .1); }
.section--dark .checklist b { color: #fff; }
.section--dark .checklist span { color: var(--slate-300); opacity: .82; }
.section--dark .checklist i { background: rgba(241, 204, 86, .18); }
.section--dark .checklist i svg { stroke: var(--gold-500); }

/* ----------------------------------------------------------- code card -- */
.codecard { font-family: var(--font-mono); font-size: 13px; line-height: 1.9; color: rgba(255, 255, 255, .62); }
.codecard .k { color: var(--gold-500); }
.codecard .s { color: #7fd8b0; }
.codecard .c { color: rgba(255, 255, 255, .3); }

/* -------------------------------------------------------------- process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 27px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, rgba(241, 204, 86, .5), rgba(10, 85, 102, .3));
}
.step { position: relative; text-align: center; }
.step b {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px;
  background: var(--paper-alt); border: 2px solid var(--gold-500); color: var(--navy-700);
  font-size: 17px; font-weight: 800; position: relative; z-index: 2;
}
.section--alt .step b { background: var(--paper-alt); }
.step h4 { font-size: 17px; margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--slate-500); margin: 0; }

/* ------------------------------------------------------------ pricing -- */
.billing-toggle {
  display: inline-flex; align-items: center; gap: 4px; margin: 0 auto 46px;
  padding: 5px; border-radius: 999px; background: var(--slate-100); border: 1px solid #e2eaed;
}
.billing-toggle__wrap { text-align: center; }
.billing-toggle__opt {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 999px;
  font-size: 14.5px; font-weight: 700; color: var(--slate-500);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.billing-toggle__opt.is-on { background: var(--navy-700); color: #fff; box-shadow: var(--shadow-sm); }
.billing-toggle__save {
  font-size: 11px; font-weight: 800; letter-spacing: .03em;
  padding: 3px 9px; border-radius: 999px;
  background: rgba(241, 204, 86, .25); color: var(--gold-600);
}
.billing-toggle__opt.is-on .billing-toggle__save { background: var(--gold-500); color: var(--navy-900); }

.plan__save {
  font-size: 13px; font-weight: 700; color: var(--gold-600);
  margin: -14px 0 22px; min-height: 18px;
}
.plan--featured .plan__save { color: var(--gold-500); }
#pricing:not(.is-annual) .plan__save { visibility: hidden; }

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: 34px 30px; border-radius: var(--radius-lg);
  background: var(--paper); border: 1px solid #e2eaed;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan--featured {
  background: linear-gradient(165deg, var(--navy-700), var(--navy-900));
  border-color: transparent; box-shadow: var(--shadow-lg);
}
.plan--featured .plan__name { color: #fff; }
.plan--featured .plan__tagline { color: rgba(255, 255, 255, .6); }
.plan--featured .plan__price b { color: #fff; }
.plan--featured .plan__price span { color: rgba(255, 255, 255, .55); }
.plan--featured .plan__list { border-top-color: rgba(255, 255, 255, .14); }
.plan--featured .plan__list li { color: rgba(255, 255, 255, .86); }
.plan--featured .plan__list li::before {
  background: rgba(241, 204, 86, .22) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f1cc56' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/9px no-repeat;
}

.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900); font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(241, 204, 86, .35);
}
.plan__name { font-size: 15px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--navy-600); margin-bottom: 4px; }
.plan__tagline { font-size: 14px; color: var(--slate-500); margin-bottom: 22px; min-height: 40px; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; }
.plan__price em { font-style: normal; font-size: 20px; font-weight: 700; color: var(--slate-500); align-self: flex-start; margin-top: 6px; }
.plan--featured .plan__price em { color: rgba(255, 255, 255, .7); }
.plan__price b { font-size: 46px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); line-height: 1; }
.plan__price span { font-size: 15px; color: var(--slate-500); font-weight: 600; }
.plan__list { margin-bottom: 26px; border-top: 1px solid #eaf0f2; padding-top: 20px; flex: 1; }
.plan__list li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 14.5px; color: var(--slate-700); padding: 6px 0; font-weight: 500;
}
.plan__list li::before {
  content: ""; flex: none; width: 16px; height: 16px; margin-top: 3px; border-radius: 50%;
  background: rgba(241, 204, 86, .2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9862a' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}
.plan .btn { width: 100%; justify-content: center; }

.pricing__note {
  text-align: center; margin-top: 34px; font-size: 14.5px; color: var(--slate-500);
}
.pricing__note b { color: var(--navy-600); font-weight: 700; }

@media (max-width: 1024px) {
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan--featured { order: -1; }
  .plan__tagline { min-height: 0; }
}

/* ---------------------------------------------------------------- cta -- */
.cta {
  position: relative; overflow: hidden; border-radius: 30px;
  padding: 68px 56px; text-align: center;
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(10, 85, 102, .6), transparent 65%),
    linear-gradient(150deg, var(--navy-700), var(--navy-900));
  box-shadow: var(--shadow-lg);
}
.cta::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(600px 300px at 50% 50%, #000, transparent 75%);
}
.cta > * { position: relative; z-index: 2; }
.cta h2 { color: #fff; font-size: clamp(28px, 3.8vw, 44px); }
.cta p { color: rgba(255, 255, 255, .74); font-size: 18px; max-width: 560px; margin: 0 auto 30px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* -------------------------------------------------------------- footer -- */
.footer { background: var(--navy-900); color: rgba(255, 255, 255, .55); padding: 72px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 48px; }
.footer__logo img { height: 36px; margin-bottom: 18px; }
.footer p { font-size: 14.5px; line-height: 1.7; max-width: 300px; }
.footer h5 { color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 18px; font-weight: 800; }
.footer__links li { margin-bottom: 11px; }
.footer__links a { font-size: 14.5px; transition: color .2s; }
.footer__links a:hover { color: var(--gold-500); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px;
}
.footer__bottom a:hover { color: var(--gold-500); }
.footer__legal { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer__legal a { color: rgba(255, 255, 255, .7); transition: color .2s; }

/* ------------------------------------------------------------ contact -- */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact__card {
  padding: 34px; border-radius: var(--radius-lg); background: var(--paper);
  border: 1px solid #e2eaed; box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 11px; border: 1px solid #dae3e6;
  font: inherit; font-size: 15px; color: var(--ink); background: var(--paper-alt);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--gold-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(241, 204, 86, .16);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact__info li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid #e8eef0; }
.contact__info i { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--navy-700); }
.contact__info i svg { width: 19px; height: 19px; stroke: var(--gold-500); }
.contact__info b { display: block; color: var(--ink); font-size: 15px; }
.contact__info span, .contact__info a { font-size: 14.5px; color: var(--slate-500); }
.contact__info a:hover { color: var(--navy-600); }

/* ------------------------------------------------------ whatsapp FAB -- */
.wa {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  display: flex; align-items: center; gap: 0;
  height: 58px; padding: 0 19px; border-radius: 999px;
  background: #25d366; color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .38), 0 2px 8px rgba(0, 0, 0, .18);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), gap .3s var(--ease), padding .3s var(--ease);
}
.wa svg { width: 28px; height: 28px; fill: currentColor; flex: none; }
.wa span {
  max-width: 0; overflow: hidden; white-space: nowrap;
  font-size: 15px; font-weight: 700; letter-spacing: -.01em;
  transition: max-width .35s var(--ease);
}
.wa:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37, 211, 102, .5); gap: 11px; }
.wa:hover span { max-width: 190px; }
.wa::after {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  border: 2px solid #25d366; animation: waPulse 2.6s var(--ease) infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .65; }
  70%, 100% { transform: scale(1.35); opacity: 0; }
}

/* WhatsApp-green button variant */
.btn--wa { background: #25d366; color: #fff; box-shadow: 0 10px 30px rgba(37, 211, 102, .28); }
.btn--wa:hover { transform: translateY(-2px); background: #1eb955; box-shadow: 0 16px 40px rgba(37, 211, 102, .4); }
.btn--wa svg { width: 19px; height: 19px; fill: currentColor; stroke: none; }
.btn--wa:hover svg { transform: none; }

.contact__info i.is-wa { background: #25d366; }
.contact__info i.is-wa svg { fill: #fff; stroke: none; width: 20px; height: 20px; }

/* --------------------------------------------------------- blog page -- */
.bloghero {
  padding: 132px 0 56px;
  background:
    radial-gradient(900px 420px at 50% -20%, rgba(10, 85, 102, .5), transparent 62%),
    linear-gradient(178deg, var(--navy-800), var(--navy-900));
  color: var(--slate-300); text-align: center;
}
.bloghero .eyebrow { justify-content: center; color: var(--gold-500); }
.bloghero h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); margin-bottom: 14px; }
.bloghero p { font-size: 18px; color: rgba(255, 255, 255, .72); max-width: 620px; margin: 0 auto; }

/* ------------------------------------------------------ product page -- */
.phero {
  position: relative; overflow: hidden; padding: 128px 0 84px;
  background:
    radial-gradient(900px 520px at 78% 0%, rgba(10, 85, 102, .5), transparent 62%),
    linear-gradient(178deg, var(--navy-800), var(--navy-900));
  color: var(--slate-300);
}
.phero .split { align-items: center; }
.crumb { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: rgba(255, 255, 255, .55); margin-bottom: 20px; }
.crumb a { color: rgba(255, 255, 255, .55); transition: color .2s; }
.crumb a:hover { color: var(--gold-500); }
.crumb svg { width: 13px; height: 13px; opacity: .5; }
.pbadge {
  display: inline-block; margin-bottom: 16px; padding: 5px 13px; border-radius: 999px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(241, 204, 86, .15); color: var(--gold-500); border: 1px solid rgba(241, 204, 86, .32);
}
.phero h1 { font-size: clamp(33px, 5vw, 54px); color: #fff; margin: 0 0 16px; letter-spacing: -.03em; }
.phero .lede { font-size: 18.5px; line-height: 1.6; color: rgba(255, 255, 255, .78); margin-bottom: 28px; }
.phero__cta { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 30px; }
.pmeta { display: flex; gap: 30px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); }
.pmeta div b { display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255, 255, 255, .45); margin-bottom: 4px; }
.pmeta div span { font-size: 14.5px; color: #fff; font-weight: 600; }

.feat { padding: 26px 24px; border-radius: var(--radius); background: var(--paper); border: 1px solid #e2eaed; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feat i { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(140deg, var(--navy-700), var(--navy-500)); margin-bottom: 15px; }
.feat i svg { width: 20px; height: 20px; stroke: var(--gold-500); }
.feat h4 { font-size: 16.5px; margin-bottom: 6px; }
.feat p { font-size: 14.5px; color: var(--slate-500); margin: 0; }

@media (max-width: 1024px) { .phero { padding: 116px 0 64px; } }

/* product screenshot in a browser frame */
.shotwrap { max-width: 1060px; margin-inline: auto; }
.shot { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid #e2eaed; background: #fff; }
.shot__bar { display: flex; align-items: center; gap: 7px; padding: 11px 16px; background: var(--paper-alt); border-bottom: 1px solid #e8eef0; }
.shot__bar i { width: 11px; height: 11px; border-radius: 50%; background: #cdd8dc; display: block; }
.shot__url { margin-left: 12px; font-family: var(--font-mono); font-size: 12px; color: var(--slate-500); background: #fff; border: 1px solid #e8eef0; padding: 4px 13px; border-radius: 6px; }
.shot img { display: block; width: 100%; height: auto; }

/* legal / policy pages */
.legal { max-width: 820px; margin-inline: auto; }
.legal__updated {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .04em;
  color: var(--navy-600); background: var(--slate-100); padding: 7px 15px; border-radius: 999px;
  margin-bottom: 34px;
}
.legal h2 {
  font-size: 22px; margin: 40px 0 12px; padding-top: 26px;
  border-top: 1px solid #eaf0f2;
}
.legal h2:first-of-type { border-top: 0; padding-top: 0; }
.legal h3 { font-size: 17px; margin: 22px 0 8px; }
.legal p, .legal li { font-size: 16px; line-height: 1.75; color: var(--slate-700); }
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 16px; padding-left: 4px; }
.legal ul li {
  position: relative; padding: 4px 0 4px 26px;
}
.legal ul li::before {
  content: ""; position: absolute; left: 0; top: 13px; width: 15px; height: 15px; border-radius: 50%;
  background: rgba(241, 204, 86, .22) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9862a' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/9px no-repeat;
}
.legal strong { color: var(--ink); font-weight: 700; }
.legal a { color: var(--navy-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--gold-600); }
.legal__note {
  margin-top: 40px; padding: 20px 24px; border-radius: var(--radius);
  background: var(--paper-alt); border: 1px solid #e2eaed; font-size: 14.5px; color: var(--slate-500);
}

.soro-blog { min-height: 60vh; max-width: 860px; margin-inline: auto; }
.soro-blog:empty::before {
  content: "Loading posts…";
  display: grid; place-items: center; min-height: 40vh;
  color: var(--slate-500); font-size: 15px;
}

/* -------------------------------------------------------------- reveal -- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .mock__bars i { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------- responsive -- */
@media (max-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .steps::before { display: none; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .stats__inner .btn { grid-column: 1 / -1; justify-self: center; }
  .stat:nth-child(2n) { border-right: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .mock__body { grid-template-columns: 1fr; }
  .mock__side { display: none; }
}
/* Nav collapses to a burger well before the links can crowd or wrap. */
@media (max-width: 980px) {
  .nav__links {
    position: fixed; inset: 68px 16px auto 16px; flex-direction: column; gap: 4px;
    background: rgba(2, 29, 37, .97); backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .12); border-radius: 18px; padding: 16px;
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: .28s var(--ease);
  }
  .nav.is-open .nav__links { opacity: 1; visibility: visible; transform: none; }
  .nav__links a { padding: 11px 12px; font-size: 16px; }
  .nav__links a::after { display: none; }
  .nav__burger { display: flex; order: 3; }
  .nav__cta { margin-left: auto; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 76px 0; }
  .wrap { width: min(100% - 34px, var(--wrap)); }
  .nav__cta .btn { display: none; }
  .hero { padding: 128px 0 80px; }
  .hero__chips { grid-template-columns: repeat(2, 1fr); margin-top: 34px; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats__inner { padding: 24px 20px; transform: translateY(-36px); }
  .footer__grid { grid-template-columns: 1fr; }
  .cta { padding: 48px 24px; border-radius: 22px; }
  .wa { right: 16px; bottom: 16px; height: 54px; padding: 0 16px; }
  .wa span { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .mock__kpis { grid-template-columns: repeat(2, 1fr); }
  .hero__kicker::before, .hero__kicker::after { width: 26px; }
}
