:root {
  --bg: #f5f7fb;
  --ink: #172033;
  --muted: #667085;
  --line: #dfe5ee;
  --panel: #ffffff;
  --blue: #176bff;
  --blue-dark: #0d3f9c;
  --green: #10a37f;
  --orange: #f59e0b;
  --cyan: #06b6d4;
  --shadow: 0 18px 50px rgba(24, 38, 71, .12);
  --shadow-strong: 0 28px 80px rgba(24, 38, 71, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(223, 229, 238, .8);
  backdrop-filter: blur(14px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

img.logo-mark {
  object-fit: cover;
}

.logo-text { line-height: 1.05; }
.logo-text span { display: block; color: var(--muted); font-weight: 600; }

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav a:hover,
.nav a.is-active,
.header-phone:hover { color: var(--blue); }

.header-phone { font-weight: 700; white-space: nowrap; }

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 74px clamp(18px, 5vw, 72px) 48px;
  background:
    radial-gradient(circle at 12% 15%, rgba(23, 107, 255, .13), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 12px;
  border: 1px solid rgba(23, 107, 255, .18);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(23, 107, 255, .08);
  font-size: 13px;
  font-weight: 700;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5.8vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(23, 107, 255, .24);
}

.btn-primary:hover { background: var(--blue-dark); }

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

.btn:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.btn-secondary {
  background: #fff;
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: rgba(23, 107, 255, .36);
  box-shadow: 0 10px 24px rgba(24, 38, 71, .1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
}

.hero-stats dt {
  font-size: 22px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-content,
.hero-visual {
  min-width: 0;
}

.hero-content {
  animation: heroCopyIn .7s ease both;
}

.hero-visual {
  animation: heroPanelIn .8s ease .12s both;
}

.dashboard {
  overflow: hidden;
  border: 1px solid rgba(223, 229, 238, .9);
  border-radius: 12px;
  background: #101828;
  box-shadow: var(--shadow);
  transform: translateZ(0);
  animation: dashboardFloat 5.6s ease-in-out infinite;
}

.dash-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  color: #dbe7ff;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.dash-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #667085;
}

.dash-top span:nth-child(1) { background: #ef4444; }
.dash-top span:nth-child(2) { background: var(--orange); }
.dash-top span:nth-child(3) { background: var(--green); }
.dash-top strong { margin-left: auto; font-size: 13px; }

.dash-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.dash-card,
.flow-card,
.chat-card {
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

.dash-card {
  padding: 18px;
  color: #fff;
}

.dash-card.wide { grid-column: 1 / -1; }

.dash-label {
  display: block;
  color: #a7b3c7;
  font-size: 13px;
  font-weight: 600;
}

.dash-card strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
}

.bar {
  height: 9px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
}

.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blue));
  animation: progressGrow 1.1s ease .65s both;
}

.flow-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  padding: 16px;
}

.flow-card span,
.flow-card b {
  padding: 9px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, .09);
  font-size: 13px;
}

.flow-card b { background: rgba(16, 163, 127, .34); }

.chat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 16px;
}

.chat-card p {
  margin: 0;
  padding: 10px;
  border-radius: 8px;
  color: #eaf0ff;
  background: rgba(255, 255, 255, .09);
  font-size: 13px;
}

.chat-card p:last-child { background: rgba(23, 107, 255, .28); }

.trust-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 72px) 38px;
  margin-top: -18px;
  background:
    linear-gradient(180deg, var(--bg) 0%, #fff 100%);
  z-index: 2;
}

.trust-item {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  min-height: 170px;
  align-content: start;
  padding: 24px;
  border: 1px solid rgba(223, 229, 238, .9);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(23, 107, 255, .12), transparent 34%),
    #fff;
  box-shadow: 0 18px 42px rgba(24, 38, 71, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.trust-item::after {
  position: absolute;
  right: 18px;
  bottom: -34px;
  color: rgba(23, 107, 255, .06);
  content: attr(data-index);
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
}

.trust-item:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 107, 255, .26);
  box-shadow: var(--shadow);
}

.trust-item span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(23, 107, 255, .22);
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 76px clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-head h2 { margin-bottom: 0; }

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .52fr);
  gap: 32px;
  align-items: end;
  max-width: none;
}

.split-head > p {
  margin-bottom: 4px;
  color: var(--muted);
}

.pain-grid,
.service-grid,
.case-grid,
.price-grid,
.industry-grid,
.audience-grid,
.launch-timeline,
.compare-grid,
.integration-grid {
  display: grid;
  gap: 18px;
}

.pain-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.case-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.industry-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.audience-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.launch-timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.compare-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.integration-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.pain article,
.service-card,
.case-card,
.price-card,
.industry-card,
.proof-card,
.audience-card,
.launch-timeline article,
.compare-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.pain article:hover,
.service-card:hover,
.case-card:hover,
.price-card:hover,
.industry-card:hover,
.proof-card:hover,
.audience-card:hover,
.launch-timeline article:hover,
.compare-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 107, 255, .26);
  box-shadow: var(--shadow);
}

.service-card span,
.audience-card span,
.launch-timeline span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--green);
  font-weight: 800;
}

.audience {
  background: #fff;
}

.audience-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
}

.audience-card span {
  color: var(--blue);
}

.audience-card h3 {
  margin-top: auto;
}

.fast-launch {
  background:
    radial-gradient(circle at 12% 20%, rgba(16, 163, 127, .12), transparent 28%),
    #f7fbff;
}

.launch-timeline {
  position: relative;
}

.launch-timeline article {
  min-height: 250px;
  border-top: 3px solid var(--green);
}

.launch-timeline span {
  color: var(--blue);
}

.quick-scenarios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.quick-scenarios span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(16, 163, 127, .22);
  border-radius: 999px;
  color: #06624d;
  background: rgba(16, 163, 127, .1);
  font-size: 13px;
  font-weight: 700;
}

.quick-scenarios span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.industries {
  background:
    linear-gradient(180deg, #fff 0%, #f6f9ff 100%);
}

.industry-card {
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .88)),
    radial-gradient(circle at 85% 12%, rgba(6, 182, 212, .18), transparent 36%);
}

.before-after {
  background: #fff;
}

.compare-card {
  min-height: 360px;
}

.compare-card h3 {
  font-size: 26px;
}

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

.compare-card li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.compare-card li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.compare-card.before {
  background: linear-gradient(180deg, #fff, #fff8f8);
}

.compare-card.before li::before {
  background: #ef4444;
  content: "!";
}

.compare-card.after {
  background: linear-gradient(180deg, #fff, #f2fff9);
  border-color: rgba(16, 163, 127, .3);
}

.compare-card.after li::before {
  background: var(--green);
  content: "+";
}

.integrations {
  background:
    radial-gradient(circle at 88% 14%, rgba(23, 107, 255, .12), transparent 26%),
    var(--bg);
}

.integration-grid span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(24, 38, 71, .05);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.integration-grid span:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 107, 255, .28);
  box-shadow: var(--shadow);
}

.industry-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 36px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 800;
}

.pain p,
.service-card p,
.case-card p,
.price-card p,
.industry-card p,
.audience-card p,
.launch-timeline p,
.proof-card span,
.audit-copy p,
.faq p,
.footer p {
  color: var(--muted);
}

.cases { background: #fff; }

.case-card strong {
  display: inline-flex;
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #06624d;
  background: rgba(16, 163, 127, .12);
}

.safety {
  background: #101828;
}

.safety-panel {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  color: #fff;
}

.safety-panel .eyebrow {
  color: #d8f6ed;
  border-color: rgba(16, 163, 127, .28);
  background: rgba(16, 163, 127, .18);
}

.safety-panel p {
  color: #c8d1e2;
}

.safety-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.safety-list article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

.safety-list h3 {
  color: #fff;
}

.proof {
  background:
    radial-gradient(circle at 85% 10%, rgba(16, 163, 127, .16), transparent 26%),
    #0f172a;
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--shadow-strong);
}

.proof-panel .eyebrow {
  color: #d8f6ed;
  border-color: rgba(16, 163, 127, .28);
  background: rgba(16, 163, 127, .18);
}

.proof-panel p {
  color: #c8d1e2;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-card {
  display: grid;
  gap: 8px;
  color: var(--ink);
}

.proof-card strong {
  font-size: 17px;
}

.proof-card span {
  font-size: 14px;
}

.calculator {
  background: #fff;
}

.calc-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  gap: 18px;
}

.calc-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
}

.calc-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.calc-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.calc-form input:focus {
  border-color: rgba(23, 107, 255, .82);
  box-shadow: 0 0 0 4px rgba(23, 107, 255, .12);
}

.calc-result {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 10%, rgba(6, 182, 212, .36), transparent 32%),
    #111827;
  box-shadow: var(--shadow-strong);
}

.calc-result span {
  color: #a7b3c7;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.calc-result strong {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.calc-result p {
  color: #c8d1e2;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: item;
}

.process-list li {
  position: relative;
  padding: 24px;
  border-top: 3px solid var(--blue);
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease;
}

.process-list li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(23, 107, 255, .35);
  box-shadow: var(--shadow);
}

.price-card strong {
  margin: 8px 0 18px;
  font-size: 26px;
}

.price-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: auto 0 0;
  color: var(--muted);
}

.audit {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .62fr);
  gap: 34px;
  align-items: center;
  color: #fff;
  background: #111827;
}

.audit .eyebrow {
  color: #d8f6ed;
  border-color: rgba(16, 163, 127, .28);
  background: rgba(16, 163, 127, .18);
}

.audit-copy p { color: #c8d1e2; }

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .09);
  font: inherit;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(23, 107, 255, .82);
  background: rgba(255, 255, 255, .13);
  box-shadow: 0 0 0 4px rgba(23, 107, 255, .16);
}

.lead-form select option { color: var(--ink); }

.form-note {
  margin: 0;
  color: #b8c4d8;
  font-size: 12px;
}

.final-cta {
  padding-top: 34px;
  padding-bottom: 34px;
  background:
    linear-gradient(180deg, var(--bg) 0%, #eef4ff 100%);
}

.final-cta-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(300px, .42fr);
  gap: 32px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 8%, rgba(6, 182, 212, .32), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(23, 107, 255, .28), transparent 34%),
    #111827;
  box-shadow: var(--shadow-strong);
}

.final-cta-inner::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  content: "";
  pointer-events: none;
}

.final-cta-copy,
.final-cta-action {
  position: relative;
  z-index: 1;
}

.final-cta .eyebrow {
  color: #d8f6ed;
  border-color: rgba(16, 163, 127, .28);
  background: rgba(16, 163, 127, .18);
}

.final-cta-copy p {
  max-width: 760px;
  color: #c8d1e2;
}

.final-cta-copy h2 {
  max-width: 900px;
}

.final-cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.final-cta-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  color: #eaf0ff;
  background: rgba(255, 255, 255, .07);
  font-size: 13px;
  font-weight: 800;
}

.final-cta-points span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.final-cta-action {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.final-cta-action span {
  color: #a7b3c7;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.final-cta-action strong {
  font-size: 28px;
  line-height: 1.1;
}

.final-cta-action p {
  margin-bottom: 0;
  color: #c8d1e2;
  font-size: 14px;
}

.final-cta-action .btn {
  width: 100%;
  margin-top: 6px;
}

.faq {
  max-width: 980px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.faq summary {
  cursor: pointer;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 800;
}

.footer {
  padding: 54px clamp(18px, 5vw, 72px) 24px;
  color: #d8deea;
  background:
    radial-gradient(circle at 10% 0%, rgba(23, 107, 255, .18), transparent 30%),
    #0b1220;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(160px, .7fr));
  gap: 34px;
  align-items: start;
}

.footer-brand p {
  max-width: 470px;
  margin: 18px 0 22px;
  color: #aeb8ca;
}

.footer-logo { margin-bottom: 14px; }

.footer .logo-text span {
  color: #aeb8ca;
}

.footer-channel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  font-weight: 800;
}

.footer-channel span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--blue);
}

.footer-channel span::before {
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  content: "";
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.9 4.3 18.7 19c-.2 1-.8 1.2-1.6.8l-4.8-3.5-2.3 2.2c-.3.3-.5.5-1 .5l.3-4.9 8.9-8c.4-.3-.1-.5-.6-.2L6.7 12.8 2 11.3c-1-.3-1-1 .2-1.5L20.5 2.7c.9-.3 1.6.2 1.4 1.6z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-col h4 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
}

.footer-col ul,
.footer-contacts {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col a,
.footer-contacts span {
  color: #aeb8ca;
}

.footer-col a {
  text-decoration: none;
}

.footer-contacts li {
  display: grid;
  gap: 2px;
  color: #aeb8ca;
}

.footer-contacts b {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #8f9caf;
  font-size: 13px;
}

.footer-bottom a {
  color: #cfd7e6;
  font-weight: 700;
}

.footer a:hover {
  color: #fff;
}

.policy-page {
  background: #fff;
}

.error-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 14%, rgba(23, 107, 255, .16), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(16, 163, 127, .14), transparent 24%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.error-layout {
  display: grid;
  align-content: space-between;
  min-height: 100vh;
  width: min(100% - 36px, 1180px);
  margin: 0 auto;
  padding: 28px 0 36px;
}

.error-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 56px;
}

.error-logo {
  width: fit-content;
}

.error-top-link {
  color: var(--blue-dark);
  font-weight: 800;
  white-space: nowrap;
}

.error-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(330px, .7fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.error-copy h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 78px);
}

.error-copy p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 19px;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.error-visual {
  position: relative;
  min-height: 430px;
}

.error-code {
  position: absolute;
  top: -34px;
  right: 0;
  color: rgba(23, 107, 255, .12);
  font-size: clamp(110px, 14vw, 190px);
  line-height: .85;
  font-weight: 800;
  letter-spacing: 0;
}

.error-card {
  position: relative;
  margin-top: 84px;
  padding: 18px;
  border: 1px solid rgba(223, 229, 238, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(12px);
}

.error-card::before {
  position: absolute;
  right: 24px;
  bottom: -28px;
  width: 58%;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: .18;
  content: "";
}

.error-route {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 28px 0 22px;
}

.route-node {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 10px 13px;
  border-radius: 8px;
  background: #eef4ff;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.route-node.muted {
  background: #f2f4f7;
  color: var(--muted);
}

.route-node.active {
  box-shadow: inset 0 0 0 1px rgba(23, 107, 255, .18);
}

.error-route i {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(23, 107, 255, .35), rgba(16, 163, 127, .35));
}

.error-log {
  display: grid;
  gap: 10px;
}

.error-log p {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
}

.error-log b {
  color: var(--ink);
}

.error-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 56px;
}

.error-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 30px rgba(24, 38, 71, .08);
  color: var(--ink);
  font-weight: 800;
}

.error-links span {
  color: var(--blue);
  font-size: 13px;
}

.error-links a:hover {
  border-color: rgba(23, 107, 255, .32);
  transform: translateY(-2px);
}

.policy-hero {
  padding: 76px clamp(18px, 5vw, 72px) 42px;
  background:
    radial-gradient(circle at 12% 15%, rgba(23, 107, 255, .13), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.policy-hero h1 {
  max-width: 840px;
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 58px);
}

.policy-hero p:last-child {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}

.policy-content {
  max-width: 920px;
  padding: 56px clamp(18px, 5vw, 72px) 76px;
}

.policy-content h2 {
  margin: 30px 0 10px;
  font-size: 24px;
}

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

.policy-content a {
  color: var(--blue);
  font-weight: 700;
}

.policy-updated {
  margin-top: 34px;
  font-weight: 700;
}

.policy-footer-bottom {
  margin-top: 0;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 8px;
  color: #fff;
  background: #111827;
  box-shadow: var(--shadow);
  animation: toastIn .25s ease both;
}

.cookie-consent {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(223, 229, 238, .95);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(12px);
}

.cookie-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.cookie-consent a {
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.cookie-consent-btn {
  min-width: 132px;
}

.telegram-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 42;
  font-family: Montserrat, Arial, sans-serif;
}

.telegram-widget__tooltip {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: max-content;
  max-width: 220px;
  padding: 10px 13px;
  border: 1px solid rgba(23, 107, 255, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.telegram-widget__tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.telegram-widget__tooltip::after {
  position: absolute;
  right: 22px;
  bottom: -7px;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(23, 107, 255, .16);
  border-bottom: 1px solid rgba(23, 107, 255, .16);
  background: #fff;
  content: "";
  transform: rotate(45deg);
}

.telegram-widget__popup {
  position: absolute;
  right: 0;
  bottom: 82px;
  width: min(340px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(223, 229, 238, .96);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-strong);
  transform-origin: right bottom;
  animation: telegramPopupIn .22s ease both;
}

.telegram-widget__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.telegram-widget__avatar {
  position: relative;
  width: 46px;
  height: 46px;
}

.telegram-widget__avatar img {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, .78);
  border-radius: 8px;
  object-fit: cover;
}

.telegram-widget__avatar span {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #22c55e;
}

.telegram-widget__head strong {
  display: block;
  line-height: 1.2;
}

.telegram-widget__head p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 700;
}

.telegram-widget__close {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.telegram-widget__body {
  display: grid;
  gap: 10px;
  padding: 16px;
  background:
    radial-gradient(circle at 0 0, rgba(23, 107, 255, .08), transparent 34%),
    #f7f9fc;
}

.telegram-widget__body p {
  width: fit-content;
  max-width: 92%;
  margin: 0;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 8px 18px rgba(24, 38, 71, .06);
}

.telegram-widget__body p + p {
  margin-left: 18px;
}

.telegram-widget__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 16px 16px;
  min-height: 46px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.telegram-widget__button {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #2aabee, var(--blue));
  color: #fff;
  box-shadow: 0 16px 34px rgba(23, 107, 255, .34);
  cursor: pointer;
  animation: telegramFabIn .4s ease both;
}

.telegram-widget__icon,
.telegram-widget__x {
  position: relative;
  z-index: 2;
  transition: opacity .18s ease, transform .18s ease;
}

.telegram-widget__icon {
  fill: currentColor;
  transform: translateX(-1px);
}

.telegram-widget__x {
  position: absolute;
  font-size: 30px;
  line-height: 1;
  opacity: 0;
  transform: scale(.7) rotate(-90deg);
}

.telegram-widget.is-open .telegram-widget__icon {
  opacity: 0;
  transform: scale(.7) rotate(90deg);
}

.telegram-widget.is-open .telegram-widget__x {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.telegram-widget__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(42, 171, 238, .36);
  animation: telegramPulse 2.4s ease-out infinite;
}

.telegram-widget__badge {
  position: absolute;
  top: 6px;
  right: 7px;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #ef4444;
}

.reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: transform .65s ease;
}

.reveal.is-visible {
  transform: translateY(0);
}

.service-card.reveal:nth-child(2),
.case-card.reveal:nth-child(2),
.price-card.reveal:nth-child(2),
.industry-card.reveal:nth-child(2),
.trust-item.reveal:nth-child(2),
.proof-card.reveal:nth-child(2),
.pain article.reveal:nth-child(2) {
  transition-delay: .08s;
}

.service-card.reveal:nth-child(3),
.case-card.reveal:nth-child(3),
.price-card.reveal:nth-child(3),
.industry-card.reveal:nth-child(3),
.trust-item.reveal:nth-child(3),
.proof-card.reveal:nth-child(3),
.pain article.reveal:nth-child(3) {
  transition-delay: .16s;
}

.service-card.reveal:nth-child(4) { transition-delay: .04s; }
.service-card.reveal:nth-child(5) { transition-delay: .12s; }
.service-card.reveal:nth-child(6) { transition-delay: .2s; }
.industry-card.reveal:nth-child(4),
.proof-card.reveal:nth-child(4) { transition-delay: .24s; }

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPanelIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes dashboardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes progressGrow {
  from { width: 0; }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes telegramFabIn {
  from {
    opacity: 0;
    transform: scale(.55) rotate(-120deg);
  }
}

@keyframes telegramPulse {
  0% {
    opacity: .8;
    transform: scale(1);
  }
  80%, 100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

@keyframes telegramPopupIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.96);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .header {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav.is-open { display: flex; }

  .menu-btn {
    display: flex;
    position: static;
    z-index: 40;
    justify-self: end;
  }
  .header-phone { display: none; }

  .hero,
  .audit,
  .error-hero {
    grid-template-columns: 1fr;
  }

  .error-visual {
    min-height: 360px;
  }

  .error-links {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .pain-grid,
  .service-grid,
  .case-grid,
  .price-grid,
  .process-list,
  .industry-grid,
  .audience-grid,
  .launch-timeline,
  .integration-grid,
  .trust-strip,
  .proof-panel,
  .safety-panel,
  .calc-panel,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 70px 12px 16px;
  }

  h1 {
    font-size: 28px;
    line-height: 1.12;
  }

  .logo-text { font-size: 14px; }
  .logo-mark { width: 38px; height: 38px; }
  .menu-btn {
    display: flex;
    width: 38px;
    height: 38px;
    border-color: var(--blue);
    background: var(--blue);
  }
  .menu-btn span { background: #fff; }
  .hero { padding: 38px 16px 32px; }
  .hero-content,
  .hero-visual {
    width: 100%;
    max-width: 358px;
    justify-self: start;
  }

  .dashboard { max-width: 100%; }

  .section { padding: 56px 16px; }
  .hero-stats,
  .pain-grid,
  .service-grid,
  .case-grid,
  .price-grid,
  .process-list,
  .industry-grid,
  .audience-grid,
  .launch-timeline,
  .compare-grid,
  .integration-grid,
  .trust-strip,
  .proof-panel,
  .proof-grid,
  .safety-panel,
  .safety-list,
  .calc-panel,
  .calc-form,
  .final-cta-inner,
  .dash-grid,
  .footer,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }
  .trust-strip {
    gap: 12px;
    margin-top: 0;
    padding: 18px 16px 34px;
  }
  .trust-item {
    min-height: auto;
    padding: 20px;
  }
  .audience-card,
  .launch-timeline article,
  .compare-card {
    min-height: auto;
  }
  .industry-card { min-height: auto; }
  .industry-icon { margin-bottom: 22px; }
  .proof-panel { padding: 22px; }
  .safety-list article,
  .calc-form,
  .calc-result,
  .final-cta-inner {
    padding: 22px;
  }
  .integration-grid span { min-height: 74px; }
  .dash-card.wide { grid-column: auto; }
  .hero-actions .btn { width: 100%; }
  .hero-lead { font-size: 16px; }
  .footer-bottom {
    display: grid;
  }
  .cookie-consent {
    left: 16px;
    right: auto;
    width: calc(100vw - 32px);
    max-width: none;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }
  .cookie-consent-btn {
    width: 100%;
  }

  .telegram-widget {
    right: 16px;
    bottom: 16px;
  }

  .telegram-widget__button {
    width: 58px;
    height: 58px;
  }

  .telegram-widget__popup {
    right: -2px;
    bottom: 74px;
    width: calc(100vw - 32px);
  }

  .telegram-widget__tooltip {
    right: 0;
    bottom: 72px;
    max-width: calc(100vw - 96px);
  }

  .error-layout {
    width: min(100% - 32px, 520px);
    padding: 18px 0 26px;
  }

  .error-top {
    margin-bottom: 36px;
  }

  .error-top-link {
    display: none;
  }

  .error-copy h1 {
    font-size: 34px;
  }

  .error-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .error-actions .btn {
    width: 100%;
  }

  .error-visual {
    min-height: 300px;
  }

  .error-code {
    top: -8px;
    font-size: 96px;
  }

  .error-card {
    margin-top: 56px;
    padding: 14px;
  }

  .error-route {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .error-route i {
    width: 2px;
    height: 18px;
    margin: 0 auto;
  }

  .route-node {
    white-space: normal;
  }
}
