/* =========================
   TOKENS
   ========================= */
:root {
  --bg: #fffffe;
  --navy: #094067;
  --paragraph: #5f6c7b;
  --brand: #3da9fc;
  --brand-hover: #2d8de0;
  --highlight: #ef4565;
  --positive: #094067;
  --secondary: #90b4ce;
  --surface: #f0f9ff;
  --border: #e5e7eb;
  --green: #22c55e;
  --orange: #f59e0b;
  --gray-warn: #94a3b8;

  --shadow-card: 0 4px 12px rgba(9,64,103,0.06);
  --shadow-card-hover: 0 12px 28px rgba(9,64,103,0.12);
  --shadow-hero: 0 20px 40px rgba(9,64,103,0.15);
  --shadow-header: 0 2px 12px rgba(9,64,103,0.08);

  --container: 1200px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--paragraph);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--navy); margin: 0; line-height: 1.15; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
img { max-width: 100%; display: block; }

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

section { padding: 100px 0; }
@media (max-width: 768px) {
  section { padding: 60px 0; }
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Hero promises */
.transform-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 32px auto 36px;
}
.transform-step {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.transform-step img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  background: #fff;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 8px 24px rgba(9,64,103,0.10);
}
.transform-step figcaption {
  font-size: 14px;
  line-height: 1.35;
  color: var(--paragraph);
  font-weight: 500;
}
.transform-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.transform-pill-muted   { background: rgba(95,108,123,0.12); color: var(--paragraph); }
.transform-pill-brand   { background: rgba(61,169,252,0.15); color: var(--brand); }
.transform-pill-success { background: rgba(34,197,94,0.15);  color: #15803d; }
.transform-arrow {
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.transform-arrow svg {
  width: 48px;
  height: 24px;
}
@media (max-width: 720px) {
  .transform-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 24px auto 28px;
  }
  .transform-arrow svg { transform: rotate(90deg); width: 28px; height: 28px; }
  .transform-step img { max-width: 180px; }
}

/* Hero promises */
.hero-promises {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  text-align: left;
}
.hero-promises li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 15px;
  line-height: 1.45;
  color: var(--navy);
}
.promise-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.promise-check svg { width: 13px; height: 13px; }
.hero-closer {
  text-align: center;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--paragraph);
  max-width: 720px;
  margin: 0 auto 40px;
}
.hero-closer .em {
  color: var(--navy);
  font-weight: 700;
}
@media (max-width: 720px) {
  .hero-promises { grid-template-columns: 1fr; gap: 8px; }
  .hero-promises li { font-size: 14.5px; }
}

/* =========================
   BUTTONS
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(61,169,252,0.35);
}
.btn-primary:hover {
  background: var(--brand-hover);
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(61,169,252,0.45);
}
.btn-accent {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(61,169,252,0.35);
}
.btn-accent:hover {
  background: var(--brand-hover);
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(239,69,101,0.45);
}
.btn-ghost {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-sm { height: 44px; padding: 0 18px; font-size: 15px; }

/* =========================
   HEADER
   ========================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
  background: transparent;
}
.header.scrolled {
  background: rgba(255,255,254,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-header);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.footer .logo img { height: 44px; }
.nav {
  display: flex;
  gap: 32px;
  font-weight: 500;
  color: var(--navy);
  font-size: 15px;
}
.nav a { transition: color .2s; }
.nav a:hover { color: var(--brand); }
@media (max-width: 900px) { .nav { display: none; } }

/* =========================
   HERO
   ========================= */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(61,169,252,0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(239,69,101,0.05), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-text {
  max-width: 1080px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(36px, 5.6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.028em;
  line-height: 1.04;
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero h1 .em {
  color: var(--brand);
}
.hero .lead {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--paragraph);
  margin: 0 auto 44px;
  max-width: 780px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto 44px;
  max-width: 880px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 560px) {
  .hero-stats { grid-template-columns: 1fr; gap: 18px; }
}
.hero-stat .num {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat.positive .num { color: var(--brand); }
.hero-stat .lbl {
  font-size: 14px;
  color: var(--paragraph);
  line-height: 1.4;
}
.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 56px;
}
.hero-cta-note {
  font-size: 14px;
  color: var(--paragraph);
}

/* Trust strip */
.trust {
  margin: 0 auto 64px;
  max-width: 1000px;
  text-align: center;
}
.trust-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.trust-logo {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  text-decoration: none;
  transition: border-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.trust-logo:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61,169,252,0.15);
}
.trust-logo[href="#"] {
  cursor: default;
  pointer-events: none;
}
.trust-count {
  margin-top: 14px;
  font-size: 13px;
  color: var(--secondary);
  font-weight: 500;
}

/* Hero mock — Dashboard */
.sheet-wrap {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  perspective: 1600px;
  will-change: transform;
}
.sheet {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d0d7de;
  box-shadow: var(--shadow-hero);
  overflow: hidden;
  transform: perspective(1600px) rotateX(2deg);
  transform-origin: top center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #1f2937;
}
.sheet-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f6f8fa;
  border-bottom: 1px solid #d0d7de;
}
.sheet-titlebar .dots { display: flex; gap: 6px; }
.sheet-titlebar .dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.sheet-titlebar .dots span:nth-child(1) { background: #ff5f57; }
.sheet-titlebar .dots span:nth-child(2) { background: #febc2e; }
.sheet-titlebar .dots span:nth-child(3) { background: #28c840; }
.sheet-title {
  font-size: 13px;
  font-weight: 600;
  color: #24292f;
}
.sheet-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 14px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  font-size: 11px;
  color: #6b7280;
}
.sheet-toolbar .pill {
  padding: 3px 8px;
  background: #f1f5f9;
  border-radius: 4px;
  font-weight: 500;
}
.sheet table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.sheet thead th {
  background: #c8e6c9;
  color: #14532d;
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  border-right: 1px solid #d0d7de;
  font-size: 12px;
  white-space: nowrap;
}
.sheet thead th:first-child {
  background: #fff7c4;
  color: #713f12;
  width: 36px;
  text-align: center;
}
.sheet tbody td {
  padding: 11px 14px;
  border-right: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  white-space: nowrap;
}
.sheet tbody tr:nth-child(odd) td { background: #fafafa; }
.sheet tbody td.row-num {
  background: #f6f8fa !important;
  text-align: center;
  color: #6b7280;
  font-weight: 600;
  width: 36px;
}
.sheet .ok { color: var(--green); font-weight: 700; }
.sheet .bad { color: var(--highlight); font-weight: 700; }
.sheet .warn {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(245,158,11,0.15);
  color: #b45309;
  border-radius: 4px;
  font-weight: 600;
  font-size: 11px;
}
.sheet .kpi-high { color: var(--green); font-weight: 700; }
.sheet .kpi-mid { color: var(--orange); font-weight: 700; }
.sheet .kpi-low { color: var(--highlight); font-weight: 700; }
.sheet .tag-high { background: rgba(34,197,94,0.12); color: #15803d; padding: 2px 8px; border-radius: 4px; font-weight: 600; font-size: 11px; }
.sheet .tag-mid { background: rgba(245,158,11,0.15); color: #b45309; padding: 2px 8px; border-radius: 4px; font-weight: 600; font-size: 11px; }
.sheet .tag-low { background: rgba(239,69,101,0.12); color: #be123c; padding: 2px 8px; border-radius: 4px; font-weight: 600; font-size: 11px; }
.sheet-tabs {
  display: flex;
  gap: 2px;
  padding: 6px 10px;
  background: #f6f8fa;
  border-top: 1px solid #d0d7de;
  font-size: 11px;
}
.sheet-tabs .tab {
  padding: 5px 12px;
  background: #fff;
  border-radius: 4px 4px 0 0;
  font-weight: 600;
  color: #14532d;
  border-top: 2px solid var(--green);
}
.sheet-tabs .tab.muted { background: transparent; color: #6b7280; border-top-color: transparent; font-weight: 500; }

/* =========================
   PAIN
   ========================= */
.pain {
  background: var(--surface);
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-head .sub {
  font-size: 18px;
  color: var(--paragraph);
  max-width: 680px;
  margin: 0 auto;
}
.pain-old-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
}
.pain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: var(--shadow-card);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.pain-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}
.pain-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.pain-card p { font-size: 16px; line-height: 1.6; }

.closer {
  text-align: center;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  max-width: 760px;
  margin: 0 auto;
}
.closer .em { color: var(--brand); }

/* =========================
   CASE
   ========================= */
.case .badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(61,169,252,0.10);
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
@media (max-width: 900px) { .case-stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .case-stats { grid-template-columns: 1fr; } }
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--brand);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}
.stat-card.negative { border-top-color: var(--highlight); }
.stat-card.negative .stat-num { color: var(--highlight); }
.stat-num {
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.stat-num .arrow { color: var(--secondary); margin: 0 6px; font-weight: 600; }
.stat-num .from { color: var(--secondary); }
.stat-label { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.stat-sub { font-size: 13px; color: var(--paragraph); }

/* Quote */
.quote {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: #fff;
  position: relative;
  margin-bottom: 64px;
}
.quote::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: 28px;
  font-size: 180px;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}
.quote-text {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.6;
  color: #fff;
  font-weight: 500;
  margin-bottom: 28px;
  position: relative;
  padding-left: 12px;
}
.quote-author { display: flex; align-items: center; gap: 16px; padding-left: 12px; }
.quote-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-hover));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 20px;
}
.quote-name { font-weight: 700; color: #fff; font-size: 17px; }
.quote-role { font-size: 14px; color: var(--secondary); margin-top: 2px; }
@media (max-width: 600px) {
  .quote { padding: 64px 28px 40px; }
  .quote::before { font-size: 120px; left: 16px; }
}

/* Calculator */
.calc {
  background: #fff;
  border: 2px solid var(--brand);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 12px 32px rgba(61,169,252,0.12);
}
.calc h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.calc-sub {
  font-size: 16px;
  color: var(--paragraph);
  margin-bottom: 28px;
}
.calc-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 768px) { .calc-fields { grid-template-columns: 1fr; } }
.calc-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.calc-field input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  font-family: inherit;
  transition: border-color .2s;
  background: var(--surface);
}
.calc-field input:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
}
.calc-result {
  margin-top: 28px;
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius-md);
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}
.calc-result.show { display: block; }
.calc-result.in { opacity: 1; transform: translateY(0); }
.calc-result-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(144,180,206,0.3);
  gap: 16px;
  flex-wrap: wrap;
}
.calc-row:last-of-type { border-bottom: 0; }
.calc-row .lbl { font-size: 16px; color: var(--navy); font-weight: 600; }
.calc-row .val {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.calc-row .val.accent { color: var(--brand); }
.calc-row .val.navy { color: var(--navy); }
.calc-note {
  font-size: 14px;
  color: var(--paragraph);
  font-style: italic;
  margin: 16px 0 24px;
}

/* =========================
   HOW IT WORKS
   ========================= */
.how { background: var(--surface); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
  position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.step-num {
  position: absolute;
  top: -20px;
  left: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(61,169,252,0.4);
}
.step-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  margin: 16px 0 18px;
}
.step-icon svg { width: 28px; height: 28px; }
.step h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.step p { font-size: 15px; line-height: 1.55; }
.step-arrow {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 24px;
  pointer-events: none;
}
@media (max-width: 900px) { .step-arrow { display: none; } }

.how-callout {
  text-align: center;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 64px;
  letter-spacing: -0.01em;
}
.how-callout .em { color: var(--brand); }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 16px;
  transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.feature-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(61,169,252,0.12);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.feature-check svg { width: 16px; height: 16px; }
.feature h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.feature p { font-size: 14px; line-height: 1.55; color: var(--paragraph); }

/* =========================
   COMPARE
   ========================= */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 64px;
  font-size: 14px;
}
.compare-table thead th {
  padding: 18px 14px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--paragraph);
  background: #fafbfc;
  border-bottom: 2px solid var(--border);
  vertical-align: bottom;
}
.compare-table thead th:first-child {
  text-align: left;
  background: transparent;
  border-bottom: 2px solid var(--border);
}
.compare-table thead th.us {
  background: var(--surface);
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  border-bottom: 2px solid var(--brand);
  border-left: 4px solid var(--brand);
  position: relative;
}
.compare-table thead th.us::before {
  content: 'РЕКОМЕНДОВАНО';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--brand);
  font-weight: 800;
}
.compare-table tbody td {
  padding: 16px 14px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--paragraph);
  vertical-align: middle;
}
.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}
.compare-table tbody td.us {
  background: var(--surface);
  border-left: 4px solid var(--brand);
  color: var(--navy);
  font-weight: 600;
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.cmp-y { color: var(--green); font-weight: 700; }
.cmp-w { color: var(--orange); font-weight: 700; }
.cmp-n { color: var(--gray-warn); font-weight: 700; }

/* mobile cards */
.compare-mobile { display: none; }
@media (max-width: 768px) {
  .compare-table { display: none; }
  .compare-mobile {
    display: block;
    margin-bottom: 48px;
  }
  .cmp-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 16px;
    padding-bottom: 4px;
  }
  .cmp-tab {
    flex-shrink: 0;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--paragraph);
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
  }
  .cmp-tab.active {
    background: var(--surface);
    border-color: var(--brand);
    color: var(--navy);
    border-left: 4px solid var(--brand);
  }
  .cmp-card {
    display: none;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
  }
  .cmp-card.active { display: block; }
  .cmp-card.us { border: 2px solid var(--brand); background: var(--surface); }
  .cmp-row {
    display: flex; justify-content: space-between; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid var(--border);
    font-size: 14px;
  }
  .cmp-row:last-child { border-bottom: 0; }
  .cmp-row .k { color: var(--paragraph); }
  .cmp-row .v { font-weight: 600; color: var(--navy); text-align: right; }
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillars-6 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1100px) { .pillars-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } .pillars-6 { grid-template-columns: 1fr; } }
.pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform .25s, box-shadow .25s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.pillar-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.pillar h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.pillar p { font-size: 14.5px; line-height: 1.55; color: var(--paragraph); }
.pillars-6 .pillar { padding: 24px 22px; }
.pillars-6 .pillar h3 { font-size: 13px; }
.pillars-6 .pillar p { font-size: 14px; }

/* =========================
   PRICING
   ========================= */
.pricing { background: var(--surface); }
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 1100px) { .plans { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .plans { grid-template-columns: 1fr; } }
.plan {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.plan.featured {
  border: 2px solid var(--brand);
  box-shadow: 0 16px 40px rgba(61,169,252,0.18);
}
.plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.plan-tag { font-size: 14px; color: var(--paragraph); margin-bottom: 24px; min-height: 42px; }
.plan-divider { height: 1px; background: var(--border); margin: 0 -28px 24px; }
.plan-price-rate {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.plan-price-min {
  font-size: 14px;
  color: var(--paragraph);
  margin-bottom: 24px;
}
.plan-feats {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14px;
  color: var(--navy);
  flex-grow: 1;
}
.plan-feats li {
  display: flex; gap: 10px; align-items: flex-start;
  line-height: 1.4;
}
.plan-feats li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 800;
  flex-shrink: 0;
}
.plan-feats li.heading {
  font-weight: 700;
  color: var(--paragraph);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plan-feats li.heading::before { content: ''; }
.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  border: 1.5px solid var(--brand);
  transition: all .2s;
  box-sizing: border-box;
}
.plan-cta:hover { background: var(--brand); color: #fff; }
.plan.featured .plan-cta { background: var(--brand); color: #fff; }
.plan.featured .plan-cta:hover { background: var(--brand-hover); }

.individual {
  background: linear-gradient(90deg, var(--navy), #0a4d7a);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.individual-icon { font-size: 40px; }
.individual-text { flex-grow: 1; }
.individual h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.individual p { color: rgba(255,255,255,0.85); font-size: 16px; }
.individual .btn {
  background: #fff;
  color: var(--navy);
  flex-shrink: 0;
}
.individual .btn:hover { background: var(--surface); }
@media (max-width: 768px) {
  .individual { flex-direction: column; align-items: flex-start; }
}

.extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
@media (max-width: 768px) { .extras { grid-template-columns: 1fr; } }
.extra {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.extra-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.extra-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.extra-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.extra p { font-size: 15px; line-height: 1.55; }

.anchor-quote {
  text-align: center;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  letter-spacing: -0.015em;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}
.anchor-quote::before, .anchor-quote::after { content: '«'; color: var(--brand); }
.anchor-quote::after { content: '»'; }

/* === pricing structure overrides === */
.plan { padding: 28px 24px; min-height: 0; }
.plan-volume {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 4px;
}
.plan-volume {
  font-size: clamp(28px, 2.6vw, 34px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.plan-volume-unit {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.plan-tag {
  font-size: 14px;
  color: var(--paragraph);
  margin-bottom: 20px;
  min-height: 38px;
  line-height: 1.45;
}
.plan-divider { margin: 0 -24px 22px; }
.plan-price-rate {
  font-size: clamp(34px, 3.6vw, 44px);
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  line-height: 1;
}
.plan-price-rate--text {
  font-size: clamp(20px, 2vw, 24px);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.plan-price-unit {
  font-size: 0.45em;
  font-weight: 700;
  color: var(--paragraph);
  letter-spacing: 0;
  margin-left: 4px;
}
.plan { display: flex; flex-direction: column; }
.plan .plan-cta { margin-top: auto; }

.plans-includes {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
}
.plans-includes-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}
.plans-includes-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.plans-includes-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--navy);
}
.plans-includes-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3,8.5 6.5,12 13,5'/></svg>");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 700px) {
  .plans-includes { padding: 24px; }
  .plans-includes-list { grid-template-columns: 1fr; }
}

/* hide legacy .plan-feats if it ever appears */
.plan-feats { display: none; }

/* =========================
   FAQ
   ========================= */
.faq-group { margin-bottom: 40px; }
.faq-group-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}
.faq-chev {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  transition: transform .3s ease;
}
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-a-inner {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--paragraph);
  max-width: 880px;
}

/* Final CTA */
.final-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  margin-top: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(239,69,101,0.18), transparent 70%);
}
.final-cta h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
}
.final-cta-sub {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}
.final-cta-actions {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
}
.btn-lg-tg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 40px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.005em;
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(61,169,252,0.45);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-lg-tg:hover {
  background: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(61,169,252,0.55);
}
.final-cta-disclaimer {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 460px;
}
.final-form-OLD {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  text-align: left;
}
.final-form input[type="text"], .final-form input[type="tel"] {
  height: 56px;
  padding: 0 18px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  color: #fff;
  transition: border-color .2s, background .2s;
}
.final-form input::placeholder { color: rgba(255,255,255,0.5); }
.final-form input:focus {
  outline: none;
  border-color: var(--brand);
  background: rgba(255,255,255,0.1);
}
.final-form .check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  padding: 4px 0;
}
.final-form input[type="checkbox"] {
  margin-top: 3px;
  width: 16px; height: 16px;
  accent-color: var(--brand);
}
.final-form .btn {
  width: 100%;
  margin-top: 6px;
  height: 60px;
  font-size: 17px;
}
.alt-contacts {
  margin-top: 32px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  position: relative;
  line-height: 1.8;
}
.alt-contacts a { color: var(--brand); font-weight: 600; }
.alt-contacts a:hover { color: #fff; }

@media (max-width: 600px) {
  .final-cta { padding: 56px 24px; margin-top: 56px; }
}

/* === Contact tabs === */
.cta-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.cta-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.25);
  background: transparent;
  color: rgba(255,255,255,0.65);
  transition: all .2s;
  font-family: inherit;
}
.cta-tab:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.cta-tab.active { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }
.cta-panel { display: none; }
.cta-panel.active { display: block; }

.cta-form { max-width: 560px; margin: 0 auto; }
.cta-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 560px) { .cta-form-fields { grid-template-columns: 1fr; } }
.cta-form-fields .full { grid-column: 1 / -1; }
.cta-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.cta-field input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  transition: border-color .2s, background .2s;
  box-sizing: border-box;
}
.cta-field input::placeholder { color: rgba(255,255,255,0.35); }
.cta-field input:focus { outline: none; border-color: var(--brand); background: rgba(255,255,255,0.12); }
.cta-form-submit {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, transform .15s;
  margin-top: 4px;
}
.cta-form-submit:hover { background: var(--brand-hover); transform: scale(1.01); }
.cta-form-note { font-size: 13px; color: rgba(255,255,255,0.5); text-align: center; margin-top: 12px; }
.cta-success { display: none; text-align: center; padding: 32px 24px; }
.cta-success-icon { font-size: 48px; margin-bottom: 16px; }
.cta-success h3 { color: #fff; font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.cta-success p { color: rgba(255,255,255,0.7); font-size: 16px; }


.faq-a-inner p { margin: 0 0 12px; line-height: 1.55; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner .faq-list { margin: 0 0 12px; padding-left: 0; list-style: none; }
.faq-a-inner .faq-list li { padding-left: 22px; position: relative; margin-bottom: 6px; line-height: 1.5; }
.faq-a-inner .faq-list li::before { content: ''; position: absolute; left: 6px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.faq-a-inner strong { font-weight: 700; color: var(--navy); }

/* =========================
   AUDIENCE
   ========================= */
.audience { background: var(--bg); }
.aud-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: 48px;
}
.aud-head, .aud-body {
  padding: 28px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.aud-head {
  border-bottom: none;
  cursor: default;
  transition: background .2s ease, box-shadow .15s ease;
}
.aud-head:hover {
  background: var(--surface);
  box-shadow: inset 0 0 0 2px var(--brand);
}
.aud-head:hover .aud-emoji { transform: scale(1.15); transition: transform .2s ease; }
.aud-emoji { transition: transform .2s ease; }
.aud-table > *:nth-child(4n) { border-right: 0; }
@media (max-width: 900px) {
  .aud-table { grid-template-columns: 1fr 1fr; }
  .aud-table > *:nth-child(4n) { border-right: 1px solid var(--border); }
  .aud-table > *:nth-child(2n) { border-right: 0; }
}
@media (max-width: 560px) {
  .aud-table { grid-template-columns: 1fr; }
  .aud-table > * { border-right: 0 !important; border-bottom: 1px solid var(--border); }
  .aud-table > *:last-child { border-bottom: 0; }
  .aud-head { padding: 24px; }
}

.aud-emoji {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 16px;
}
.aud-name {
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.aud-tag {
  font-size: 14px;
  color: var(--paragraph);
  font-style: italic;
  line-height: 1.5;
}
.aud-microlbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.aud-quotes {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aud-quotes li {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.5;
}

.aud-footer {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: var(--paragraph);
}
.aud-footer-icon {
  display: inline-block;
  margin-right: 6px;
  font-size: 18px;
}
.aud-footer-link {
  color: var(--brand);
  font-weight: 700;
  border-bottom: 1.5px solid var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.aud-footer-link:hover {
  color: var(--brand-hover);
  border-bottom-color: var(--brand-hover);
}

/* =========================
   FOOTER
   ========================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand .logo { color: #fff; margin-bottom: 16px; font-size: 24px; }
.footer-brand p { line-height: 1.6; max-width: 320px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* tweak: hide pain icon on very small screens */
@media (max-width: 360px) {
  .pain-card { padding: 28px; }
}

/* === Tilda preview override protection ===
   Tilda's default theme paints links and buttons in coral; force our palette. */
.header .nav a { color: var(--navy) !important; }
.header .nav a:hover { color: var(--brand) !important; }
.logo, .logo a { color: var(--navy) !important; }
.footer .logo { color: #fff !important; }
.btn-primary { background: var(--brand) !important; color: #fff !important; }
.btn-primary:hover { background: var(--brand-hover) !important; color: #fff !important; }
.btn-accent { background: var(--brand) !important; color: #fff !important; }
.btn-accent:hover { background: var(--brand-hover) !important; color: #fff !important; }
.btn-lg-tg { background: var(--brand) !important; color: #fff !important; }
.btn-lg-tg:hover { background: var(--brand-hover) !important; color: #fff !important; }
.btn-ghost { background: #fff !important; color: var(--navy) !important; }
a.plan-cta { color: var(--navy) !important; text-decoration: none !important; }
a.plan-cta:hover { background: var(--brand) !important; color: #fff !important; }
.plan.featured a.plan-cta { background: var(--brand) !important; color: #fff !important; }
.plan.featured a.plan-cta:hover { background: var(--brand-hover) !important; color: #fff !important; }
.individual .btn { background: #fff !important; color: var(--navy) !important; }
.individual .btn:hover { background: var(--surface) !important; }
.trust-logo { color: var(--navy) !important; text-decoration: none !important; }
.trust-logo:hover { color: var(--brand) !important; }
.aud-footer-link { color: var(--brand) !important; }
.aud-footer-link:hover { color: var(--brand-hover) !important; }
.alt-contacts a { color: var(--brand) !important; }
.alt-contacts a:hover { color: #fff !important; }
.footer-col a { color: rgba(255,255,255,0.7) !important; text-decoration: none !important; }
.footer-col a:hover { color: #fff !important; }
.faq-q { color: var(--navy) !important; }
.faq-chev { color: var(--brand) !important; }

/* =========================
   PAIN — 21 pains in 4 groups
   ========================= */
.pain-groups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 1100px) { .pain-groups { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 600px)  { .pain-groups { grid-template-columns: 1fr; } }
.pain-group {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-card);
}
.pain-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.pain-group-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.pain-group-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--secondary);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.pain-group.owner     { border-top: 3px solid var(--navy); }
.pain-group.manager   { border-top: 3px solid var(--brand); }
.pain-group.admin     { border-top: 3px solid #f59e0b; }
.pain-group.industry  { border-top: 3px solid var(--secondary); }
.pain-group.owner    .pain-group-tag { color: var(--navy); }
.pain-group.manager  .pain-group-tag { color: var(--brand); }
.pain-group.admin    .pain-group-tag { color: #f59e0b; }
.pain-group.industry .pain-group-tag { color: var(--secondary); }
.pain-group-tag {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pain-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pain-item {
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: flex-start;
}
.pain-item:last-child { border-bottom: 0; }
.pain-icon-mini {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.pain-group.owner    .pain-icon-mini { background: rgba(0,67,114,0.08); }
.pain-group.manager  .pain-icon-mini { background: rgba(61,169,252,0.12); }
.pain-group.admin    .pain-icon-mini { background: rgba(245,158,11,0.14); }
.pain-group.industry .pain-icon-mini { background: rgba(144,180,206,0.18); }
.pain-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--paragraph);
}
.pain-text strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 14px;
  letter-spacing: -0.005em;
}

/* =========================
   BLOG
   ========================= */
.blog { background: var(--surface); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .blog-grid { grid-template-columns: 1fr; } }

/* РЕДАКТИРОВАНИЕ: замени href и данные в каждой .blog-card */
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: var(--surface);
}
.blog-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: linear-gradient(135deg, var(--surface), #e8f4fd);
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
}
.blog-card-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}
.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.blog-card-desc {
  font-size: 14px;
  color: var(--paragraph);
  line-height: 1.55;
  flex-grow: 1;
}
.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  margin-top: 4px;
}
.blog-card-cta svg { width: 14px; height: 14px; }
.blog-cta-row {
  text-align: center;
}


/* ── DEMO MODAL ─────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,20,.65);
  backdrop-filter: blur(4px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal-box .cta-tabs { justify-content: flex-start; margin-bottom: 24px; }
.modal-box .cta-tab {
  color: #555;
  border-color: #ddd;
  background: #f9f9f9;
  font-size: 14px;
  height: 42px;
  padding: 0 18px;
}
.modal-box .cta-tab:hover { border-color: var(--brand); color: var(--brand); background: #fff; }
.modal-box .cta-tab.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.modal-box .cta-field label { color: #444; }
.modal-box .cta-field input {
  background: #f5f6f8;
  border-color: #d1d5db;
  color: #111;
}
.modal-box .cta-field input::placeholder { color: #9ca3af; }
.modal-box .cta-field input:focus { background: #fff; border-color: var(--brand); }
.modal-box .cta-form-note { color: #888; }
.modal-box .cta-success h3 { color: #111; }
.modal-box .cta-success p { color: #555; }
.modal-box .alt-contacts { color: #666; }
.modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px 36px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
  animation: modalIn .22s ease;
}
@keyframes modalIn {
  from { opacity:0; transform:translateY(12px) scale(.97); }
  to   { opacity:1; transform:none; }
}
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none; border: none;
  font-size: 24px; line-height:1;
  color: #999; cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.modal-close:hover { background:#f3f4f6; color:#111; }
.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}
.modal-sub {
  font-size: .9rem;
  color: var(--muted);
  margin: 0 0 22px;
}

.cta-field input.error { border-color: #ef4444 !important; background: #fff5f5 !important; }
.modal-box .cta-field input.error { border-color: #ef4444 !important; background: #fff5f5 !important; }
.field-error { display: none; font-size: 12px; color: #ef4444; margin-top: 5px; font-weight: 500; }
.field-error.visible { display: block; }