/* =========================================================================
   The Cleaner CRM - marketing site styles
   Palette: indigo + electric violet + white, rose accents
   ========================================================================= */

:root {
  --navy-900: #1e1b4b;
  --navy-800: #28245e;
  --navy-700: #332e73;
  --navy-600: #433d95;

  --teal-700: #4f46e5;
  --teal-600: #6366f1;
  --teal-500: #818cf8;
  --teal-400: #a5b4fc;
  --teal-100: #e0e2fb;
  --teal-50: #eef0fe;

  --orange-600: #e11d48;
  --orange-500: #f43f5e;
  --orange-100: #fde3e8;

  --ink: #1c1c2b;
  --slate: #5b5b73;
  --slate-light: #86869e;

  --grey-50: #f5f6fb;
  --grey-100: #eceef7;
  --grey-200: #e3e5f0;
  --border: #e6e6f1;
  --white: #ffffff;

  --green-600: #1f9d57;
  --amber-500: #f0a821;

  --shadow-sm: 0 1px 2px rgba(30, 27, 75, 0.06), 0 1px 3px rgba(30, 27, 75, 0.08);
  --shadow-md: 0 6px 20px rgba(30, 27, 75, 0.08), 0 2px 6px rgba(30, 27, 75, 0.06);
  --shadow-lg: 0 24px 60px rgba(30, 27, 75, 0.18), 0 8px 24px rgba(30, 27, 75, 0.1);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --container: 1160px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--teal-700); text-decoration: none; }
a:hover { color: var(--teal-600); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.12; color: var(--navy-900); font-weight: 600; letter-spacing: -0.02em; }
h1, h2 { letter-spacing: -0.035em; }
ul { list-style: none; padding: 0; }

/* ---------- layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: 96px; }
.section--tight { padding-block: 72px; }
.section--grey { background: var(--grey-50); border-block: 1px solid var(--border); }
.section--navy {
  background: radial-gradient(1200px 600px at 15% -10%, rgba(99, 102, 241, 0.24), transparent 60%),
              linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: #dcdcf3;
}
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal-700); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--orange-500); border-radius: 2px; }
.section--navy .eyebrow { color: var(--teal-400); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.18rem; }
.lead { font-size: 1.12rem; color: var(--slate); }
.section--navy .lead { color: #bcbce0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 11px 24px; border-radius: 999px; font-weight: 650; font-size: 0.96rem;
  border: 1px solid transparent; transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(180deg, var(--teal-500), var(--teal-600));
  color: #fff; box-shadow: 0 10px 24px rgba(99, 102, 241, 0.32);
}
.btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(99, 102, 241, 0.4); }
.btn--secondary {
  background: var(--white); color: var(--navy-800); border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover { color: var(--navy-900); border-color: var(--teal-400); transform: translateY(-2px); }
.btn--ghost-light { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.25); }
.btn--ghost-light:hover { color: #fff; background: rgba(255,255,255,0.16); }
.btn--lg { padding: 13px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.is-scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 750; color: var(--navy-900); letter-spacing: -0.02em; font-size: 1.06rem; white-space: nowrap; }
.brand:hover { color: var(--navy-900); }
.brand__mark {
  width: 34px; height: 34px; border-radius: 10px; flex: none; overflow: hidden;
  box-shadow: var(--shadow-sm); display: block;
}
.brand__mark svg { width: 100%; height: 100%; display: block; }
.brand__crm { color: var(--teal-600); }
.site-footer .brand__crm { color: var(--teal-400); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav__links { display: flex; gap: 28px; }
.nav__links a { color: var(--slate); font-weight: 550; font-size: 0.96rem; }
.nav__links a:hover { color: var(--navy-900); }
.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 10px; background: #fff; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--navy-800); border-radius: 2px; position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: 84px 96px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(760px 380px at 78% 8%, rgba(99, 102, 241, 0.16), transparent 62%),
    radial-gradient(640px 420px at 8% 92%, rgba(51, 46, 115, 0.12), transparent 60%),
    linear-gradient(180deg, #fbfbff, #f2f3fb);
}
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.1fr); gap: 56px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  font-size: 0.83rem; font-weight: 600; color: var(--slate); margin-bottom: 22px;
}
.hero__badge b { color: var(--navy-900); font-weight: 700; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-600); box-shadow: 0 0 0 4px rgba(31, 157, 87, 0.16); }
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--teal-600); }
.hero__sub { font-size: 1.16rem; color: var(--slate); max-width: 33ch; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; max-width: 520px; }
.hero__trust li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--navy-800); font-weight: 500; }
.check {
  flex: none; width: 20px; height: 20px; border-radius: 6px; background: var(--teal-50);
  color: var(--teal-600); display: grid; place-items: center; margin-top: 1px;
}
.check svg { width: 12px; height: 12px; }

/* ---------- dashboard mockup ---------- */
.mockup {
  background: linear-gradient(180deg, #ffffff, #f7f7fd);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.mockup__bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--border); background: var(--grey-50); }
.mockup__bar i { width: 10px; height: 10px; border-radius: 50%; background: #d4dde5; display: block; }
.mockup__bar i:nth-child(1) { background: #ff6058; }
.mockup__bar i:nth-child(2) { background: #ffbe2f; }
.mockup__bar i:nth-child(3) { background: #29c940; }
.mockup__bar span { margin-left: 10px; font-size: 0.78rem; color: var(--slate-light); font-weight: 600; }
.mockup__body { padding: 20px; }
.mockup__title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mockup__title h4 { font-size: 0.98rem; color: var(--navy-900); }
.mockup__title small { font-size: 0.75rem; color: var(--slate-light); font-weight: 600; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px; box-shadow: var(--shadow-sm);
}
.stat__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate-light); font-weight: 700; }
.stat__value { font-size: 1.5rem; font-weight: 750; color: var(--navy-900); margin-top: 6px; letter-spacing: -0.02em; }
.stat__meta { font-size: 0.74rem; font-weight: 650; margin-top: 4px; }
.stat__meta.up { color: var(--green-600); }
.stat__meta.flat { color: var(--slate-light); }
.stat__meta.alert { color: var(--orange-600); }
.stat--wide { grid-column: span 3; display: flex; align-items: center; justify-content: space-between; }
.spark { display: flex; align-items: flex-end; gap: 4px; height: 34px; }
.spark i { width: 7px; background: var(--teal-400); border-radius: 2px 2px 0 0; display: block; opacity: 0.55; }
.spark i.hot { background: var(--teal-600); opacity: 1; }
.mockup__row { display: flex; align-items: center; justify-content: space-between; padding: 11px 2px; border-top: 1px solid var(--grey-100); font-size: 0.82rem; }
.mockup__row:first-of-type { border-top: none; }
.pill { font-size: 0.7rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.pill--green { background: #e5f6ec; color: var(--green-600); }
.pill--teal { background: var(--teal-50); color: var(--teal-700); }
.pill--amber { background: #fdf1da; color: #a9730a; }
.avatar { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(140deg, var(--teal-400), var(--navy-600)); display: inline-block; }

.mockup-float {
  position: absolute; background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 12px 14px; font-size: 0.8rem; font-weight: 600; color: var(--navy-800);
  display: flex; align-items: center; gap: 10px;
}
.mockup-wrap { position: relative; }
.mockup-float--tr { top: -18px; right: -14px; }
.mockup-float--bl { bottom: -20px; left: -18px; }
.mockup-float .ic { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; color: #fff; flex: none; }
.mockup-float .ic.a { background: var(--orange-500); }
.mockup-float .ic.b { background: var(--teal-600); }

/* logo strip */
.logostrip { text-align: center; }
.logostrip p { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate-light); font-weight: 700; margin-bottom: 20px; }
.logostrip__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 12px; }
.logostrip__row span {
  font-weight: 650; color: var(--navy-700); font-size: 0.92rem; padding: 8px 16px;
  border: 1px solid var(--border); border-radius: 999px; background: #fff;
}

/* ---------- problem section ---------- */
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.problem {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm); transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.problem:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.problem .x {
  width: 30px; height: 30px; border-radius: 9px; background: var(--teal-50); color: var(--teal-600);
  display: grid; place-items: center; margin-bottom: 12px; font-weight: 800;
}
.problem .x svg { width: 17px; height: 17px; }
.problem p { font-size: 0.92rem; color: var(--slate); margin: 0; }
.problem strong { display: block; color: var(--navy-900); font-size: 0.98rem; margin-bottom: 4px; }

/* ---------- features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); transition: transform 0.2s var(--ease), box-shadow 0.2s, border-color 0.2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-100); }
.feature__ic {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px;
  background: linear-gradient(150deg, var(--teal-50), #fff); border: 1px solid var(--teal-100);
  display: grid; place-items: center; color: var(--teal-600);
}
.feature__ic svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.04rem; margin-bottom: 8px; }
.feature p { font-size: 0.9rem; color: var(--slate); margin: 0; }

/* ---------- workflow ---------- */
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: step; }
.flow__step { position: relative; padding: 24px 18px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); }
.flow__step::before {
  counter-increment: step; content: counter(step);
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(180deg, var(--teal-400), var(--teal-600)); color: #fff; font-weight: 800; margin-bottom: 14px;
}
.flow__step h4 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.flow__step p { font-size: 0.86rem; color: #b6b6d8; margin: 0; }
.flow__step .arrow { position: absolute; right: -11px; top: 40px; color: var(--teal-400); z-index: 2; }
.flow__step:last-child .arrow { display: none; }

/* ---------- security ---------- */
.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 28px; }
.sec-item { display: flex; align-items: center; gap: 11px; padding: 15px 16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); font-weight: 600; font-size: 0.92rem; color: var(--navy-800); }
.sec-item .shield { width: 26px; height: 26px; border-radius: 7px; background: var(--navy-800); color: #fff; display: grid; place-items: center; flex: none; }
.sec-item .shield svg { width: 14px; height: 14px; }
.note {
  padding: 16px 18px; border-left: 3px solid var(--teal-500); background: var(--teal-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 0.95rem; color: var(--navy-800);
}

/* ---------- attribution ---------- */
.attr-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.attr-list { display: grid; gap: 10px; }
.attr-list li { display: flex; align-items: center; gap: 12px; padding: 13px 16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); font-weight: 550; }
.attr-list li b { margin-left: auto; font-variant-numeric: tabular-nums; color: var(--navy-900); }
.attr-list .tag { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.donut-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-md); text-align: center; }
.donut { width: 190px; height: 190px; margin: 4px auto 18px; border-radius: 50%;
  background: conic-gradient(var(--teal-600) 0 34%, var(--teal-400) 34% 57%, var(--navy-700) 57% 74%, var(--orange-500) 74% 88%, var(--grey-200) 88% 100%);
  display: grid; place-items: center; position: relative; }
.donut::after { content: ""; width: 116px; height: 116px; background: #fff; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--border); }
.donut span { position: absolute; font-weight: 800; font-size: 1.1rem; color: var(--navy-900); line-height: 1.1; }
.donut span small { display: block; font-size: 0.7rem; color: var(--slate-light); font-weight: 700; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px;
  box-shadow: var(--shadow-sm); position: relative; transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price--featured { border-color: var(--teal-500); box-shadow: 0 24px 60px rgba(99, 102, 241, 0.18); }
.price--featured::before {
  content: "Most popular"; position: absolute; top: -13px; left: 26px; background: var(--orange-500); color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.04em; padding: 5px 12px; border-radius: 999px; text-transform: uppercase;
}
.price h3 { font-size: 1.15rem; margin-bottom: 6px; }
.price__who { font-size: 0.9rem; color: var(--slate); min-height: 42px; margin-bottom: 18px; }
.price__amt { font-size: 1.05rem; font-weight: 700; color: var(--navy-900); margin-bottom: 18px; }
.price__amt span { font-size: 0.85rem; font-weight: 600; color: var(--slate-light); }
.price ul.price__feats { display: grid; gap: 9px; margin-bottom: 22px; }
.price__feats li { display: flex; gap: 9px; font-size: 0.9rem; color: var(--slate); }
.price__feats li svg { color: var(--teal-600); flex: none; margin-top: 4px; width: 13px; height: 13px; }
.price-note { text-align: center; margin-top: 24px; font-size: 0.92rem; color: var(--slate); }

/* ---------- lead form ---------- */
.demo-grid { display: grid; grid-template-columns: 0.95fr 1.15fr; gap: 52px; align-items: start; }
.demo-benefits { display: grid; gap: 18px; margin-top: 26px; }
.demo-benefits li { display: flex; gap: 13px; align-items: flex-start; }
.demo-benefits .check { width: 24px; height: 24px; }
.demo-benefits b { color: var(--navy-900); display: block; font-size: 0.98rem; }
.demo-benefits p { margin: 2px 0 0; font-size: 0.9rem; color: var(--slate); }

.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.86rem; font-weight: 650; color: var(--navy-800); margin-bottom: 6px; }
.field .req { color: var(--orange-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.95rem; color: var(--ink); background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23566674' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { font-size: 0.82rem; color: var(--slate-light); margin-top: 12px; text-align: center; }
.cf-turnstile { margin: 2px 0 14px; }
.form-status { display: none; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.92rem; font-weight: 600; margin-bottom: 16px; }
.form-status.err { display: block; background: #fdecec; color: #c0392b; border: 1px solid #f5c6c6; }
.form-success {
  display: none; text-align: center; padding: 26px 20px;
}
.form-success .tick {
  width: 58px; height: 58px; border-radius: 50%; background: var(--teal-50); color: var(--teal-600);
  display: grid; place-items: center; margin: 0 auto 16px;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--slate); font-size: 0.96rem; }
.is-submitted .form-card__fields { display: none; }
.is-submitted .form-success { display: block; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--border); border-radius: var(--radius); background: #fff; margin-bottom: 12px;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 650; color: var(--navy-900);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ind { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; transition: transform 0.2s var(--ease), background 0.2s, color 0.2s; }
.faq details[open] summary .ind { transform: rotate(45deg); background: var(--teal-600); color: #fff; border-color: var(--teal-600); }
.faq .faq__a { padding: 0 22px 20px; color: var(--slate); font-size: 0.95rem; }

/* ---------- CTA banner ---------- */
.cta-banner { text-align: center; }
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p { color: #bcbce0; max-width: 560px; margin: 0 auto 26px; }
.cta-banner .hero__actions { justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-900); color: #a9a9cc; padding-block: 56px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 40px; }
.site-footer .brand { color: #fff; margin-bottom: 12px; }
.site-footer .brand:hover { color: #fff; }
.footer-about { font-size: 0.9rem; max-width: 34ch; }
.site-footer h5 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.site-footer ul li { margin-bottom: 9px; }
.site-footer a { color: #a9a9cc; font-size: 0.9rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; font-size: 0.83rem; }

/* ---------- floating mobile CTA ---------- */
.floating-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60; display: none;
  box-shadow: var(--shadow-lg);
}

/* ---------- legal pages ---------- */
.legal { max-width: 780px; margin-inline: auto; }
.legal h1 { margin-bottom: 10px; }
.legal .updated { color: var(--slate-light); font-size: 0.88rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.2rem; margin: 32px 0 10px; }
.legal p, .legal li { color: var(--slate); font-size: 0.98rem; margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal li { margin-bottom: 8px; }

/* ---------- thank you ---------- */
.ty { text-align: center; max-width: 620px; margin-inline: auto; padding-block: 40px; }
.ty .tick { width: 76px; height: 76px; border-radius: 50%; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; margin: 0 auto 24px; }
.ty h1 { margin-bottom: 14px; }
.ty p { color: var(--slate); font-size: 1.05rem; margin-bottom: 28px; }
.ty__next { background: var(--grey-50); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; text-align: left; margin-top: 34px; }
.ty__next h3 { font-size: 1rem; margin-bottom: 12px; }
.ty__next li { display: flex; gap: 10px; margin-bottom: 8px; font-size: 0.94rem; color: var(--slate); }

/* ---------- announcement bar ---------- */
.announce {
  background: linear-gradient(90deg, var(--navy-900), var(--navy-700));
  color: #e7eef5; font-size: 0.86rem; font-weight: 500;
}
.announce__inner { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 9px 44px 9px 24px; position: relative; text-align: center; }
.announce a { color: #fff; font-weight: 650; text-decoration: underline; text-underline-offset: 2px; }
.announce b { color: var(--teal-400); font-weight: 700; }
.announce__close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border: 0; background: transparent; color: #b6b6d8; font-size: 1.1rem; line-height: 1; border-radius: 6px;
}
.announce__close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.announce.is-hidden { display: none; }

/* ---------- proof band ---------- */
.proof { padding-block: 40px; background: var(--white); border-bottom: 1px solid var(--border); }
.proof__lead { text-align: center; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 22px; }
.proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.proof-stat { text-align: center; padding: 8px; border-right: 1px solid var(--border); }
.proof-stat:last-child { border-right: 0; }
.proof-stat b { display: block; font-size: 1.9rem; font-weight: 750; color: var(--navy-900); letter-spacing: -0.02em; }
.proof-stat span { font-size: 0.86rem; color: var(--slate); }

/* ---------- feature deep-dive ---------- */
.fdeep__row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding-block: 40px; }
.fdeep__row + .fdeep__row { border-top: 1px solid var(--border); }
.fdeep__row:nth-child(even) .fdeep__media { order: -1; }
.fdeep__text .eyebrow { margin-bottom: 12px; }
.fdeep__text h3 { font-size: 1.5rem; margin-bottom: 12px; }
.fdeep__text p { color: var(--slate); margin-bottom: 16px; }
.fdeep__text ul { display: grid; gap: 9px; }
.fdeep__text li { display: flex; gap: 10px; font-size: 0.93rem; color: var(--navy-800); }
.fdeep__text li svg { color: var(--teal-600); flex: none; width: 15px; height: 15px; margin-top: 4px; }
.mini {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 16px; overflow: hidden;
}
.mini__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; font-size: 0.82rem; font-weight: 700; color: var(--navy-900); }
.mini__head small { color: var(--slate-light); font-weight: 600; }
.mini-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid var(--grey-100); border-radius: 9px; margin-bottom: 8px; font-size: 0.83rem; background: var(--grey-50); }
.mini-row:last-child { margin-bottom: 0; }
.mini-row .dotc { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.mini-row b { margin-left: auto; font-weight: 700; color: var(--navy-900); }
.mini-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mini-col { background: var(--grey-50); border: 1px solid var(--grey-100); border-radius: 9px; padding: 10px 8px; }
.mini-col h6 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate-light); margin-bottom: 8px; font-weight: 700; }
.mini-chip { display: block; background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 6px 8px; font-size: 0.74rem; margin-bottom: 6px; color: var(--navy-800); }
.mini-chip:last-child { margin-bottom: 0; }
.mini-chip.teal { border-left: 3px solid var(--teal-500); }
.mini-chip.orange { border-left: 3px solid var(--orange-500); }
.mini-invoice { font-size: 0.83rem; }
.mini-invoice .li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--grey-200); }
.mini-invoice .li.tot { border-bottom: 0; font-weight: 700; color: var(--navy-900); padding-top: 10px; }
.mini-invoice .paid { display: inline-block; margin-top: 10px; font-size: 0.7rem; font-weight: 800; color: var(--green-600); background: #e5f6ec; padding: 3px 9px; border-radius: 999px; }

/* ---------- industries ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ind-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-sm); transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.ind-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ind-card h3 { font-size: 1.02rem; margin-bottom: 6px; display: flex; align-items: center; gap: 9px; }
.ind-card .ic { width: 30px; height: 30px; border-radius: 8px; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; flex: none; }
.ind-card .ic svg { width: 16px; height: 16px; }
.ind-card p { font-size: 0.88rem; color: var(--slate); margin: 0; }

/* ---------- results / outcomes ---------- */
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.result-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 24px; text-align: center; }
.result-card b { display: block; font-size: 2.1rem; font-weight: 750; color: #fff; letter-spacing: -0.02em; }
.result-card span { font-size: 0.9rem; color: #b6b6d8; }
.results-note { text-align: center; color: #9a9abb; font-size: 0.82rem; margin-top: 22px; }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px;
}
.testi-card .stars { color: var(--amber-500); letter-spacing: 2px; font-size: 0.9rem; }
.testi-card blockquote { margin: 0; font-size: 0.96rem; color: var(--navy-800); line-height: 1.6; }
.testi-card .person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-card .ava { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(140deg, var(--teal-400), var(--navy-600)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 0.9rem; flex: none; }
.testi-card .person b { display: block; font-size: 0.9rem; color: var(--navy-900); }
.testi-card .person span { font-size: 0.82rem; color: var(--slate-light); }

/* ---------- pricing assurance row ---------- */
.price-assure { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-top: 22px; }
.price-assure li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--slate); font-weight: 500; }
.price-assure svg { color: var(--teal-600); width: 15px; height: 15px; }

/* ---------- entrance animation ----------
   Deliberately none. Earlier versions faded `.reveal` blocks in on scroll,
   which could leave content invisible if JS/CSS was slow or stale. Content now
   always renders at full opacity. The `.reveal` class is kept in the markup as
   a harmless hook in case a scroll animation is reintroduced later. Motion on
   the page comes from hover states, the sticky header, and the FAQ only. */

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__sub { max-width: none; }
  .problem-grid, .feature-grid, .sec-grid { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .flow__step .arrow { display: none; }
  .attr-grid { grid-template-columns: 1fr; gap: 32px; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .demo-grid { grid-template-columns: 1fr; gap: 34px; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); gap: 8px 18px; }
  .proof-stat:nth-child(2) { border-right: 0; }
  .ind-grid, .results-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .fdeep__row { grid-template-columns: 1fr; gap: 28px; }
  .fdeep__row:nth-child(even) .fdeep__media { order: 0; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding-block: 64px; }
  .nav__links, .nav__cta { display: none; }
  .nav-toggle { display: flex; }
  .nav { gap: 12px; }
  .hero__actions .btn { width: 100%; }
  .nav.is-open { position: absolute; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); flex-direction: column; align-items: stretch; padding: 16px 24px 22px; box-shadow: var(--shadow-md); }
  .nav.is-open .nav__links { display: flex; flex-direction: column; gap: 4px; }
  .nav.is-open .nav__links a { padding: 10px 0; border-bottom: 1px solid var(--grey-100); }
  .nav.is-open .nav__cta { display: flex; margin-top: 10px; }
  .nav.is-open .nav__cta .btn { width: 100%; }
  .nav.is-open .nav__cta .btn--secondary { display: inline-flex; }
  .hero__trust { grid-template-columns: 1fr; }
  .problem-grid, .feature-grid, .sec-grid, .flow, .form-row { grid-template-columns: 1fr; }
  .ind-grid, .results-grid, .testi-grid, .proof__grid { grid-template-columns: 1fr; }
  .proof-stat { border-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
  .proof-stat:last-child { border-bottom: 0; }
  .announce__inner { flex-direction: column; gap: 6px; padding: 10px 40px; font-size: 0.82rem; }
  .announce a { white-space: nowrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .floating-cta { display: flex; }
  .mockup-float { display: none; }
  .hero { padding-bottom: 90px; }
  .site-footer { padding-bottom: 92px; } /* clear the fixed mobile CTA */
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
