﻿/* ================================================================
   Digital Inventory ERP — marketing site
   Identity: warm paper light theme · pine emerald + amber
   Type: Bricolage Grotesque (display) / Instrument Sans (body)
         Spline Sans Mono (data)
   ================================================================ */

:root {
  --bg: #FBFAF6;
  --surface: #FFFFFF;
  --tint: #F3F1E9;
  --ink: #17251F;
  --muted: #5C6B63;
  --line: #E5E2D6;
  --brand: #0E5E4A;
  --brand-deep: #0A3F33;
  --brand-soft: #E3EEE9;
  --accent: #E8A33D;
  --accent-ink: #B97514;
  --danger: #C4442A;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(23, 37, 31, .05), 0 2px 8px rgba(23, 37, 31, .04);
  --shadow-md: 0 2px 6px rgba(23, 37, 31, .06), 0 12px 32px rgba(23, 37, 31, .08);
  --shadow-lg: 0 4px 12px rgba(23, 37, 31, .08), 0 32px 64px -12px rgba(23, 37, 31, .18);
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Instrument Sans", "Segoe UI", sans-serif;
  --font-mono: "Spline Sans Mono", Consolas, monospace;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
.mono { font-family: var(--font-mono); font-size: .92em; }

.container { width: min(1340px, 100% - 2.5rem); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff; padding: .6rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h2 { font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3rem); }
h3 { font-size: 1.25rem; line-height: 1.3; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}
.eyebrow::before { content: "// "; color: var(--accent-ink); }
.eyebrow--light { color: #9CC7B8; }

.section { padding: clamp(2.4rem, 1.6rem + 2.4vw, 4rem) 0; }
.section--tint { background: var(--tint); }
.section__head { max-width: 640px; margin-bottom: clamp(1.8rem, 1.4rem + 1.5vw, 2.8rem); }
.section__sub { color: var(--muted); margin-top: .9rem; font-size: 1.06rem; }

.textlink {
  color: var(--brand); font-weight: 600;
  background-image: linear-gradient(var(--brand), var(--brand));
  background-size: 0% 1.5px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .35s var(--ease);
}
.textlink:hover { background-size: 100% 1.5px; }
.arrow { display: inline-block; transition: transform .3s var(--ease); }
a:hover .arrow, button:hover .arrow { transform: translateX(4px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.35rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; line-height: 1.2;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: .95rem 1.8rem; font-size: 1.02rem; }
.btn--primary {
  background: linear-gradient(135deg, #11745B, var(--brand) 45%, var(--brand-deep));
  background-size: 150% 150%; background-position: 0% 0%;
  color: #FCFBF6;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 8px 20px -6px rgba(14, 94, 74, .5);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-position .4s var(--ease);
}
.btn--primary:hover { background-position: 100% 100%; transform: translateY(-2px); box-shadow: 0 14px 30px -6px rgba(10, 63, 51, .55); }
.btn--primary:active { transform: translateY(0); }
.btn--outline { border: 1.5px solid var(--line); background: var(--surface); color: var(--ink); }
.btn--outline:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ghost { padding-inline: 1rem; color: var(--muted); }
.btn--ghost:hover { color: var(--ink); }
.btn--light { background: #FCFBF6; color: var(--brand-deep); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(0,0,0,.35); }
.btn--outline-light { border: 1.5px solid rgba(252,251,246,.4); color: #FCFBF6; }
.btn--outline-light:hover { border-color: #FCFBF6; background: rgba(252,251,246,.08); transform: translateY(-2px); }

/* ---------- Top bar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--brand-deep), #0D4F40 55%, var(--brand-deep));
  color: #C7DAD1; font-size: .8rem;
  border-bottom: 1px solid rgba(252,251,246,.08);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 38px; padding-block: .3rem; }
.topbar__contacts { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar__contacts a { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .03em; transition: color .2s; }
.topbar__contacts a:hover { color: var(--accent); }
.topbar__contacts svg { opacity: .8; }
.topbar__note { display: flex; align-items: center; gap: .5rem; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .05em; color: #9CC7B8; white-space: nowrap; }
.topbar__note .stars { font-size: .78rem; }
@media (max-width: 900px) { .topbar__note { display: none; } .topbar__mail { display: none !important; } .topbar__inner { justify-content: center; } }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(23,37,31,.05); }
.nav__links > a.is-current { color: var(--brand); background-size: 100% 2px; }
.nav__inner { display: flex; align-items: center; gap: 2rem; height: 72px; }
.nav__logo { display: flex; align-items: center; gap: .6rem; }
.nav__logo-img { height: 34px; width: auto; display: block; }
.nav__logo-img--light { filter: brightness(0) invert(1); opacity: .95; }
.nav__mark { width: 32px; height: 32px; }
.nav__word {
  display: flex; flex-direction: column; line-height: 1.05;
  font-family: var(--font-mono); font-weight: 500; font-size: .92rem; letter-spacing: .18em;
  color: var(--ink);
}
.nav__word b { font-weight: 500; font-size: .63rem; letter-spacing: .265em; color: var(--brand); }
.nav__logo--light .nav__word { color: #FCFBF6; }
.nav__logo--light .nav__word b { color: var(--accent); }
.nav__links { display: flex; gap: 1.75rem; margin-inline: auto; }
.nav__links > a {
  font-size: .95rem; font-weight: 500; color: var(--muted); padding: .35rem 0;
  background-image: linear-gradient(var(--brand), var(--brand));
  background-size: 0% 2px; background-repeat: no-repeat; background-position: 0 100%;
  transition: color .25s, background-size .35s var(--ease);
}
.nav__links > a:hover { color: var(--ink); background-size: 100% 2px; }
.nav__actions { display: flex; align-items: center; gap: .5rem; }
.nav__mobile-cta { display: none; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(2.2rem, 1.5rem + 2.5vw, 4rem) 0 clamp(2rem, 1.5rem + 2vw, 3.2rem); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(52rem 30rem at 82% -6rem, rgba(14, 94, 74, .16), transparent 65%),
    radial-gradient(38rem 26rem at 8% 110%, rgba(232, 163, 61, .14), transparent 60%),
    linear-gradient(180deg, #F2F4EE, var(--bg) 40%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(23,37,31,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(23,37,31,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(60rem 34rem at 70% 0, #000 30%, transparent 75%);
  mask-image: radial-gradient(60rem 34rem at 70% 0, #000 30%, transparent 75%);
}
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: clamp(2rem, 4vw, 4.5rem); align-items: center; }
.hero__title { font-size: clamp(2.5rem, 1.6rem + 3.6vw, 4.35rem); font-weight: 650; }
.hero__title em {
  font-style: normal; color: var(--brand);
  background-image:
    linear-gradient(color-mix(in srgb, var(--accent) 40%, transparent), color-mix(in srgb, var(--accent) 40%, transparent)),
    linear-gradient(100deg, #12805F, var(--brand) 55%, var(--brand-deep));
  background-repeat: no-repeat, no-repeat;
  background-position: 0 78%, 0 0;
  background-size: 0% .28em, 100% 100%;
  -webkit-background-clip: border-box, text; background-clip: border-box, text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  animation: underline-in .7s var(--ease) .9s forwards;
}
@keyframes underline-in { to { background-size: 100% .28em, 100% 100%; } }
.hero__sub { color: var(--muted); font-size: clamp(1.05rem, 1rem + .35vw, 1.22rem); max-width: 34rem; margin-top: 1.4rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.1rem; }
.hero__assure { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.8rem; color: var(--muted); font-size: .9rem; }
.hero__assure li { display: flex; align-items: center; gap: .45rem; }
.hero__assure li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft);
}

/* --- Dashboard mockup --- */
.hero__visual { position: relative; }
.mock {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg);
  transition: transform .6s var(--ease);
}
.hero__visual:hover .mock { transform: perspective(1400px) rotateY(0) rotateX(0); }
.mock__chrome { display: flex; align-items: center; gap: 6px; padding: .7rem 1rem; border-bottom: 1px solid var(--line); background: var(--tint); }
.mock__chrome i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.mock__chrome i:first-child { background: #E0B8AE; }
.mock__url {
  margin-left: .6rem; font-family: var(--font-mono); font-size: .68rem; color: var(--muted);
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: .15rem .6rem;
  flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mock__body { display: grid; grid-template-columns: 52px minmax(0, 1fr); }
.mock__main, .mock__kpi, .mock__chart { min-width: 0; }
.mock__kpi strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock__side { display: flex; flex-direction: column; gap: 14px; padding: 1.1rem .9rem; border-right: 1px solid var(--line); background: var(--brand-deep); }
.mock__nav { width: 100%; aspect-ratio: 1; border-radius: 8px; background: rgba(252,251,246,.14); }
.mock__nav--on { background: var(--accent); }
.mock__main { padding: 1.1rem; display: grid; gap: .9rem; }
.mock__kpis { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .7rem; }
.mock__kpi { border: 1px solid var(--line); border-radius: 12px; padding: .7rem .8rem; display: grid; gap: .15rem; background: var(--bg); }
.mock__kpi small { font-size: .64rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.mock__kpi strong { font-family: var(--font-mono); font-size: 1.05rem; font-weight: 500; }
.chip {
  max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  justify-self: start; font-family: var(--font-mono); font-size: .6rem;
  padding: .12rem .45rem; border-radius: 999px;
  background: var(--tint); color: var(--muted); border: 1px solid var(--line);
}
.chip--up { background: var(--brand-soft); color: var(--brand); border-color: transparent; }
.mock__chart { border: 1px solid var(--line); border-radius: 12px; padding: .8rem .9rem .4rem; }
.mock__chart-head small { font-size: .68rem; color: var(--muted); }
.mock__chart svg { width: 100%; height: 84px; margin-top: .4rem; }
.spark-line { stroke-dasharray: 420; stroke-dashoffset: 420; animation: draw 2.2s var(--ease) .6s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.mock__rows { display: grid; gap: .45rem; }
.mock__row { display: flex; align-items: center; gap: .6rem; border: 1px solid var(--line); border-radius: 10px; padding: .5rem .7rem; }
.mock__row b { flex: 1; height: 7px; border-radius: 4px; background: var(--tint); }
.mock__row em { font-style: normal; font-family: var(--font-mono); font-size: .62rem; color: var(--muted); }
.dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.dot--g { background: var(--brand); }
.dot--a { background: var(--accent); }

.float-card {
  position: absolute; display: flex; align-items: center; gap: .7rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: .75rem 1rem; box-shadow: var(--shadow-md); font-size: .8rem;
  animation: float 6s ease-in-out infinite;
}
.float-card b { display: block; font-size: .82rem; }
.float-card small { color: var(--muted); font-size: .72rem; }
.float-card--a { left: -2.2rem; bottom: 3.2rem; }
.float-card--b { right: -1.4rem; top: 4.6rem; animation-delay: -3s; }
.float-card__ring {
  width: 18px; height: 18px; border-radius: 50%; flex: none;
  border: 3px solid var(--accent); border-top-color: transparent;
  animation: spin 1.6s linear infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Proof strip --- */
.proof { margin-top: clamp(2rem, 1.5rem + 2vw, 3.2rem); border-top: 1px solid var(--line); padding-top: 1.8rem; }
.proof__label { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 1.4rem; }
.proof__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.proof__stats strong { display: block; font-family: var(--font-display); font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.5rem); font-weight: 650; color: var(--brand); font-variant-numeric: tabular-nums; }
.proof__stats span { color: var(--muted); font-size: .9rem; }

/* ---------- Bento modules ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.bento__cell {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem; display: flex; flex-direction: column; gap: .7rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.bento__cell:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--brand) 32%, var(--line)); }
.bento__cell--wide { grid-column: span 2; grid-row: span 2; justify-content: flex-start; }
.bento__cell--accent { background: linear-gradient(150deg, var(--brand-soft), var(--surface) 70%); }
.bento__cell p { color: var(--muted); font-size: .96rem; }
.bento__icon {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand); margin-bottom: .4rem;
  transition: transform .35s var(--ease), background-color .35s, color .35s;
}
.bento__icon svg { width: 24px; height: 24px; }
.bento__cell:hover .bento__icon { transform: rotate(-6deg) scale(1.06); background: var(--brand); color: #FCFBF6; }
.bento__badge {
  position: absolute; top: 1.4rem; right: 1.5rem;
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--brand-soft); color: var(--brand);
  border-radius: 999px; padding: .28rem .8rem;
}
.bento__cell { position: relative; }
.bento__icon--amber { background: #FBEFD9; color: var(--accent-ink); }
.bento__cell:hover .bento__icon--amber { background: var(--accent-ink); color: #fff; }
.bento__list { display: grid; gap: .5rem; margin-top: .2rem; }
.bento__list li {
  position: relative; padding-left: 1.6rem; color: var(--muted); font-size: .93rem; line-height: 1.45;
}
.bento__list li::before {
  content: ""; position: absolute; left: 0; top: .22em; width: 15px; height: 15px; border-radius: 50%;
  background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3.2 3.2L15 6.5' fill='none' stroke='%230E5E4A' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center / 9px no-repeat;
}
.bento__tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .2rem; }
.bento__tags span {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .03em;
  border: 1px solid var(--line); border-radius: 999px; padding: .25rem .7rem; color: var(--muted);
  transition: border-color .25s, color .25s;
}
.bento__cell:hover .bento__tags span { border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); color: var(--ink); }
.bento__viz { margin-top: auto; padding-top: 1.2rem; display: grid; gap: .8rem; }
.stockbar { display: grid; gap: .3rem; }
.stockbar span { display: block; height: 10px; border-radius: 6px; background: var(--tint); position: relative; overflow: hidden; }
.stockbar span::after {
  content: ""; position: absolute; inset: 0; width: var(--w); border-radius: 6px;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand));
  transform: scaleX(0); transform-origin: left; transition: transform 1.1s var(--ease) .3s;
}
.stockbar--low span::after { background: linear-gradient(90deg, var(--accent-ink), var(--accent)); }
.in-view .stockbar span::after { transform: scaleX(1); }
.stockbar small { font-family: var(--font-mono); font-size: .68rem; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; counter-reset: step; }
.steps li {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem 1.8rem 1.8rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.steps li:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.steps__num {
  font-family: var(--font-mono); font-size: .82rem; color: var(--accent-ink);
  display: inline-block; margin-bottom: 1rem;
  border: 1px dashed color-mix(in srgb, var(--accent-ink) 45%, transparent);
  border-radius: 999px; padding: .25rem .8rem;
}
.steps h3 { margin-bottom: .5rem; }
.steps p { color: var(--muted); font-size: .96rem; }

/* ---------- Product tour ---------- */
.tour__tabs { display: flex; gap: .4rem; margin-bottom: 1.6rem; background: var(--tint); border: 1px solid var(--line); border-radius: 999px; padding: .35rem; width: fit-content; }
.tour__tab {
  padding: .55rem 1.3rem; border-radius: 999px; font-weight: 600; font-size: .92rem;
  color: var(--muted); transition: color .25s, background-color .25s, box-shadow .25s;
}
.tour__tab:hover { color: var(--ink); }
.tour__tab.is-active { background: var(--surface); color: var(--brand); box-shadow: var(--shadow-sm); }
.tour__panel { animation: panel-in .5s var(--ease); }
.tour__panel[hidden] { display: none; }
@keyframes panel-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.shot {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 1.6rem; display: grid; gap: 1.2rem;
  overflow-x: auto;
}
.shot > * { min-width: 0; }
.shot__head { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-size: 1.1rem; }
.shot__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.shot__stat { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: .8rem 1rem; }
.shot__stat small { display: block; color: var(--muted); font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .2rem; }
.shot__stat strong { font-size: 1.08rem; }
.shot__table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.shot__table th {
  text-align: left; font-family: var(--font-mono); font-weight: 500; font-size: .7rem;
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
  padding: .55rem .75rem; border-bottom: 1px solid var(--line);
}
.shot__table td { padding: .7rem .75rem; border-bottom: 1px solid var(--tint); }
.shot__table tbody tr { transition: background-color .2s; }
.shot__table tbody tr:hover { background: var(--tint); }
.shot__total { text-align: right; font-weight: 600; }
.pill { font-size: .72rem; font-weight: 600; padding: .2rem .65rem; border-radius: 999px; }
.pill--ok { background: var(--brand-soft); color: var(--brand); }
.pill--warn { background: #FBEFD9; color: var(--accent-ink); }
.pill--bad { background: #F8E3DD; color: var(--danger); }

.barchart { display: flex; align-items: flex-end; gap: 1rem; height: 180px; padding: .5rem .5rem 0; }
.barchart > div { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .5rem; height: 100%; justify-content: flex-end; }
.barchart i {
  display: block; width: 100%; max-width: 58px; height: var(--h);
  background: linear-gradient(to top, var(--brand-deep), var(--brand));
  border-radius: 8px 8px 3px 3px;
  transform: scaleY(0); transform-origin: bottom; transition: transform .9s var(--ease);
}
.barchart__hi i { background: linear-gradient(to top, var(--accent-ink), var(--accent)); }
.in-view .barchart i { transform: scaleY(1); }
.in-view .barchart > div:nth-child(2) i { transition-delay: .08s; }
.in-view .barchart > div:nth-child(3) i { transition-delay: .16s; }
.in-view .barchart > div:nth-child(4) i { transition-delay: .24s; }
.in-view .barchart > div:nth-child(5) i { transition-delay: .32s; }
.in-view .barchart > div:nth-child(6) i { transition-delay: .4s; }
.barchart small { font-family: var(--font-mono); font-size: .68rem; color: var(--muted); }

/* ---------- Industries (dark) ---------- */
.section--dark { background: var(--brand-deep); color: #F2F0E6; }
.section--dark h2 { color: #FCFBF6; }
.section--dark .section__sub { color: #A9C6BB; }
.ind { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.ind__card {
  border: 1px solid rgba(252,251,246,.14); border-radius: var(--radius-lg);
  padding: 1.7rem; background: rgba(252,251,246,.04); position: relative; overflow: hidden;
  transition: transform .35s var(--ease), background-color .35s, border-color .35s;
}
.ind__card::before {
  content: ""; position: absolute; top: 0; left: 1.7rem; right: 60%; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.ind__card:hover { transform: translateY(-4px); background: rgba(252,251,246,.08); border-color: rgba(252,251,246,.25); }
.ind__card:hover::before { transform: scaleX(1); }
.ind__card h3 { color: #FCFBF6; margin-bottom: .5rem; }
.ind__card p { color: #A9C6BB; font-size: .94rem; }

/* ---------- Why choose us ---------- */
.why { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(2.5rem, 4vw, 5rem); align-items: center; }
.why__list { display: grid; gap: 1.1rem; margin: 1.8rem 0 2.2rem; }
.why__list li { position: relative; padding-left: 2rem; color: var(--muted); font-size: 1rem; }
.why__list li b { color: var(--ink); }
.why__list li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 18px; height: 18px;
  border-radius: 50%; background: var(--brand-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3.2 3.2L15 6.5' fill='none' stroke='%230E5E4A' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}
.why__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.statcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.statcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.statcard:nth-child(2) { transform: translateY(1.4rem); }
.statcard:nth-child(2):hover { transform: translateY(calc(1.4rem - 4px)); }
.statcard:nth-child(4) { transform: translateY(1.4rem); }
.statcard:nth-child(4):hover { transform: translateY(calc(1.4rem - 4px)); }
.statcard strong { display: block; font-family: var(--font-display); font-size: 2.1rem; font-weight: 650; color: var(--brand); font-variant-numeric: tabular-nums; margin-bottom: .4rem; }
.statcard span { color: var(--muted); font-size: .9rem; line-height: 1.5; display: block; }
.statcard--accent { background: linear-gradient(160deg, #FBEFD9, var(--surface) 75%); }
.statcard--accent strong { color: var(--accent-ink); }

/* ---------- Integrations ---------- */
.intg { display: flex; flex-wrap: wrap; gap: .8rem; }
.intg__item {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: .7rem 1.4rem; font-weight: 600; font-size: .95rem;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.intg__item:hover { transform: translateY(-3px); border-color: var(--brand); box-shadow: var(--shadow-sm); }
.intg__dot { width: 9px; height: 9px; border-radius: 3px; background: var(--brand); transform: rotate(45deg); }
.intg__item:nth-child(even) .intg__dot { background: var(--accent); }
.intg__item--api { background: var(--brand-deep); color: #FCFBF6; border-color: var(--brand-deep); gap: .6rem; }
.intg__item--api .mono { color: var(--accent); }
.intg__item--api:hover { border-color: var(--brand-deep); }

/* ---------- Testimonials ---------- */
.quotes { columns: 3; column-gap: 1.2rem; }
.quote {
  break-inside: avoid; margin-bottom: 1.2rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.7rem; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote blockquote { font-size: 1.02rem; line-height: 1.6; }
.quote blockquote::before {
  content: "”"; display: block; font-family: var(--font-display);
  font-size: 3.2rem; line-height: .6; color: var(--accent); margin-bottom: .8rem;
}
.quote--tall blockquote { font-family: var(--font-display); font-size: 1.22rem; line-height: 1.5; }
.quote figcaption { display: flex; align-items: center; gap: .8rem; margin-top: 1.3rem; }
.quote figcaption b { display: block; font-size: .95rem; }
.quote figcaption small { color: var(--muted); font-size: .82rem; }
.quote__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--brand-deep); color: var(--accent);
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .04em;
}
.quote:nth-child(3n) .quote__avatar { background: var(--accent-ink); color: #FCFBF6; }


/* ---------- Video reviews ---------- */
.videos { margin-top: 2.4rem; }
.videos__head { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.3rem; }
.videos__head h3 { font-size: 1.4rem; }
.videos__head p { color: var(--muted); font-size: .95rem; margin-top: .25rem; }
.videos__badge {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--brand-soft); color: var(--brand);
  border-radius: 999px; padding: .45rem 1rem;
}
.videos__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.videocard {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; background: var(--brand-deep); border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.videocard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.videocard:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }
.videocard img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), opacity .3s; }
.videocard:hover img { transform: scale(1.04); }
.videocard::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 63, 51, .55));
  pointer-events: none; transition: opacity .3s;
}
.videocard__play {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%; z-index: 2;
  width: 74px; height: 74px; border-radius: 50%;
  display: grid; place-items: center; padding-left: 5px;
  background: rgba(252, 251, 246, .95); color: var(--brand);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, .5), 0 0 0 0 rgba(252, 251, 246, .5);
  transition: transform .3s var(--ease), background-color .3s, color .3s;
  animation: play-pulse 2.4s ease-out infinite;
}
@keyframes play-pulse {
  0% { box-shadow: 0 12px 32px -8px rgba(0,0,0,.5), 0 0 0 0 rgba(252,251,246,.55); }
  70%, 100% { box-shadow: 0 12px 32px -8px rgba(0,0,0,.5), 0 0 0 22px rgba(252,251,246,0); }
}
.videocard:hover .videocard__play { transform: scale(1.1); background: var(--brand); color: #FCFBF6; }
.videocard.is-playing { cursor: default; }
.videocard.is-playing::after, .videocard.is-playing .videocard__play { display: none; }
.videocard video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
@media (max-width: 720px) { .videos__grid { grid-template-columns: minmax(0, 1fr); } }
/* ---------- CTA band ---------- */
.cta { padding: clamp(1.4rem, 2.5vw, 2.5rem) 0; }
.cta__inner {
  background:
    radial-gradient(40rem 22rem at 85% -30%, rgba(232,163,61,.22), transparent 60%),
    linear-gradient(140deg, var(--brand-deep), var(--brand));
  border-radius: calc(var(--radius-lg) + 8px);
  padding: clamp(2.4rem, 2rem + 2vw, 4rem) clamp(1.6rem, 4vw, 5rem);
  text-align: center; color: #FCFBF6; position: relative; overflow: hidden;
}
.cta__inner::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(252,251,246,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(252,251,246,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(closest-side at 50% 50%, #000, transparent);
  mask-image: radial-gradient(closest-side at 50% 50%, #000, transparent);
}
.cta__inner h2 { color: #FCFBF6; font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3.1rem); max-width: 22ch; margin-inline: auto; }
.cta__inner > p { color: #C7DAD1; margin-top: 1rem; max-width: 44ch; margin-inline: auto; }
.cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; position: relative; z-index: 1; }
.cta__fine { margin-top: 1.6rem; font-size: .84rem; color: #9CC7B8; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 4vw, 4.5rem); align-items: start; }
.faq__head { position: sticky; top: 6.5rem; }
.faq__list { display: grid; gap: .7rem; }
.faq__item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .3s, box-shadow .3s;
}
.faq__item[open] { border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); box-shadow: var(--shadow-sm); }
.faq__item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.4rem; cursor: pointer; font-weight: 600; font-size: 1.02rem;
  list-style: none; user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev { position: relative; width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--tint); transition: background-color .3s, transform .4s var(--ease); }
.faq__chev::before, .faq__chev::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 11px; height: 2px;
  background: var(--brand); border-radius: 2px; translate: -50% -50%;
  transition: transform .35s var(--ease);
}
.faq__chev::after { transform: rotate(90deg); }
.faq__item[open] .faq__chev { background: var(--brand-soft); transform: rotate(180deg); }
.faq__item[open] .faq__chev::after { transform: rotate(0deg); }
.faq__item p { padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: .97rem; }

/* ---------- Footer ---------- */
.footer { background: var(--brand-deep); color: #C7DAD1; padding: clamp(2.5rem, 2rem + 1.5vw, 3.5rem) 0 1.6rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 2rem; padding-bottom: 2.2rem; border-bottom: 1px solid rgba(252,251,246,.12); }
.footer__brand p { font-size: .93rem; margin-top: 1.2rem; max-width: 30ch; color: #A9C6BB; }
.footer__contact a { color: var(--accent); font-weight: 600; }
.footer__contact a:hover { text-decoration: underline; }
.footer__col { display: grid; gap: .65rem; align-content: start; }
.footer__col h4 { font-family: var(--font-mono); font-weight: 500; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: #7FA99A; margin-bottom: .4rem; }
.footer__col a { font-size: .93rem; color: #C7DAD1; transition: color .2s, transform .25s var(--ease); }
.footer__col a:hover { color: #FCFBF6; transform: translateX(3px); }
.footer .nav__logo { color: #FCFBF6; }
.footer__bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.8rem; font-size: .85rem; color: #7FA99A; }
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a:hover { color: #FCFBF6; }

/* ---------- Scroll reveals ---------- */
.reveal, .reveal-r {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-r { transform: translateX(34px); }
.reveal.in-view, .reveal-r.in-view { opacity: 1; transform: none; }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }
.d4 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-r { opacity: 1; transform: none; }
}

/* ================================================================
   New sections — ticker, FBR story, marquee, pricing, contact
   ================================================================ */

/* ---------- Hero phone (real product) ---------- */
.hero__visual--phone { display: grid; place-items: center; position: relative; padding-block: 1.5rem 2.6rem; }
.hero__visual--phone::before {
  content: ""; position: absolute; inset: -4% -5% 8% 14%; z-index: -1;
  border-radius: 36px;
  background:
    radial-gradient(26rem 16rem at 80% 0%, rgba(232,163,61,.35), transparent 60%),
    linear-gradient(150deg, #0D5748, var(--brand-deep) 70%);
  box-shadow: 0 30px 60px -20px rgba(10, 63, 51, .45);
}
.hero__visual--phone::after {
  content: ""; position: absolute; inset: -4% -5% 8% 14%; z-index: -1;
  border-radius: 36px; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(252,251,246,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(252,251,246,.06) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(closest-side at 60% 40%, #000, transparent);
  mask-image: radial-gradient(closest-side at 60% 40%, #000, transparent);
}
.combo { position: relative; width: 100%; max-width: 560px; min-width: 0; transition: transform .5s var(--ease); will-change: transform; }
.hero__grid > *, .story > *, .why > *, .contact > *, .reviews > *, .faq > * { min-width: 0; }
.combo .mock { transform: none; margin-right: 3rem; }
.combo .mock__kpi strong { font-size: .95rem; }
.phone--front {
  position: absolute; right: -1.4rem; bottom: -2.2rem;
  width: clamp(120px, 32%, 176px); height: auto;
  filter: drop-shadow(0 30px 44px rgba(23, 37, 31, .35));
  animation: phone-in 1s var(--ease) .5s both;
}
@keyframes phone-in { from { opacity: 0; transform: translateY(36px) rotate(2deg); } to { opacity: 1; transform: none; } }
.float-card--c { left: -3rem; top: 30%; animation-delay: -1.6s; }

/* ---------- Customer logo strip ---------- */
.clients {
  margin-top: 1.6rem; overflow: hidden; padding-block: .6rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.clients__track { display: flex; align-items: center; gap: 2.6rem; width: max-content; animation: ticker-scroll 38s linear infinite; }
.clients:hover .clients__track { animation-play-state: paused; }
.clients__track img {
  height: 52px; width: auto; flex: none;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: .45rem .8rem; object-fit: contain;
  filter: grayscale(1); opacity: .75;
  transition: filter .35s, opacity .35s, transform .35s var(--ease);
}
.clients__track img:hover { filter: none; opacity: 1; transform: translateY(-3px); }

/* ---------- All features grid ---------- */
.featgrid { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem .65rem; max-width: 62rem; margin-inline: auto; }
.feat {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: .45rem .95rem .45rem .55rem;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.feat:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); box-shadow: var(--shadow-sm); }
.feat b { font-size: .85rem; font-weight: 600; line-height: 1.25; white-space: nowrap; }
.feat__icon {
  width: 26px; height: 26px; flex: none; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand);
  transition: background-color .3s, color .3s, transform .3s var(--ease);
}
.feat__icon svg { width: 15px; height: 15px; }
.feat:hover .feat__icon { background: var(--brand); color: #FCFBF6; transform: rotate(-6deg); }
.featgrid .feat:nth-child(4n+2) .feat__icon { background: #FBEFD9; color: var(--accent-ink); }
.featgrid .feat:nth-child(4n+2):hover .feat__icon { background: var(--accent-ink); color: #fff; }

/* ---------- FBR real screenshot ---------- */
.fbrshot {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); background: var(--surface);
}
.fbrshot img { width: 100%; height: auto; display: block; }
.fbrshot__seal {
  position: absolute; right: 1.2rem; bottom: 1.2rem;
  filter: drop-shadow(0 8px 18px rgba(23,37,31,.25));
  animation: seal-in .7s var(--ease) .5s both, float 6s ease-in-out 1.5s infinite;
}

/* ---------- How-it-works animated flow ---------- */
.howflow { width: 100%; max-width: 980px; height: auto; margin: 0 auto clamp(1.6rem, 3vw, 2.6rem); display: block; }
.flow-label { font-family: var(--font-mono); font-size: 13px; letter-spacing: .04em; fill: var(--muted); }
.flow-dash { stroke-dasharray: 7 8; animation: dash-march 1.1s linear infinite; }
@keyframes dash-march { to { stroke-dashoffset: -15; } }
.flow-dot { opacity: 0; }
.flow-dot--1 { animation: dot-travel-1 3.2s ease-in-out infinite; }
.flow-dot--2 { animation: dot-travel-2 3.2s ease-in-out 1.6s infinite; }
@keyframes dot-travel-1 {
  0% { transform: translateX(0); opacity: 0; }
  8% { opacity: 1; }
  42% { transform: translateX(170px); opacity: 1; }
  50%, 100% { transform: translateX(170px); opacity: 0; }
}
@keyframes dot-travel-2 {
  0% { transform: translateX(0); opacity: 0; }
  8% { opacity: 1; }
  42% { transform: translateX(170px); opacity: 1; }
  50%, 100% { transform: translateX(170px); opacity: 0; }
}
.flow-node { animation: node-pop .7s var(--ease) both; }
.flow-node--d1 { animation-delay: .2s; }
.flow-node--d2 { animation-delay: .4s; }
@keyframes node-pop { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.anim-gear2 { transform-origin: 450px 99px; animation: gear-spin 7s linear infinite; }
.anim-bars2 rect { transform-origin: center 127px; animation: bar-grow 2.8s var(--ease) infinite; }
.anim-bars2 .b2 { animation-delay: .25s; }
.anim-bars2 .b3 { animation-delay: .5s; }

/* ---------- Animated illustrations ---------- */
.steps__art { width: 108px; height: 81px; margin-bottom: .9rem; }
.anim-drop { animation: drop-bob 2.4s ease-in-out infinite; }
@keyframes drop-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
.anim-gear { transform-origin: 45px 53px; animation: gear-spin 7s linear infinite; }
@keyframes gear-spin { to { transform: rotate(360deg); } }
.anim-bars rect { transform-origin: center 76px; animation: bar-grow 2.8s var(--ease) infinite; }
.anim-bars .b2 { animation-delay: .25s; }
.anim-bars .b3 { animation-delay: .5s; }
@keyframes bar-grow { 0% { transform: scaleY(.55); } 35%, 85% { transform: scaleY(1); } 100% { transform: scaleY(.55); } }
.anim-coin { animation: coin-bounce 2.8s ease-in-out infinite; }
@keyframes coin-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.anim-spark { animation: sparkle 2.6s ease-in-out infinite; }
.anim-float-slow { animation: float 7s ease-in-out infinite; }
.anim-float-rev { animation: float 6s ease-in-out -3s infinite reverse; }

.cta__deco { position: absolute; width: clamp(90px, 12vw, 150px); height: auto; opacity: .95; pointer-events: none; }
.cta__deco--l { left: 3%; bottom: 8%; }
.cta__deco--r { right: 3.5%; top: 12%; }
@media (max-width: 720px) { .cta__deco { display: none; } }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 1.2rem; align-items: start; }
.greview {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.7rem; text-align: center; display: grid; justify-items: center; gap: .45rem;
  position: sticky; top: 6rem;
  box-shadow: var(--shadow-sm);
}
.greview__logo { width: 46px; height: 46px; }
.greview__score { font-family: var(--font-display); font-size: 3rem; font-weight: 650; color: var(--ink); line-height: 1; margin-top: .4rem; }
.stars--lg { font-size: 1.35rem; }
.greview p { font-weight: 600; }
.greview small { color: var(--muted); font-size: .85rem; }
.greview .textlink { margin-top: .7rem; font-size: .92rem; }
.reviews__cards { columns: 2; column-gap: 1.2rem; }
.quote .stars { display: block; margin-bottom: .8rem; font-size: .95rem; }
.quote .stars + blockquote::before { display: none; }
.quote__g { width: 20px; height: 20px; margin-left: auto; opacity: .85; }

@media (max-width: 1024px) {
  .reviews { grid-template-columns: minmax(0, 1fr); }
  .greview { position: static; }
}
@media (max-width: 720px) {
  .reviews__cards { columns: 1; }
  .float-card--c { display: none; }
  .clients__track img { height: 42px; }
}

/* ---------- Scroll progress ---------- */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120; pointer-events: none; }
.progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--brand), var(--accent)); transition: width .1s linear; }

/* ---------- Hero extras ---------- */
.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .05em;
  color: var(--brand); background: var(--brand-soft);
  border: 1px solid color-mix(in srgb, var(--brand) 25%, transparent);
  border-radius: 999px; padding: .4rem 1rem; margin-bottom: 1.2rem;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); position: relative; flex: none; }
.pulse-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--brand); opacity: 0; animation: pulse 2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.5); opacity: .8; } 100% { transform: scale(1.4); opacity: 0; } }
.hero__rating { display: flex; align-items: center; gap: .7rem; margin-top: 1.4rem; color: var(--muted); font-size: .92rem; }
.hero__rating b { color: var(--ink); }
.stars { color: var(--accent); letter-spacing: .12em; font-size: 1rem; }

.btn--wa { background: #128C50; color: #fff; box-shadow: 0 8px 20px -6px rgba(18, 140, 80, .45); }
.btn--wa:hover { background: #0C6E3E; transform: translateY(-2px); box-shadow: 0 12px 28px -6px rgba(18, 140, 80, .5); }

/* Floating blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(70px); z-index: -1; pointer-events: none; }
.blob--a { width: 380px; height: 380px; top: -120px; right: -80px; background: rgba(14, 94, 74, .13); animation: blob-drift 14s ease-in-out infinite; }
.blob--b { width: 300px; height: 300px; bottom: -60px; left: -100px; background: rgba(232, 163, 61, .16); animation: blob-drift 18s ease-in-out infinite reverse; }
@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.08); }
  66% { transform: translate(30px, -20px) scale(.94); }
}

/* ---------- Feature ticker ---------- */
.ticker {
  overflow: hidden; border-block: 1px solid var(--line);
  background: var(--surface); padding: .95rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track { display: flex; align-items: center; gap: 1.6rem; width: max-content; animation: ticker-scroll 42s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span { font-family: var(--font-mono); font-size: .82rem; letter-spacing: .06em; color: var(--muted); white-space: nowrap; }
.ticker__track i { color: var(--accent); font-style: normal; font-size: .6rem; }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }

/* ---------- FBR story ---------- */
.story { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(2.5rem, 4vw, 5rem); align-items: center; }
.story__art { position: relative; }
.art { width: 100%; max-width: 460px; margin-inline: auto; }
.art__invoice { animation: float 7s ease-in-out infinite; transform-origin: center; }
.art__box--1 { animation: box-pop .8s var(--ease) both; }
.art__box--2 { animation: box-pop .8s var(--ease) .15s both, float 6s ease-in-out 1s infinite; }
@keyframes box-pop { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }
.art__seal { transform-origin: 340px 96px; animation: seal-in .7s var(--ease) .5s both, seal-spin 24s linear 1.2s infinite; }
@keyframes seal-in { from { transform: scale(0) rotate(-30deg); } to { transform: scale(1) rotate(0); } }
@keyframes seal-spin { 0%, 92% { transform: rotate(0); } 96% { transform: rotate(6deg); } 100% { transform: rotate(0); } }
.art__spark { animation: sparkle 3s ease-in-out infinite; }
@keyframes sparkle { 0%, 100% { opacity: .4; } 50% { opacity: 1; } }

/* ---------- Industries marquee ---------- */
.indmarquee { display: grid; gap: 1rem; margin-top: clamp(2rem, 3vw, 3.5rem); overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.indmarquee__row { overflow: hidden; }
.indmarquee__track { display: flex; gap: 1rem; width: max-content; animation: ticker-scroll 36s linear infinite; }
.indmarquee__row--reverse .indmarquee__track { animation-direction: reverse; animation-duration: 32s; }
.indmarquee__row:hover .indmarquee__track { animation-play-state: paused; }
.indmarquee__track span {
  white-space: nowrap; font-weight: 600; font-size: .98rem; color: #F2F0E6;
  border: 1px solid rgba(252,251,246,.16); background: rgba(252,251,246,.05);
  border-radius: 999px; padding: .75rem 1.5rem;
  transition: background-color .3s, border-color .3s, transform .3s var(--ease);
}
.indmarquee__track span:hover { background: rgba(252,251,246,.12); border-color: rgba(252,251,246,.35); transform: translateY(-3px); }

/* ---------- Pricing ---------- */
.section__head--center { margin-inline: auto; text-align: center; }
.pricing__toggle {
  display: inline-flex; gap: .3rem; margin-top: 1.8rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: .3rem;
}
.pricing__period {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1.4rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  color: var(--muted); transition: background-color .3s var(--ease), color .3s, box-shadow .3s;
}
.pricing__period.is-active { background: var(--brand); color: #FCFBF6; box-shadow: 0 6px 16px -4px rgba(14,94,74,.4); }
.pricing__save { font-family: var(--font-mono); font-size: .66rem; background: var(--accent); color: #3D2A08; border-radius: 999px; padding: .15rem .55rem; letter-spacing: .02em; }
.pricing__period.is-active .pricing__save { background: var(--accent); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.6rem; align-items: start; }
.plan {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: .4rem; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.plan::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan:hover::before { transform: scaleX(1); }
.plan__flag {
  position: absolute; top: 1.1rem; right: 1.2rem;
  background: var(--accent); color: #3D2A08; font-family: var(--font-mono);
  font-size: .66rem; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px; padding: .32rem .85rem; white-space: nowrap;
  box-shadow: 0 4px 12px -4px rgba(232,163,61,.6);
}
.plan h3 { font-size: 1.4rem; }
.plan__for { color: var(--muted); font-size: .9rem; }
.plan__specs { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .9rem; }
.plan__specs span {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .02em;
  background: var(--tint); border: 1px solid var(--line); border-radius: 999px;
  padding: .32rem .75rem; color: var(--ink);
}
.plan__specs svg { width: 14px; height: 14px; color: var(--brand); }
.plan__price { display: flex; align-items: baseline; gap: .4rem; margin: 1.1rem 0 1.2rem; }
.plan__currency { font-family: var(--font-mono); font-size: .85rem; color: var(--muted); }
.plan__amount { font-family: var(--font-display); font-size: 2.7rem; font-weight: 650; color: var(--brand); font-variant-numeric: tabular-nums; line-height: 1; transition: opacity .25s, transform .25s var(--ease); }
.plan__amount--custom { font-size: 2rem; }
.plan__amount.is-flipping, .plan__per.is-flipping { opacity: 0; transform: translateY(8px); }
.plan__per { color: var(--muted); font-size: .92rem; transition: opacity .25s, transform .25s var(--ease); }
.plan__cta { justify-content: center; margin-bottom: 1.2rem; }
.plan__group {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); border-top: 1px dashed var(--line); padding-top: 1.1rem; margin-top: .5rem; margin-bottom: .6rem;
}
.plan__group--new { color: var(--accent-ink); }
.plan__group--new::after { content: " ✦"; }
.plan__list { display: grid; gap: .5rem; }
.plan__list li { position: relative; padding-left: 1.7rem; font-size: .92rem; color: var(--muted); line-height: 1.45; }
.plan__list li b { color: var(--ink); }
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: .22em; width: 16px; height: 16px; border-radius: 50%;
  background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3.2 3.2L15 6.5' fill='none' stroke='%230E5E4A' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.plan__list li.is-new { color: var(--ink); font-weight: 500; }
.plan__list li.is-new::before {
  background-color: #FBEFD9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3.2 3.2L15 6.5' fill='none' stroke='%23B97514' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}
.plan__list--compact li { font-size: .86rem; }

/* Featured dark plan */
.plan--dark {
  background:
    radial-gradient(24rem 14rem at 90% -10%, rgba(232,163,61,.25), transparent 60%),
    linear-gradient(155deg, #0D5748, var(--brand-deep) 75%);
  border-color: var(--brand-deep);
  color: #E9F1EC;
  box-shadow: 0 24px 48px -16px rgba(10, 63, 51, .5);
}
.plan--dark::before { background: var(--accent); }
.plan--dark h3 { color: #FCFBF6; }
.plan--dark .plan__for { color: #A9C6BB; }
.plan--dark .plan__specs span { background: rgba(252,251,246,.08); border-color: rgba(252,251,246,.18); color: #E9F1EC; }
.plan--dark .plan__specs svg { color: var(--accent); }
.plan--dark .plan__currency, .plan--dark .plan__per { color: #A9C6BB; }
.plan--dark .plan__amount { color: #FCFBF6; }
.plan--dark .plan__group { color: #9CC7B8; border-top-color: rgba(252,251,246,.18); }
.plan--dark .plan__group--new { color: var(--accent); }
.plan--dark .plan__list li { color: #C7DAD1; }
.plan--dark .plan__list li.is-new { color: #FCFBF6; }
.plan--dark .plan__list li::before {
  background-color: rgba(252,251,246,.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3.2 3.2L15 6.5' fill='none' stroke='%23E8A33D' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.addons { margin-top: 2.6rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 2.5vw, 2.2rem); box-shadow: var(--shadow-sm); }
.addons__head { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.addons__head h3 { font-size: 1.3rem; }
.addons__head p { color: var(--muted); font-size: .94rem; margin-top: .3rem; max-width: 46ch; }
.addons__table { display: grid; }
.addons__row {
  display: grid; grid-template-columns: 1.6fr .9fr .9fr; gap: 1rem; align-items: center;
  padding: .9rem .8rem; border-top: 1px solid var(--tint);
  border-radius: 10px;
  transition: background-color .25s;
}
.addons__row:hover { background: var(--tint); }
.addons__row--head {
  border-top: 0; padding-block: .4rem .7rem;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.addons__row--head:hover { background: none; }
.addons__name { display: flex; align-items: center; gap: .9rem; }
.addons__name b { display: block; font-size: .96rem; }
.addons__name small { display: block; color: var(--muted); font-size: .8rem; margin-top: .1rem; }
.addons__icon {
  width: 40px; height: 40px; flex: none; border-radius: 11px; font-style: normal;
  display: grid; place-items: center; background: var(--brand-soft); color: var(--brand);
}
.addons__icon svg { width: 21px; height: 21px; }
.addons__row:nth-child(odd) .addons__icon { background: #FBEFD9; color: var(--accent-ink); }
.addons__price { font-size: .84rem; color: var(--muted); white-space: nowrap; }
.addons__price data { font-family: var(--font-mono); font-size: .92rem; font-weight: 500; color: var(--ink); margin-right: .25rem; }
.addons__price em { font-style: normal; margin-inline: .2rem; }
.addons__price--wide { grid-column: 2 / -1; white-space: normal; }

/* ---------- Testimonials (3-up) ---------- */
.quotes--three { columns: 3; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(1.6rem, 3vw, 3rem); align-items: start; }
.contact__info { display: grid; gap: .9rem; }
.infocard {
  display: flex; align-items: center; gap: 1rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.infocard:not(.infocard--static):hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); }
.infocard__icon {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  display: grid; place-items: center; background: var(--brand-soft); color: var(--brand);
}
.infocard__icon svg { width: 23px; height: 23px; }
.infocard__icon--wa { background: #DDF3E7; color: #128C50; }
.infocard b { display: block; font-size: .92rem; }
.infocard span { color: var(--muted); font-size: .92rem; }

.contact__form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: clamp(1.5rem, 3vw, 2.4rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
}
.field { display: grid; gap: .4rem; grid-column: 1 / -1; }
.field--half { grid-column: auto; }
.field label { font-weight: 600; font-size: .9rem; }
.field label i { color: var(--danger); font-style: normal; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--bg);
  border: 1.5px solid var(--line); border-radius: 12px; padding: .75rem 1rem;
  transition: border-color .25s, box-shadow .25s; width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 15%, transparent);
}
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--muted) 65%, transparent); }
.captcha label { display: flex; align-items: center; gap: .4rem; }
.captcha label svg { color: var(--brand); }
.captcha__row { display: flex; align-items: stretch; gap: .6rem; }
.captcha__question {
  display: inline-flex; align-items: center; white-space: nowrap;
  font-family: var(--font-mono); font-size: .95rem; font-weight: 500; letter-spacing: .04em;
  background: var(--brand-soft); color: var(--brand-deep);
  border: 1.5px dashed color-mix(in srgb, var(--brand) 40%, transparent);
  border-radius: 12px; padding: .6rem 1rem; user-select: none;
}
.captcha__row input { flex: 1; min-width: 0; }
.captcha__refresh {
  flex: none; width: 44px; border: 1.5px solid var(--line); border-radius: 12px;
  display: grid; place-items: center; color: var(--muted); background: var(--bg);
  transition: color .25s, border-color .25s, transform .3s var(--ease);
}
.captcha__refresh:hover { color: var(--brand); border-color: var(--brand); }
.captcha__refresh:active svg { transform: rotate(180deg); transition: transform .35s var(--ease); }
.form__actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .3rem; }
.form__note { grid-column: 1 / -1; font-size: .82rem; color: var(--muted); }
.form__error { grid-column: 1 / -1; color: var(--danger); font-size: .9rem; font-weight: 600; }
.form__success {
  grid-column: 1 / -1; display: flex; gap: .8rem; align-items: flex-start;
  background: var(--brand-soft); color: var(--brand-deep);
  border: 1px solid color-mix(in srgb, var(--brand) 30%, transparent);
  border-radius: 12px; padding: 1rem 1.2rem; font-size: .95rem;
  animation: panel-in .5s var(--ease);
}
.form__success svg { flex: none; color: var(--brand); margin-top: .1rem; }
.form__success[hidden], .form__error[hidden] { display: none; }

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__visual { max-width: 640px; margin-inline: auto; }
  .mock { transform: none; }
  .float-card--a { left: -.4rem; }
  .float-card--b { right: -.4rem; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__cell--wide { grid-column: span 2; grid-row: auto; }
  .ind { grid-template-columns: 1fr 1fr; }
  .why { grid-template-columns: minmax(0, 1fr); }
  .quotes { columns: 2; }
  .faq { grid-template-columns: minmax(0, 1fr); }
  .faq__head { position: static; }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
  .story { grid-template-columns: minmax(0, 1fr); }
  .story__art { order: 2; }
  .contact { grid-template-columns: minmax(0, 1fr); }
  .contact__info { grid-template-columns: 1fr 1fr; display: grid; }
  .plans { grid-template-columns: repeat(3, 1fr); gap: .9rem; }
  .plan { padding: 1.6rem 1.3rem; }
}

@media (max-width: 900px) {
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 99;
    display: grid; gap: .2rem; padding: 1rem 1.5rem 1.6rem;
    background: var(--bg); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    visibility: hidden; opacity: 0; transform: translateY(-12px);
    transition: transform .35s var(--ease), opacity .3s var(--ease), visibility 0s .35s;
  }
  .nav__links.is-open { visibility: visible; opacity: 1; transform: translateY(0); transition-delay: 0s; }
  .nav__links > a { font-size: 1.1rem; padding: .7rem 0; }
  .nav__mobile-cta { display: flex; gap: .7rem; margin-top: .8rem; }
  .nav__actions { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
}

@media (max-width: 720px) {
  .proof__stats { grid-template-columns: 1fr 1fr; gap: 1.6rem 1rem; }
  .bento, .steps, .ind { grid-template-columns: 1fr; }
  .bento__cell--wide { grid-column: auto; }
  .mock__kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mock__kpi:last-child { display: none; }
  .float-card--a { display: none; }
  .float-card--b { right: .4rem; top: 2.6rem; }
  .combo .mock { margin-right: 1.6rem; }
  .phone--front { right: .2rem; bottom: -1.6rem; }
  .why__stats { grid-template-columns: 1fr; }
  .statcard:nth-child(2), .statcard:nth-child(4) { transform: none; }
  .quotes { columns: 1; }
  .shot__grid { grid-template-columns: 1fr; }
  .shot__table th:first-child, .shot__table td:first-child.mono { display: none; }
  .barchart { height: 130px; gap: .5rem; }
  .tour__tabs { width: 100%; }
  .tour__tab { flex: 1; padding-inline: .5rem; text-align: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta__actions .btn { width: 100%; justify-content: center; }

  .plans { grid-template-columns: 1fr; gap: 1.6rem; }
  .plan__amount { font-size: 2.3rem; }
  .addons__row { grid-template-columns: 1fr; gap: .35rem; }
  .addons__row--head { display: none; }
  .addons__price { padding-left: 3.2rem; }
  .addons__price--wide { grid-column: auto; }
  .contact__info { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1; }
  .form__actions .btn { width: 100%; justify-content: center; }
  .pricing__toggle { max-width: 100%; justify-content: center; flex-wrap: wrap; }
  .pricing__period { flex: 1; justify-content: center; padding-inline: .8rem; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .indmarquee__track span { font-size: .88rem; padding: .6rem 1.1rem; }
}
