/* ============ Vonix — design system ============ */
:root {
  --bg: #f3f1ea;
  --panel: #f7f5ef;
  --ink: #111110;
  --gray: #8b897f;
  --gray-2: #b9b6aa;
  --line: #e0ddd2;
  --line-dark: #c9c6ba;
  --radius: 14px;
  --sans: "Inter", -apple-system, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: "JetBrains Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.page { min-height: 100vh; }

/* ============ frame / grid chrome ============ */
.frame {
  width: 100%;
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
}
.section { position: relative; padding: 0 44px; }
@media (min-width: 1280px) {
  .section, .footer, .nav { padding-left: 64px; padding-right: 64px; }
  .fcell, .faq-side, .faq-list { padding: 56px; }
  .wcell { padding: 40px 64px 48px; }
  .scell { padding: 80px 40px 52px; }
  .tcell { padding: 44px 36px 52px; }
}

/* corner markers at grid intersections */
.corner {
  position: absolute; width: 5px; height: 5px;
  background: var(--ink); border-radius: 50%;
  transform: translate(-50%, -50%) scale(.55);
  z-index: 3; pointer-events: none;
}
.c-tl { top: 0; left: 0; }
.c-tr { top: 0; left: 100%; }
.c-bl { top: 100%; left: 0; }
.c-br { top: 100%; left: 100%; }

/* ============ type ============ */
.h2 { font-size: clamp(30px, 4.2vw, 46px); font-weight: 500; line-height: 1.08; letter-spacing: -0.02em; }
.h3 { font-size: clamp(24px, 2.8vw, 32px); font-weight: 500; line-height: 1.12; letter-spacing: -0.015em; }
.h4 { font-size: 21px; font-weight: 500; line-height: 1.2; letter-spacing: -0.01em; }
.line-sans, .line-serif { display: block; }
.line-serif { font-family: var(--serif); font-style: italic; font-weight: 400; }
.h2 .line-serif { font-size: 1.04em; }
.center { text-align: center; }
.right { text-align: right; }
.sec-sub { color: var(--gray); margin-top: 14px; font-size: 14.5px; }
.sec-sub.center { margin-left: auto; margin-right: auto; max-width: 420px; }
.fdesc { color: var(--gray); font-size: 14.5px; max-width: 340px; }
.fdesc.sm { font-size: 13px; }

/* ============ buttons / tags ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: .01em;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { box-shadow: 0 8px 20px rgba(17,17,16,.18); }
.btn-light { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

.tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 14px;
  font-size: 12px; font-weight: 500;
  box-shadow: 0 1px 3px rgba(17,17,16,.05);
}
.tag svg { width: 13px; height: 13px; stroke-width: 1.2; }

/* ============ nav ============ */
.nav {
  width: 100%; margin: 0 auto;
  display: flex; align-items: center; gap: 30px;
  padding: 18px 44px;
  border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  background: rgba(243,241,234,.88);
  backdrop-filter: blur(12px);
}
.nav-logo { display: inline-flex; align-items: center; gap: 8px; }
.nav-logo-mark { width: 26px; height: 26px; display: block; }
.nav-logo-mark svg { width: 100%; height: 100%; }
.nav-logo-text { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 26px; flex: 1; justify-content: center; }
.nav-links a {
  font-size: 13.5px; color: #3c3b36; display: inline-flex; align-items: center; gap: 5px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.caret { width: 9px; height: 6px; opacity: .6; }
.nav-actions { display: flex; gap: 8px; }
.nav-burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); display: block; transition: transform .3s; }

/* ============ hero ============ */
.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(420px, 46%) 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-copy { padding: 70px 0; position: relative; z-index: 2; }
.hero-title { font-size: clamp(34px, 4.3vw, 56px); font-weight: 500; line-height: 1.04; letter-spacing: -0.025em; }
@media (min-width: 768px) { .hero-title { white-space: nowrap; } }
.hero-title .line-serif { font-size: 0.98em; }
.hero-sub { color: var(--gray); margin-top: 24px; font-size: 15px; }
.hero-cta { display: flex; gap: 12px; margin-top: 30px; }
.hero-canvas-wrap { position: absolute; inset: 0; left: 32%; }
#heroCanvas { width: 100%; height: 100%; display: block; }
.hero-badges {
  position: absolute; right: 48px; bottom: 64px;
  list-style: none; display: flex; gap: 18px; z-index: 2;
}
.hero-badges-2 { bottom: 36px; }
.hero-badges li {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10.5px; color: #55534b;
}
.hero-badges svg { width: 13px; height: 13px; stroke-width: 1.1; fill: none; }

/* ============ logos marquee ============ */
.logos {
  display: flex; align-items: center; gap: 30px;
  padding-top: 26px; padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.logos-left { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logos-count em { font-family: var(--serif); font-style: italic; font-size: 34px; }
.logos-label { font-size: 10px; font-weight: 600; letter-spacing: .04em; line-height: 1.3; }
.marquee { flex: 1; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 38px; width: max-content; }
.brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 22px; font-weight: 600; color: var(--gray-2);
  white-space: nowrap; letter-spacing: -0.01em;
}
.brand svg { width: 20px; height: 20px; color: var(--gray-2); }
.brand svg[viewBox="0 0 26 14"] { width: 30px; }
.brand-g .gv { font-family: var(--serif); font-size: 26px; font-weight: 400; }
.dot-sep { color: var(--gray-2); font-size: 20px; }

/* ============ section heads ============ */
.sec-head { padding-top: 90px; padding-bottom: 70px; border-bottom: 1px solid var(--line); }

/* ============ feature grid ============ */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; }
.fcell {
  position: relative; min-height: 380px;
  border-bottom: 1px solid var(--line);
  padding: 44px;
}
.fcell:nth-child(odd) { border-right: 1px solid var(--line); }
.fcell-text { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 16px; }
.fcell-text .h3 { margin-top: 6px; }
.fcell-illus { padding: 10px; }
.mini-wrap { position: absolute; inset: 0; }
.mini-wrap canvas { width: 100%; height: 100%; display: block; }
.fcell .tag { position: relative; }
.fcell-illus .tag, .scell .tag { position: absolute; top: 20px; left: 20px; z-index: 2; }

/* ============ why ============ */
.why { padding-top: 90px; padding-bottom: 60px; border-bottom: 1px solid var(--line); }
.why-head { display: flex; flex-direction: column; align-items: flex-end; }
.sec-sub.right { max-width: 340px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.wcell {
  padding: 36px 44px 42px;
  border-bottom: 1px solid var(--line);
}
.wcell:not(:nth-child(3n)) { border-right: 1px solid var(--line); }
.wicon {
  width: 38px; height: 38px; border-radius: 11px;
  background: #fff; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 44px;
  box-shadow: 0 1px 3px rgba(17,17,16,.05);
}
.wicon svg { width: 19px; height: 19px; }
.wcell h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.wcell p { font-size: 13px; color: var(--gray); }

/* ============ stats ============ */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.scell {
  position: relative; padding: 70px 28px 44px;
  border-bottom: 1px solid var(--line);
}
.scell:not(:nth-child(3n)) { border-right: 1px solid var(--line); }
.stat-visual {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  height: 320px; margin-bottom: 26px; overflow: hidden; position: relative;
}
.scell .h4 { margin-bottom: 10px; }

/* gauge card */
.gauge-card { padding: 14px; }
.gauge-top {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 10px;
}
.gauge-note {
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 10px; color: #55534b; padding: 5px 10px;
  display: flex; align-items: center; gap: 6px; margin-bottom: 8px;
}
.gnote-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); position:relative; }
.gnote-dot::after { content:""; position:absolute; inset:-3px; border:1px solid var(--ink); border-radius:50%; opacity:.35; }
.gauge-chips { display: flex; gap: 6px; }
.chip {
  flex: 1; display: inline-flex; align-items: center; gap: 5px; justify-content: center;
  border: 1px solid var(--ink); border-radius: 999px;
  padding: 5px 4px; font-size: 11.5px; font-weight: 600; background: #fff;
  white-space: nowrap;
}
.chip i { font-style: normal; font-size: 10px; filter: grayscale(1) contrast(1.4); }
.gauge-score { font-size: 20px; margin: 14px 0 0 10px; font-weight: 600; }
.gauge-score span { color: var(--gray-2); font-weight: 400; }
.gauge-arc { position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); width: 78%; }
.gauge-arc svg { width: 100%; display: block; overflow: visible; }
.gauge-ticks line { stroke: var(--line-dark); stroke-width: 1.5; }
.gauge-row {
  position: absolute; left: 0; right: 0; bottom: 12px;
  display: flex; justify-content: center; gap: 5px;
}
.gauge-row span {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--line-dark); background: var(--panel);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; color: transparent;
}
.gauge-row span.on { background: var(--ink); border-color: var(--ink); color: #fff; }

/* efficiency card */
.eff-card { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.eff-circle {
  width: 210px; height: 210px; border-radius: 50%;
  border: 1.5px dashed var(--line-dark);
  display: flex; align-items: center; justify-content: center;
  position: relative; margin-top: 8px;
}
.eff-circle::before, .eff-circle::after {
  content: ""; position: absolute; width: 60px; height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--line-dark) 0 4px, transparent 4px 8px);
}
.eff-circle::before { left: -64px; top: 30%; transform: rotate(32deg); }
.eff-circle::after { right: -64px; bottom: 30%; transform: rotate(32deg); }
.eff-dots { display: grid; grid-template-columns: repeat(4, 34px); gap: 7px; transform: rotate(45deg); }
.eff-dots span {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-dark); background: var(--panel);
  display: inline-flex; align-items: center; justify-content: center;
  transform: rotate(-45deg);
  font-size: 12px; color: var(--line-dark);
}
.eff-dots span.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.eff-counters { display: flex; gap: 10px; margin-top: 22px; }
.eff-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--ink); border-radius: 10px;
  padding: 6px 12px; font-size: 12px; font-weight: 600;
}
.eff-pill em { font-style: normal; color: var(--gray); font-weight: 500; font-size: 11px; }
.eff-check, .eff-clock {
  width: 16px; height: 16px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 9px;
}
.eff-check { background: var(--ink); color: #fff; }
.eff-clock { border: 1px solid var(--ink); font-size: 11px; }

/* pipeline card */
.pipe-card { padding: 18px; display: flex; flex-direction: column; }
.pipe-step {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; font-size: 12.5px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.pipe-doc { width: 26px; height: 26px; border: 1px solid var(--line); border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; }
.pipe-doc svg { width: 15px; height: 15px; }
.pipe-connector { display: flex; justify-content: center; padding: 2px 0; }
.pipe-connector span { width: 1.5px; height: 14px; background: var(--ink); position: relative; }
.pipe-connector span::after { content:""; position:absolute; bottom:-2px; left:50%; transform:translateX(-50%); width:5px;height:5px;border-radius:50%;background:var(--ink); }
.pipe-dashed {
  border: 1.5px dashed var(--ink); border-radius: 14px; padding: 9px;
  display: flex; flex-direction: column; gap: 8px;
}
.pipe-task {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 9px 12px; font-size: 12px; font-weight: 500;
  display: flex; align-items: center; gap: 9px;
}
.pipe-task s { text-decoration-thickness: 1.5px; }
.pipe-ic { font-size: 11px; filter: grayscale(1) contrast(1.3); }
.pipe-spin {
  margin-left: auto; width: 13px; height: 13px; border-radius: 50%;
  border: 2px solid var(--ink); border-right-color: transparent;
}
.pipe-final {
  background: repeating-linear-gradient(135deg, #1a1a18 0 9px, #111110 9px 18px);
  background-size: 200% 100%;
  color: #fff; border-radius: 12px; padding: 13px 14px;
  font-size: 12.5px; font-weight: 500;
  display: flex; align-items: center; gap: 9px;
}
.pipe-hour { font-size: 13px; }

.cta-row { display: flex; justify-content: center; padding-top: 44px; padding-bottom: 60px; border-bottom: 1px solid var(--line); }

/* ============ testimonials ============ */
.testi-wrap { position: relative; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.tcell {
  border-bottom: 1px solid var(--line);
  padding: 36px 28px 44px; min-height: 480px;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: background .3s;
}
.tcell:hover { background: var(--panel); }
.tcell:not(:nth-child(3n)) { border-right: 1px solid var(--line); }
.t-top { display: flex; justify-content: space-between; align-items: flex-start; }
.t-photo { width: 80px; height: 80px; border-radius: 18px; overflow: hidden; background: #222; }
.t-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.t-brand { display: inline-flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 600; color: var(--gray-2); }
.t-brand svg { width: 16px; height: 16px; }
.t-person { margin-top: 60px; font-size: 12.5px; padding-bottom: 60px; border-bottom: 0; }
.t-person b { font-weight: 600; }
.t-person span { color: var(--gray-2); margin: 0 4px; }
.t-person em { font-family: var(--serif); color: #55534b; }
.t-quote { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }

/* expanded testimonial */
.testi-expand {
  position: absolute; inset: 0;
  background: #0d0d0c; color: #fff; z-index: 5;
  display: none; overflow: hidden;
}
.testi-expand.open { display: block; }
.te-brand {
  position: absolute; top: 34px; left: 40px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 19px; font-weight: 600; color: #eee;
}
.te-brand svg { width: 18px; height: 18px; }
.te-photo {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 46%; height: 100%;
}
.te-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.62) contrast(1.05); -webkit-mask-image: radial-gradient(58% 82% at 50% 45%, #000 38%, transparent 76%); mask-image: radial-gradient(58% 82% at 50% 45%, #000 38%, transparent 76%); }
.te-quote { position: absolute; right: 40px; top: 34px; width: 30%; text-align: right; }
.te-quote .h4 { font-size: 22px; }
.te-lead { font-size: 12.5px; margin-top: 70px; font-weight: 500; }
.te-body { font-size: 11.5px; color: #8a8a85; margin-top: 22px; line-height: 1.7; }
.te-person { position: absolute; left: 40px; bottom: 30px; font-size: 12.5px; }
.te-person em { font-family: var(--serif); color: #b5b3aa; }
.te-back {
  position: absolute; right: 36px; bottom: 26px;
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: none;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s;
}
.te-back:hover { transform: scale(1.08); }
.te-back svg { width: 17px; height: 17px; }

/* ============ FAQ ============ */
.faq-head {
  padding-top: 90px; padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px;
}
.faq-illus { position: relative; height: 200px; }
.fb {
  position: absolute; right: 0;
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px;
  padding: 14px 20px; display: flex; flex-direction: column; gap: 7px;
}
.fb i { display: block; height: 7px; width: 150px; border-radius: 99px; background: #e4e1d6; }
.fb i.short { width: 90px; }
.fb-1 { top: 0; right: 40px; opacity: .65; }
.fb-2 { top: 62px; right: 0; width: 250px; border-color: var(--line-dark); background:#fff; }
.fb-3 { top: 148px; right: 110px; opacity: .8; }
.fq {
  position: absolute; width: 34px; height: 34px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--gray);
}
.fq-1 { top: 50px; right: 290px; }
.fq-2 { top: 92px; right: 268px; }
.fcheck {
  position: absolute; top: 28px; right: 252px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; z-index: 2;
}
.faq-body { display: grid; grid-template-columns: 1fr 2fr; border-bottom: 1px solid var(--line); }
.faq-side { padding: 44px; border-right: 1px solid var(--line); display: flex; flex-direction: column; align-items: flex-start; }
.faq-side h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.faq-teams { display: flex; flex-direction: column; gap: 9px; align-items: flex-start; margin: 110px 0 26px; }
.faq-list { padding: 30px 44px 50px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; display: flex; align-items: center; gap: 16px;
  padding: 20px 4px; cursor: pointer; font-size: 13.5px; font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-num {
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
  background: var(--panel); border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11.5px; font-weight: 600;
  transition: background .3s, color .3s;
}
.faq-item[open] .faq-num { background: var(--ink); color: #fff; border-color: var(--ink); }
.faq-plus { margin-left: auto; position: relative; width: 12px; height: 12px; flex-shrink: 0; }
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute; background: var(--ink); transition: transform .3s;
}
.faq-plus::before { left: 0; right: 0; top: 5px; height: 1.5px; }
.faq-plus::after { top: 0; bottom: 0; left: 5px; width: 1.5px; }
.faq-item[open] .faq-plus::after { transform: scaleY(0); }
.faq-a { overflow: hidden; }
.faq-a p { padding: 0 4px 20px 42px; font-size: 13px; color: var(--gray); max-width: 540px; }

/* tick strip */
.tick-strip {
  height: 64px;
  background-image: repeating-linear-gradient(100deg, var(--line) 0 1px, transparent 1px 14px);
  background-position: 0 0;
  border-bottom: 1px solid var(--line);
  opacity: .7;
}

/* ============ CTA ============ */
.cta { padding-top: 56px; padding-bottom: 0; }
.cta-panel {
  background: #0d0d0c; border-radius: 24px;
  min-height: 300px; position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 50px 56px;
}
.cta-copy { position: relative; z-index: 2; }
.h2.inv { color: #fff; }
.cta-copy p { color: #8a8a85; margin-top: 18px; font-size: 14px; }
.cta-illus { position: absolute; right: 0; top: 0; bottom: 0; width: 58%; }
.cta-path { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta-card {
  position: absolute; border-radius: 14px;
  background: #1b1b19; border: 1px solid #2e2e2a;
  transform: skewY(-8deg) skewX(-18deg);
}
.cc-1 { width: 190px; height: 150px; right: 90px; top: 70px; padding: 16px; }
.cc-1 i { display: block; height: 8px; border-radius: 99px; background: #2e2e2a; margin-top: 10px; }
.cc-1 i.w60 { width: 60%; } .cc-1 i.w40 { width: 40%; }
.cc-check {
  position: absolute; right: -16px; top: -16px;
  width: 52px; height: 52px; border-radius: 14px;
  background: #fff; color: #111;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 19px; transform: none;
}
.cc-2 { width: 190px; height: 150px; right: 190px; top: 95px; opacity: .7; }
.cc-3 { width: 190px; height: 150px; right: 290px; top: 120px; opacity: .45; }
.cta-pill {
  position: absolute; right: 250px; top: 18px;
  background: #0d0d0c; border: 1.5px solid #fff; border-radius: 999px;
  padding: 12px 16px; display: flex; gap: 6px; align-items: center;
  transform: rotate(24deg);
}
.cta-pill span { width: 7px; height: 22px; border-radius: 99px; background: #fff; }
.cta-pill b { width: 30px; height: 30px; border-radius: 99px; background: #2e2e2a; border: 1px solid #444; }
.cta-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 36px 12px 48px; border-bottom: 1px solid var(--line);
  flex-wrap: wrap; gap: 24px;
}
.cta-foot-left { display: flex; align-items: center; }
.cf-photo { width: 62px; height: 62px; border-radius: 16px; overflow: hidden; flex-shrink: 0; z-index: 1; }
.cf-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.cf-bubble {
  background: #fff; border: 1px solid var(--ink); border-radius: 16px 16px 16px 4px;
  padding: 10px 18px; margin-left: -8px;
  font-size: 13.5px; line-height: 1.3;
}
.cf-bubble em { font-family: var(--serif); }
.cta-foot-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cta-foot-right p { font-size: 13px; display: flex; align-items: center; gap: 5px; }
.cta-foot-right p span { color: var(--gray); }
.cf-clock { width: 13px; height: 13px; }

/* ============ footer ============ */
.footer { position: relative; padding: 0 44px; }
.foot-links {
  display: grid; grid-template-columns: repeat(5, 1fr);
  padding: 44px 0; border-bottom: 1px solid var(--line);
}
.fcol { display: flex; flex-direction: column; gap: 11px; padding-right: 16px; }
.fcol:not(:last-child) { border-right: 1px solid var(--line); }
.fcol:not(:first-child) { padding-left: 28px; }
.fcol h5 { font-size: 12.5px; color: var(--gray-2); font-weight: 500; margin-bottom: 6px; }
.fcol a { font-size: 13px; color: #3c3b36; transition: color .2s, transform .2s; }
.fcol a:hover { color: var(--ink); }
.foot-brand {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 40px 0; border-bottom: 1px solid var(--line); gap: 40px; flex-wrap: wrap;
}
.fb-left p { color: var(--gray); font-size: 14px; margin-top: 14px; }
.fb-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 18px; }
.fb-right p { font-size: 13px; max-width: 250px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s, background .25s, color .25s;
}
.socials a:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.socials svg { width: 15px; height: 15px; }
.foot-copy { padding: 22px 0 30px; }
.foot-copy p { font-size: 13px; color: var(--gray); }
.foot-copy b { color: var(--ink); font-weight: 600; }

/* ============ reveal defaults (JS toggles) ============ */
[data-reveal] { opacity: 0; }
.no-js [data-reveal], .static [data-reveal] { opacity: 1 !important; transform: none !important; }

/* ============ responsive ============ */
@media (max-width: 1023px) {
  .section, .nav, .footer { padding-left: 28px; padding-right: 28px; }
  .fcell, .faq-side, .faq-list { padding: 28px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .wcell { padding: 28px; }
  .wcell:not(:nth-child(3n)) { border-right: 0; }
  .wcell:nth-child(odd) { border-right: 1px solid var(--line); }
  .stats-grid { grid-template-columns: 1fr; }
  .scell:not(:nth-child(3n)) { border-right: 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .tcell { min-height: 0; }
  .tcell:not(:nth-child(3n)) { border-right: 0; }
  .t-person { margin-top: 30px; padding-bottom: 30px; }
  .foot-links { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .fcol:not(:last-child) { border-right: 0; }
  .fcol:not(:first-child) { padding-left: 0; }
  .te-quote { position: static; width: auto; text-align: left; padding: 90px 28px 0; }
  .te-lead { margin-top: 18px; }
  .te-body { display: none; }
  .te-photo { width: 100%; }
}

@media (max-width: 767px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--bg);
    border-bottom: 1px solid var(--line); padding: 20px 28px; gap: 16px;
  }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 54px 0 0; }
  .hero-canvas-wrap { position: relative; inset: auto; left: 0; height: 360px; }
  .hero-badges { display: none; }
  .logos { flex-direction: column; align-items: flex-start; gap: 14px; }
  .sec-head { padding-top: 60px; padding-bottom: 44px; }
  .feature-grid { grid-template-columns: 1fr; }
  .fcell:nth-child(odd) { border-right: 0; }
  .fcell-illus { min-height: 300px; order: 0; }
  .fcell-text { min-height: 0; padding-top: 34px; padding-bottom: 44px; }
  .why-head { align-items: flex-start; }
  .h2.right, .sec-sub.right { text-align: left; }
  .why-grid { grid-template-columns: 1fr; }
  .wcell:nth-child(odd) { border-right: 0; }
  .wicon { margin-bottom: 24px; }
  .faq-head { grid-template-columns: 1fr; }
  .faq-illus { display: none; }
  .faq-body { grid-template-columns: 1fr; }
  .faq-side { border-right: 0; border-bottom: 1px solid var(--line); }
  .faq-teams { margin: 30px 0 22px; }
  .cta-panel { flex-direction: column; align-items: flex-start; padding: 36px 28px 240px; }
  .cta-illus { top: auto; height: 230px; width: 100%; }
  .te-brand { left: 28px; }
  .te-person { left: 28px; }
  .gauge-chips { flex-wrap: wrap; }
  .chip { flex: 1 1 40%; }
}
