/* ==========================================================================
   GROWFLO — Base + Component Library
   Reusable across every page template (home, landing, inner, utility).
   ========================================================================== */

/* ---- Reset / base ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; overflow-x: clip; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--lh-base);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---- Typography helpers ----------------------------------------------- */
.display { font-size: var(--text-display); font-weight: var(--fw-black); line-height: var(--lh-tight); letter-spacing: 0; color: var(--text-strong); }
h1, .h1 { font-size: var(--text-h1); font-weight: var(--fw-bold); line-height: var(--lh-tight); letter-spacing: 0; color: var(--text-strong); }
h2, .h2 { font-size: var(--text-h2); font-weight: var(--fw-bold); line-height: var(--lh-snug); letter-spacing: 0; color: var(--text-strong); }
h3, .h3 { font-size: var(--text-h3); font-weight: var(--fw-semi); line-height: var(--lh-snug); letter-spacing: 0; color: var(--text-strong); }
h4, .h4 { font-size: var(--text-h4); font-weight: var(--fw-semi); line-height: var(--lh-snug); color: var(--text-strong); }
.lead { font-size: var(--text-lg); color: var(--text-muted); line-height: var(--lh-base); }
.muted { color: var(--text-muted); }
.text-sm { font-size: var(--text-sm); }
.text-xs { font-size: var(--text-xs); }

/* Eyebrow / kicker label above headings */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); font-weight: var(--fw-semi);
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { display: none; }

/* ---- Layout ------------------------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container.narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--sp-9); }
.section.tight { padding-block: var(--sp-8); }
.section--cream { background: var(--bg-alt); }
.section--sand  { background: var(--sand); }
.section--dark  { background: var(--bg-dark); color: var(--text-invert); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--text-invert); }
.section--dark .lead, .section--dark .muted { color: var(--text-invert-muted); }

.section-head { max-width: 680px; margin-bottom: var(--sp-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: var(--sp-4); }
.section-head h2 { margin-bottom: var(--sp-4); }

.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-weight: var(--fw-semi); font-size: var(--text-base);
  padding: 0.8rem 1.5rem; border-radius: var(--r-full); border: 1.5px solid transparent;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }

.btn-primary { background: var(--accent); color: var(--white); box-shadow: var(--sh-sm); }
.btn-primary:hover { background: var(--accent-hover); box-shadow: var(--sh-md); transform: translateY(-1px); }

.btn-dark { background: var(--forest-700); color: var(--white); }
.btn-dark:hover { background: var(--forest-600); transform: translateY(-1px); }

.btn-secondary { background: transparent; color: var(--text-strong); border-color: var(--border-strong); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent-hover); }

.btn-ghost { background: transparent; color: var(--accent); padding-inline: var(--sp-3); }
.btn-ghost:hover { color: var(--accent-hover); gap: var(--sp-3); }

.btn-light { background: var(--white); color: var(--forest-700); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--sh-lg); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-sm { padding: 0.55rem 1.1rem; font-size: var(--text-sm); }
.btn-lg { padding: 1rem 1.9rem; font-size: var(--text-lg); }

/* ---- Pills / badges / chips ------------------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); font-weight: var(--fw-semi);
  padding: 0.45rem 0.95rem; border-radius: var(--r-full);
  background: var(--accent-soft); color: var(--green-700);
}
.pill svg { width: 16px; height: 16px; flex: none; }
.pill--neutral { background: var(--gray-100); color: var(--gray-600); }
.pill--dark { background: rgba(255,255,255,.1); color: var(--white); }

.chip {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); font-weight: var(--fw-med); color: var(--text);
  padding: 0.5rem 0.9rem; border-radius: var(--r-sm);
  background: var(--white); border: 1px solid var(--border);
}

/* ---- Cards ------------------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-6);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: transparent; }

/* Feature card — the 2x3 grid building block (inner pages) */
.feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-6);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: transparent; }
.feature .icon-box { margin-bottom: var(--sp-5); }
.feature h4 { margin-bottom: var(--sp-3); }
.feature p { color: var(--text-muted); font-size: var(--text-sm); line-height: var(--lh-base); }

/* Icon badge */
.icon-box {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--accent-soft); color: var(--green-600);
}
.icon-box svg { width: 26px; height: 26px; }
.icon-box--dark { background: var(--forest-700); color: var(--green-300); }
.icon-box--solid { background: var(--accent); color: var(--white); }

/* Module card (homepage / landing — with arrow link) */
.module {
  display: flex; flex-direction: column; gap: var(--sp-4);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-6);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.module:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: transparent; }
.module:hover .module-link { gap: var(--sp-3); }
.module p { color: var(--text-muted); font-size: var(--text-sm); flex: 1; }
.module-link {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-weight: var(--fw-semi); color: var(--accent); font-size: var(--text-sm);
  transition: gap var(--dur) var(--ease);
}

/* ---- Tick list (why-Growflo) ------------------------------------------ */
.ticks { display: grid; gap: var(--sp-4); }
.ticks.cols-2 { grid-template-columns: 1fr 1fr; gap: var(--sp-4) var(--sp-6); }
.tick { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--text-base); }
.tick .tick-mark {
  flex: none; display: grid; place-items: center;
  width: 24px; height: 24px; border-radius: var(--r-full);
  background: var(--accent-soft); color: var(--green-600); margin-top: 1px;
}
.tick .tick-mark svg { width: 14px; height: 14px; }
.section--dark .tick .tick-mark { background: rgba(136,193,64,.18); color: var(--green-300); }

/* ---- Stat / quote box (success story) --------------------------------- */
.quote-box {
  background: var(--forest-700); color: var(--white);
  border-radius: var(--r-xl); padding: var(--sp-7);
  position: relative; overflow: hidden;
}
.quote-box::before {
  content: "\201C"; position: absolute; top: -10px; right: 24px;
  font-size: 9rem; line-height: 1; color: rgba(136,193,64,.22); font-family: Georgia, serif;
}
.quote-box .quote-text { font-size: var(--text-h3); font-weight: var(--fw-semi); line-height: var(--lh-snug); position: relative; }
.quote-box .quote-meta { display: flex; align-items: center; gap: var(--sp-3); margin-top: var(--sp-6); }
.quote-box .quote-avatar { width: 44px; height: 44px; border-radius: var(--r-full); background: var(--green-400); display: grid; place-items: center; font-weight: var(--fw-bold); color: var(--forest-800); }
.quote-box .quote-name { font-weight: var(--fw-semi); }
.quote-box .quote-role { font-size: var(--text-sm); color: var(--text-invert-muted); }

.stat { text-align: left; }
.stat .stat-num { font-size: 2.75rem; font-weight: var(--fw-black); color: var(--accent); line-height: 1; letter-spacing: 0; }
.stat .stat-label { color: var(--text-muted); font-size: var(--text-sm); margin-top: var(--sp-2); }

/* ---- Onboarding 4-step row -------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); position: relative; }
.step { position: relative; }
.step .step-icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: var(--r-md);
  background: var(--white); border: 1px solid var(--border); color: var(--green-600);
  margin-bottom: var(--sp-4); position: relative; z-index: 1;
}
.step .step-icon svg { width: 26px; height: 26px; }
.step .step-num { font-size: var(--text-sm); font-weight: var(--fw-bold); color: var(--accent); margin-bottom: var(--sp-2); }
.step h4 { margin-bottom: var(--sp-2); }
.step p { color: var(--text-muted); font-size: var(--text-sm); }
/* connecting line — spans the full column gap, from this icon to the next */
.steps .step:not(:last-child)::after {
  content: ""; position: absolute; top: 27px; left: 68px;
  width: calc(100% - 48px); height: 2px; background: var(--border); z-index: 0;
}

/* ---- Logo slider ------------------------------------------------------- */
.logo-strip { overflow: hidden; max-width: 100%; contain: paint; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-track { display: flex; align-items: center; gap: var(--sp-9); width: max-content; animation: marquee 28s linear infinite; will-change: transform; }
.logo-track .logo-item { font-size: var(--text-h4); font-weight: var(--fw-bold); color: var(--gray-400); white-space: nowrap; letter-spacing: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- CTA band ---------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--forest-700), var(--forest-600));
  border-radius: var(--r-2xl); padding: var(--sp-8); color: var(--white);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 80% -20%, rgba(136,193,64,.14), transparent 74%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--white); margin-bottom: var(--sp-4); }
.cta-band .lead { color: var(--text-invert-muted); max-width: 620px; margin: 0 auto var(--sp-6); }
.cta-actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

/* ---- Navbar ------------------------------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease), -webkit-backdrop-filter var(--dur) var(--ease);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); }
.nav-logo { height: 24px; }
.nav-logo svg, .nav-logo img { height: 24px; width: auto; }
.nav-links { display: flex; align-items: center; gap: var(--sp-6); }
.nav-links > a, .nav-item > a { font-weight: var(--fw-med); font-size: var(--text-sm); color: var(--text); transition: color var(--dur) var(--ease); display: inline-flex; align-items: center; gap: 4px; }
.nav-links > a:hover, .nav-item > a:hover { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: var(--sp-4); }
.nav-caret { width: 14px; height: 14px; color: var(--gray-400); transition: transform var(--dur) var(--ease); }

/* Fixed transparent nav needs deliberate hero breathing on every page. */
.hero, .ihero, .mhero, .phero, .shero, .chero, .dhero, .whero, .ds-hero {
  padding-top: calc(var(--nav-height) + var(--hero-top-space)) !important;
  padding-bottom: var(--hero-bottom-space) !important;
}

/* ---- Mega menu --------------------------------------------------------- */
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-item:hover > a .nav-caret, .nav-item:focus-within > a .nav-caret, .nav-item.is-open > a .nav-caret { transform: rotate(180deg); }
.mega {
  position: fixed; top: calc(var(--nav-height) + 14px); left: 50%; z-index: 60;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-xl); padding: 24px;
  width: var(--mega-w);
  overflow: hidden;
  opacity: 0; visibility: hidden; transform: translate(-50%, -8px);
  transition:
    width .38s cubic-bezier(.16, 1, .3, 1),
    height .38s cubic-bezier(.16, 1, .3, 1),
    opacity .2s var(--ease),
    transform .24s cubic-bezier(.16, 1, .3, 1),
    visibility 0s linear .2s;
  will-change: width, height, transform, opacity;
}
.mega::before { content: ""; position: absolute; top: -48px; left: 0; right: 0; height: 48px; }
.mega.is-open { opacity: 1; visibility: visible; transform: translate(-50%, 0); transition-delay: 0s; }
.mega.is-switching .mega-wrap { opacity: 0; transform: translate3d(0, 4px, 0) scale(.992); }
.mega-wrap { display: grid; gap: 24px; align-items: stretch; transition: opacity .2s var(--ease), transform .2s cubic-bezier(.16, 1, .3, 1); will-change: opacity, transform; }
.mega--platform { --mega-w: min(920px, calc(100vw - 48px)); }
.mega--platform .mega-wrap { grid-template-columns: 252px 252px 320px; }
.mega--commerce { --mega-w: min(660px, calc(100vw - 48px)); }
.mega--commerce .mega-wrap { grid-template-columns: 270px 318px; }
.mega-col { display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.mega--platform .mega-col, .mega--platform .mega-feature { min-height: 385px; }
.mega--commerce .mega-col, .mega--commerce .mega-feature { min-height: 385px; }
.mega-col h6 {
  font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-muted); font-weight: var(--fw-bold);
  line-height: 1.6; margin: 3px 0 12px 10px;
}
.mega-link {
  display: flex; gap: 8px; align-items: center; min-height: 54px;
  padding: 9px 10px; border-radius: var(--r-md);
  transition: background var(--dur) var(--ease);
}
.mega-link:hover { background: var(--accent-soft); }
.mega-link .ml-ic { flex: none; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 9px; background: var(--gray-100); color: var(--green-600); transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.mega-link:hover .ml-ic { background: var(--accent); color: #fff; }
.mega-link .ml-ic svg { width: 18px; height: 18px; }
.mega-link .ml-title { display: block; font-weight: var(--fw-semi); font-size: var(--text-sm); line-height: 1.35; color: var(--text-strong); }
.mega-link .ml-desc { display: block; font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; line-height: 1.4; }
.mega-feature {
  background: linear-gradient(150deg, var(--forest-700), var(--forest-600));
  border-radius: var(--r-md); padding: 24px; color: #fff;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.mega-feature .mf-ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.12); color: var(--green-300); margin-bottom: 16px; }
.mega-feature .mf-ic svg { width: 22px; height: 22px; }
.mega-feature h5 { color: #fff; font-size: var(--text-h4); line-height: 1.6; margin-bottom: 8px; }
.mega-feature p { color: var(--text-invert-muted); font-size: var(--text-sm); line-height: 1.5; margin-bottom: 12px; max-width: 250px; }
.mega-feature .mf-points { display: grid; gap: 4px; margin-bottom: 32px; }
.mega-feature .mf-points li { display: flex; align-items: center; gap: 9px; font-size: var(--text-sm); line-height: 1.6; color: #fff; font-weight: var(--fw-med); }
.mega-feature .mf-points li svg { color: var(--green-300); flex: none; }
.mega-feature .btn { align-self: flex-start; }
.mega-feature .btn-sm { padding: 9px 18px; gap: 4px; font-weight: var(--fw-med); }

/* ---- Footer ------------------------------------------------------------ */
.footer { background: var(--forest-900); color: var(--text-invert-muted); padding-block: var(--sp-8) var(--sp-6); }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: var(--sp-6); padding-bottom: var(--sp-7); }
.footer-brand .footer-logo { height: 32px; margin-bottom: var(--sp-4); }
.footer-brand p { font-size: var(--text-sm); max-width: 280px; line-height: var(--lh-base); }
.footer-col h5 { color: var(--white); font-size: var(--text-sm); font-weight: var(--fw-semi); margin-bottom: var(--sp-4); letter-spacing: .02em; }
.footer-col ul { display: grid; gap: var(--sp-3); }
.footer-col a { font-size: var(--text-sm); transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--green-300); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,.1); font-size: var(--text-sm); flex-wrap: wrap; gap: var(--sp-4); }

/* ---- Browser / screenshot frame --------------------------------------- */
.browser {
  border-radius: var(--r-lg); overflow: hidden; background: var(--white);
  border: 1px solid var(--border); box-shadow: var(--sh-xl);
}
.browser-bar { display: flex; align-items: center; gap: var(--sp-2); padding: 12px 16px; background: var(--gray-100); border-bottom: 1px solid var(--border); }
.browser-dot { width: 11px; height: 11px; border-radius: var(--r-full); background: var(--gray-300); }
.browser-dot:nth-child(1){ background:#FF5F57; } .browser-dot:nth-child(2){ background:#FEBC2E; } .browser-dot:nth-child(3){ background:#28C840; }
.browser-url { margin-left: var(--sp-3); flex: 1; background: var(--white); border-radius: var(--r-full); height: 24px; display: flex; align-items: center; padding-inline: var(--sp-4); font-size: var(--text-xs); color: var(--gray-400); }
.browser img { width: 100%; display: block; }

/* ---- Misc -------------------------------------------------------------- */
.divider { height: 1px; background: var(--border); border: 0; }
.center { text-align: center; }
.mt-4 { margin-top: var(--sp-4); } .mt-6 { margin-top: var(--sp-6); } .mt-7 { margin-top: var(--sp-7); }

/* ---- Scroll reveal ----------------------------------------------------- */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity .72s cubic-bezier(.22, .8, .22, 1), transform .72s cubic-bezier(.22, .8, .22, 1);
  will-change: opacity, transform;
}
html.js .reveal.d1 { transition-delay: .08s; }
html.js .reveal.d2 { transition-delay: .14s; }
html.js .reveal.d3 { transition-delay: .2s; }
html.js .reveal.in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
@media (prefers-reduced-motion: reduce) {
  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- Nav surface on scroll -------------------------------------------- */
.nav.scrolled {
  background: rgba(255,255,255,.92);
  border-bottom-color: var(--border);
  box-shadow: var(--sh-md);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
}

/* ---- Card hover polish (icon motion) ---------------------------------- */
.feature .icon-box, .module .icon-box { transition: transform var(--dur) var(--ease), background var(--dur) var(--ease); }
.feature:hover .icon-box, .module:hover .icon-box { transform: translateY(-2px) rotate(-4deg); background: var(--accent); color: var(--white); }

/* ---- Stats credibility band ------------------------------------------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-band .stat-cell { text-align: center; padding: var(--sp-5) var(--sp-4); }
.stats-band .stat-cell:not(:last-child) { border-right: 1px solid var(--border); }
.stats-band .sb-num { font-size: 3rem; font-weight: var(--fw-black); color: var(--accent); line-height: 1; letter-spacing: 0; }
.stats-band .sb-lbl { color: var(--text-muted); font-size: var(--text-sm); margin-top: var(--sp-3); }

/* ---- Breadcrumb (inner pages) ----------------------------------------- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--sp-5); }
.breadcrumb a { transition: color var(--dur) var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--gray-300); }
.breadcrumb .current { color: var(--text); font-weight: var(--fw-semi); }

/* ---- Floating stat card (over hero visuals / images) ------------------ */
.float-card { position: absolute; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--sh-xl); padding: var(--sp-4) var(--sp-5); display: flex; align-items: center; gap: var(--sp-3); }
.float-card .fc-ic { display: grid; place-items: center; width: 38px; height: 38px; border-radius: var(--r-sm); background: var(--accent-soft); color: var(--green-600); flex: none; }
.float-card .fc-ic svg { width: 20px; height: 20px; }
.float-card .fc-num { font-weight: var(--fw-black); font-size: var(--text-lg); color: var(--text-strong); line-height: 1; }
.float-card .fc-lbl { font-size: var(--text-xs); color: var(--text-muted); }

/* ---- Platform showcase (image + copy) --------------------------------- */
.showcase { display: grid; grid-template-columns: 1fr 1.12fr; gap: var(--sp-8); align-items: center; }
.showcase .browser { transform: perspective(1700px) rotateY(8deg); transform-origin: right center; }
.showcase-visual { position: relative; }
.showcase-glow { display: none !important; }
.ihero-visual::before, .mhero-visual::before, .phero-shot::before {
  display: none !important;
}

/* ---- Forms (Contact / Request a demo) --------------------------------- */
.gf-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--sp-7); box-shadow: var(--sh-lg); }
.gf-form { display: grid; gap: var(--sp-5); }
.gf-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.gf-field { display: flex; flex-direction: column; gap: 7px; }
.gf-field.full { grid-column: 1 / -1; }
.gf-field label { font-size: var(--text-sm); font-weight: var(--fw-semi); color: var(--text-strong); }
.gf-field label .req { color: var(--accent); }
.gf-input, .gf-select, .gf-textarea {
  font-family: var(--font-sans); font-size: var(--text-base); color: var(--text);
  background: var(--sand); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 13px 15px; width: 100%; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease); }
.gf-textarea { min-height: 130px; resize: vertical; line-height: var(--lh-base); }
.gf-input::placeholder, .gf-textarea::placeholder { color: var(--gray-400); }
.gf-input:focus, .gf-select:focus, .gf-textarea:focus { outline: none; border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 3px var(--ring); }
.gf-select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236E776A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.gf-hint { font-size: var(--text-sm); color: var(--text-muted); }
.gf-consent { display: flex; align-items: flex-start; gap: 10px; font-size: var(--text-sm); color: var(--text-muted); }
.gf-consent input { margin-top: 3px; accent-color: var(--accent); width: 16px; height: 16px; flex: none; }

/* contact methods + expectation list */
.contact-methods { display: grid; gap: var(--sp-4); }
.contact-method { display: flex; align-items: flex-start; gap: var(--sp-4); padding: var(--sp-5); background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.contact-method:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.contact-method .cm-ic { flex: none; display: grid; place-items: center; width: 48px; height: 48px; border-radius: var(--r-md); background: var(--green-50); box-shadow: inset 0 0 0 1px rgba(100,165,43,.14); }
.contact-method .cm-ic img, .contact-method .cm-ic svg { width: 26px; height: 26px; }
.contact-method h4 { margin-bottom: 3px; }
.contact-method p, .contact-method a { color: var(--text-muted); font-size: var(--text-sm); }
.contact-method a:hover { color: var(--accent); }

@media (max-width: 600px) { .gf-row { grid-template-columns: 1fr; } }

/* ---- Article / blog cards (Insights) ---------------------------------- */
.post-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.post-thumb { aspect-ratio: 16 / 10; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--green-100), var(--green-300)); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
/* branded dot texture on placeholder (image-less) thumbnails */
.post-thumb:not(:has(img))::after { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.45) 1.4px, transparent 1.5px); background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(75% 75% at 50% 45%, #000, transparent 80%);
          mask-image: radial-gradient(75% 75% at 50% 45%, #000, transparent 80%); }
.post-thumb:not(:has(img))::before { content: ""; position: absolute; right: -30px; bottom: -34px; width: 150px; height: 150px; z-index: 0;
  background: var(--forest-700); opacity: .10; -webkit-mask: var(--leaf-mask) center/contain no-repeat; mask: var(--leaf-mask) center/contain no-repeat; }
:root { --leaf-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/%3E%3Cpath d='M2 21c0-3 1.85-5.36 5.08-6'/%3E%3C/svg%3E"); }
.post-thumb .post-cat { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(255,255,255,.92); backdrop-filter: blur(4px); color: var(--green-700); font-size: var(--text-xs); font-weight: var(--fw-bold); padding: 5px 11px; border-radius: 999px; letter-spacing: .02em; }
.post-body { display: flex; flex-direction: column; gap: var(--sp-3); padding: var(--sp-5) var(--sp-5) var(--sp-6); flex: 1; }
.post-meta { display: flex; align-items: center; gap: 8px; font-size: var(--text-xs); color: var(--text-muted); font-weight: var(--fw-semi); }
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray-300); }
.post-card h3 { font-size: var(--text-h4); line-height: var(--lh-snug); }
.post-card p { color: var(--text-muted); font-size: var(--text-sm); flex: 1; }
.post-more { color: var(--accent); font-weight: var(--fw-semi); font-size: var(--text-sm); display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; }
.post-more svg { width: 15px; height: 15px; flex: none; }

/* featured (wide) post */
.post-feature { display: grid; grid-template-columns: 1.1fr 1fr; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--sh-md); }
.post-feature .post-thumb { aspect-ratio: auto; min-height: 320px; }
.post-feature .post-body { justify-content: center; padding: var(--sp-8); gap: var(--sp-4); }
.post-feature h2 { font-size: var(--text-h3); }
@media (max-width: 860px) { .post-feature { grid-template-columns: 1fr; } .post-feature .post-thumb { min-height: 220px; } }

/* ---- Case-study cards (Success Stories) ------------------------------- */
.case-card { display: flex; flex-direction: column; gap: var(--sp-4); background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--sp-6); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.case-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.case-metric { font-family: var(--font-display); font-weight: var(--fw-semi); font-size: 2.6rem; line-height: 1; letter-spacing: 0; color: var(--accent); }
.case-card .case-quote { color: var(--text); font-size: var(--text-base); line-height: var(--lh-base); flex: 1; }
.case-foot { display: flex; align-items: center; gap: 12px; padding-top: var(--sp-4); border-top: 1px solid var(--border); }
.case-foot .case-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green-500); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: var(--fw-bold); flex: none; }
.case-foot .case-name { font-weight: var(--fw-bold); color: var(--text-strong); font-size: var(--text-sm); }
.case-foot .case-role { color: var(--text-muted); font-size: var(--text-xs); }

/* ---- Mobile nav (hamburger + slide-in drawer, injected by nav.js) ------ */
.nav-burger { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; margin-left: auto; padding: 0; border: 1px solid var(--border); border-radius: var(--r-md); background: var(--white); cursor: pointer; flex: none; }
.nav-burger span, .nav-burger span::before, .nav-burger span::after { display: block; width: 19px; height: 2px; background: var(--text-strong); border-radius: 2px; transition: transform .22s var(--ease), top .22s var(--ease), background .15s; }
.nav-burger span { position: relative; }
.nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; left: 0; }
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }
body.mnav-open .nav-burger span { background: transparent; }
body.mnav-open .nav-burger span::before { top: 0; transform: rotate(45deg); }
body.mnav-open .nav-burger span::after { top: 0; transform: rotate(-45deg); }

.mnav-backdrop { position: fixed; inset: 0; background: rgba(12,35,24,.45); opacity: 0; visibility: hidden; transition: opacity .25s var(--ease); z-index: 1000; }
body.mnav-open .mnav-backdrop { opacity: 1; visibility: visible; }
body.mnav-open { overflow: hidden; }
.mnav { position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); background: var(--white); z-index: 1001; transform: translateX(100%); transition: transform .3s var(--ease); display: flex; flex-direction: column; box-shadow: var(--sh-xl); }
body.mnav-open .mnav { transform: translateX(0); }
.mnav-head { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-4) var(--sp-5); border-bottom: 1px solid var(--border); flex: none; }
.mnav-head img { height: 24px; width: auto; }
.mnav-close { width: 40px; height: 40px; border: none; background: none; cursor: pointer; font-size: 28px; line-height: 1; color: var(--text-muted); }
.mnav-body { padding: var(--sp-3) var(--sp-5); display: flex; flex-direction: column; flex: 1; overflow-y: auto; }
.mnav-link { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); padding: 14px 2px; font-size: 1.05rem; font-weight: var(--fw-semi); color: var(--text-strong); border-bottom: 1px solid var(--gray-100); }
.mnav-acc > .mnav-link { cursor: pointer; user-select: none; }
.mnav-caret { width: 18px; height: 18px; color: var(--text-muted); transition: transform .2s var(--ease); flex: none; }
.mnav-acc.open .mnav-caret { transform: rotate(180deg); }
.mnav-sub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .26s var(--ease); }
.mnav-acc.open .mnav-sub { grid-template-rows: 1fr; }
.mnav-sub > div { overflow: hidden; min-height: 0; }
.mnav-sub a { display: block; padding: 11px 2px 11px 14px; font-size: var(--text-sm); font-weight: var(--fw-med); color: var(--text-muted); }
.mnav-sub a:hover { color: var(--accent); }
.mnav-sub a:first-child { padding-top: 14px; }
.mnav-sub a:last-child { padding-bottom: 16px; color: var(--accent); font-weight: var(--fw-semi); }
.mnav-foot { padding: var(--sp-5); border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: var(--sp-3); flex: none; }
.mnav-foot .btn { width: 100%; justify-content: center; padding: 13px 20px; }
@media (max-width: 980px) { .nav-burger { display: inline-flex; } .nav-actions { display: none; } }
@media (min-width: 981px) { .mnav, .mnav-backdrop { display: none !important; } }

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 980px) {
  :root {
    --nav-height: 64px;
    --hero-top-space: clamp(3.35rem, 7.5vw, 4.75rem);
    --hero-bottom-space: clamp(4rem, 9vw, 5.5rem);
    --gutter: 22px;
    --text-display: clamp(2.7rem, 7vw, 3.4rem);
    --text-h1: clamp(2.2rem, 6vw, 2.85rem);
    --text-h2: clamp(1.85rem, 5vw, 2.3rem);
    --text-h3: 1.45rem;
    --text-lg: 1.1rem;
  }
  .nav-inner { height: 64px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps .step::after { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hero, .ihero, .mhero, .phero, .shero, .chero, .dhero, .whero, .ds-hero {
    padding-top: calc(var(--nav-height) + var(--hero-top-space)) !important;
    padding-bottom: var(--hero-bottom-space) !important;
  }
  .hero-grid, .ihero-grid, .mhero-grid, .dhero-grid, .why-grid, .why-band, .contact-split, .reassure {
    gap: clamp(var(--sp-6), 6vw, var(--sp-8)) !important;
  }
  .showcase { grid-template-columns: 1fr; }
  .showcase .browser { transform: none; }
  .showcase-glow { inset: -8% 0 !important; }
  .showcase-visual, .intro-visual { overflow: hidden; border-radius: var(--r-xl); }
  .hero-stage, .hero-rings { overflow: hidden; }
  .hero-blob {
    width: 100% !important;
    max-width: calc(100vw - (var(--gutter) * 2)) !important;
  }
  .hero-rings span {
    max-width: calc(100vw - (var(--gutter) * 2));
    max-height: calc(100vw - (var(--gutter) * 2));
  }
  /* stacked hero visuals: drop the absolutely-positioned floating cards (they
     spill past the viewport on narrow screens) and keep visuals within width */
  .chip-float, .float-card { display: none !important; }
  .browser, .device, .dash, .showcase-visual, .intro-visual, .phero-shot { max-width: 100%; }
  /* let hero columns + product mockups shrink below their content width so the
     dashboard's min-content can't push the copy/buttons off-screen */
  .ihero-grid > *, .mhero-grid > *, .showcase > *, .intro > *, .why-band > * { min-width: 0; }
  .browser, .dash, .dash-main, .dash-side, .device, .device-screen { min-width: 0; }
  /* dashboard card titles get cramped at small scale — drop the right-side period */
  .dash-card .ct em { display: none; }
  .dash, .dash-main, .dash-grid, .kanban, .kanban--days, .dtable, .crm, .routemap, .charts, .shop, .pos, .scanview {
    overflow: hidden;
  }
}
@media (max-width: 600px) {
  :root {
    --nav-height: 64px;
    --hero-top-space: clamp(2.75rem, 12vw, 4rem);
    --hero-bottom-space: clamp(3.5rem, 12vw, 4.75rem);
    --gutter: 18px;
    --text-display: clamp(2.35rem, 10vw, 2.85rem);
    --text-h1: clamp(1.95rem, 8vw, 2.25rem);
    --text-h2: clamp(1.65rem, 7vw, 2rem);
    --text-h3: 1.32rem;
    --text-h4: 1.12rem;
    --text-lg: 1.04rem;
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .ticks.cols-2 { grid-template-columns: 1fr; }
  .section { padding-block: clamp(3.5rem, 13vw, 4.75rem); }
  .section.tight { padding-block: clamp(2.75rem, 10vw, 3.75rem); }
  .section-head, .section-head.center { margin-bottom: var(--sp-6); }
  .section-head h2 { margin-bottom: var(--sp-3); }
  .hero, .ihero, .mhero, .phero, .shero, .chero, .dhero, .whero, .ds-hero {
    padding-top: calc(var(--nav-height) + var(--hero-top-space)) !important;
    padding-bottom: var(--hero-bottom-space) !important;
  }
  .hero h1, .ihero h1, .mhero h1, .phero h1, .shero h1, .chero h1, .dhero h1, .whero h1 {
    margin-block: var(--sp-4) !important;
  }
  .hero-actions, .cta-actions {
    width: 100%;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: var(--sp-3) !important;
  }
  .hero-actions .btn, .cta-actions .btn, .stepper-cta .btn, .mnav-foot .btn {
    width: 100%;
  }
  .btn {
    min-height: 46px;
    white-space: normal;
    line-height: 1.15;
    text-align: center;
    padding: .85rem 1rem;
  }
  .btn-lg { font-size: 1rem; padding: .95rem 1.1rem; }
  .pill, .chip {
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
  }
  .card, .feature, .module, .gf-card, .quote-box, .cta-band, .case-card, .post-card {
    border-radius: var(--r-lg);
  }
  .card, .feature, .module, .gf-card, .quote-box, .case-card {
    padding: var(--sp-5);
  }
  .cta-band {
    padding: var(--sp-6) var(--sp-5);
    text-align: left;
  }
  .cta-band .lead { margin-inline: 0; }
  .ill { width: 64px; height: 64px; border-radius: var(--r-md); }
  .ill svg, .ill img { width: 38px; height: 38px; }
  .feature h4, .module h4 { margin-top: var(--sp-4); }
  .grid { gap: var(--sp-4); }
  .footer-top { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer-bottom { align-items: flex-start; }
  .stats-band { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; overflow: hidden; }
  .stats-band .stat-cell { border-right: 0 !important; border-bottom: 0; padding: var(--sp-5) var(--sp-3); }
  .stats-band .stat-cell:nth-child(odd) { border-right: 1px solid var(--border) !important; }
  .stats-band .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .stats-band .sb-num { font-size: clamp(2rem, 12vw, 2.55rem); }
  .gf-row { grid-template-columns: 1fr; gap: var(--sp-4); }
  .gf-form { gap: var(--sp-4); }
  .gf-trust { align-items: flex-start; }
  .browser-bar { gap: 6px; padding: 10px 12px; }
  .browser-url { min-width: 0; height: 22px; padding-inline: var(--sp-3); overflow: hidden; text-overflow: ellipsis; }
  .dash {
    width: 100%;
    height: min(300px, 82vw);
    min-height: 276px;
  }
  .dash-side { width: 46px; padding: 10px 0; gap: 4px; }
  .dash-side .ds-logo { width: 28px; height: 28px; margin-bottom: 5px; }
  .dash-side .ds-logo img { width: 18px; height: 18px; }
  .dash-side .ds-i { width: 28px; height: 28px; }
  .dash-side .ds-i svg { width: 15px; height: 15px; }
  .dash-main { padding: 10px; gap: 7px; }
  .dash-head .dh-pill { width: 54px; }
  .dash-kpis { gap: 6px; }
  .dash-kpi { min-width: 0; padding: 7px 6px; }
  .dash-kpi .kl, .dash-kpi .kt { font-size: 7px; }
  .dash-kpi .kv { font-size: 14px; }
  .dash-grid, .crm, .routemap, .charts, .shop, .pos, .scanview { gap: 6px; }
  .kanban, .kanban--days { gap: 5px; }
  .kanban { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kanban .kcol:nth-child(n+3) { display: none; }
  .kanban.kanban--days { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .kanban.kanban--days .kcol:nth-child(3) { display: flex; }
  .kanban.kanban--days .kcol:nth-child(n+4) { display: none; }
  .kcol { min-width: 0; padding: 5px 4px; gap: 4px; }
  .kcol-h { min-width: 0; gap: 3px; font-size: 7px; }
  .kcard { min-width: 0; padding: 5px 4px; }
  .kcard .kn { font-size: 8px; white-space: normal; line-height: 1.08; }
  .kcard .km { min-width: 0; gap: 3px; }
  .kcard .kid { display: none; }
  .dtable .dtr { gap: 5px; padding-inline: 7px; }
  .dtable .dtr[style] { grid-template-columns: minmax(0, 1fr) auto !important; }
  .dtable .dtr .dc:nth-child(2), .dtable .dtr .dc:nth-child(3) { display: none; }
  .dtable .dtr .dc:last-child { display: flex; }
  .dtable .dc { font-size: 8px; gap: 4px; }
  .dtable .dc.dn { white-space: normal; line-height: 1.08; }
  .ttag { font-size: 7px; padding: 2px 5px; }
  .integ-grid { grid-template-columns: 1fr !important; }
  .integ-tile { min-width: 0; }
  .device {
    width: min(300px, 78vw);
    height: auto;
    aspect-ratio: 300 / 624;
    padding: clamp(8px, 3vw, 13px);
    border-radius: clamp(38px, 12vw, 56px);
  }
  .device-screen { border-radius: clamp(30px, 10vw, 44px); }
}
/* belt-and-braces: never allow sideways scroll on small screens */
@media (max-width: 980px) { body { overflow-x: hidden; } }

/* ---- Customer-success / testimonial carousel (avatars on an arc) ------- */
.cs-stage { max-width: 1200px; margin: 0 auto; overflow: hidden; }
.cs-arc { position: relative; height: 290px; margin-bottom: var(--sp-6); overflow: hidden; }
.cs-arc .cs-curve { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, transparent 15%, #000 19%, #000 81%, transparent 85%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, transparent 15%, #000 19%, #000 81%, transparent 85%, transparent 100%); }
.cs-av { position: absolute; top: 0; left: 50%; width: 100px; height: 100px; border-radius: 50%; overflow: hidden;
  border: 3px solid #fff; background: var(--green-200); object-fit: cover; cursor: pointer; transform: translateX(-50%);
  outline: 0 solid var(--green-500); outline-offset: 0;
  transition: left .75s cubic-bezier(.45,.05,.25,1), top .75s cubic-bezier(.45,.05,.25,1), width .55s var(--ease), height .55s var(--ease), opacity .5s var(--ease), outline-width .35s var(--ease), box-shadow .35s var(--ease); }
.cs-av.is-active { outline-width: 6px; box-shadow: 0 12px 30px rgba(100,165,43,.34); border-color: #fff; }
.cs-cardwrap { position: relative; max-width: 824px; margin: 0 auto; }
.cs-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-2xl); box-shadow: var(--sh-lg); padding: 44px 56px; text-align: center; }
.cs-fade { transition: opacity .3s var(--ease), transform .3s var(--ease); }
.cs-card.swapping .cs-fade { opacity: 0; transform: translateY(8px); }
.cs-name { font-family: var(--font-sans); font-weight: 700; color: var(--text-strong); font-size: 19px; }
.cs-role { color: var(--text-muted); font-size: 15px; margin-top: 3px; }
.cs-quote { font-family: var(--font-display); font-weight: 600; font-size: 26px; line-height: 1.32; letter-spacing: 0; color: var(--text-strong); margin-top: 22px; }
.cs-body { color: var(--text-muted); font-size: 17px; line-height: 1.6; margin-top: 14px; }
.cs-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 999px; border: 1px solid var(--border); background: var(--white); box-shadow: var(--sh-md); display: grid; place-items: center; cursor: pointer; color: var(--text-strong); transition: transform var(--dur) var(--ease), background var(--dur) var(--ease); z-index: 6; }
.cs-arrow:hover { transform: translateY(-50%) scale(1.06); }
.cs-arrow svg { width: 22px; height: 22px; }
.cs-arrow.prev { left: -26px; }
.cs-arrow.next { right: -26px; background: var(--green-500); border-color: var(--green-500); color: #fff; }
.cs-viewall { display: flex; justify-content: center; margin-top: var(--sp-7); }
@media (max-width: 820px) {
  .cs-arrow.prev { left: 2px; }
  .cs-arrow.next { right: 2px; }
}
@media (max-width: 760px) {
  .cs-stage { margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); }
  .cs-arc { height: 200px; margin-bottom: var(--sp-5); }
  .cs-card { padding: 26px 20px; }
  .cs-quote { font-size: 20px; }
  .cs-body { font-size: 15px; }
  .cs-arrow { width: 42px; height: 42px; }
  .cs-arrow.prev { left: 2px; } .cs-arrow.next { right: 2px; }
}
