:root {
  --bg: #f5f8fd;
  --surface: #ffffff;
  --surface-2: #eef4ff;
  --surface-3: #f8fbff;
  --ink: #142c4b;
  --muted: #47627f;
  --soft: #6f88a6;
  --line: #d5e2f7;
  --line-2: #e5eefc;
  --accent: #142c4b;
  --accent-2: #6694e8;
  --accent-soft: #e8f0ff;
  --warm: #6694e8;
  --shadow: 0 18px 50px rgba(20, 44, 75, .10);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 4%, rgba(102, 148, 232, .10), transparent 32%),
    radial-gradient(circle at 84% 0%, rgba(20, 44, 75, .08), transparent 34%),
    var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
p { margin: 0; }
img { max-width: 100%; display: block; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(245, 248, 253, .88);
  border-bottom: 1px solid rgba(213, 226, 247, .82);
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 650;
  letter-spacing: -.02em;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  background: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
}

.nav a {
  padding: 8px 10px;
  border-radius: 999px;
}

.nav a:hover {
  background: rgba(255, 255, 255, .7);
  color: var(--ink);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 12px 18px;
  min-height: 46px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn.primary {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.btn.secondary {
  background: rgba(255, 255, 255, .76);
  color: var(--ink);
  border-color: var(--line);
}

main { overflow: hidden; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 78px 24px;
}

.section.tight { padding-top: 36px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 42px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .02em;
  margin-bottom: 18px;
}

.eyebrow:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 0 5px rgba(102, 148, 232, .16);
}

h1, h2, h3 {
  margin: 0;
  letter-spacing: -.045em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(50px, 7vw, 86px);
  max-width: 820px;
}

.hero h2 {
  margin-top: 24px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
  font-weight: 630;
  color: var(--accent);
  max-width: 720px;
}

.hero-copy {
  margin-top: 24px;
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
}

.microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.microcopy span {
  display: inline;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.product-line {
  margin-top: 28px;
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
  min-height: 50px;
}

.typing-line {
  display: inline-block;
  margin-top: 4px;
  color: var(--ink);
  font-weight: 650;
  min-height: 1.4em;
}

.typing-line::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--accent-2);
  margin-left: 3px;
  vertical-align: -2px;
  animation: blink .9s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.hero-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(238, 244, 255, .95));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow);
}

.mock-browser {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 22px;
  overflow: hidden;
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-2);
  background: #f3f7ff;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a8c1f2;
}

.browser-body { padding: 20px; }

.flow-card {
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 16px;
  background: var(--surface);
  margin-bottom: 12px;
}

.flow-card:last-child { margin-bottom: 0; }
.flow-label {
  font-size: 12px;
  color: var(--soft);
  margin-bottom: 6px;
  font-weight: 650;
}
.flow-title {
  font-size: 18px;
  font-weight: 720;
  letter-spacing: -.03em;
}
.flow-sub {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.mini-metric {
  border: 1px solid var(--line-2);
  background: #f8fbff;
  border-radius: 14px;
  padding: 11px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

.mini-metric strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  margin-bottom: 4px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.section h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.section-lede {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  min-height: 315px;
  box-shadow: 0 10px 34px rgba(20, 44, 75, .04);
}

.card h3 {
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.card p { color: var(--muted); }

.card-mock {
  height: 142px;
  border-radius: 16px;
  border: 1px solid var(--line-2);
  background: linear-gradient(145deg, #f8fbff, #edf4ff);
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
}

.mock-people, .mock-score, .mock-integrate {
  width: 100%; height: 100%;
  position: relative;
}

.avatar-row { display: flex; gap: 12px; padding: 22px; }
.avatar {
  width: 58px; height: 58px; border-radius: 18px;
  background: linear-gradient(145deg, #d5e4ff, #bfd5fa);
  position: relative;
  box-shadow: inset 0 -14px 0 rgba(102, 148, 232, .18);
}
.avatar:before {
  content: ""; position: absolute; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(20,44,75,.18); left: 18px; top: 10px;
}
.avatar:after {
  content: ""; position: absolute; width: 32px; height: 18px; border-radius: 16px 16px 10px 10px;
  background: rgba(20,44,75,.14); left: 13px; bottom: 10px;
}
.caption-strip {
  position: absolute; left: 18px; right: 18px; bottom: 16px; height: 12px;
  border-radius: 999px; background: rgba(102,148,232,.22);
}

.score-bars { padding: 20px; display: grid; gap: 12px; }
.score-line { height: 14px; border-radius: 999px; background: #e7effc; overflow: hidden; }
.score-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, #6694e8, #142c4b); }
.score-tag {
  position: absolute; right: 18px; top: 18px; padding: 8px 10px; border-radius: 999px;
  background: #142c4b; color: white; font-size: 12px; font-weight: 700;
}

.integ-grid { padding: 18px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.integ-box {
  height: 44px; border-radius: 12px; border: 1px solid #d7e5fb; background: white;
  display: flex; align-items: center; justify-content: center; color: var(--soft); font-weight: 700; font-size: 13px;
}
.integ-link {
  position: absolute; left: 50%; top: 50%; width: 54px; height: 54px; transform: translate(-50%, -50%);
  border-radius: 50%; background: #142c4b; color: white; display: grid; place-items: center; font-weight: 800;
  box-shadow: 0 8px 20px rgba(20,44,75,.18);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: stretch;
}

.step {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  min-height: 270px;
}

.step-number {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 750;
  margin-bottom: 18px;
}

.step h3 {
  font-size: 23px;
  line-height: 1.12;
  margin-bottom: 12px;
}

.note {
  margin-top: 16px;
  border-radius: 16px;
  border: 1px dashed #8ab0f0;
  background: #eef4ff;
  padding: 14px 16px;
  color: #254975;
  font-size: 14px;
  font-weight: 600;
}

.cta-row {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 290px;
}

.quote-mark {
  color: var(--warm);
  font-size: 56px;
  line-height: .75;
  margin-bottom: 14px;
  font-family: Georgia, serif;
}

blockquote {
  margin: 0;
  color: var(--muted);
}

blockquote p:first-of-type {
  color: var(--ink);
  font-size: 16px;
}

blockquote p:last-of-type {
  margin-top: 18px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 650;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-card.featured {
  background: linear-gradient(145deg, var(--accent), #214b80);
  color: white;
  border-color: rgba(255, 255, 255, .15);
}

.price-card h3 {
  font-size: 31px;
  margin-bottom: 14px;
}

.price {
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 800;
  margin-bottom: 16px;
}

.price-card p { color: var(--muted); }
.price-card.featured p { color: rgba(255, 255, 255, .8); }

.price-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.price-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.price-card.featured li { color: rgba(255, 255, 255, .88); }

.price-card li:before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-top: 9px;
  background: var(--accent-2);
}

.price-card.featured li:before { background: #b8d0fa; }

.price-card .btn { margin-top: 28px; }
.price-card.featured .btn {
  background: white;
  color: var(--accent);
  border-color: white;
}

.agents-box {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(232,240,255,.92));
  padding: 34px;
  box-shadow: var(--shadow);
}

.agent-graphic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.agent-line {
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 18px 14px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.agent-icon {
  width: 58px; height: 58px; border-radius: 18px; background: linear-gradient(145deg, #dbe8ff, #b8d0fa);
  display: grid; place-items: center; color: var(--ink);
}

.agent-icon svg { width: 30px; height: 30px; }

.faq-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 30px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 720;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

summary::-webkit-details-marker { display: none; }
summary:after {
  content: "+";
  color: var(--soft);
  font-size: 22px;
  font-weight: 500;
}
details[open] summary:after { content: "–"; }
details p {
  margin-top: 12px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
  background: var(--ink);
  color: white;
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact p { color: rgba(255, 255, 255, .76); }

.form-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  font-size: 13px;
  color: rgba(255, 255, 255, .78);
  font-weight: 650;
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 13px;
  background: rgba(255, 255, 255, .08);
  color: white;
  padding: 12px 13px;
  font: inherit;
  outline: none;
}

input::placeholder, textarea::placeholder { color: rgba(255, 255, 255, .4); }
option { color: var(--ink); }
.span-2 { grid-column: 1 / -1; }
textarea { min-height: 122px; resize: vertical; }

.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px;
  color: var(--soft);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .hero,
  .agents-box,
  .faq-wrap,
  .contact { grid-template-columns: 1fr; }
  .cards-3,
  .reviews-grid,
  .agent-graphic { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
}

@media (max-width: 640px) {
  .topbar-inner { padding: 13px 16px; }
  .section { padding: 56px 16px; }
  .hero { padding-top: 38px; }
  h1 { font-size: 44px; }
  .top-actions .secondary { display: none; }
  .steps,
  .pricing,
  .form-grid { grid-template-columns: 1fr; }
  .card,
  .price-card,
  .contact,
  .agents-box { padding: 22px; }
  .hero-card { order: 2; }
  .hero > div:first-child { order: 1; }
  .product-line { min-height: 60px; }
}

/* Cookie consent */
.cookie-consent { display: none; position: fixed; left: 12px; right: 12px; bottom: 18px; z-index: 60; }
.cookie-consent__inner { max-width: var(--max); width: 100%; background: linear-gradient(90deg, rgba(20,44,75,0.95), rgba(33,75,128,0.95)); color: white; padding: 14px 18px; border-radius: 12px; display:flex; align-items:center; justify-content:space-between; gap: 12px; box-shadow: 0 12px 30px rgba(20,44,75,.18); }
.cookie-consent__inner p { margin: 0; color: rgba(255,255,255,.95); font-size: 14px; }
.cookie-consent__actions { display:flex; gap:10px; }

/* Contact status */
.contact-status { color: white; margin-top: 10px; font-weight: 600; }
