:root {
  /* Surfaces */
  --blue: #0047AB;
  --blue-dark: #003380;
  --blue-soft: #EBF1FB;
  /* Accent TEXT: must differ in LIGHTNESS from near-black, not just hue.
     #0047AB reads as mud next to ink -- these pop. */
  --blue-pop: #0A6BFF;
  --blue-pop-2: #3D9BFF;
  --yellow: #FBBF24;
  --ink: #171717;
  --slate: #64748B;
  --slate-light: #94A3B8;
  --bg: #FCFCFC;
  --card-grey: #F5F6F8;
  --border: #E9EAEE;
  /* Replaces the banned navy. Deep neutral ink, no blue-purple cast. */
  --footer-1: #16181D;
  --footer-2: #0B0C0F;
  --container: 1200px;
  --r-card: 28px;
  --r-inner: 18px;
  --grid-cell: 10.5px;
  --dot-tile: 22px;
  --track-body: -0.013em;
  --ease-out: cubic-bezier(.22,.61,.36,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  /* Multi-layer fractional shadows + hairline ring (billow.so technique).
     Many small layers read "expensive"; one big blur reads cheap. */
  --shadow-pop:
    0 0 0 1px rgba(1,27,46,0.025),
    0 0.7px 1.9px -0.8px rgba(1,27,46,0.025),
    0 2.3px 6.2px -1.7px rgba(1,27,46,0.025),
    0 7px 19px -2.5px rgba(1,27,46,0.03);
  --shadow-lift:
    0 0 0 1px rgba(1,27,46,0.025),
    0 0.7px 2.2px -0.9px rgba(1,27,46,0.02),
    0 2.8px 7.4px -1.8px rgba(1,27,46,0.025),
    0 9px 24px -2.7px rgba(1,27,46,0.03),
    0 22px 54px -3.5px rgba(1,27,46,0.035);
  --shadow-lift-hi:
    0 0 0 1px rgba(10,107,255,0.05),
    0 2px 6px -1px rgba(1,27,46,0.025),
    0 10px 26px -2px rgba(1,27,46,0.035),
    0 30px 70px -4px rgba(1,27,46,0.05),
    0 -10px 40px -12px rgba(10,107,255,0.175);
}

/* Faded dot texture, authored natively (recolorable, scalable, no external asset).
   Applied via .dotted on any blue surface; fades out toward the bottom. */
.dotted { position: relative; overflow: hidden; }
.dotted::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.16) 1.6px, transparent 1.6px);
  background-size: var(--dot-tile) var(--dot-tile);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.55) 45%, transparent 92%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.55) 45%, transparent 92%);
  pointer-events: none;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* clip (not hidden) so position:sticky on the nav keeps working */
  overflow-x: clip;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: clip;
  position: relative;
  /* Negative tracking on body text too, not just display (billow.so) */
  letter-spacing: var(--track-body);
}

/* Signature dot texture on the MAIN page background (not just cards). */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(15,23,42,0.10) 1.4px, transparent 1.4px);
  background-size: var(--dot-tile) var(--dot-tile);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, rgba(0,0,0,0.35) 55%, transparent 85%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, rgba(0,0,0,0.35) 55%, transparent 85%);
  pointer-events: none;
}
body > * { position: relative; z-index: 1; }

/* Progressive viewport blur: page resolves into focus as it scrolls up. */
.viewport-blur {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 130px;
  z-index: 90;
  pointer-events: none;
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  -webkit-mask-image: linear-gradient(to top, #000 0%, rgba(0,0,0,0.75) 38%, transparent 100%);
  mask-image: linear-gradient(to top, #000 0%, rgba(0,0,0,0.75) 38%, transparent 100%);
  opacity: 1;
  transition: opacity 0.4s var(--ease-out);
}
/* Clears once the scroll reaches the bottom so the footer is never veiled */
.viewport-blur.at-bottom { opacity: 0; }
/* Pure blur, no color tint. */

/* Display face: distinct from body, tight tracking at scale. */
.display, .h2, .statement, .cta-card h2, .faq-book-card h3,
.svc-card h3, .proc-card h3, .stat-num, .logo-word {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Type ===== */
.display {
  font-size: clamp(46px, 6.2vw, 84px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.054em;
}
.display .line { display: block; }
.h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}
.accent {
  background: linear-gradient(96deg, var(--blue-pop) 0%, var(--blue-pop-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue-pop);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-sub { font-size: 17px; color: var(--slate); margin-top: 18px; }

/* ===== Buttons ===== */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease;
}
.btn-pill:hover { transform: scale(1.04); }
.btn-pill:hover .btn-chip svg { transform: translateX(3px); }
.btn-lg { padding: 12px 12px 12px 32px; font-size: 17px; }
.btn-chip {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.btn-chip svg { transition: transform 0.25s ease; }
.btn-lg .btn-chip { width: 44px; height: 44px; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark .btn-chip { background: #fff; color: var(--ink); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 14px 34px rgba(0,71,171,0.28); }
.btn-blue .btn-chip { background: #fff; color: var(--blue); }
.btn-white { background: #fff; color: var(--blue); box-shadow: 0 10px 26px rgba(0,20,60,0.18); }
.btn-chip-blue { background: var(--blue); color: #fff; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 12px; z-index: 200;
  padding: 0 20px;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 8px 26px rgba(10,20,40,0.06);
}
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(150deg, var(--blue), var(--blue-dark));
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.logo-word { font-weight: 800; font-size: 19px; letter-spacing: -0.02em; color: var(--ink); }
.logo-word-white { color: #fff; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--slate); transition: color 0.2s ease; }
.nav-links a:hover { color: var(--ink); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 90px 24px 110px;
  /* Fine technical grid: 10.5px cells (matches reference scale, was 34px) */
  background-image:
    linear-gradient(rgba(15,23,42,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.055) 1px, transparent 1px);
  background-size: var(--grid-cell) var(--grid-cell);
  background-position: center top;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 42%, transparent 0%, var(--bg) 78%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 20px 8px 10px;
  font-size: 13.5px; font-weight: 500;
  color: var(--slate);
  box-shadow: 0 6px 18px rgba(10,20,40,0.05);
  margin-bottom: 30px;
}
.trust-icons { display: flex; }
.ti {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  border: 2px solid #fff;
}
.ti-1 { background: var(--blue); }
.ti-2 { background: var(--yellow); color: var(--ink); margin-left: -8px; }
.ti-3 { background: var(--ink); margin-left: -8px; }

.squircle {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 0.85em; height: 0.85em;
  background: linear-gradient(150deg, var(--blue), var(--blue-dark));
  border-radius: 26%;
  vertical-align: -0.08em;
  transform: rotate(-8deg);
  animation: squircle-wiggle 5s ease-in-out infinite;
  box-shadow: 0 10px 24px rgba(0,71,171,0.35);
}
.squircle svg { width: 55%; height: 55%; }
@keyframes squircle-wiggle {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(6deg) scale(1.05); }
}

.hero-sub {
  font-size: 18px;
  color: var(--slate);
  max-width: 440px;
  margin: 26px 0 34px;
}
.hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-micro { font-size: 13.5px; color: var(--slate-light); }

.hero-cards { position: relative; display: flex; flex-direction: column; gap: 22px; }
.float-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 18px 44px rgba(10,20,40,0.1);
}
.fc-1 { transform: rotate(-2.5deg); animation: float-a 7s ease-in-out infinite; }
.fc-2 { transform: rotate(2deg); margin-left: 36px; animation: float-b 8s ease-in-out infinite; }
@keyframes float-a {
  0%, 100% { transform: rotate(-2.5deg) translateY(0); }
  50% { transform: rotate(-2.5deg) translateY(-8px); }
}
@keyframes float-b {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-10px); }
}
.fc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.fc-ico {
  width: 30px; height: 30px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.fc-ico-blue { background: var(--blue-soft); color: var(--blue); }
.fc-ico-yellow { background: #FEF3D7; color: #B45309; }
.fc-title { font-weight: 600; font-size: 14.5px; }
.fc-time { margin-left: auto; font-size: 12px; color: var(--slate-light); }
.fc-body { font-size: 13.5px; color: var(--slate); margin-bottom: 12px; }
.fc-tag {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 5px 12px;
  border-radius: 999px;
}
.fc-sticker {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  color: var(--ink);
  background: var(--yellow);
  padding: 5px 12px;
  border-radius: 8px;
  transform: rotate(-3deg);
}

/* ===== Marquee ===== */
.marquee-band {
  padding: 26px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  max-width: 100vw;
}
.marquee-track { overflow: hidden; max-width: 100%; }
.marquee-run {
  display: flex; gap: 14px; width: max-content;
  animation: mq 30s linear infinite;
}
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mq-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14.5px; font-weight: 500;
  white-space: nowrap;
  color: var(--ink);
}
.mq-pill i { color: var(--blue); font-style: normal; font-size: 15px; }

/* ===== Value chart (replaces the static product screenshot) ===== */
.chart-section { padding: 100px 24px 60px; }
.chart-shell {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 40px 40px 32px;
  box-shadow: 0 40px 90px rgba(10,20,40,0.10);
}
.chart-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-card);
  background: radial-gradient(ellipse 60% 80% at 90% 0%, rgba(10,107,255,0.10), transparent 70%);
  pointer-events: none;
}
.chart-head {
  position: relative;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.chart-legend { display: flex; gap: 20px; }
.lg-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500; color: var(--slate); }
.lg-swatch { width: 22px; height: 4px; border-radius: 2px; display: inline-block; }
.lg-before { background: #CBD2DC; }
.lg-after { background: linear-gradient(90deg, var(--blue-pop), var(--blue-pop-2)); }

.chart-body { position: relative; height: 260px; }
.chart-grid-lines {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
}
.chart-grid-lines span { height: 1px; background: var(--border); }
.chart-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }

/* Line draws itself: meaning = growth happening over time */
.ch-after, .ch-before {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}
.visible .ch-after { animation: draw-line 2s var(--ease-out) forwards 0.25s; }
.visible .ch-before { animation: draw-line 1.4s var(--ease-out) forwards 0.1s; }
@keyframes draw-line { to { stroke-dashoffset: 0; } }

.ch-area { opacity: 0; }
.visible .ch-area { animation: fade-area 1.2s ease forwards 1.2s; }
@keyframes fade-area { to { opacity: 1; } }

.ch-head-dot, .ch-head-halo { opacity: 0; }
.visible .ch-head-dot { animation: fade-area 0.4s ease forwards 2.1s; }
.visible .ch-head-halo { animation: fade-area 0.4s ease forwards 2.1s, halo-ping 2.4s ease-out infinite 2.4s; transform-origin: 720px 26px; }
@keyframes halo-ping {
  0% { transform: scale(1); opacity: 0.9; }
  70%, 100% { transform: scale(3.2); opacity: 0; }
}

.chart-axis {
  position: absolute; left: 0; right: 0; bottom: -30px;
  display: flex; justify-content: space-between;
  font-size: 12.5px; color: var(--slate-light); font-weight: 500;
}

/* Floating annotation flags -- layered ABOVE the chart plane */
.ch-flag {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 14px 34px rgba(10,20,40,0.13);
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--slate);
  opacity: 0;
  z-index: 3;
}
.visible .ch-flag { animation: flag-pop 0.6s var(--ease-spring) forwards; }
.ch-flag-install { left: 26%; top: 44%; animation-delay: 1.5s !important; }
.ch-flag-install i {
  position: absolute; left: 50%; bottom: -30px;
  width: 1px; height: 30px; background: var(--border);
}
.ch-flag-body { display: block; }
.ch-flag-body b { display: block; color: var(--ink); font-weight: 700; font-size: 13px; }
.ch-flag-result {
  right: 6%; top: -16%;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  animation-delay: 2.3s !important;
  border-color: rgba(10,107,255,0.25);
}
.ch-flag-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--blue-pop), var(--blue-pop-2));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.ch-flag-lead {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
@keyframes flag-pop {
  0% { opacity: 0; transform: translateY(14px) scale(0.94); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.visible .ch-flag-install { animation: flag-pop 0.6s var(--ease-spring) forwards 1.5s, float-soft 7s ease-in-out infinite 2.2s; }
.visible .ch-flag-result { animation: flag-pop 0.6s var(--ease-spring) forwards 2.3s, float-soft 8s ease-in-out infinite 3s; }
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.chart-foot { margin-top: 46px; font-size: 12.5px; color: var(--slate-light); }

/* ===== Statement ===== */
.statement-section { position: relative; padding: 110px 24px; text-align: center; overflow: hidden; }
.statement-art {
  position: absolute;
  right: -60px; top: -40px;
  width: 380px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}
.statement-section > *:not(.statement-art) { position: relative; z-index: 1; }
@media (max-width: 960px) { .statement-art { width: 230px; right: -70px; opacity: 0.32; } }
.statement {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.22;
}
.stat-row {
  display: flex; justify-content: center; gap: clamp(40px, 8vw, 110px);
  margin-top: 70px;
  flex-wrap: wrap;
}
.stat-num { display: block; font-size: clamp(44px, 4.5vw, 64px); font-weight: 800; letter-spacing: -0.03em; }
.stat-cap { font-size: 14.5px; color: var(--slate); margin-top: 4px; display: block; }

/* ===== Services (blue cards) ===== */
.services-section { padding: 90px 24px; }
.services-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 22px;
}
.services-grid .svc-card:nth-child(4) { grid-column: 2; }
.services-grid .svc-card:nth-child(3) { grid-column: 1; }
.svc-card {
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--r-card);
  padding: 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.16) 1.6px, transparent 1.6px);
  background-size: var(--dot-tile) var(--dot-tile);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.55) 45%, transparent 92%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.55) 45%, transparent 92%);
  pointer-events: none;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0,71,171,0.3); }
.svc-label {
  position: relative;
  display: inline-block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  background: var(--yellow);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 8px;
  transform: rotate(-2deg);
  margin-bottom: 20px;
}
.svc-card h3 { position: relative; font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.svc-card p { position: relative; font-size: 15px; color: rgba(255,255,255,0.85); max-width: 480px; }
.chip-row { position: relative; display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.chip {
  font-size: 12.5px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

/* ===== Process ===== */
.process-section { padding: 90px 24px; }
.process-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.proc-card {
  background: var(--card-grey);
  border-radius: var(--r-card);
  padding: 34px;
  transition: transform 0.3s ease;
}
.proc-card:hover { transform: translateY(-5px); }
.proc-num { font-size: 44px; font-weight: 800; color: #D6D9E0; letter-spacing: -0.03em; display: block; margin-bottom: 18px; }
.proc-visual {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-inner);
  padding: 22px;
  margin-bottom: 22px;
  min-height: 110px;
  display: flex; flex-direction: column; gap: 10px;
  justify-content: center;
  position: relative;
}
.pv-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pv-pill {
  font-size: 13px; font-weight: 500;
  background: var(--card-grey);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--slate);
}
.pv-ghost { border-style: dashed; }
.pv-pill-blue { background: var(--blue); border-color: var(--blue); color: #fff; }
.pv-file {
  font-size: 13px; font-weight: 500;
  font-family: 'Poppins', monospace;
  background: var(--card-grey);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 10px;
  color: var(--ink);
}
.pv-sticker {
  position: absolute;
  right: 14px; bottom: 12px;
  font-size: 12px; font-weight: 700;
  background: var(--yellow);
  color: var(--ink);
  padding: 5px 12px;
  border-radius: 8px;
  transform: rotate(3deg);
}
.pv-sticker-blue { background: var(--blue); color: #fff; }
.pv-sticker-rotate { transform: rotate(-6deg); font-size: 14px; padding: 7px 16px; }
.proc-card h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.proc-card p { font-size: 15px; color: var(--slate); }

/* ===== Compare ===== */
.compare-section { padding: 90px 24px; }
.compare-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}
.cmp-card { border-radius: var(--r-card); padding: 38px; }
.cmp-problem { background: #fff; border: 1px solid var(--border); }
.cmp-solution {
  background: linear-gradient(155deg, var(--blue), var(--blue-dark));
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,71,171,0.25);
}
.cmp-solution::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.09) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
.cmp-label {
  display: inline-block;
  font-size: 12.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--slate);
  background: var(--card-grey);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.cmp-label-light { position: relative; background: var(--yellow); color: var(--ink); transform: rotate(-2deg); border-radius: 8px; }
.cmp-card ul { display: flex; flex-direction: column; gap: 4px; position: relative; }
.cmp-card li {
  display: flex; align-items: center; gap: 14px;
  font-size: 15.5px; font-weight: 500;
  padding: 13px 16px;
  border-radius: 14px;
}
.cmp-problem li { color: var(--slate); }
.cmp-solution li { background: rgba(255,255,255,0.07); margin-bottom: 6px; }
.cmp-x {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--card-grey);
  color: var(--slate-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.cmp-check {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}

/* ===== FAQ ===== */
.faq-section { padding: 90px 24px; }
.faq-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.faq-side { position: sticky; top: 100px; }
.faq-book-card {
  background: linear-gradient(155deg, var(--blue), var(--blue-dark));
  border-radius: var(--r-card);
  padding: 38px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,71,171,0.25);
}
.faq-book-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.09) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
.faq-book-card h3 { position: relative; font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.faq-book-card p { position: relative; font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.faq-book-card .btn-pill { position: relative; }
.h2-left { text-align: left; margin-bottom: 28px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item.open { box-shadow: 0 14px 34px rgba(10,20,40,0.08); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px; font-weight: 600;
  color: var(--ink);
  text-align: left;
  padding: 22px 24px;
  cursor: pointer;
}
.faq-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--card-grey);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 24px 22px; font-size: 14.5px; color: var(--slate); }
.faq-item.open .faq-a { max-height: 220px; }

/* ===== CTA ===== */
.cta-section { padding: 60px 24px 110px; }
.cta-card {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  background: linear-gradient(155deg, var(--blue), var(--blue-dark));
  border-radius: 36px;
  text-align: center;
  padding: 100px 32px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,71,171,0.3);
}
.cta-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.09) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
.cta-card h2 {
  position: relative;
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.cta-accent { color: var(--yellow); }
.cta-card p { position: relative; font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 40px; }
.cta-sticker {
  position: absolute;
  font-size: 13px; font-weight: 700;
  background: var(--yellow);
  color: var(--ink);
  padding: 8px 18px;
  border-radius: 10px;
  z-index: 1;
}
.cta-sticker-1 { top: 40px; left: 7%; transform: rotate(-7deg); }
.cta-sticker-2 { bottom: 46px; right: 8%; transform: rotate(5deg); }

/* ===== Footer ===== */
.footer {
  position: relative;
  background: linear-gradient(170deg, #16181D 0%, #0B0C0F 55%, #08090B 100%);
  color: #fff;
  padding: 100px 24px 0;
  overflow: hidden;
  isolation: isolate;
}
/* Soft brand glow so the dark plane isn't dead flat */
.footer::before {
  content: "";
  position: absolute;
  top: -120px; left: 8%;
  width: 620px; height: 420px;
  background: radial-gradient(ellipse at center, rgba(10,107,255,0.16), transparent 68%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.footer-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1.6fr;
  gap: clamp(40px, 6vw, 90px);
  padding-bottom: 90px;
}
.logo-suffix {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  letter-spacing: -0.01em;
  margin-left: 2px;
}
.footer-pitch {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 30px 0 16px;
}
.footer-copy-lead {
  color: rgba(255,255,255,0.55);
  font-size: 14.5px;
  max-width: 330px;
  margin-bottom: 28px;
}
.footer-cta { margin-bottom: 34px; }
.footer-legal { font-size: 12.5px; color: rgba(255,255,255,0.32); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  padding-top: 8px;
}
.f-col { display: flex; flex-direction: column; gap: 14px; }
.f-head {
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.34);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.f-col a {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  width: fit-content;
  transition: color 0.2s ease, transform 0.2s var(--ease-out);
}
.f-col a:hover { color: #fff; transform: translateX(3px); }

/* Oversized wordmark anchoring the base, cropped by the footer edge */
.footer-watermark {
  position: relative;
  z-index: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(90px, 21vw, 300px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.78;
  text-align: center;
  color: rgba(255,255,255,0.035);
  user-select: none;
  pointer-events: none;
  margin-bottom: -0.16em;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .footer { padding-top: 70px; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; padding-bottom: 60px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ===== Lottie + SVG animation layer ===== */
.lottie-badge {
  position: absolute;
  width: 76px; height: 76px;
  pointer-events: none;
  z-index: 3;
}
.lottie-badge-radar { top: -26px; left: -30px; }
.lottie-badge-check {
  right: -22px; bottom: -20px;
  width: 62px; height: 62px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(0,71,171,0.35);
}
.lottie-corner {
  position: absolute;
  right: 22px; top: 22px;
  width: 92px; height: 92px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 2;
}

/* SVG flow line: dashed path with a travelling node (animateMotion) */
.flow-line {
  position: absolute;
  right: 18px; bottom: 14px;
  width: 96px; height: 32px;
  color: var(--blue);
  opacity: 0.55;
}
.flow-path {
  stroke-dasharray: 4 6;
  animation: dash-travel 1.6s linear infinite;
}
@keyframes dash-travel { to { stroke-dashoffset: -20; } }

/* Sheen sweep across blue cards (skewed highlight pass) */
.svc-card .sheen, .cmp-solution .sheen { display: none; }
.svc-card::after {
  content: "";
  position: absolute;
  top: -60%; left: -40%;
  width: 40%; height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.13), transparent);
  transform: skewX(-18deg) translateX(-140%);
  transition: transform 0.9s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
}
.svc-card:hover::after { transform: skewX(-18deg) translateX(420%); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* =====================================================================
   LAYERED ANIMATED SCENES
   Each card composes 3+ independently-animated layers (base / data /
   floating overlay) rather than a flat image. Layers overhang bounds.
   ===================================================================== */
.tools-section { padding: 100px 24px; }
.tools-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tool-card {
  background: #fff;
  border-radius: 34px;
  padding: 22px 22px 30px;
  box-shadow: var(--shadow-lift);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.tool-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift-hi); }
.tool-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 21px; font-weight: 800;
  letter-spacing: -0.032em;
  margin: 24px 0 8px;
}
.tool-card p { font-size: 14.5px; color: var(--slate); letter-spacing: -0.011em; }

.scene {
  position: relative;
  height: 208px;
  border-radius: 22px;
  background: var(--card-grey);
  overflow: hidden;
  isolation: isolate;
}

/* Ambient layer motion -- offset phases so nothing syncs */
.layer-float { animation: float-soft 6.5s ease-in-out infinite; }
.layer-float-slow { animation: float-soft 9s ease-in-out infinite 1.2s; }

/* ---- Scene 1: map + route ---- */
.map-base, .map-route { position: absolute; inset: 0; width: 100%; height: 100%; }
.route-path { stroke-dasharray: 420; stroke-dashoffset: 420; }
.visible .route-path { animation: draw-line 2.4s var(--ease-out) forwards 0.3s; }
.route-end { opacity: 0; }
.visible .route-end { animation: fade-area 0.4s ease forwards 2.5s; }
.route-van { opacity: 0; }
.visible .route-van { animation: fade-area 0.4s ease forwards 0.5s; }
.map-popup {
  position: absolute; left: 12px; top: 14px;
  background: #fff;
  border-radius: 14px;
  padding: 11px 13px;
  min-width: 148px;
  box-shadow: var(--shadow-pop);
  display: flex; flex-direction: column; gap: 3px;
  opacity: 0;
}
.visible .map-popup { animation: flag-pop 0.55s var(--ease-spring) forwards 1.3s, float-soft 6.5s ease-in-out infinite 2s; }
.mp-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 12px; font-weight: 700; color: var(--ink); letter-spacing: -0.015em; }
.mp-sub { font-weight: 500; color: var(--slate); font-size: 11px; }
.mp-live { font-size: 9px; font-weight: 800; letter-spacing: 0.06em; color: var(--blue-pop); background: var(--blue-soft); padding: 3px 7px; border-radius: 999px; font-style: normal; }
.mp-bar { display: block; height: 4px; border-radius: 999px; background: #E6EAF1; overflow: hidden; margin-top: 3px; }
.mp-bar i { display: block; height: 100%; width: 40%; border-radius: 999px; background: linear-gradient(90deg, var(--blue-pop), var(--blue-pop-2)); animation: bar-fill 3.2s var(--ease-out) forwards; }
/* Forward-only: progress never runs backwards. */
@keyframes bar-fill { from { width: 18%; } to { width: 86%; } }

/* ---- Scene 2: lead table ---- */
.scene-table { background: var(--card-grey); }
.tbl {
  position: absolute; left: 14px; right: 14px; top: 16px;
  background: #fff; border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow-pop);
  display: flex; flex-direction: column; gap: 9px;
}
.tbl-head { font-size: 11.5px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 2px; }
.tbl-row {
  display: flex; align-items: center; gap: 9px;
  font-size: 11.5px; color: var(--slate); font-weight: 500;
  opacity: 0;
}
.visible .tbl-row { animation: row-in 0.5s var(--ease-out) forwards; }
.visible .tbl-row:nth-of-type(2) { animation-delay: 0.35s; }
.visible .tbl-row:nth-of-type(3) { animation-delay: 0.5s; }
.visible .tbl-row:nth-of-type(4) { animation-delay: 0.65s; }
.visible .tbl-row:nth-of-type(5) { animation-delay: 0.8s; }
.visible .tbl-row:nth-of-type(6) { animation-delay: 0.95s; }
@keyframes row-in { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: none; } }
.tbl-fade { opacity: 0.4 !important; }
.tbl-av { width: 17px; height: 17px; border-radius: 50%; background: linear-gradient(140deg, #C9D8EE, #9FBBE4); flex-shrink: 0; }
.tbl-row b { margin-left: auto; font-size: 9.5px; font-weight: 800; letter-spacing: 0.04em; color: #157F4B; background: #E4F6EC; padding: 3px 7px; border-radius: 999px; }
.tbl-row .b-wait { color: #9A6B00; background: #FDF3DC; }
.badge-new {
  position: absolute; left: -6px; top: -6px;
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--blue-pop), var(--blue-pop-2));
  color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: -0.01em;
  padding: 9px 15px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(10,107,255,0.42);
  z-index: 4;
}
.tbl-over {
  position: absolute; right: -8px; bottom: 12px;
  background: #fff; border-radius: 14px;
  padding: 9px 14px;
  box-shadow: var(--shadow-pop);
  z-index: 3;
  text-align: right;
}
.to-label { display: block; font-size: 9.5px; font-weight: 600; color: var(--slate-light); letter-spacing: 0.03em; text-transform: uppercase; }
.to-big {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px; font-weight: 800; letter-spacing: -0.04em;
  background: linear-gradient(96deg, var(--blue-pop), var(--blue-pop-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---- Scene 3: calendar ---- */
.scene-cal { background: #fff; box-shadow: inset 0 0 0 1px var(--border); }
.cal-times { display: flex; justify-content: space-around; padding: 12px 0 8px; font-size: 10px; font-weight: 600; color: var(--slate-light); border-bottom: 1px solid var(--border); }
.cal-grid { position: absolute; inset: 40px 0 0 0; display: flex; }
.cal-grid i { flex: 1; border-right: 1px solid var(--border); }
.cal-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 9px 11px 9px 14px;
  box-shadow: var(--shadow-pop);
  display: flex; flex-direction: column; gap: 1px;
  opacity: 0;
  min-width: 128px;
}
.cal-card b { font-size: 11px; font-weight: 800; letter-spacing: -0.015em; color: var(--ink); }
.cal-card span { font-size: 10px; color: var(--slate); }
.cc-bar { position: absolute; left: 6px; top: 9px; bottom: 9px; width: 3px; border-radius: 999px; background: var(--blue-pop); }
.cc-bar-y { background: var(--yellow); }
.cc-1 { left: 14px; top: 54px; }
.cc-2 { left: 74px; top: 106px; }
.cc-3 { left: 40px; top: 156px; }
.visible .cc-1 { animation: cal-in 0.55s var(--ease-spring) forwards 0.3s, float-soft 7s ease-in-out infinite 1.4s; }
.visible .cc-2 { animation: cal-in 0.55s var(--ease-spring) forwards 0.55s, float-soft 8.5s ease-in-out infinite 1.9s; }
.visible .cc-3 { animation: cal-in 0.55s var(--ease-spring) forwards 0.8s, float-soft 7.8s ease-in-out infinite 2.3s; }
@keyframes cal-in { from { opacity: 0; transform: translateY(12px) scale(0.95); } to { opacity: 1; transform: none; } }

/* ---- Scene 4: chat ---- */
.scene-chat { padding: 16px; display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.chat-b {
  max-width: 82%;
  font-size: 11.5px; font-weight: 500;
  padding: 9px 13px;
  border-radius: 14px;
  opacity: 0;
  letter-spacing: -0.012em;
}
.chat-in { background: #fff; color: var(--slate); border-bottom-left-radius: 5px; box-shadow: var(--shadow-pop); }
.chat-out { align-self: flex-end; background: linear-gradient(135deg, var(--blue-pop), var(--blue-pop-2)); color: #fff; border-bottom-right-radius: 5px; box-shadow: 0 8px 20px rgba(10,107,255,0.3); }
.visible .chat-in  { animation: chat-in 0.5s var(--ease-out) forwards 0.3s; }
.visible .chat-out { animation: chat-in 0.5s var(--ease-out) forwards 0.85s; }
.visible .chat-in-2 { animation: chat-in 0.5s var(--ease-out) forwards 1.5s; }
@keyframes chat-in { from { opacity: 0; transform: translateY(9px) scale(0.96); } to { opacity: 1; transform: none; } }
.chat-typing { display: flex; gap: 4px; padding: 9px 13px; background: #fff; border-radius: 14px; box-shadow: var(--shadow-pop); opacity: 0; }
.visible .chat-typing { animation: chat-in 0.4s ease forwards 2s; }
.chat-typing i { width: 5px; height: 5px; border-radius: 50%; background: var(--slate-light); animation: dot-bounce 1.3s ease-in-out infinite; }
.chat-typing i:nth-child(2) { animation-delay: 0.18s; }
.chat-typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes dot-bounce { 0%,60%,100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }
.chat-stamp {
  position: absolute; right: 12px; top: 12px;
  background: var(--yellow); color: var(--ink);
  font-size: 10.5px; font-weight: 800;
  padding: 5px 11px; border-radius: 8px;
  transform: rotate(4deg);
  box-shadow: 0 8px 18px rgba(251,191,36,0.4);
}

/* ---- Scene 5: invoice ---- */
.scene-invoice { background: var(--card-grey); }
.inv-card {
  position: absolute; left: 20px; right: 34px; top: 26px;
  background: #fff; border-radius: 16px; padding: 16px;
  box-shadow: var(--shadow-pop);
  display: flex; flex-direction: column; gap: 7px;
}
.inv-top { display: flex; align-items: center; justify-content: space-between; }
.inv-top b { font-size: 11.5px; font-weight: 800; letter-spacing: -0.015em; }
.inv-top i { font-size: 9.5px; font-style: normal; font-weight: 700; color: var(--slate-light); text-transform: uppercase; letter-spacing: 0.05em; }
.inv-amt {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 30px; font-weight: 800; letter-spacing: -0.045em; color: var(--ink);
}
.inv-amt em { font-style: normal; font-size: 17px; color: var(--slate-light); }
.inv-line { height: 6px; border-radius: 999px; background: #EDF0F5; }
.inv-short { width: 55%; }
.inv-paid {
  position: absolute; right: 16px; bottom: 46px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 800; letter-spacing: 0.08em;
  color: #157F4B;
  border: 2.5px solid #157F4B;
  padding: 5px 12px; border-radius: 7px;
  transform: rotate(-11deg);
  opacity: 0;
  z-index: 3;
}
.visible .inv-paid { animation: stamp-in 0.5s var(--ease-spring) forwards 1.1s, float-soft 7.5s ease-in-out infinite 2s; }
@keyframes stamp-in {
  0% { opacity: 0; transform: rotate(-11deg) scale(2.1); }
  100% { opacity: 1; transform: rotate(-11deg) scale(1); }
}
.inv-chip {
  position: absolute; left: 14px; bottom: 14px;
  background: #fff; border-radius: 999px;
  font-size: 10px; font-weight: 700; color: var(--slate);
  padding: 6px 12px;
  box-shadow: var(--shadow-pop);
  z-index: 3;
}

/* ---- Scene 6: report ---- */
.scene-report { background: var(--card-grey); }
.rep-bars {
  position: absolute; left: 18px; right: 18px; bottom: 22px;
  height: 118px;
  display: flex; align-items: flex-end; gap: 9px;
}
.rep-bars i {
  flex: 1; height: 0;
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, var(--blue-pop-2), var(--blue-pop));
  opacity: 0.9;
}
.visible .rep-bars i { animation: bar-rise 0.85s var(--ease-out) forwards; }
.visible .rep-bars i:nth-child(1) { animation-delay: 0.2s; }
.visible .rep-bars i:nth-child(2) { animation-delay: 0.32s; }
.visible .rep-bars i:nth-child(3) { animation-delay: 0.44s; }
.visible .rep-bars i:nth-child(4) { animation-delay: 0.56s; }
.visible .rep-bars i:nth-child(5) { animation-delay: 0.68s; }
.visible .rep-bars i:nth-child(6) { animation-delay: 0.8s; }
@keyframes bar-rise { to { height: var(--h); } }
.rep-card {
  position: absolute; left: 14px; top: 14px;
  background: #fff; border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow-pop);
  z-index: 3;
}
.rep-label { display: block; font-size: 9.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--slate-light); }
.rep-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px; font-weight: 800; letter-spacing: -0.04em;
  background: linear-gradient(96deg, var(--blue-pop), var(--blue-pop-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.rep-pulse {
  position: absolute; right: 20px; top: 22px;
  width: 9px; height: 9px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: live-pulse 2.2s ease-out infinite;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  70%, 100% { box-shadow: 0 0 0 13px rgba(34,197,94,0); }
}

/* ===== Text wipe + blur-in reveal (CreatorFlow-style) ===== */
/* Descenders (y, g, p) need real room: the wipe reveal clips at the mask
   edge, so too little padding slices the tail off the glyph. */
.line-mask { display: block; overflow: hidden; padding-bottom: 0.20em; margin-bottom: -0.16em; }
html.js .wipe {
  display: block;
  opacity: 0;
  transform: translateY(105%);
  filter: blur(14px);
}
html.js .wipe.played {
  animation: wipe-in 1s var(--ease-out) forwards;
}
html.js .wipe-2.played { animation-delay: 0.12s; }
html.js .wipe-3.played { animation-delay: 0.24s; }
@keyframes wipe-in {
  0%   { opacity: 0; transform: translateY(105%); filter: blur(14px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ===== Ambient motion baseline ===== */
.ambient-float { animation: float-soft 7s ease-in-out infinite; }
.hero::before {
  content: "";
  position: absolute;
  top: -10%; left: 50%;
  width: 780px; height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(10,107,255,0.10), transparent 68%);
  filter: blur(30px);
  animation: breathe 11s ease-in-out infinite;
  pointer-events: none;
}
@keyframes breathe {
  0%, 100% { opacity: 0.75; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;    transform: translateX(-50%) scale(1.08); }
}

/* ===== Reveal (hidden state only when JS is active) ===== */
html.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 0.7s cubic-bezier(.22,.61,.36,1); }
html.js .reveal.visible { opacity: 1; transform: translateY(0); }
.d-1 { transition-delay: 0.1s; }
.d-2 { transition-delay: 0.2s; }
.d-3 { transition-delay: 0.3s; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-cards { max-width: 420px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .svc-card:nth-child(3), .services-grid .svc-card:nth-child(4) { grid-column: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-side { position: static; }
  .nav-links { display: none; }
  /* footer responsive handled in its own block above */
}

/* ============================================================
   OFFERINGS  --  asymmetric menu, lead card carries the weight
   Distinct archetype from the tools grid: numbered rows, one
   hero card, four compact ones. Icons are Lucide, never emoji.
   ============================================================ */
.offer-section { padding: 100px 24px; }
.offer-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.offer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.offer-card {
  position: relative;
  background: #fff;
  border-radius: 30px;
  padding: 30px 28px 26px;
  box-shadow: var(--shadow-lift);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift-hi); }
/* Lead card spans two rows and inverts, so the menu is not five equal tiles */
.offer-lead {
  grid-row: span 2;
  background: linear-gradient(158deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  overflow: hidden;
}
.offer-lead::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.16) 1.6px, transparent 1.6px);
  background-size: var(--dot-tile) var(--dot-tile);
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 88%);
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  pointer-events: none;
}
.offer-num {
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em;
  color: var(--slate-light);
}
.offer-lead .offer-num { color: rgba(255,255,255,0.55); }
.offer-icon {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue-pop);
  display: flex; align-items: center; justify-content: center;
  margin: 14px 0 18px;
}
.offer-lead .offer-icon { background: rgba(255,255,255,0.14); color: #fff; }
.offer-icon svg { width: 22px; height: 22px; stroke-width: 2; }
.offer-card h3 {
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 21px; font-weight: 800; letter-spacing: -0.032em;
  margin-bottom: 8px;
}
.offer-lead h3 { font-size: 26px; }
.offer-what { position: relative; font-size: 14.5px; color: var(--slate); }
.offer-lead .offer-what { color: rgba(255,255,255,0.85); font-size: 15.5px; }
.offer-points {
  position: relative;
  margin: 20px 0 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.offer-points li {
  font-size: 14px; color: rgba(255,255,255,0.92);
  padding-left: 26px; position: relative;
}
.offer-points li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 14px; height: 8px;
  border-left: 2.5px solid var(--yellow);
  border-bottom: 2.5px solid var(--yellow);
  transform: rotate(-45deg);
}
.offer-link {
  position: relative;
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 22px;
  font-size: 14px; font-weight: 700;
  color: var(--blue-pop);
}
.offer-lead .offer-link { color: #fff; }
.offer-link svg { width: 15px; height: 15px; transition: transform .25s var(--ease-out); }
.offer-link:hover svg { transform: translateX(4px); }

@media (max-width: 960px) {
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .offer-lead { grid-row: span 1; grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .offer-grid { grid-template-columns: 1fr; }
}

/* ---- Process visuals, rebuilt to be legible -------------------------------
   Previous versions showed abstract pills and a fake filename, and a progress
   bar that animated 12% -> 78% -> 12% forever. Progress that runs backwards is
   meaningless motion. Every visual below states what the step actually does,
   and all motion is forward-only. ------------------------------------------ */
.pv-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--slate-light);
  margin-bottom: 4px;
}
.pv-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: live-pulse 2.2s ease-out infinite;
}
/* 01 audit: named sources with a verdict each */
.pv-scan {
  display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 500; color: var(--ink);
  padding: 7px 10px; border-radius: 10px; background: var(--card-grey);
}
.pv-scan svg { width: 14px; height: 14px; color: var(--slate-light); flex-shrink: 0; }
.pv-scan b { margin-left: auto; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 999px; }
.pv-bad { color: #B4483C; background: #FBE9E7; }
.pv-ok  { color: #157F4B; background: #E4F6EC; }
/* 02 build: a checklist that only moves forward */
.pv-task {
  display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 500; padding: 5px 2px;
}
.pv-task svg { width: 15px; height: 15px; flex-shrink: 0; }
.pv-done { color: var(--ink); }
.pv-done svg { color: #157F4B; }
.pv-doing { color: var(--blue-pop); font-weight: 600; }
.pv-doing svg { color: var(--blue-pop); animation: spin-fwd 1.6s linear infinite; }
@keyframes spin-fwd { to { transform: rotate(360deg); } }
.pv-todo { color: var(--slate-light); }
.pv-todo svg { color: #D6DAE2; }
/* 03 refine: an actual exchange */
.pv-msg {
  font-size: 12px; font-weight: 500;
  padding: 8px 12px; border-radius: 13px; max-width: 88%;
}
.pv-msg-you { background: var(--card-grey); color: var(--slate); border-bottom-left-radius: 4px; }
.pv-msg-us {
  align-self: flex-end; margin-left: auto;
  background: linear-gradient(135deg, var(--blue-pop), var(--blue-pop-2));
  color: #fff; border-bottom-right-radius: 4px;
}
/* 04 live: real numbers, not a fake filename */
.pv-stat {
  display: flex; align-items: baseline; gap: 8px;
  font-size: 12.5px; color: var(--slate);
}
.pv-stat b {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(96deg, var(--blue-pop), var(--blue-pop-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
