/* Lab Desk landing page */

:root {
  --blue: #3662E3;
  --blue-hover: #2A4FC0;
  --blue-soft: #EAF0FE;
  --blue-soft-2: #DCE6FD;
  --blue-light: #4D8BFF;
  --navy: #121E47;
  --navy-2: #172B63;
  --ink: #121833;
  --text: #545B72;
  --muted: #8A90A3;
  --line: #E6EAF3;
  --tint: #F5F8FF;
  --white: #FFFFFF;

  --red: #C0322B;
  --red-bg: #FDECEB;
  --amber: #B45309;
  --amber-bg: #FEF3E4;
  --green: #16794A;
  --green-bg: #E6F6EE;

  --sans: "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;
  --r-xl: 24px;

  --shadow: 0 1px 2px rgba(18,24,51,.04), 0 12px 32px -12px rgba(36,64,140,.18);
  --shadow-lg: 0 2px 4px rgba(18,24,51,.04), 0 28px 60px -20px rgba(36,64,140,.28);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { color: var(--ink); margin: 0; font-weight: 800; letter-spacing: -0.015em; text-wrap: balance; }
p { margin: 0; }
a { color: var(--blue); }
svg { display: block; }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .wrap { padding: 0 32px; } }

.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -48px; background: var(--navy); color: #fff; padding: 8px 14px; border-radius: var(--r-sm); z-index: 100; }
.skip:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 0 18px;
  border-radius: var(--r-sm);
  font: 700 14.5px/1 var(--sans);
  text-decoration: none; white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color .15s, border-color .15s, color .15s, box-shadow .15s;
}
.btn-lg { height: 50px; padding: 0 26px; font-size: 16px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 16px -6px rgba(54,98,227,.55); }
.btn-primary:hover { background: var(--blue-hover); }
.btn-soft { background: var(--blue-soft); color: var(--blue); }
.btn-soft:hover { background: var(--blue-soft-2); }
.btn-outline { background: #fff; color: var(--ink); border-color: #D5DBE8; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--blue-soft); }
.btn-ghost-white { color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,.06); }

.text-link { display: inline-flex; gap: 6px; align-items: center; font-weight: 700; text-decoration: none; color: var(--blue); }
.text-link span { transition: transform .15s; }
.text-link:hover span { transform: translateX(3px); }

.eyebrow { font-size: 13.5px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }

.h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.18; }
.h3 { font-size: clamp(24px, 2.6vw, 30px); line-height: 1.22; }
.sub { margin-top: 14px; font-size: 17.5px; }

.section { padding: 84px 0; position: relative; }
@media (min-width: 960px) { .section { padding: 112px 0; } }
.tint { background: var(--tint); overflow: hidden; }
.tint > .wrap { position: relative; }

/* soft curved backgrounds, as in the reference */
.curve-right::before, .curve-left::before {
  content: ""; position: absolute; border-radius: 50%;
  background: linear-gradient(180deg, #EBF1FF 0%, #E3EBFE 100%);
  width: 1400px; height: 1400px; pointer-events: none;
}
.curve-right::before { right: -900px; top: 280px; }
.curve-left::before { left: -1100px; top: -300px; }

.center-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.center-head .sub { max-width: 560px; margin-left: auto; margin-right: auto; }

.split-head { display: grid; gap: 16px; margin-bottom: 48px; }
.split-head > p { font-size: 17px; max-width: 48ch; }
@media (min-width: 900px) {
  .split-head { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .split-head > p { padding-top: 34px; }
}

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 9px; color: var(--navy); text-decoration: none; }
.logo-mark { width: 28px; height: 28px; }
.logo-tube { fill: var(--blue); }
.logo-word { font-size: 21px; letter-spacing: -0.02em; line-height: 1; }
.logo-word b { font-weight: 800; }
.logo-word span { font-weight: 500; color: var(--blue); }
.logo-light { color: #fff; }
.logo-light .logo-tube { fill: var(--blue-light); }
.logo-light .logo-word span { color: #8DB4FF; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.5) blur(10px);
  -webkit-backdrop-filter: saturate(1.5) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }

.nav { display: flex; align-items: center; flex: 1; }
.nav-links { display: flex; gap: 34px; margin: 0 auto; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav a:not(.btn) { color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 600; }
.nav a:not(.btn):hover { color: var(--blue); }
.nav-login { margin-right: 10px; }

.menu-btn { display: none; }

@media (max-width: 939px) {
  .menu-btn {
    display: grid; place-items: center;
    width: 44px; height: 44px; margin-right: -10px;
    background: none; border: 0; cursor: pointer;
  }
  .bars, .bars::before, .bars::after {
    display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--ink); position: relative;
    transition: transform .2s, background-color .2s;
  }
  .bars::before, .bars::after { content: ""; position: absolute; left: 0; }
  .bars::before { top: -6px; }
  .bars::after { top: 6px; }
  .menu-btn[aria-expanded="true"] .bars { background: transparent; }
  .menu-btn[aria-expanded="true"] .bars::before { transform: translateY(6px) rotate(45deg); }
  .menu-btn[aria-expanded="true"] .bars::after { transform: translateY(-6px) rotate(-45deg); }

  .nav {
    position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    padding: 4px 20px 20px;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px -20px rgba(18,24,51,.2);
    display: none;
  }
  .nav.open { display: flex; }
  .nav-links, .nav-actions { flex-direction: column; align-items: stretch; gap: 0; margin: 0; }
  .nav a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 17px; margin: 0; }
  .nav .btn { margin-top: 12px; height: 48px; }
}

/* Hero */
.hero {
  padding: 40px 0 72px;
  background:
    radial-gradient(900px 420px at 50% 100%, #E8EFFE 0%, rgba(232,239,254,0) 70%),
    linear-gradient(180deg, #fff 0%, #F7F9FF 100%);
  overflow: hidden;
}
@media (min-width: 960px) { .hero { padding: 80px 0 96px; } }

.hero-copy { text-align: center; max-width: 780px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 900;
}
.lede { margin: 18px auto 0; font-size: 18px; max-width: 58ch; }
@media (min-width: 768px) { .lede { font-size: 19px; } }

.cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }

.micro {
  list-style: none; margin: 22px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px;
  font-size: 14.5px; color: var(--text); font-weight: 600;
}
.micro li { display: inline-flex; align-items: center; gap: 7px; }
.micro svg, .trust svg, .checks svg, .plan svg { width: 18px; height: 18px; color: var(--blue); flex: none; }

/* Hero app screenshot */
.hero-shot { margin-top: 56px; }
.app {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-size: 14px;
  text-align: left;
}
@media (min-width: 760px) { .app { grid-template-columns: 1fr 290px; } }
@media (min-width: 1040px) { .app { grid-template-columns: 200px 1fr 300px; } }

.app-side { display: none; background: #FAFBFE; border-right: 1px solid var(--line); padding: 18px 12px; }
@media (min-width: 1040px) { .app-side { display: block; } }
.side-logo { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--navy); font-size: 14px; padding: 0 8px 16px; }
.side-logo svg { width: 20px; height: 20px; color: var(--navy); }
.app-side ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.app-side li { display: flex; justify-content: space-between; padding: 8px 10px; border-radius: 7px; color: var(--text); font-weight: 600; font-size: 13.5px; }
.app-side li.on { background: var(--blue-soft); color: var(--blue); }
.app-side li span { font-size: 11.5px; background: #fff; border: 1px solid var(--line); border-radius: 99px; padding: 0 7px; color: var(--muted); }
.app-side li span.warn { background: var(--amber-bg); border-color: transparent; color: var(--amber); font-weight: 700; }

.app-main { padding: 18px 20px 8px; min-width: 0; }
.app-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.crumb { font-size: 12.5px; color: var(--muted); }
.crumb b { font-family: var(--mono); font-weight: 500; color: var(--text); }
.pt-name { color: var(--ink); font-weight: 800; font-size: 18px; margin-top: 2px; }
.pt-meta { display: block; font: 12px var(--mono); color: var(--muted); font-weight: 400; margin-top: 2px; }
@media (min-width: 640px) { .pt-meta { display: inline; margin-left: 8px; } }
.status { flex: none; font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 99px; background: var(--amber-bg); color: var(--amber); }

.order-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 16px 0 12px; }
@media (min-width: 640px) { .order-meta { grid-template-columns: repeat(4, 1fr); } }
.order-meta div { background: var(--tint); border-radius: 8px; padding: 8px 10px; }
.order-meta span { display: block; font-size: 11.5px; color: var(--muted); }
.order-meta b { color: var(--ink); font-size: 13px; }

.results { width: 100%; border-collapse: collapse; }
.results th { text-align: left; font-size: 11.5px; font-weight: 700; color: var(--muted); padding: 8px 10px; border-bottom: 1px solid var(--line); }
.results td { padding: 10px; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 600; }
.results tr:last-child td { border-bottom: 0; }
.results .num { font-family: var(--mono); font-weight: 400; font-size: 13px; white-space: nowrap; }
.results td.num small { color: var(--muted); font-size: 11px; }
.results td:nth-child(3) { color: var(--muted); }
.results tr.is-high td:nth-child(2) { color: var(--red); font-weight: 500; }
.results tr.is-low td:nth-child(2) { color: var(--amber); font-weight: 500; }
.results tr.is-high, .results tr.is-low { background: #FFFBFA; }
@media (max-width: 520px) {
  .results th:nth-child(3), .results td:nth-child(3) { display: none; }
  .hide-sm { display: none; }
}

.flag {
  display: inline-flex; align-items: center; gap: 4px;
  font: 700 11.5px/1 var(--sans);
  padding: 4px 8px 4px 7px; border-radius: 99px;
  white-space: nowrap;
}
.flag svg { width: 9px; height: 9px; }
.flag-h { background: var(--red-bg); color: var(--red); }
.flag-l { background: var(--amber-bg); color: var(--amber); }
.flag-ok { background: var(--green-bg); color: var(--green); }
.flag.sm { font-size: 10px; padding: 3px 7px; }

.app-ai {
  background: linear-gradient(160deg, #F3F7FF 0%, #E6EEFF 100%);
  border-top: 1px solid var(--line);
  padding: 18px 20px 20px;
  display: flex; flex-direction: column; gap: 12px;
}
@media (min-width: 760px) { .app-ai { border-top: 0; border-left: 1px solid var(--line); } }
.ai-tag { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 800; color: var(--blue); }
.spark {
  width: 12px; height: 12px; background: var(--blue);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}
.ai-text { background: #fff; border-radius: 10px; padding: 14px; color: var(--ink); line-height: 1.55; box-shadow: 0 6px 16px -10px rgba(36,64,140,.3); }
.ai-actions { display: flex; gap: 8px; }
.chip { font-size: 12.5px; font-weight: 700; padding: 7px 12px; border-radius: 7px; background: #fff; border: 1px solid #D5DBE8; color: var(--ink); }
.chip-go { background: var(--blue); border-color: var(--blue); color: #fff; }
.ai-note { font-size: 12px; color: var(--muted); margin-top: auto; }

/* Trust bar */
.trust { border-bottom: 1px solid var(--line); background: #fff; }
.trust-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; padding-top: 28px; padding-bottom: 28px; text-align: center; }
.trust-inner > p { color: var(--ink); font-weight: 700; }
.trust ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; }
.trust li { display: inline-flex; align-items: center; gap: 7px; font-size: 14.5px; font-weight: 600; }

/* Icon cards */
.cards-3, .cards-4 { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
@media (min-width: 760px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } .cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .cards-4 { grid-template-columns: repeat(4, 1fr); } }
.cards-sec { margin-bottom: 40px; }

.icard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 1px 2px rgba(18,24,51,.03);
}
.tint .icard { border-color: #E3E9F7; }
.icard h3 { font-size: 18.5px; margin: 18px 0 6px; }
.icard p { font-size: 15.5px; }
.icard.sm { padding: 24px; }
.icard.sm h3 { font-size: 17px; }
.ibox { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; background: var(--blue-soft); }
.ibox svg { width: 22px; height: 22px; fill: none; stroke: var(--blue); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* Zigzag rows */
.row { display: grid; gap: 40px; align-items: center; padding: 40px 0; }
@media (min-width: 960px) {
  .row { grid-template-columns: 1fr 1fr; gap: 72px; padding: 56px 0; }
  .row-flip .row-copy { order: 2; }
}
.row-copy .h3 { margin-bottom: 14px; }
.row-copy > p { font-size: 17px; max-width: 48ch; }
.checks { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 10px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; color: var(--ink); font-weight: 600; }
.checks svg { margin-top: 2px; }
.center:last-child { margin-top: 32px; }

.row-visual { position: relative; min-height: 300px; display: grid; place-items: center; }
.row-visual:has(.bridge) { padding-bottom: 24px; }

.float-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}

/* Manage visual */
.record { width: min(420px, 100%); padding: 20px; }
.rec-head { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.avatar { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); font-weight: 800; }
.rec-name { font-weight: 800; color: var(--ink); }
.rec-meta { font-size: 13px; color: var(--muted); }
.rec-label { font-size: 12px; font-weight: 700; color: var(--muted); margin: 14px 0 6px; }
.rec-list { list-style: none; margin: 0; padding: 0; }
.rec-list li { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--ink); font-weight: 600; }
.rec-list li:last-child { border-bottom: 0; }
.mono { font-family: var(--mono); font-size: 12px; color: var(--text); font-weight: 400; }
.pill { font-size: 11.5px; font-weight: 700; padding: 3px 9px; border-radius: 99px; }
.pill-amber { background: var(--amber-bg); color: var(--amber); }
.pill-blue { background: var(--blue-soft); color: var(--blue); }

.mini { display: flex; align-items: center; gap: 12px; padding: 12px 16px; }
.bridge { position: absolute; right: -8px; bottom: -34px; }
@media (max-width: 559px) { .bridge { position: static; margin-top: -20px; justify-self: end; } }
.dot-live { width: 10px; height: 10px; border-radius: 50%; background: #22A06B; box-shadow: 0 0 0 4px rgba(34,160,107,.18); }
.mini-t { font-weight: 800; color: var(--ink); font-size: 14px; }
.mini-s { font-size: 12.5px; color: var(--muted); }

/* Share visual */
.notes { display: grid; gap: 16px; width: min(440px, 100%); }
.note { display: flex; gap: 14px; padding: 16px 18px; align-items: flex-start; }
.note-2 { margin-left: 32px; }
.note-3 { margin-right: 24px; }
@media (max-width: 559px) { .note-2, .note-3 { margin: 0; } }
.note-ic { flex: none; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; }
.note-ic svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ic-mail { background: var(--blue-soft); color: var(--blue); }
.ic-doc { background: #EEF0FF; color: #4F46E5; }
.ic-ok { background: var(--green-bg); color: var(--green); }
.note-t { font-weight: 800; color: var(--ink); font-size: 14.5px; display: flex; justify-content: space-between; gap: 12px; }
.note-t span { font-weight: 600; font-size: 12px; color: var(--muted); }
.note-s { font-size: 13.5px; line-height: 1.5; }

/* Get paid visual */
.orbit { position: relative; width: 340px; height: 340px; max-width: 100%; }
.orbit::before, .orbit::after { content: ""; position: absolute; border-radius: 50%; inset: 50px; background: rgba(54,98,227,.07); }
.orbit::after { inset: 95px; background: rgba(54,98,227,.1); }
.orbit-core {
  position: absolute; inset: 125px; z-index: 1;
  border-radius: 50%; background: #fff; box-shadow: var(--shadow);
  display: grid; place-items: center;
}
.orbit-core svg { width: 44px; height: 44px; fill: none; stroke: var(--navy); stroke-width: 2.4; stroke-linecap: round; }
.orb {
  position: absolute; z-index: 2;
  background: #fff; border-radius: 99px; box-shadow: var(--shadow);
  padding: 7px 14px; font-weight: 800; font-size: 13px; color: var(--ink);
}
.o1 { top: 14px; left: 42%; }
.o2 { top: 110px; right: -4px; }
.o3 { bottom: 70px; right: 20px; }
.o4 { top: 90px; left: 0; }
.o5 { bottom: 96px; left: -10px; color: var(--blue); }
.paid { position: absolute; z-index: 3; bottom: -8px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; align-items: center; padding: 12px 16px; white-space: nowrap; }

/* Panel (gradient box from the reference) */
.panel {
  border-radius: var(--r-xl);
  padding: 28px 20px;
  background: linear-gradient(135deg, #EEF3FF 0%, #D9E5FF 55%, #B9CFFF 100%);
  display: grid; gap: 20px; align-items: center;
  margin-bottom: 40px;
  position: relative; overflow: hidden;
}
@media (min-width: 960px) { .panel { grid-template-columns: 1fr 44px 1fr; padding: 48px; gap: 16px; } }
.panel figure { margin: 0; border-radius: var(--r); box-shadow: var(--shadow-lg); overflow: hidden; }
.panel figcaption { font-size: 12.5px; font-weight: 800; padding: 12px 18px; }

.raw { background: var(--navy); align-self: stretch; }
.raw figcaption { color: #9FB2E0; border-bottom: 1px solid rgba(255,255,255,.08); }
.raw pre { margin: 0; padding: 18px; overflow-x: auto; font: 12.5px/1.8 var(--mono); color: #B8C6EA; }
.raw mark { background: rgba(192,50,43,.4); color: #FFC1BC; padding: 0 3px; border-radius: 3px; }
.raw mark.lo { background: rgba(180,83,9,.4); color: #FFD49E; }

.panel-arrow { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: var(--shadow); justify-self: center; }
.panel-arrow svg { width: 20px; height: 20px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 959px) { .panel-arrow svg { transform: rotate(90deg); } }

.plain { background: #fff; padding-bottom: 18px; }
.plain figcaption { color: var(--blue); border-bottom: 1px solid var(--line); }
.plain > p, .plain-item { margin: 0 18px; }
.plain-h { color: var(--ink); font-weight: 800; font-size: 18px; margin: 16px 18px 12px !important; }
.plain-item { display: grid; grid-template-columns: 70px 1fr; gap: 10px; align-items: start; font-size: 14.5px; padding: 8px 0; }
.plain-item .flag { justify-self: start; margin-top: 2px; }
.plain-item strong { color: var(--ink); }
.plain-note { font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 12px; margin-top: 8px !important; }

.ai-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-top: 28px; font-size: 14.5px; color: var(--muted); }

/* Steps */
.steps { list-style: none; margin: 0 0 8px; padding: 0; display: grid; gap: 20px; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li { background: #fff; border: 1px solid #E3E9F7; border-radius: var(--r-lg); padding: 26px; position: relative; }
.step-no { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); font-weight: 900; font-size: 16px; margin-bottom: 18px; }
.steps li:last-child .step-no { background: var(--blue); color: #fff; }
.steps h3 { font-size: 18px; margin-bottom: 6px; }
.steps p { font-size: 15.5px; }

/* Phones */
.panel-phones { display: block; padding: 48px 12px 0; }
@media (min-width: 960px) { .panel-phones { padding: 64px 48px 0; } }
.phones { display: flex; justify-content: center; gap: 20px; align-items: flex-end; }
.phone {
  flex: 0 0 auto; width: 220px;
  background: var(--navy); border-radius: 32px 32px 0 0; padding: 9px 9px 0;
  box-shadow: 0 30px 60px -30px rgba(15,30,74,.6);
}
.phone-mid .phone-screen { height: 410px; }
.phone-screen {
  background: #fff; border-radius: 24px 24px 0 0;
  height: 380px; padding: 28px 16px 16px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 12.5px; position: relative; overflow: hidden;
}
.phone-screen::before { content: ""; position: absolute; top: 10px; left: 50%; width: 60px; height: 6px; border-radius: 9px; background: #E7EAF2; transform: translateX(-50%); }
@media (max-width: 759px) {
  .phones { justify-content: flex-start; overflow-x: auto; scroll-snap-type: x mandatory; padding: 28px 8px 0; }
  .phone { scroll-snap-align: center; }
}
.ph-label { font-size: 11px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.mail { border: 1px solid var(--line); border-radius: 12px; padding: 12px; display: grid; gap: 6px; }
.mail-from { font-weight: 800; color: var(--ink); font-size: 12.5px; }
.mail-subj { font-weight: 800; color: var(--ink); font-size: 15px; }
.mail-body { line-height: 1.45; }
.ph-small { font-size: 10.5px; color: var(--muted); text-align: center; }
.ph-btn { display: block; text-align: center; background: var(--blue); color: #fff; font-weight: 800; font-size: 12.5px; padding: 10px; border-radius: 8px; margin-top: 4px; }
.ph-pay { margin-top: auto; }
.ph-url { display: flex; align-items: center; gap: 5px; justify-content: center; font: 10.5px var(--mono); color: var(--muted); background: var(--tint); border-radius: 7px; padding: 6px; }
.ph-url svg { width: 10px; height: 10px; stroke: var(--blue); fill: none; stroke-width: 1.3; }
.ph-title { font-weight: 800; color: var(--ink); font-size: 18px; margin-top: 6px; }
.ph-sub { color: var(--muted); font-size: 11.5px; }
.ph-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 700; }
.ph-summary { margin-top: auto; background: var(--blue-soft); color: var(--blue); font-weight: 800; padding: 11px; border-radius: 9px; text-align: center; }
.ph-amount { font-weight: 900; font-size: 34px; line-height: 1.1; color: var(--ink); margin-top: 12px; letter-spacing: -0.02em; }
.ph-field { height: 36px; border: 1px solid #D5DBE8; border-radius: 8px; margin-top: 6px; }
.ph-field.half { width: 60%; }

/* Pricing */
.plans { list-style: none; margin: 0 auto; padding: 0; display: grid; gap: 20px; max-width: 980px; }
@media (min-width: 860px) { .plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; position: relative; box-shadow: 0 1px 2px rgba(18,24,51,.03); }
.plan h3 { font-size: 20px; }
.price { margin: 10px 0 20px; color: var(--text); font-weight: 600; }
.price b { font-size: 38px; font-weight: 900; color: var(--ink); letter-spacing: -0.02em; margin-right: 4px; }
.plan ul { list-style: none; margin: 0; padding: 20px 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.plan li { display: flex; gap: 10px; align-items: center; font-size: 15px; color: var(--ink); font-weight: 600; }
.plan-hot { border: 2px solid var(--blue); box-shadow: var(--shadow); }
.badge { position: absolute; top: -13px; left: 26px; background: var(--blue); color: #fff; font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 99px; }
.plans-note { text-align: center; margin: 24px 0 28px; font-size: 14.5px; color: var(--muted); }

/* CTA band */
.cta-sec { padding: 0 0 24px; }
.cta-band {
  border-radius: var(--r-xl);
  padding: 64px 24px;
  text-align: center;
  color: #C9D5F5;
  background:
    radial-gradient(600px 300px at 85% 110%, rgba(77,139,255,.45), transparent 70%),
    radial-gradient(500px 260px at 10% -20%, rgba(77,139,255,.3), transparent 70%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}
@media (min-width: 960px) { .cta-band { padding: 80px 48px; } }
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.8vw, 42px); line-height: 1.18; max-width: 22ch; margin: 0 auto; }
.cta-band p { margin-top: 14px; font-size: 17.5px; }

/* FAQ */
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--r); transition: box-shadow .2s, border-color .2s; }
.faq details[open] { border-color: #D3DDF5; box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 24px;
  color: var(--ink); font-weight: 700; font-size: 16.5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 9px; height: 9px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-3px);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-2px); border-color: var(--blue); }
.faq details p { padding: 0 24px 22px; max-width: 70ch; }

/* Footer */
.site-footer { background: var(--navy); color: #9AA8CE; font-size: 15px; padding: 64px 0 28px; }
.foot-grid { display: grid; gap: 40px 24px; grid-template-columns: repeat(2, 1fr); }
.foot-brand { grid-column: 1 / -1; max-width: 36ch; }
.foot-brand p { margin-top: 18px; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) {
  .foot-grid { grid-template-columns: 1.6fr repeat(5, 1fr); }
  .foot-brand { grid-column: auto; }
}
.site-footer h4 { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.site-footer nav { display: flex; flex-direction: column; gap: 9px; }
.site-footer nav a { color: #B4C0E0; text-decoration: none; }
.site-footer nav a:hover { color: #fff; }
.foot-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; }
.br-lg { display: none; }
@media (min-width: 640px) { .br-lg { display: inline; } }

/* ================================================================
   Multi-page additions
   ================================================================ */

/* Dropdown navigation */
.nav-links { align-items: center; }
.dd { position: relative; }
.dd-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: 0; padding: 8px 0; cursor: pointer;
  font: 600 15px var(--sans); color: var(--ink);
}
.dd-btn svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform .15s; }
.dd-btn:hover { color: var(--blue); }
.dd-panel {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 6px);
  width: 320px; padding: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: opacity .15s, transform .15s, visibility .15s;
  z-index: 60;
}
.dd-panel::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.dd-wide { width: 560px; }
.dd-wide ul { grid-template-columns: 1fr 1fr; }
.dd-panel ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.dd-panel li a { display: flex; gap: 12px; align-items: flex-start; padding: 10px; border-radius: 10px; text-decoration: none; }
.dd-panel li a:hover { background: var(--tint); }
.dd-ic { flex: none; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--blue-soft); }
.dd-ic svg { width: 18px; height: 18px; fill: none; stroke: var(--blue); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.dd-txt b { display: block; color: var(--ink); font-size: 14.5px; font-weight: 700; line-height: 1.3; }
.dd-txt span { display: block; color: var(--muted); font-size: 13px; line-height: 1.35; margin-top: 2px; }
.dd-all { display: block; margin-top: 6px; padding: 10px; border-top: 1px solid var(--line); font-weight: 700; font-size: 14px; text-decoration: none; color: var(--blue); }

@media (min-width: 940px) {
  .dd:hover .dd-panel, .dd:focus-within .dd-panel, .dd.open .dd-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
  .dd:hover .dd-btn svg, .dd.open .dd-btn svg { transform: rotate(180deg); }
  .nav-links { gap: 28px; }
}
@media (max-width: 939px) {
  .nav { max-height: calc(100vh - 70px); overflow-y: auto; }
  .dd-btn { width: 100%; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .dd-panel { position: static; transform: none; width: auto; opacity: 1; visibility: visible; display: none; box-shadow: none; border: 0; padding: 4px 0 8px; }
  .dd.open .dd-panel { display: block; }
  .dd.open .dd-btn svg { transform: rotate(180deg); }
  .dd-wide ul { grid-template-columns: 1fr; }
}

/* Breadcrumbs */
.crumbs ol { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 8px; font-size: 13.5px; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: #C3C9D8; }
.crumbs a { color: var(--text); text-decoration: none; font-weight: 600; }
.crumbs a:hover { color: var(--blue); }
.hero-plain .crumbs ol { justify-content: center; }

/* Hero variants */
.hero-plain { padding-bottom: 64px; }
@media (min-width: 960px) { .hero-plain { padding: 72px 0 88px; } }
.hero-split .hero-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1000px) { .hero-split .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.hero-split .hero-copy { text-align: left; margin: 0; max-width: 580px; }
.hero-split h1 { font-size: clamp(34px, 4.6vw, 54px); }
.hero-split .lede { margin-left: 0; }
.hero-split .micro { justify-content: flex-start; }
.hero-visual { position: relative; display: grid; place-items: center; min-width: 0; }
.cta-left { justify-content: flex-start; }

/* Card grids */
.cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
@media (min-width: 760px) { .cards-2, .cards-3, .cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } .cards-4 { grid-template-columns: repeat(4, 1fr); } }
.cards + .center, .cards + .ai-foot { margin-top: 36px; }
.panel + .cards { margin-top: 0; }

.row-link { margin-top: 22px; }
.row-copy > p + p { margin-top: 12px; }

.lcard {
  display: flex; flex-direction: column; height: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px;
  text-decoration: none; color: var(--text);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.lcard:hover { border-color: #C9D6F5; box-shadow: var(--shadow); transform: translateY(-2px); }
.lcard .ibox { margin-bottom: 18px; }
.lcard h3 { font-size: 18.5px; margin-bottom: 6px; }
.lcard p { font-size: 15.5px; }
.lcard-more { margin-top: auto; padding-top: 18px; font-weight: 700; font-size: 14.5px; color: var(--blue); }
.tag { align-self: flex-start; font-size: 12px; font-weight: 800; color: var(--blue); background: var(--blue-soft); padding: 3px 10px; border-radius: 99px; margin-bottom: 14px; }
.tint .lcard { border-color: #E3E9F7; }

.tags { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tags li { font-size: 13.5px; font-weight: 700; color: var(--ink); background: #fff; border: 1px solid var(--line); padding: 6px 12px; border-radius: 99px; }
.soon { display: inline-block; font-size: 12px; font-weight: 800; color: var(--amber); background: var(--amber-bg); padding: 3px 10px; border-radius: 99px; vertical-align: middle; }

.steps-3 { }
@media (min-width: 1040px) { .steps-3 { grid-template-columns: repeat(3, 1fr); } }
.steps + .center { margin-top: 36px; }

/* Comparison table */
.ctable-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; }
.ctable { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 15px; }
.ctable th, .ctable td { padding: 16px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.ctable tbody tr:last-child th, .ctable tbody tr:last-child td { border-bottom: 0; }
.ctable thead th { font-size: 15px; font-weight: 800; color: var(--ink); background: var(--tint); }
.ctable thead th:nth-child(2) { color: var(--blue); background: var(--blue-soft); }
.ctable tbody th { font-weight: 700; color: var(--ink); width: 30%; }
.ctable td:nth-child(2) { background: #FAFCFF; color: var(--ink); font-weight: 600; }
.ctable td.yes svg { width: 20px; height: 20px; color: var(--blue); }
.ctable td.no { color: var(--muted); }
.ctable td.unk { color: var(--muted); font-style: italic; }
.table-note { margin-top: 14px; font-size: 13.5px; color: var(--muted); }

/* Prose */
.prose { max-width: 740px; margin: 0 auto; color: var(--text); font-size: 17px; line-height: 1.7; }
.prose-wide { max-width: 900px; }
.prose h2 { font-size: 26px; margin: 44px 0 12px; line-height: 1.25; }
.prose h3 { font-size: 20px; margin: 28px 0 8px; }
.prose p, .prose ul, .prose ol { margin: 0 0 16px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose li::marker { color: var(--blue); }
.prose strong { color: var(--ink); }
.prose > :first-child { margin-top: 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 20px; font-size: 15px; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.prose th { color: var(--ink); background: var(--tint); }
.prose .draft { background: var(--amber-bg); color: var(--amber); padding: 14px 18px; border-radius: var(--r); font-size: 15px; }

/* Callout, facts, two-col */
.callout { border-radius: var(--r-lg); padding: 22px 24px; border: 1px solid; }
.callout-info { background: var(--blue-soft); border-color: #D3E0FC; }
.callout-warn { background: var(--amber-bg); border-color: #F6DDB8; }
.callout-t { font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.callout + *, * + .callout { margin-top: 28px; }

.facts { margin: 0; display: grid; border-top: 1px solid var(--line); }
.facts div { display: grid; grid-template-columns: 170px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.facts dt { font-weight: 800; color: var(--ink); }
.facts dd { margin: 0; }
@media (max-width: 559px) { .facts div { grid-template-columns: 1fr; gap: 2px; } }

.two-col { display: grid; gap: 40px; }
@media (min-width: 960px) { .two-col { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } .two-col.narrow-left { grid-template-columns: 0.8fr 1.2fr; } }

/* Forms */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 28px; box-shadow: var(--shadow); }
@media (min-width: 760px) { .form-card { padding: 40px; } }
.fields { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; margin-bottom: 24px; }
.field { grid-column: 1 / -1; display: grid; gap: 7px; }
.field.half { grid-column: span 1; }
@media (max-width: 559px) { .field.half { grid-column: 1 / -1; } }
.field label { font-weight: 700; color: var(--ink); font-size: 14.5px; }
.opt { font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  font: 500 16px var(--sans); color: var(--ink);
  border: 1px solid #D5DBE8; border-radius: 10px; padding: 12px 14px; background: #fff; width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(54,98,227,.15); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--red); }
.check-field { display: flex; gap: 10px; align-items: flex-start; }
.check-field input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--blue); flex: none; }
.check-field label { font-weight: 500; color: var(--text); }
.check-field.invalid label { color: var(--red); }
.lform .btn { width: 100%; }
@media (min-width: 560px) { .lform .btn { width: auto; } }
.form-note { margin-top: 14px; font-size: 13.5px; color: var(--muted); }
.form-success { background: var(--green-bg); color: var(--green); border-radius: var(--r); padding: 18px 20px; font-weight: 700; }
.lform.sent .fields, .lform.sent > .btn, .lform.sent .form-note { display: none; }

/* Mockup additions */
.vcard { width: min(480px, 100%); padding: 18px; }
.vcard .results td, .vcard .results th { padding-left: 8px; padding-right: 8px; }
.vcard-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
.vcard-t { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--ink); font-size: 15px; }
.vcard-foot { font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.vstack { position: relative; width: min(460px, 100%); padding-bottom: 28px; display: grid; }
.vstack .record { width: 100%; }
.pill-grey { background: #F0F2F7; color: var(--muted); }
.pill-green { background: var(--green-bg); color: var(--green); }
.avatar.sm { width: 34px; height: 34px; font-size: 12.5px; flex: none; }
.ic-wa { background: #E3F7EA; color: #1C8C4E; }
.ic-card { background: var(--blue-soft); color: var(--blue); }

.searchbar { display: flex; align-items: center; gap: 10px; border: 1px solid #D5DBE8; border-radius: 10px; padding: 10px 12px; color: var(--ink); font-weight: 600; margin-bottom: 10px; }
.searchbar svg { width: 18px; height: 18px; fill: none; stroke: var(--muted); stroke-width: 2; }
.kbd { margin-left: auto; font-size: 11.5px; color: var(--muted); border: 1px solid var(--line); border-radius: 5px; padding: 1px 6px; }
.plist { list-style: none; margin: 0; padding: 0; }
.plist li { display: flex; align-items: center; gap: 12px; padding: 11px 4px; border-bottom: 1px solid var(--line); }
.plist li:last-child { border-bottom: 0; }
.plist li div { flex: 1; min-width: 0; }
.plist b { display: block; color: var(--ink); font-size: 14.5px; }
.plist div span { display: block; font-size: 12px; color: var(--muted); font-family: var(--mono); }
@media (max-width: 480px) { .plist .pill { display: none; } }

.catalog td b { display: block; font-weight: 700; }
.catalog td .mono { font-size: 11px; color: var(--muted); }
.range-note { margin-top: 12px; background: var(--tint); border-radius: 8px; padding: 10px 12px; font-size: 12.5px; color: var(--text); }
.range-note b { color: var(--ink); }

.track { list-style: none; margin: 4px 0 14px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.track li { font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 99px; background: #F0F2F7; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.track li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .6; }
.track li.done { background: var(--blue-soft); color: var(--blue); }
.track li.now { background: var(--amber-bg); color: var(--amber); }
.order-meta.two { grid-template-columns: 1fr 1fr; }
.order-meta b.mono { font-size: 12.5px; color: var(--ink); }

.queue { list-style: none; margin: 0 0 14px; padding: 0; }
.queue li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.queue b { display: block; color: var(--ink); font-size: 14.5px; }
.queue span:not(.flag) { font-size: 12.5px; color: var(--muted); }

.chatcard { width: min(480px, 100%); padding: 0; overflow: hidden; font-size: 14.5px; }
.chat-top { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--line); font-weight: 700; color: var(--ink); font-size: 13.5px; background: #FAFBFE; }
.chat-dot { width: 8px; height: 8px; border-radius: 50%; background: #22A06B; }
.chat-q { margin: 16px 16px 0 auto; max-width: 82%; background: var(--blue); color: #fff; padding: 11px 14px; border-radius: 14px 14px 4px 14px; font-weight: 600; width: fit-content; }
.chat-a { margin: 12px 16px 16px; background: var(--tint); border-radius: 14px 14px 14px 4px; padding: 14px; color: var(--ink); }
.chat-a p + p, .chat-a ul { margin-top: 8px; }
.chat-a ul { padding-left: 18px; margin-bottom: 0; }
.chat-tool { font: 11.5px var(--mono); color: var(--blue); background: #fff; border: 1px solid #D3E0FC; border-radius: 6px; padding: 4px 8px; display: inline-block; }
.chat-muted { color: var(--muted); font-size: 13px; }

.devices { position: relative; width: min(520px, 100%); padding: 0 0 0 0; }
.device-desk { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; width: 88%; }
.dd-bar { display: flex; gap: 5px; padding: 10px 14px; border-bottom: 1px solid var(--line); background: #FAFBFE; }
.dd-bar i { width: 9px; height: 9px; border-radius: 50%; background: #DDE2EC; }
.dd-body { padding: 18px; }
.dd-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 12px 0; }
.dd-stats div { background: var(--tint); border-radius: 10px; padding: 10px 12px; }
.dd-stats b { display: block; font-size: 22px; font-weight: 900; color: var(--ink); }
.dd-stats span { font-size: 12px; color: var(--muted); }
.dd-lines { display: grid; gap: 8px; padding-bottom: 60px; }
.dd-lines span { height: 12px; border-radius: 6px; background: #EEF1F7; }
.dd-lines span:nth-child(2) { width: 80%; } .dd-lines span:nth-child(3) { width: 90%; } .dd-lines span:nth-child(4) { width: 60%; }
.device-phone { position: absolute; right: 0; bottom: -30px; }
.device-phone .phone { width: 190px; border-radius: 30px; padding: 8px; }
.device-phone .phone-screen { height: 330px; border-radius: 23px; }

.regions { width: min(460px, 100%); padding: 20px; }
.region { display: flex; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.region b { display: block; color: var(--ink); }
.region span:not(.region-code) { font-size: 13px; color: var(--muted); }
.region-code { flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); font-weight: 900; }
.region-code.uk { background: #EEF0FF; color: #4F46E5; }

.shieldcard { width: min(420px, 100%); padding: 28px; text-align: left; }
.shield-ic { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 18px; background: var(--blue); margin-bottom: 20px; box-shadow: 0 10px 24px -10px rgba(54,98,227,.6); }
.shield-ic svg { width: 32px; height: 32px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.shieldcard ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.shieldcard li, .ea-list li { display: flex; gap: 10px; align-items: center; color: var(--ink); font-weight: 700; font-size: 15px; }
.shieldcard svg:not(.shield-ic svg), .ea-list svg { width: 18px; height: 18px; color: var(--blue); flex: none; }

.sheet { width: min(500px, 100%); overflow: hidden; padding: 0; font-size: 13px; transform: rotate(-1.5deg); }
.sheet-bar { background: #1F7A45; color: #fff; padding: 9px 14px; font-weight: 700; font-size: 12.5px; }
.sheet table { width: 100%; border-collapse: collapse; }
.sheet th, .sheet td { border: 1px solid #E3E6EC; padding: 8px 10px; text-align: left; white-space: nowrap; }
.sheet th { background: #F3F4F6; color: var(--muted); font-weight: 700; font-size: 12px; }
.sheet td { color: var(--ink); font-family: var(--mono); font-size: 12px; }
.sheet td:empty { background: #FFFBEA; }
@media (max-width: 480px) { .sheet th:nth-child(5), .sheet td:nth-child(5) { display: none; } }

.connect-row { display: flex; gap: 14px; align-items: center; padding: 14px; background: var(--tint); border-radius: 12px; margin-bottom: 12px; }
.connect-row b { display: block; color: var(--ink); }
.connect-row span:not(.connect-logo) { font-size: 13px; color: var(--muted); }
.connect-logo { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: #635BFF; color: #fff; font-weight: 900; font-size: 18px; flex: none; }

.ea { width: min(400px, 100%); padding: 26px; }
.ea-list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 12px; }

.solo-phone { display: grid; place-items: center; }
.solo-phone .phone { border-radius: 32px; padding: 9px; }
.solo-phone .phone-screen { border-radius: 24px; }

.wa { padding: 0 !important; background: #EFE9E1 !important; gap: 0 !important; }
.wa::before { display: none; }
.wa-top { display: flex; align-items: center; gap: 10px; background: #1F5E4B; color: #fff; padding: 26px 12px 10px; }
.wa-top b { display: block; font-size: 12.5px; }
.wa-top span:not(.avatar) { font-size: 10.5px; opacity: .8; }
.wa-av { background: #fff; color: #1F5E4B; }
.wa-body { padding: 12px 10px; display: grid; gap: 8px; }
.wa-msg { background: #fff; border-radius: 8px 8px 8px 2px; padding: 8px 10px 16px; font-size: 12px; color: #1B1F23; position: relative; max-width: 88%; line-height: 1.45; box-shadow: 0 1px 1px rgba(0,0,0,.06); }
.wa-msg.me { background: #D8F8C6; justify-self: end; border-radius: 8px 8px 2px 8px; }
.wa-link { color: #0B6BCB; font-weight: 700; }
.wa-time { position: absolute; right: 8px; bottom: 3px; font-size: 9.5px; color: #7B8288; }

/* Pricing page */
.price-controls { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: -24px 0 40px; }
.seg { display: inline-flex; background: #fff; border: 1px solid var(--line); border-radius: 99px; padding: 4px; }
.seg button { border: 0; background: none; font: 700 14px var(--sans); color: var(--text); padding: 9px 16px; border-radius: 99px; cursor: pointer; }
.seg button[aria-pressed="true"] { background: var(--blue); color: #fff; }
.seg .save { font-size: 11.5px; color: var(--green); background: var(--green-bg); padding: 2px 7px; border-radius: 99px; margin-left: 6px; }
.seg button[aria-pressed="true"] .save { background: rgba(255,255,255,.2); color: #fff; }
.plan .per { display: block; font-size: 13px; color: var(--muted); margin-top: 4px; font-weight: 600; }
.plan .btn { width: 100%; margin-top: 22px; }
.plans-full .plan { display: flex; flex-direction: column; }
.plans-full .plan ul { flex: 1; }

/* Glossary */
.gloss-index { display: grid; gap: 12px; }
@media (min-width: 760px) { .gloss-index { grid-template-columns: repeat(2, 1fr); } }
.gloss-letter { font-weight: 900; color: var(--blue); font-size: 14px; margin: 18px 0 4px; grid-column: 1 / -1; }

/* Company pages */
mark.ph { background: var(--amber-bg); color: var(--amber); font-weight: 700; padding: 1px 6px; border-radius: 5px; }
.pricing-sec { padding-top: 0; }
.ctable-plans td:nth-child(2) { background: none; font-weight: 500; color: var(--text); }
.ctable-plans thead th:nth-child(2) { color: var(--ink); background: var(--tint); }
.ctable-plans td:nth-child(3) { background: #FAFCFF; color: var(--ink); font-weight: 700; }
.ctable-plans thead th:nth-child(3) { color: var(--blue); background: var(--blue-soft); }
.plan li { align-items: flex-start; }
.plan li svg { margin-top: 2px; }
.contact-cards { grid-template-columns: 1fr !important; gap: 14px; }
.contact-cards .icard { padding: 22px 24px; display: grid; grid-template-columns: 44px 1fr; column-gap: 16px; }
.contact-cards .ibox { grid-row: span 3; }
.contact-cards h3 { margin: 0 0 2px; }
.contact-link { margin-top: 6px; font-weight: 800; color: var(--ink); }
.contact-link a { text-decoration: none; }
@media (min-width: 960px) { .two-col.narrow-right { grid-template-columns: 1.2fr 0.8fr; } }
.hero-split .checks { margin-top: 26px; }
.hero-split .form-card { width: 100%; }

/* Overflow guards */
.two-col > div, .row-copy, .row-visual, .hero-copy, .hero-visual, .panel > *, .split-head > * { min-width: 0; }
.row-visual > *, .hero-visual > * { max-width: 100%; }
.sheet { max-width: 100%; }
.sheet table { width: 100%; }
@media (max-width: 480px) { .sheet th:nth-child(4), .sheet td:nth-child(4) { display: none; } .sheet th, .sheet td { white-space: normal; } }

/* Phones inside a half-width row or hero: show two, smaller */
.row-visual .panel-phones, .hero-visual .panel-phones { width: 100%; padding: 36px 16px 0; margin-bottom: 0; }
.row-visual .phones .phone:nth-child(3), .hero-visual .phones .phone:nth-child(3) { display: none; }
.row-visual .phones, .hero-visual .phones { justify-content: center; overflow: hidden; gap: 14px; }
.row-visual .phones .phone, .hero-visual .phones .phone { width: 190px; }
.row-visual .phone-mid, .hero-visual .phone-mid { transform: none; }
@media (max-width: 480px) {
  .row-visual .phones .phone:nth-child(2), .hero-visual .phones .phone:nth-child(2) { display: none; }
}
.ctable-wrap { position: relative; }

/* Logo */
.logo picture, .logo img { display: block; }
.logo img { height: 40px; width: auto; }
.site-footer .logo img { height: 42px; }
@media (max-width: 479px) { .logo img { height: 32px; } }

/* Rendered mockups */
.shot { display: block; }
.shot img { display: block; max-width: 100%; height: auto; margin: 0 auto; }
.row-visual { min-height: 0; }
.hero-shot .shot img, .shot-full img { width: 100%; }
.hero-shot { margin-top: 48px; }
.shot-full + .cards, .shot-full + * { margin-top: 40px; }
@media (max-width: 599px) { .hero-shot { margin-left: -4px; margin-right: -4px; } }
.row, .hero-split .hero-grid, .two-col { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 960px) { .row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } .two-col { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
@media (min-width: 960px) { .two-col.narrow-left { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); } .two-col.narrow-right { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); } }
@media (min-width: 1000px) { .hero-split .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.row-visual, .hero-visual { width: 100%; }
.shot { max-width: 100%; }
