/* ─────────── Tokens ─────────── */
:root {
  --bg: #FAFAF7;
  --bg-elev: #FFFFFF;
  --bg-soft: #F2F1EC;
  --border: #ECEAE3;
  --border-strong: #DCD9CF;
  --text: #1A1A19;
  --text-2: #3D3D3A;
  --muted: #6F6F69;
  --muted-2: #9A9A93;
  --brand: #1E3A6E;
  --brand-2: #294F92;
  --brand-soft: #EAEEF6;
  --brand-softer: #F4F6FB;
  --whatsapp: #25D366;
  --whatsapp-bg: #E7F8EE;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(20,20,20,.04), 0 1px 1px rgba(20,20,20,.03);
  --shadow: 0 8px 24px -8px rgba(20,30,60,.10), 0 2px 6px rgba(20,30,60,.04);
  --shadow-lg: 0 30px 60px -20px rgba(20,30,60,.18), 0 12px 24px -12px rgba(20,30,60,.08);

  --container: 1180px;

  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Geist", "Inter", system-ui, -apple-system, sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

::selection { background: var(--brand); color: #fff; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ─────────── Type ─────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--muted);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 99px; background: var(--brand);
}

.h-display {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-size: clamp(44px, 7vw, 92px);
  text-wrap: balance;
}
.h-display em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--brand);
}

.h-section {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(34px, 4.6vw, 56px);
  text-wrap: balance;
}
.h-section em {
  font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--brand);
  letter-spacing: 0;
}

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text-2);
  line-height: 1.55;
  text-wrap: pretty;
  max-width: 60ch;
}

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 46px; padding: 0 20px;
  border-radius: 10px;
  font-weight: 500; font-size: 15px;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 6px 18px -6px rgba(30,58,110,.45);
}
.btn-primary:hover { background: var(--brand-2); transform: translateY(-1px); }
.btn-ghost {
  color: var(--text); background: transparent;
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-elev); border-color: var(--text-2); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ─────────── Nav ─────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(250,250,247,.78);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-color: var(--border); }
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.02em; font-size: 18px; }
.brand img { height: 26px; width: auto; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 14px; color: var(--text-2); font-weight: 500;
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--text); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ─────────── Hero ─────────── */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy .eyebrow { margin-bottom: 28px; }
.hero h1 { margin-bottom: 24px; }
.hero .lede { margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 40px;
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: var(--muted);
}
.avatars { display: flex; }
.avatars span {
  width: 26px; height: 26px; border-radius: 99px; border: 2px solid var(--bg);
  background: linear-gradient(135deg, #C9D2E7, #6B82B2);
  margin-left: -8px;
}
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(2) { background: linear-gradient(135deg, #E2D7C2, #B89A6F); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, #C7DCC9, #5E8B62); }

.hero-canvas-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-canvas-bg canvas { width: 100%; height: 100%; opacity: .55; }

/* WhatsApp mock */
.phone-stage {
  position: relative;
  display: flex; justify-content: center;
  perspective: 1400px;
}
.phone {
  width: 320px;
  background: var(--bg-elev);
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotateY(-6deg) rotateX(3deg) rotate(0.4deg);
  transform-style: preserve-3d;
  position: relative;
}
.phone-head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 14px 12px;
  background: #075E54; /* whatsapp dark green */
  color: #fff;
}
.phone-head .av {
  width: 34px; height: 34px; border-radius: 99px;
  background: #fff; color: var(--brand);
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  letter-spacing: -0.02em;
}
.phone-head .meta { display: flex; flex-direction: column; line-height: 1.15; }
.phone-head .name { font-size: 14px; font-weight: 600; }
.phone-head .status { font-size: 11px; opacity: .85; }
.phone-head .status::before {
  content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 99px;
  background: #4ade80; margin-right: 6px; vertical-align: middle;
}
.phone-body {
  padding: 16px 12px 14px;
  background:
    radial-gradient(circle at 20% 10%, #E6DBC3 0, transparent 40%),
    radial-gradient(circle at 80% 80%, #DDE4D5 0, transparent 40%),
    #ECE5DA;
  min-height: 380px;
  max-height: 440px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.bubble {
  max-width: 78%;
  padding: 8px 11px 6px;
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.4;
  position: relative;
  box-shadow: 0 1px 0.5px rgba(0,0,0,.08);
  opacity: 0;
  transform: translateY(6px);
  animation: bubbleIn .28s ease forwards;
}
.bubble.in { background: #fff; align-self: flex-start; border-top-left-radius: 2px; }
.bubble.out { background: #DCF8C6; align-self: flex-end; border-top-right-radius: 2px; }
.bubble .time { display: block; margin-top: 2px; font-size: 10px; color: #6b7271; text-align: right; }
.bubble .ck { color: #4FB6E8; margin-left: 3px; }
@keyframes bubbleIn {
  to { opacity: 1; transform: translateY(0); }
}
.typing {
  align-self: flex-start;
  background: #fff;
  border-radius: 10px;
  border-top-left-radius: 2px;
  padding: 10px 12px;
  display: inline-flex; gap: 4px;
  box-shadow: 0 1px 0.5px rgba(0,0,0,.08);
}
.typing span {
  width: 6px; height: 6px; border-radius: 99px; background: #9aa19f;
  animation: typing 1.1s infinite ease-in-out;
}
.typing span:nth-child(2) { animation-delay: .12s; }
.typing span:nth-child(3) { animation-delay: .24s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-3px); opacity: 1; }
}
.phone-foot {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  background: #F0EBE3;
  border-top: 1px solid #d9d2c5;
}
.phone-foot .input {
  flex: 1; height: 32px; border-radius: 99px;
  background: #fff; border: 1px solid #e1dccf;
  display: flex; align-items: center; padding: 0 12px;
  color: var(--muted-2); font-size: 12px;
}
.phone-foot .send {
  width: 32px; height: 32px; border-radius: 99px;
  background: #25D366; color: #fff; display: grid; place-items: center;
}

/* badge floats around phone */
.float {
  position: absolute;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  font-size: 12px;
  display: flex; align-items: center; gap: 8px;
  animation: floaty 6s ease-in-out infinite;
}
.float .ico { width: 22px; height: 22px; border-radius: 6px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; }
.float strong { font-weight: 600; color: var(--text); }
.float span.muted { color: var(--muted); }
.float-1 { top: 12%; left: -10%; animation-delay: -1.5s; }
.float-2 { bottom: 14%; right: -12%; animation-delay: -3.2s; }
.float-3 { top: 56%; left: -16%; animation-delay: -2.1s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ─────────── Strip metrics ─────────── */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev);
}
.strip-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.strip-row .stat {
  padding: 36px 24px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.strip-row .stat:last-child { border-right: 0; }
.stat .num {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 44px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat .num em { font-family: var(--serif); font-style: italic; color: var(--brand); font-weight: 400; }
.stat .label { color: var(--muted); font-size: 13.5px; }

/* ─────────── Section base ─────────── */
section.s { padding: 120px 0; position: relative; }
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.section-head .right { padding-bottom: 6px; }

/* ─────────── Services ─────────── */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 30px 30px;
  display: flex; flex-direction: column; gap: 18px;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.svc:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow); }
.svc .num {
  font-family: var(--mono);
  font-size: 12px; color: var(--muted-2);
  letter-spacing: .12em;
}
.svc h3 {
  font-size: 24px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.15;
}
.svc h3 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--brand); }
.svc p { color: var(--text-2); font-size: 15.5px; line-height: 1.55; }
.svc .canvas {
  margin-top: 8px;
  height: 160px;
  border-radius: 12px;
  border: 1px dashed var(--border-strong);
  background: var(--bg-soft);
  position: relative; overflow: hidden;
}

/* svc 1 — email canvas */
.canvas-email { display: flex; flex-direction: column; padding: 12px; gap: 6px; }
.canvas-email .row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 11.5px;
  position: relative;
  transition: transform .4s ease, opacity .4s ease;
}
.canvas-email .row .tag {
  font-family: var(--mono); font-size: 10px;
  padding: 2px 6px; border-radius: 4px;
  background: var(--brand-soft); color: var(--brand);
}
.canvas-email .row.done { color: var(--muted); }
.canvas-email .row.done .tag { background: #E7F8EE; color: #137245; }
.canvas-email .row.processing .tag { background: #FFF1D6; color: #8A5A00; }
.canvas-email .row .check {
  margin-left: auto; color: #137245; font-size: 13px; opacity: 0;
  transition: opacity .3s ease;
}
.canvas-email .row.done .check { opacity: 1; }

/* svc 2 — bot canvas */
.canvas-bot { padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.canvas-bot .b { font-size: 11.5px; padding: 6px 9px; border-radius: 8px; max-width: 80%; }
.canvas-bot .b.in { background: #fff; border: 1px solid var(--border); align-self: flex-start; }
.canvas-bot .b.out { background: var(--brand); color: #fff; align-self: flex-end; }

/* svc 3 — flow canvas */
.canvas-flow { padding: 14px; }
.canvas-flow svg { width: 100%; height: 100%; }
.flow-node {
  fill: #fff; stroke: var(--border-strong); stroke-width: 1;
}
.flow-node-active { fill: var(--brand-soft); stroke: var(--brand); }
.flow-line {
  stroke: var(--brand); stroke-width: 1.4; fill: none;
  stroke-dasharray: 4 4;
  animation: flowDash 2s linear infinite;
}
@keyframes flowDash { to { stroke-dashoffset: -16; } }

/* svc 4 — integrations */
.canvas-int {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  padding: 14px;
}
.canvas-int .chip {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 6px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  font-size: 10.5px; color: var(--muted);
  font-family: var(--mono);
  height: 56px;
  position: relative;
}
.canvas-int .chip .dot {
  width: 6px; height: 6px; border-radius: 99px; background: var(--brand);
  position: absolute; top: 6px; right: 6px;
  box-shadow: 0 0 0 0 rgba(30,58,110,.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(30,58,110,.4); }
  70% { box-shadow: 0 0 0 8px rgba(30,58,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(30,58,110,0); }
}

/* ─────────── Use cases ─────────── */
.tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.tab {
  padding: 12px 18px;
  font-size: 14.5px; font-weight: 500;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s ease, border-color .2s ease;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--text); border-color: var(--brand); }

.use-card[hidden] { display: none !important; }
.use-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  align-items: center;
  min-height: 360px;
  transition: opacity .3s ease, transform .3s ease;
}
.use-card.fade { opacity: 0; transform: translateY(8px); }
.use-card .left .label {
  font-family: var(--mono);
  font-size: 11.5px; color: var(--brand);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 14px;
}
.use-card h3 {
  font-size: 30px; font-weight: 500; letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 16px;
}
.use-card h3 em { font-family: var(--serif); font-style: italic; color: var(--brand); font-weight: 400; }
.use-card p { color: var(--text-2); margin-bottom: 22px; }
.use-card ul { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.use-card ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--text-2);
}
.use-card ul li svg { flex-shrink: 0; margin-top: 2px; color: var(--brand); }

.use-card .right {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  display: flex; flex-direction: column; gap: 8px;
  border: 1px solid var(--border);
  font-size: 13px;
  min-height: 280px;
}
.use-card .right .ev {
  display: grid; grid-template-columns: 60px 1fr; gap: 10px; align-items: flex-start;
  padding: 8px 0; border-bottom: 1px dashed var(--border-strong);
}
.use-card .right .ev:last-child { border-bottom: 0; }
.use-card .right .ev .t {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
}
.use-card .right .ev .b strong { font-weight: 600; }
.use-card .right .ev .b .ag {
  display: inline-block; padding: 1px 6px;
  font-family: var(--mono); font-size: 10px;
  background: var(--brand-soft); color: var(--brand);
  border-radius: 4px; margin-right: 6px;
  vertical-align: 1px;
}

/* ─────────── Comparison ─────────── */
.compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elev);
}
.compare .col { padding: 36px; }
.compare .col + .col { border-left: 1px solid var(--border); }
.compare .col.before { background: #FAF8F5; }
.compare .col.after { background: linear-gradient(180deg, #F4F6FB 0%, #FFFFFF 100%); }
.compare .col h4 {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--muted); margin-bottom: 24px;
}
.compare .col.after h4 { color: var(--brand); }
.compare .col h4 .pin { width: 8px; height: 8px; border-radius: 99px; background: currentColor; }
.compare .col p.headline {
  font-size: 22px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.25;
  margin-bottom: 26px; text-wrap: balance;
}
.compare .col p.headline em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.compare .col.after p.headline em { color: var(--brand); }
.compare ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare ul li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px; line-height: 1.5;
  color: var(--text-2);
}
.compare ul li .ic {
  flex-shrink: 0; width: 22px; height: 22px;
  border-radius: 6px; display: grid; place-items: center;
  font-size: 12px; font-weight: 600;
  margin-top: 1px;
}
.compare .before .ic { background: #F1E6E0; color: #8A4A2E; }
.compare .after  .ic { background: var(--brand-soft); color: var(--brand); }

/* ─────────── About ─────────── */
.about {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.about-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.about-card h4 { font-weight: 500; font-size: 17px; letter-spacing: -0.01em; }
.about-card p { color: var(--text-2); font-size: 14.5px; line-height: 1.6; }
.about-pillars { display: flex; flex-direction: column; gap: 14px; }
.pill {
  display: grid; grid-template-columns: 28px 1fr; gap: 14px; padding: 16px 0;
  border-top: 1px solid var(--border);
}
.pill:first-child { border-top: 0; padding-top: 0; }
.pill .n { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.pill h5 { font-weight: 500; font-size: 17px; letter-spacing: -0.01em; margin-bottom: 4px; }
.pill p { color: var(--text-2); font-size: 14.5px; line-height: 1.55; }

/* ─────────── FAQ ─────────── */
.faq { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 22px 4px;
  cursor: pointer;
}
.faq summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 18px; font-weight: 500; letter-spacing: -0.015em;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic {
  width: 28px; height: 28px; border-radius: 99px;
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  transition: transform .3s ease, background .3s ease, color .3s ease;
  flex-shrink: 0;
  margin-left: 18px;
}
.faq details[open] summary .ic { background: var(--brand); color: #fff; border-color: var(--brand); transform: rotate(45deg); }
.faq .a {
  margin-top: 14px;
  color: var(--text-2);
  font-size: 15.5px; line-height: 1.6;
  max-width: 70ch;
}

/* ─────────── CTA final ─────────── */
.cta {
  margin: 80px 0 100px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F6FB 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(30,58,110,.08) 0, transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(30,58,110,.06) 0, transparent 40%);
  pointer-events: none;
}
.cta-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; position: relative; }
.cta h2 { margin-bottom: 22px; }
.cta p { color: var(--text-2); margin-bottom: 30px; max-width: 50ch; }
.cta .points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.cta .points li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text-2); }
.cta .points li svg { color: var(--brand); flex-shrink: 0; }
.cta .calendar-frame {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.cta .calendar-frame .head {
  display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 14px;
}
.cta .calendar-frame .head .av {
  width: 36px; height: 36px; border-radius: 99px; background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; font-weight: 600;
}
.cta .calendar-frame .head .meta strong { display: block; font-size: 14px; }
.cta .calendar-frame .head .meta span { color: var(--muted); font-size: 12.5px; }
.slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.slots .slot {
  border: 1px solid var(--border); border-radius: 8px;
  font-family: var(--mono); font-size: 12px;
  padding: 10px 0; text-align: center; color: var(--text);
  background: var(--bg-elev);
  transition: all .2s ease;
}
.slots .slot:hover, .slots .slot.active {
  background: var(--brand); border-color: var(--brand); color: #fff;
}
.slots .slot.dim { color: var(--muted-2); background: var(--bg-soft); }

.call-steps { list-style: none; display: flex; flex-direction: column; gap: 0; }
.call-steps li {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}
.call-steps li:last-child { border-bottom: 0; }
.call-steps li .n {
  width: 22px; height: 22px; border-radius: 99px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
}
.call-steps li strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--text); }
.call-steps li span { font-size: 12.5px; color: var(--muted); line-height: 1.45; }

/* ─────────── Footer ─────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 50px 0 40px;
  color: var(--muted);
  font-size: 13.5px;
}
footer .row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
footer .links { display: flex; gap: 22px; }
footer .links a:hover { color: var(--text); }

/* ─────────── Reveal (JS-gated so non-JS / broken IO still shows content) ─────────── */
.reveal, .reveal-stagger > * { transition: opacity .8s ease, transform .8s ease; }
html.js .reveal { opacity: 0; transform: translateY(14px); }
html.js .reveal.in { opacity: 1; transform: translateY(0); }
html.js .reveal-stagger > * { opacity: 0; transform: translateY(14px); }
html.js .reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .33s; }

/* ─────────── Responsive ─────────── */
@media (max-width: 980px) {
  .hero { padding: 60px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .phone-stage { margin: 0 auto; }
  .strip-row { grid-template-columns: repeat(2, 1fr); }
  .strip-row .stat:nth-child(2) { border-right: 0; }
  .strip-row .stat:nth-child(1), .strip-row .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  .section-head { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .services { grid-template-columns: 1fr; }
  .use-card { grid-template-columns: 1fr; padding: 24px; }
  .compare { grid-template-columns: 1fr; }
  .compare .col + .col { border-left: 0; border-top: 1px solid var(--border); }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .cta { padding: 50px 28px; }
  .cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .nav-links { display: none; }
  section.s { padding: 80px 0; }
  .float { display: none; }
}
