/* ==========================================================================
   Speed E-Com Solution — design system
   ========================================================================== */
:root {
  --navy-900: #071a33;
  --navy-800: #0b2545;
  --navy-700: #12345f;
  --blue-600: #1a6fd6;
  --blue-500: #2a7de1;
  --blue-400: #5b9cf0;
  --blue-100: #e3efff;
  --blue-50:  #f2f7ff;
  --gold-500: #f5b800;
  --gold-400: #ffc531;
  --gold-100: #fff3cc;
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #5b6b81;
  --ink-300: #c8d2df;
  --ink-200: #e2e8f0;
  --ink-100: #f1f5f9;
  --surface: #ffffff;
  --surface-alt: #f6f9fd;

  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

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

  --shadow-sm: 0 1px 2px rgba(7, 26, 51, .06), 0 2px 8px rgba(7, 26, 51, .05);
  --shadow-md: 0 8px 24px rgba(7, 26, 51, .08), 0 2px 6px rgba(7, 26, 51, .05);
  --shadow-lg: 0 24px 60px rgba(7, 26, 51, .16), 0 8px 20px rgba(7, 26, 51, .08);

  --container: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --section-y: clamp(64px, 9vw, 120px);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.12; margin: 0; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 3px; border-radius: 4px; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }
.section--alt { background: var(--surface-alt); }
.section--dark { background: var(--navy-800); color: #fff; }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Typography helpers */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gold-400); border-radius: 2px; }
.section--dark .eyebrow { color: var(--gold-400); }
.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--center .eyebrow { justify-content: center; }
.section-title { font-size: clamp(30px, 4vw, 46px); font-weight: 800; margin-top: 14px; color: var(--navy-800); }
.section--dark .section-title { color: #fff; }
.section-lead { margin-top: 16px; font-size: clamp(16px, 1.35vw, 18px); color: var(--ink-500); }
.section--dark .section-lead { color: rgba(255,255,255,.72); }
.highlight { color: var(--blue-500); }
.section--dark .highlight { color: var(--gold-400); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 700; font-size: 15px; line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--blue-500); color: #fff; box-shadow: 0 10px 24px rgba(42,125,225,.28); }
.btn--primary:hover { background: var(--blue-600); box-shadow: 0 14px 30px rgba(42,125,225,.34); }
.btn--gold { background: var(--gold-400); color: var(--navy-900); box-shadow: 0 10px 24px rgba(245,184,0,.3); }
.btn--gold:hover { background: #ffd05a; }
.btn--ghost { background: transparent; color: var(--navy-800); border: 1.5px solid var(--ink-300); }
.btn--ghost:hover { border-color: var(--navy-800); background: var(--ink-100); }
.btn--ghost-light { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.6); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 17px 30px; font-size: 16px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.header.is-scrolled { border-color: var(--ink-200); box-shadow: 0 6px 24px rgba(7,26,51,.06); }
.header__inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { flex: none; }
.brand img { height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 13px; border-radius: 999px; font-weight: 600; font-size: 14.5px; color: var(--ink-700); white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav a:hover { background: var(--blue-50); color: var(--blue-600); }
.nav a.is-active { color: var(--blue-600); background: var(--blue-50); }
.header__actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; flex-direction: column; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy-800); border-radius: 2px; position: relative; transition: transform .25s, opacity .25s; }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1259px) {
  .nav-toggle { display: flex; }
  .header__actions .btn--ghost { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; padding: 16px var(--gutter) 24px;
    border-bottom: 1px solid var(--ink-200); box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .22s ease, opacity .22s ease;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px 16px; font-size: 16px; border-radius: 12px; }
  .nav .nav__login { display: flex; margin-top: 8px; justify-content: center; border: 1.5px solid var(--ink-300); }
}
@media (min-width: 1260px) { .nav .nav__login { display: none; } }
@media (max-width: 480px) { .header__actions .btn--primary { padding: 10px 14px; font-size: 13px; } .brand img { height: 34px; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 8% -10%, rgba(42,125,225,.16), transparent 60%),
    radial-gradient(700px 420px at 95% 10%, rgba(255,197,49,.18), transparent 60%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  padding-block: clamp(56px, 7vw, 104px) clamp(56px, 7vw, 96px);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(11,37,69,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(11,37,69,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; position: relative; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 8px;
  border-radius: 999px; background: #fff; border: 1px solid var(--ink-200); box-shadow: var(--shadow-sm);
  font-size: 13.5px; font-weight: 600; color: var(--ink-700);
}
.hero__pill em { font-style: normal; background: var(--navy-800); color: #fff; padding: 4px 10px; border-radius: 999px; font-size: 12px; letter-spacing: .02em; }
.hero__title { font-size: clamp(38px, 5.4vw, 66px); font-weight: 800; margin-top: 22px; color: var(--navy-900); }
.hero__title .underline { position: relative; display: inline-block; color: var(--blue-500); }
.hero__title .underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .16em; z-index: -1;
  background: var(--gold-400); border-radius: 4px; opacity: .8;
}
.hero__lead { margin-top: 22px; font-size: clamp(16.5px, 1.4vw, 19px); color: var(--ink-500); max-width: 560px; }
.hero__actions { margin-top: 34px; }
.hero__proof { margin-top: 34px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.stars { display: inline-flex; gap: 2px; color: var(--gold-500); }
.stars svg { width: 18px; height: 18px; }
.hero__proof strong { font-size: 15px; color: var(--navy-800); }
.hero__proof span { font-size: 14px; color: var(--ink-500); }
.avatars { display: inline-flex; }
.avatars i {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; font-style: normal; color: #fff;
}
.avatars i:first-child { margin-left: 0; }

.hero__visual { position: relative; }
.device {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(11,37,69,.08); background: #fff;
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform .6s ease;
}
.hero__visual:hover .device { transform: perspective(1400px) rotateY(-2deg) rotateX(0deg); }
.device__bar { height: 38px; display: flex; align-items: center; gap: 8px; padding: 0 14px; background: linear-gradient(180deg, #fafcff, #f1f5fb); border-bottom: 1px solid var(--ink-200); }
.device__bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--ink-300); }
.device__bar i:nth-child(1) { background: #ff5f57; } .device__bar i:nth-child(2) { background: #febc2e; } .device__bar i:nth-child(3) { background: #28c840; }
.device__url { margin-left: 10px; flex: 1; height: 22px; border-radius: 6px; background: #fff; border: 1px solid var(--ink-200); font-size: 11.5px; color: var(--ink-500); display: flex; align-items: center; padding: 0 10px; }
.device img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }

.chip {
  position: absolute; display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 16px; background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md); border: 1px solid rgba(11,37,69,.06);
  animation: float 6s ease-in-out infinite;
}
.chip__icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.chip__icon svg { width: 20px; height: 20px; }
.chip__icon--blue { background: var(--blue-100); color: var(--blue-600); }
.chip__icon--gold { background: var(--gold-100); color: #9a6b00; }
.chip__icon--green { background: #dcfce7; color: #15803d; }
.chip small { display: block; font-size: 11.5px; color: var(--ink-500); font-weight: 500; }
.chip strong { display: block; font-size: 14px; color: var(--navy-800); font-weight: 700; line-height: 1.2; }
.chip--1 { top: -22px; left: -28px; animation-delay: 0s; }
.chip--2 { bottom: 34px; left: -40px; animation-delay: -2s; }
.chip--3 { top: 46%; right: -34px; animation-delay: -4s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 24px; padding: 28px 8px 24px; }
  .device { transform: none; }
  .chip--1 { top: -4px; left: 0; } .chip--2 { bottom: -6px; left: 4px; } .chip--3 { right: 0; top: auto; bottom: 60px; }
}
@media (max-width: 520px) { .chip--3 { display: none; } .chip { padding: 10px 12px; } }

/* Marketplaces strip */
.marquee { padding-block: 26px; border-block: 1px solid var(--ink-200); background: #fff; }
.marquee__inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.marquee__label { font-size: 13px; font-weight: 600; color: var(--ink-500); text-transform: uppercase; letter-spacing: .1em; }
.marks { display: flex; flex-wrap: wrap; gap: 10px 14px; justify-content: center; }
.mark {
  font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -0.01em;
  padding: 8px 16px; border-radius: 12px; background: var(--ink-100); color: var(--ink-700);
  transition: transform .15s, background .15s, color .15s;
}
.mark:hover { transform: translateY(-2px); color: #fff; }
.mark--meesho:hover { background: #f43397; } .mark--flipkart:hover { background: #2874f0; } .mark--amazon:hover { background: #ff9900; }
.mark--myntra:hover { background: #ff3f6c; } .mark--jiomart:hover { background: #0c5273; } .mark--glowroad:hover { background: #0aa39c; } .mark--shopify:hover { background: #7ab55c; }

/* ==========================================================================
   Cards & grids
   ========================================================================== */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1000px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius-lg);
  padding: 30px 28px; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px;
  background: var(--blue-50); color: var(--blue-600); transition: background .25s, color .25s;
}
.card__icon svg { width: 26px; height: 26px; }
.card:hover .card__icon { background: var(--blue-500); color: #fff; }
.card h3 { font-size: 19px; font-weight: 700; color: var(--navy-800); }
.card p { margin-top: 10px; color: var(--ink-500); font-size: 15px; }
.card__num { position: absolute; top: 20px; right: 22px; font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--ink-300); letter-spacing: .05em; }

/* Why choose — feature cards with gold top accent */
.feature { padding-top: 34px; }
.feature::before { content: ""; position: absolute; left: 28px; right: 28px; top: 0; height: 4px; border-radius: 0 0 6px 6px; background: linear-gradient(90deg, var(--blue-500), var(--gold-400)); }

/* Split (about) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; height: auto; }
.split__media::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--blue-100), var(--gold-100)); z-index: -1; }
.split__badge {
  position: absolute; left: -18px; bottom: 28px; background: var(--navy-800); color: #fff; padding: 14px 18px; border-radius: 16px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.split__badge strong { display: block; font-family: var(--font-display); font-size: 22px; line-height: 1; }
.split__badge small { font-size: 12px; opacity: .75; }
.split__badge svg { width: 28px; height: 28px; color: var(--gold-400); }
.checks { margin-top: 26px; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-700); font-size: 15.5px; }
.checks svg { width: 22px; height: 22px; flex: none; color: var(--blue-500); margin-top: 1px; }
.section--dark .checks li { color: rgba(255,255,255,.85); }
.section--dark .checks svg { color: var(--gold-400); }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split__media { margin-top: 10px; } .split__media::before { inset: 14px -8px -14px 14px; } .split__badge { left: 8px; } }

/* Services */
.service { padding: 28px 26px; }
.service .card__icon { width: 50px; height: 50px; border-radius: 14px; margin-bottom: 18px; }
.service .card__icon svg { width: 24px; height: 24px; }
.service h3 { font-size: 17.5px; }
.service p { font-size: 14.5px; }
.service__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; font-size: 14px; color: var(--blue-600); }
.service__link svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .service__link svg { transform: translateX(4px); }

/* Advantages — dark section */
.section--dark { position: relative; overflow: hidden; }
.section--dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 400px at 90% 0%, rgba(42,125,225,.35), transparent 60%), radial-gradient(600px 400px at 0% 100%, rgba(255,197,49,.12), transparent 60%);
}
.adv { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 28px 26px; transition: background .25s, transform .25s; }
.adv:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.adv__icon { width: 48px; height: 48px; border-radius: 14px; background: var(--gold-400); color: var(--navy-900); display: grid; place-items: center; margin-bottom: 18px; }
.adv__icon svg { width: 24px; height: 24px; }
.adv h3 { font-size: 18px; font-weight: 700; color: #fff; }
.adv p { margin-top: 10px; font-size: 14.5px; color: rgba(255,255,255,.72); }
.adv p b { color: #fff; font-weight: 600; }

.stats { margin-top: clamp(48px, 6vw, 80px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat { text-align: center; padding: 30px 20px; border-radius: var(--radius-lg); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(38px, 4.4vw, 56px); font-weight: 800; line-height: 1; color: var(--gold-400); }
.stat strong span { display: inline; margin: 0; font: inherit; color: inherit; }
.stat > span { display: block; margin-top: 10px; font-size: 14.5px; color: rgba(255,255,255,.75); font-weight: 500; letter-spacing: .02em; }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; } }

/* Pricing */
.pricing { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.price-card {
  position: relative; background: var(--navy-800); color: #fff; border-radius: var(--radius-xl); padding: clamp(30px, 4vw, 44px);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.price-card::before { content: ""; position: absolute; width: 320px; height: 320px; right: -120px; top: -140px; border-radius: 50%; background: radial-gradient(circle, rgba(42,125,225,.55), transparent 70%); }
.price-card__tag { display: inline-flex; padding: 6px 12px; border-radius: 999px; background: var(--gold-400); color: var(--navy-900); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.price-card__amount { display: flex; align-items: baseline; gap: 6px; margin-top: 18px; font-family: var(--font-display); }
.price-card__amount small { font-size: 22px; font-weight: 700; opacity: .8; }
.price-card__amount strong { font-size: clamp(52px, 6vw, 72px); font-weight: 800; line-height: 1; letter-spacing: -0.04em; }
.price-card__amount > span { font-size: 16px; opacity: .7; }
.price-card__amount strong span { font: inherit; opacity: 1; }
.price-card__note { margin-top: 8px; color: rgba(255,255,255,.7); font-size: 14.5px; }
.price-card .checks { margin-top: 26px; }
.price-card .checks li { color: rgba(255,255,255,.9); }
.price-card .checks svg { color: var(--gold-400); }
.price-card .btn { margin-top: 30px; width: 100%; }
.price-card__foot { margin-top: 14px; text-align: center; font-size: 13px; color: rgba(255,255,255,.6); }
.pricing__aside .section-head { margin-bottom: 20px; }
.mini-list { display: grid; gap: 14px; margin-top: 8px; }
.mini-list li { display: flex; gap: 14px; padding: 16px 18px; background: #fff; border: 1px solid var(--ink-200); border-radius: 16px; }
.mini-list .card__icon { width: 44px; height: 44px; border-radius: 12px; margin: 0; flex: none; }
.mini-list .card__icon svg { width: 22px; height: 22px; }
.mini-list h4 { font-size: 15.5px; font-weight: 700; color: var(--navy-800); }
.mini-list p { font-size: 14px; color: var(--ink-500); margin-top: 3px; }
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; } }

/* Testimonials */
.testimonial { padding: 30px 28px; display: flex; flex-direction: column; }
.testimonial .stars { margin-bottom: 16px; }
.testimonial blockquote { margin: 0; font-size: 15.5px; color: var(--ink-700); flex: 1; }
.testimonial blockquote::before { content: "\201C"; font-family: Georgia, serif; font-size: 64px; line-height: 0; color: var(--blue-100); display: block; margin: 22px 0 8px; }
.testimonial footer { margin-top: 22px; display: flex; align-items: center; gap: 14px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; font-family: var(--font-display); font-size: 16px; flex: none; }
.testimonial footer strong { display: block; font-size: 15px; color: var(--navy-800); }
.testimonial footer div span { font-size: 13px; color: var(--ink-500); }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--ink-200); border-radius: 18px; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq details[open] { border-color: var(--blue-400); box-shadow: var(--shadow-md); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-weight: 700; font-size: 16.5px; color: var(--navy-800); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { flex: none; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--blue-50); color: var(--blue-600); transition: transform .25s, background .25s, color .25s; }
.faq summary i svg { width: 16px; height: 16px; }
.faq details[open] summary i { transform: rotate(45deg); background: var(--blue-500); color: #fff; }
.faq__body { padding: 0 24px 22px; color: var(--ink-500); font-size: 15.5px; }

/* CTA band */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 72px);
  background: linear-gradient(120deg, var(--blue-600) 0%, var(--blue-500) 45%, #1b5fbf 100%); color: #fff; text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); }
.cta-band::before { width: 520px; height: 520px; left: -200px; top: -260px; }
.cta-band::after { width: 420px; height: 420px; right: -160px; bottom: -240px; background: radial-gradient(circle, rgba(255,197,49,.35), transparent 70%); border: 0; }
.cta-band h2 { position: relative; font-size: clamp(28px, 4vw, 44px); font-weight: 800; max-width: 760px; margin-inline: auto; }
.cta-band p { position: relative; margin-top: 16px; font-size: 17px; color: rgba(255,255,255,.85); max-width: 600px; margin-inline: auto; }
.cta-band .btn-row { position: relative; justify-content: center; margin-top: 30px; }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; background: #fff; border: 1px solid var(--ink-200); border-radius: 18px; transition: transform .2s, box-shadow .2s; }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card .card__icon { width: 48px; height: 48px; border-radius: 14px; margin: 0; flex: none; }
.contact-card .card__icon svg { width: 22px; height: 22px; }
.contact-card h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-500); font-weight: 700; }
.contact-card a, .contact-card p { display: block; margin-top: 6px; font-size: 16px; font-weight: 600; color: var(--navy-800); }
.contact-card a:hover { color: var(--blue-600); }
.contact-card p { font-weight: 500; color: var(--ink-700); line-height: 1.5; }
.contact-card .sub { font-size: 13.5px; color: var(--ink-500); font-weight: 500; margin-top: 2px; }
.contact-panel { background: var(--navy-800); color: #fff; border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 40px); position: relative; overflow: hidden; }
.contact-panel::after { content: ""; position: absolute; width: 260px; height: 260px; right: -90px; bottom: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(255,197,49,.35), transparent 70%); }
.contact-panel h3 { font-size: 26px; font-weight: 800; }
.contact-panel p { margin-top: 12px; color: rgba(255,255,255,.75); font-size: 15.5px; }
.contact-panel .btn-row { margin-top: 26px; position: relative; z-index: 1; }
.hours { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: grid; gap: 10px; font-size: 14.5px; color: rgba(255,255,255,.8); position: relative; z-index: 1; }
.hours li { display: flex; justify-content: space-between; gap: 12px; }
.hours li span:last-child { color: #fff; font-weight: 600; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

/* Footer */
.footer { background: var(--navy-900); color: rgba(255,255,255,.72); padding-top: clamp(48px, 6vw, 72px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer__brand img { height: 42px; width: auto; background: #fff; padding: 6px 10px; border-radius: 10px; }
.footer__brand p { margin-top: 18px; font-size: 14.5px; max-width: 360px; }
.social { display: flex; gap: 10px; margin-top: 22px; }
.social a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; transition: background .2s, transform .2s; }
.social a:hover { background: var(--blue-500); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; }
.footer h4 { font-family: var(--font-display); color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer__links { display: grid; gap: 10px; }
.footer__links a { font-size: 14.5px; transition: color .15s; }
.footer__links a:hover { color: var(--gold-400); }
.footer__contact { display: grid; gap: 14px; font-size: 14.5px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; flex: none; color: var(--gold-400); margin-top: 3px; }
.footer__contact a:hover { color: #fff; }
.footer__bottom { margin-top: clamp(40px, 5vw, 60px); padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13.5px; }
.footer__bottom a:hover { color: #fff; }
@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }

/* Floating WhatsApp */
.whatsapp {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: #fff; box-shadow: 0 12px 28px rgba(37,211,102,.4);
  transition: transform .2s;
}
.whatsapp:hover { transform: scale(1.06); }
.whatsapp svg { width: 28px; height: 28px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; } .reveal[data-delay="2"] { transition-delay: .16s; } .reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; } .reveal[data-delay="5"] { transition-delay: .40s; } .reveal[data-delay="6"] { transition-delay: .48s; }
.reveal[data-delay="7"] { transition-delay: .56s; } .reveal[data-delay="8"] { transition-delay: .64s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .chip { animation: none; }
  html { scroll-behavior: auto; }
  .device { transform: none; }
}

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal-hero { background: var(--navy-800); color: #fff; padding-block: clamp(48px, 7vw, 88px); }
.legal-hero h1 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 800; margin-top: 14px; }
.legal-hero p { margin-top: 14px; color: rgba(255,255,255,.72); font-size: 16px; }
.legal { max-width: 820px; margin-inline: auto; padding-block: clamp(40px, 6vw, 72px); }
.legal h2 { font-size: 24px; font-weight: 800; color: var(--navy-800); margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--ink-200); }
.legal h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 { font-size: 17.5px; font-weight: 700; color: var(--navy-800); margin-top: 24px; }
.legal p { margin-top: 12px; color: var(--ink-700); font-size: 16px; }
.legal ul { margin-top: 12px; padding-left: 22px; list-style: disc; color: var(--ink-700); display: grid; gap: 8px; }
.legal .note { margin-top: 18px; padding: 16px 18px; border-radius: 14px; background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--navy-800); font-size: 15px; }
.legal a { color: var(--blue-600); font-weight: 600; }

/* ==========================================================================
   Platform showcase (tabs + UI mockups)
   ========================================================================== */
.tabs__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 28px; }
.tab {
  display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 16px 18px; border-radius: 18px; background: #fff; border: 1px solid var(--ink-200);
  transition: border-color .2s, box-shadow .2s, transform .2s, background .2s;
}
.tab:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.tab.is-active { border-color: var(--blue-500); box-shadow: 0 0 0 3px var(--blue-100), var(--shadow-md); }
.tab__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--blue-50); color: var(--blue-600); flex: none; transition: background .2s, color .2s; }
.tab__icon svg { width: 22px; height: 22px; }
.tab.is-active .tab__icon { background: var(--blue-500); color: #fff; }
.tab strong { display: block; font-family: var(--font-display); font-size: 15.5px; color: var(--navy-800); line-height: 1.2; }
.tab small { display: block; font-size: 12.5px; color: var(--ink-500); margin-top: 3px; }
.tabs__panel[hidden] { display: none; }
.tabs__panel { animation: panelIn .35s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (max-width: 860px) {
  .tabs__list { grid-template-columns: 1fr; gap: 8px; }
  .tab { padding: 12px 14px; border-radius: 14px; }
  .tab small { display: none; }
  .tab__icon { width: 38px; height: 38px; }
}

.feature-split {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: center;
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius-xl); padding: clamp(24px, 3.5vw, 44px);
  box-shadow: var(--shadow-sm);
}
.feature-split--reverse { grid-template-columns: 1.15fr .85fr; }
.feature-split--reverse .feature-copy { order: 2; }
.shot { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--ink-200); }
.shot img { display: block; width: 100%; height: auto; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.shot:hover img { transform: scale(1.035); }
html.js .shot { opacity: 0; transform: translateY(18px) scale(.97); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
html.js .shot.is-live { opacity: 1; transform: none; }
.feature-kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-600); }
.feature-kicker i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 4px var(--gold-100); }
.feature-copy h3 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; color: var(--navy-800); margin-top: 14px; }
.feature-copy > p { margin-top: 14px; color: var(--ink-500); font-size: 16px; }
.feature-copy .checks { margin-top: 20px; gap: 10px; }
.feature-copy .checks li { font-size: 14.5px; }
.feature-copy .btn { margin-top: 26px; }
@media (max-width: 960px) { .feature-split { grid-template-columns: 1fr; } .feature-split--reverse .feature-copy { order: 0; } }

/* Mock frames */
.mock {
  position: relative; border-radius: 18px; overflow: hidden; font-size: 12px; line-height: 1.35;
  box-shadow: var(--shadow-lg); border: 1px solid var(--ink-200); min-width: 0;
}
.mock * { min-width: 0; }
.mock__tag {
  position: absolute; top: 10px; right: 10px; z-index: 2; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 999px; background: var(--gold-400); color: var(--navy-900);
}
.mock--light { background: #f5f8fc; color: var(--ink-700); padding: 14px; display: grid; gap: 12px; }
.mock__header { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding-right: 140px; }
.mock__header strong { font-family: var(--font-display); font-size: 15px; color: var(--navy-800); margin-right: 4px; }
.mock__pill, .mock__filter, .mock__btn { display: inline-flex; align-items: center; padding: 5px 10px; border-radius: 8px; font-size: 11px; font-weight: 600; white-space: nowrap; }
.mock__pill { background: #fff; border: 1px solid var(--ink-200); color: var(--ink-700); }
.mock__filter { background: var(--blue-100); color: var(--blue-600); }
.mock__btn { background: var(--blue-500); color: #fff; margin-left: auto; }
.mock__tabs { display: flex; gap: 4px; flex-wrap: wrap; padding: 4px; background: #e9eff7; border-radius: 10px; width: fit-content; max-width: calc(100% - 110px); }
.mock__tabs span { padding: 5px 10px; border-radius: 7px; font-size: 11px; font-weight: 600; color: var(--ink-500); white-space: nowrap; }
.mock__tabs span.is-on { background: #fff; color: var(--navy-800); box-shadow: var(--shadow-sm); }
.mock__cards { display: grid; grid-template-columns: 1.15fr .85fr; gap: 12px; }
.mock__card { background: #fff; border: 1px solid var(--ink-200); border-radius: 12px; padding: 12px; }
.mock__card h5 { margin: 0 0 10px; font-family: var(--font-display); font-size: 13px; color: var(--navy-800); }
.mock__kpis { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.mock__kpis span { font-size: 10.5px; color: var(--ink-500); padding: 4px 8px; border: 1px solid var(--ink-200); border-radius: 6px; }
.mock__kpis b { color: #15803d; }
.mock__toggles { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; font-size: 10.5px; }
.mock__toggles span { font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-500); margin: 0 4px 0 6px; }
.mock__toggles span:first-child { margin-left: 0; }
.mock__toggles b { font-weight: 600; padding: 4px 9px; border-radius: 6px; background: #fff; border: 1px solid var(--ink-200); color: var(--ink-700); }
.mock__toggles b.is-on { background: var(--blue-500); color: #fff; border-color: var(--blue-500); }

/* Funnel */
.funnel { display: grid; gap: 4px; }
.funnel__row { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px; padding: 7px 10px; font-size: 11px; }
.funnel__row::before { content: ""; position: absolute; inset: 0; margin: 0 auto; width: var(--w); background: var(--c); border-radius: 6px; opacity: .55; z-index: -1; }
.funnel__row { z-index: 0; }
.funnel__row span { font-weight: 600; color: var(--navy-800); }
.funnel__row b { color: var(--navy-900); font-size: 12px; }
.funnel__row em { grid-column: 1 / -1; font-style: normal; font-size: 10px; color: #b45309; }
.funnel__row--win b { color: #15803d; }

/* Donut */
.donut-wrap { display: grid; grid-template-columns: 1fr; gap: 12px; justify-items: center; }
.donut {
  --a: 88; --b: 9; --c: 2;
  width: 104px; height: 104px; border-radius: 50%; display: grid; place-items: center;
  background: conic-gradient(#22a55b 0 calc(var(--a) * 1%), #f08a3c 0 calc((var(--a) + var(--b)) * 1%), #e3b23c 0 calc((var(--a) + var(--b) + var(--c)) * 1%), #7c6cf5 0 100%);
}
.donut > div { width: 68px; height: 68px; border-radius: 50%; background: #fff; display: grid; place-content: center; text-align: center; }
.donut small { font-size: 8.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-500); }
.donut b { font-size: 15px; color: var(--navy-800); font-family: var(--font-display); }
.donut__legend { display: grid; gap: 5px; width: 100%; }
.donut__legend li { display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: var(--ink-500); white-space: nowrap; }
.donut__legend li b { margin-left: auto; }
.donut__legend li small { min-width: 28px; text-align: right; }
.donut__legend li::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--c); }
.donut__legend b { color: var(--navy-800); }
.donut__legend small { color: var(--ink-500); font-size: 10px; }

/* Tables */
.mock__scroll { overflow-x: auto; border-radius: 12px; -webkit-overflow-scrolling: touch; }
.mock__table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--ink-200); border-radius: 12px; overflow: hidden; font-size: 11px; display: table; }
.mock__table th, .mock__table td { padding: 8px 10px; text-align: right; white-space: nowrap; border-bottom: 1px solid var(--ink-100); }
.mock__table th:first-child, .mock__table td:first-child { text-align: left; }
.mock__table thead th { background: var(--blue-500); color: #fff; font-size: 10px; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }
.mock__table--pay thead th { background: #eef3fa; color: var(--ink-500); }
.mock__table tbody tr:last-child td { border-bottom: 0; }
.mock__table td:first-child { font-weight: 600; color: var(--navy-800); }
.mock__table .is-total td { background: #f1f5fb; font-weight: 700; color: var(--navy-800); }
.mock__table .pos { color: #15803d; font-weight: 600; }
.mock__table .neg { color: #b91c1c; font-weight: 600; }
.mock__table .pur { color: #6d28d9; font-weight: 600; }
.mock__table small { display: block; font-size: 9.5px; font-weight: 500; opacity: .8; }
.mk { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 6px; margin-right: 8px; font-style: normal; font-weight: 800; color: #fff; font-size: 11px; vertical-align: middle; }
.mk--flip { background: #2874f0; } .mk--mee { background: #f43397; } .mk--amz { background: #ff9900; } .mk--myn { background: #ff3f6c; }
@media (max-width: 640px) {
  .mock__cards { grid-template-columns: 1fr; }
  .mock__table th:nth-child(3), .mock__table td:nth-child(3), .mock__table th:nth-child(5), .mock__table td:nth-child(5) { display: none; }
  .mock__header { padding-right: 0; } .mock__tag { top: 8px; right: 8px; }
  .mock--light { padding-top: 34px; }
  .mock__tabs { max-width: 100%; }
}

/* Dark AI mock */
.mock--dark { background: #0e1a2e; color: #dfe7f3; display: grid; grid-template-columns: 150px 1fr; min-height: 380px; }
.mock__side { background: #0a1424; border-right: 1px solid rgba(255,255,255,.07); padding: 14px 10px; display: grid; gap: 4px; align-content: start; }
.mock__brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 800; font-size: 13px; color: #fff; margin-bottom: 10px; }
.mock__brand i { width: 24px; height: 24px; border-radius: 7px; background: var(--blue-500); display: grid; place-items: center; font-style: normal; font-size: 12px; }
.mock__navitem { padding: 7px 8px; border-radius: 8px; font-size: 11px; font-weight: 600; color: #b9c6d9; }
.mock__navitem.is-active { background: rgba(42,125,225,.18); color: #8ef0a8; }
.mock__navlabel { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: #6b7d96; margin: 10px 8px 4px; font-weight: 700; }
.mock__cat { display: flex; justify-content: space-between; align-items: center; padding: 6px 8px; border-radius: 8px; font-size: 11px; color: #b9c6d9; }
.mock__cat b { font-size: 9.5px; background: rgba(255,255,255,.08); padding: 1px 6px; border-radius: 999px; color: #fff; }
.mock__cat.is-active { background: rgba(42,125,225,.22); color: #fff; }
.mock__cat.is-active b { background: var(--blue-500); }
.mock__main { padding: 14px; display: grid; gap: 8px; align-content: start; }
.mock__topbar { display: flex; gap: 8px; align-items: center; margin-bottom: 4px; padding-right: 150px; }
.mock__search { flex: 1; padding: 7px 10px; border-radius: 8px; background: #16243c; border: 1px solid rgba(255,255,255,.08); color: #6b7d96; font-size: 11px; }
.mock__lang { display: flex; border-radius: 7px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); font-size: 10.5px; }
.mock__lang b { background: #fff; color: var(--navy-900); padding: 5px 8px; }
.mock__lang span { padding: 5px 8px; color: #b9c6d9; }
.mock__q { position: relative; display: flex; gap: 10px; align-items: center; padding: 10px 12px; border-radius: 10px; background: linear-gradient(90deg, #14284a, #101d34); border: 1px solid rgba(91,156,240,.18); border-left: 3px solid var(--blue-500); overflow: hidden; }
.mock__q.is-imp { border-left-color: var(--gold-400); background: linear-gradient(90deg, #172d54, #101d34); }
.mock__qicon { flex: none; width: 30px; height: 30px; border-radius: 8px; background: rgba(42,125,225,.25); color: #9cc4ff; display: grid; place-items: center; font-weight: 800; font-size: 13px; }
.mock__q p { margin: 0; font-size: 11.5px; color: #eef3fb; font-weight: 500; }
.mock__q small { display: block; margin-top: 2px; font-size: 9.5px; color: #7fd49a; font-family: ui-monospace, monospace; }
.mock__q em { position: absolute; top: 6px; right: -18px; transform: rotate(35deg); background: var(--gold-400); color: var(--navy-900); font-style: normal; font-size: 8px; font-weight: 800; padding: 2px 22px; letter-spacing: .1em; }
.mock__chat { margin-top: 6px; display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-radius: 999px; background: #16243c; border: 1px solid rgba(91,156,240,.3); color: #8b9bb4; font-size: 11px; }
.mock__chat b { width: 26px; height: 26px; border-radius: 50%; background: var(--blue-500); color: #fff; display: grid; place-items: center; font-size: 11px; }
@media (max-width: 640px) {
  .mock--dark { grid-template-columns: 1fr; }
  .mock__side { display: flex; flex-wrap: wrap; gap: 6px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .mock__side .mock__brand { width: 100%; margin-bottom: 4px; }
  .mock__side .mock__navitem, .mock__side .mock__navlabel { display: none; }
  .mock__topbar { padding-right: 0; margin-top: 20px; }
  .mock__q p { font-size: 11px; }
}

/* ==========================================================================
   Motion layer
   ========================================================================== */
/* Reveal is only hidden when JS is present, so content never disappears without it */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(22px); }
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* Hero entrance sequence */
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes heroVisualIn { from { opacity: 0; transform: translateY(40px) scale(.96); } to { opacity: 1; transform: none; } }
html.js .hero__pill, html.js .hero__title, html.js .hero__lead, html.js .hero__actions, html.js .hero__proof {
  opacity: 0; animation: heroIn .9s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: var(--d, 0s);
}
html.js .hero__pill { --d: .05s; } html.js .hero__title { --d: .15s; } html.js .hero__lead { --d: .3s; }
html.js .hero__actions { --d: .42s; } html.js .hero__proof { --d: .55s; }
html.js .hero__visual { opacity: 0; animation: heroVisualIn 1.1s cubic-bezier(.2,.7,.2,1) .35s forwards; }
html.js .hero__visual .chip { opacity: 0; animation: heroIn .7s cubic-bezier(.2,.7,.2,1) forwards, float 6s ease-in-out infinite; }
html.js .chip--1 { animation-delay: 1s, 1.7s; } html.js .chip--2 { animation-delay: 1.2s, 1.9s; } html.js .chip--3 { animation-delay: 1.4s, 2.1s; }

/* Hero parallax blobs */
.hero { background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%); }
.hero__blobs {
  position: absolute; inset: -20% 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 500px at 8% 10%, rgba(42,125,225,.18), transparent 60%),
    radial-gradient(700px 420px at 95% 25%, rgba(255,197,49,.2), transparent 60%);
  transform: translate3d(0, calc(var(--sy, 0) * .18px), 0); will-change: transform;
}
.hero::before { z-index: 0; transform: translate3d(0, calc(var(--sy, 0) * .08px), 0); }
.hero .container { position: relative; z-index: 1; }

/* Marquee strip */
.marquee__inner { flex-wrap: nowrap; gap: 20px; }
.marquee__label { flex: none; }
.marks-viewport {
  flex: 1; min-width: 0; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marks { flex-wrap: nowrap; justify-content: flex-start; width: max-content; gap: 14px; padding-inline: 7px; animation: marquee 32s linear infinite; }
.marks-viewport:hover .marks { animation-play-state: paused; }
.marks li { flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (max-width: 720px) {
  .marquee__inner { flex-wrap: wrap; justify-content: center; }
  .marks-viewport { flex-basis: 100%; }
}

/* Curved dividers */
.section--curved { padding-top: calc(var(--section-y) + 40px); padding-bottom: calc(var(--section-y) + 40px); }
.divider { position: absolute; left: 0; right: 0; height: 64px; pointer-events: none; z-index: 1; line-height: 0; }
.divider svg { width: 100%; height: 100%; display: block; }
.divider--top { top: -1px; }
.divider--bottom { bottom: -1px; transform: rotate(180deg); }
.divider path { fill: var(--surface-alt); }

/* Live mockups */
html.js .mock .funnel__row::before { width: 0; transition: width 1s cubic-bezier(.2,.7,.2,1); }
html.js .mock.is-live .funnel__row::before { width: var(--w); }
.mock.is-live .funnel__row:nth-child(2)::before { transition-delay: .12s; }
.mock.is-live .funnel__row:nth-child(3)::before { transition-delay: .24s; }
.mock.is-live .funnel__row:nth-child(4)::before { transition-delay: .36s; }

html.js .mock .mock__q, html.js .mock .mock__table tbody tr, html.js .mock .mock__cat, html.js .mock .mock__chat, html.js .mock .mock__kpis span, html.js .mock .donut__legend li {
  opacity: 0; transform: translateY(10px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}
html.js .mock.is-live .mock__q, html.js .mock.is-live .mock__table tbody tr, html.js .mock.is-live .mock__cat, html.js .mock.is-live .mock__chat, html.js .mock.is-live .mock__kpis span, html.js .mock.is-live .donut__legend li {
  opacity: 1; transform: none;
}
.mock.is-live .mock__q:nth-child(2), .mock.is-live .mock__table tbody tr:nth-child(1), .mock.is-live .mock__cat:nth-of-type(1), .mock.is-live .donut__legend li:nth-child(1) { transition-delay: .15s; }
.mock.is-live .mock__q:nth-child(3), .mock.is-live .mock__table tbody tr:nth-child(2), .mock.is-live .mock__cat:nth-of-type(2), .mock.is-live .donut__legend li:nth-child(2) { transition-delay: .27s; }
.mock.is-live .mock__q:nth-child(4), .mock.is-live .mock__table tbody tr:nth-child(3), .mock.is-live .mock__cat:nth-of-type(3), .mock.is-live .donut__legend li:nth-child(3) { transition-delay: .39s; }
.mock.is-live .mock__q:nth-child(5), .mock.is-live .mock__table tbody tr:nth-child(4), .mock.is-live .mock__cat:nth-of-type(4), .mock.is-live .donut__legend li:nth-child(4) { transition-delay: .51s; }
.mock.is-live .mock__q:nth-child(6), .mock.is-live .mock__table tbody tr:nth-child(5), .mock.is-live .mock__cat:nth-of-type(5) { transition-delay: .63s; }
.mock.is-live .mock__chat, .mock.is-live .mock__kpis span { transition-delay: .8s; }
.mock.is-live .mock__kpis span:nth-child(2) { transition-delay: .9s; }

@property --p { syntax: "<number>"; inherits: false; initial-value: 1; }
.donut { --p: 1;
  background: conic-gradient(#22a55b 0 calc(var(--a) * var(--p) * 1%), #f08a3c 0 calc((var(--a) + var(--b)) * var(--p) * 1%), #e3b23c 0 calc((var(--a) + var(--b) + var(--c)) * var(--p) * 1%), #7c6cf5 0 calc(100% * var(--p)), #e8eef6 0 100%);
}
html.js .mock .donut { --p: 0; }
html.js .mock.is-live .donut { animation: donutSweep 1.3s cubic-bezier(.2,.7,.2,1) .2s forwards; }
@keyframes donutSweep { from { --p: 0; } to { --p: 1; } }

/* Micro-interactions */
.btn svg { transition: transform .2s ease; }
.btn:hover svg { transform: translateX(4px); }
.btn--primary::after, .btn--gold::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .6s ease; pointer-events: none;
}
.btn { position: relative; overflow: hidden; }
.btn--primary:hover::after, .btn--gold:hover::after { transform: translateX(120%); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq details[open] .faq__body { animation: faqOpen .35s cubic-bezier(.2,.7,.2,1); }
.tab.is-active .tab__icon { animation: tabPop .4s cubic-bezier(.34,1.56,.64,1); }
@keyframes tabPop { 0% { transform: scale(.85); } 100% { transform: scale(1); } }
.card__icon { transition: background .25s, color .25s, transform .3s cubic-bezier(.34,1.56,.64,1); }
.card:hover .card__icon { transform: translateY(-3px) rotate(-4deg); }
@keyframes waPulse { 0% { box-shadow: 0 12px 28px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.55); } 100% { box-shadow: 0 12px 28px rgba(37,211,102,.4), 0 0 0 22px rgba(37,211,102,0); } }
.whatsapp.is-pulse { animation: waPulse 1.4s ease-out 2; }

@media (prefers-reduced-motion: reduce) {
  html.js .hero__pill, html.js .hero__title, html.js .hero__lead, html.js .hero__actions, html.js .hero__proof, html.js .hero__visual, html.js .hero__visual .chip { opacity: 1; animation: none; }
  .hero__blobs, .hero::before { transform: none; }
  .marks { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
  .marks li[aria-hidden] { display: none; }
  .marks-viewport { mask-image: none; -webkit-mask-image: none; }
  html.js .mock .funnel__row::before { width: var(--w); transition: none; }
  html.js .mock .mock__q, html.js .mock .mock__table tbody tr, html.js .mock .mock__cat, html.js .mock .mock__chat, html.js .mock .mock__kpis span, html.js .mock .donut__legend li { opacity: 1; transform: none; transition: none; }
  html.js .mock .donut { --p: 1; animation: none; }
  html.js .shot, .shot img { opacity: 1; transform: none; transition: none; }
  .btn--primary::after, .btn--gold::after { display: none; }
  .whatsapp.is-pulse, .tab.is-active .tab__icon, .faq details[open] .faq__body { animation: none; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}
