:root {
  --bg: #edf2f7;
  --surface: #ffffff;
  --surface-soft: #f6f9fc;
  --surface-strong: #0d1726;
  --ink: #0b1726;
  --muted: #4b6278;
  --line: #d7e0ea;
  --accent: #0f4c81;
  --accent-strong: #0a3b64;
  --accent-alt: #0c7c86;
  --accent-soft: #dfeaf5;
  --warm-soft: #fff5de;
  --ok: #0f766e;
  --danger: #b91c1c;
  --container: 1180px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 18px 36px rgba(7, 20, 37, 0.08);
  --shadow-md: 0 24px 60px rgba(7, 20, 37, 0.12);
  --focus: 0 0 0 3px rgba(15, 76, 129, 0.18);
  --font-sans: Arial, 'Helvetica Neue', Helvetica, 'Segoe UI', sans-serif;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 56px;
  --section-space: var(--space-8);
  --section-space-tight: var(--space-7);
  --section-space-compact: 36px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.68;
  background:
    radial-gradient(circle at 10% -12%, rgba(15, 76, 129, 0.12), transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(12, 124, 134, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fafc 0%, var(--bg) 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(11, 23, 38, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 23, 38, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.48), transparent 86%);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover {
  color: var(--accent-strong);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.08;
  text-wrap: balance;
}

h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
  text-wrap: pretty;
}

h3 {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.24;
  text-wrap: pretty;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  text-wrap: pretty;
}

ul,
ol {
  margin: 0;
  padding-left: 24px;
}

li {
  line-height: 1.66;
}

ul:not([class]),
ol:not([class]) {
  display: grid;
  gap: 12px;
}

ul:not([class]) > li + li,
ol:not([class]) > li + li {
  margin-top: 0;
}

.site-main {
  overflow: hidden;
}

.breadcrumb-bar {
  padding: 16px 0 0;
}

.breadcrumbs {
  display: inline-flex;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(11, 23, 38, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(7, 20, 37, 0.06);
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: #5d758a;
  font-size: 0.92rem;
  font-weight: 700;
}

.breadcrumbs__item a {
  color: #32506a;
}

.breadcrumbs__item [aria-current='page'] {
  color: var(--ink);
}

.breadcrumbs__separator {
  color: rgba(75, 98, 120, 0.56);
}

section[id] {
  scroll-margin-top: 120px;
}

.container {
  width: min(100% - 44px, var(--container));
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
}

.section-tight {
  padding: var(--section-space-tight) 0;
}

.section-compact {
  padding: var(--section-space-compact) 0;
}

.hero + .section,
.hero + .section-tight,
.hero + .section-compact {
  padding-top: var(--space-2);
}

.section + .section,
.section + .section-tight,
.section + .section-compact,
.section-tight + .section,
.section-tight + .section-tight,
.section-tight + .section-compact,
.section-compact + .section,
.section-compact + .section-tight,
.section-compact + .section-compact {
  padding-top: 0;
}

.section-head {
  display: grid;
  gap: var(--space-2);
  max-width: 780px;
  margin-bottom: var(--space-5);
}

.section-note {
  margin-top: var(--space-3);
}

.section-head > * {
  margin: 0;
}

.section-head--tight {
  margin-bottom: var(--space-3);
}

.contact-grid--spaced {
  margin-top: var(--space-4);
}

.note--spaced {
  margin-top: var(--space-3);
}

.small--spaced {
  margin-top: var(--space-3);
}

.cta-panel--spaced {
  margin-top: var(--space-4);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 14px 0 8px;
  background: linear-gradient(180deg, rgba(247, 250, 252, 0.92), rgba(247, 250, 252, 0.46) 78%, transparent);
  backdrop-filter: blur(14px);
  transition: padding 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  padding: 10px 0 6px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(250, 252, 255, 0.72) 78%, transparent);
}

.site-header .inner {
  position: relative;
  display: grid;
  width: min(100% - 44px, 1440px);
  max-width: 1440px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 18px;
  min-height: 80px;
  padding: 12px 18px;
  border: 1px solid rgba(160, 182, 201, 0.34);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 253, 0.94)),
    radial-gradient(circle at top left, rgba(15, 76, 129, 0.09), transparent 34%);
  box-shadow:
    0 18px 40px rgba(7, 20, 37, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  min-width: 0;
  white-space: nowrap;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.brand-mark {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 10px 22px rgba(8, 26, 42, 0.14);
}

.brand-name {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1.24rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
  margin: 0;
}

.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav li {
  display: flex;
  align-items: stretch;
}

.site-nav li + li {
  margin-top: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: #244058;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.site-nav a:hover {
  background: rgba(240, 246, 251, 0.92);
  border-color: rgba(170, 189, 206, 0.28);
  color: var(--ink);
}

.site-nav a.is-current,
.site-nav a[aria-current='page'] {
  color: var(--accent-strong);
  background: linear-gradient(180deg, rgba(235, 244, 251, 0.98), rgba(228, 239, 248, 0.94));
  border-color: rgba(15, 76, 129, 0.18);
  box-shadow: inset 0 0 0 1px rgba(15, 76, 129, 0.08);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(168, 187, 205, 0.34);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: #20384c;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.header-phone:hover {
  border-color: rgba(15, 76, 129, 0.24);
  background: rgba(255, 255, 255, 0.94);
}

.header-phone__value {
  color: #17324a;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
}

.site-header .btn {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.94rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(7, 20, 37, 0.06);
}

.menu-toggle__icon {
  display: grid;
  gap: 3px;
}

.menu-toggle__line {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #27405a;
}

.menu-toggle__text {
  margin-left: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 22px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #1361a4);
  box-shadow: 0 16px 28px rgba(15, 76, 129, 0.22);
}

.btn-primary:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
}

.btn-secondary {
  color: #5c3c06;
  background: linear-gradient(145deg, #fff8ea, #ffedc5);
  border: 1px solid #eed9ab;
}

.btn-ghost {
  color: #18344e;
  background: var(--surface);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: #f8fbfd;
}

.hero {
  position: relative;
  padding: 34px 0 24px;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 8%, rgba(15, 76, 129, 0.08), transparent 38%),
    radial-gradient(circle at 6% 90%, rgba(12, 124, 134, 0.08), transparent 34%);
}

.hero-grid {
  display: grid;
  gap: var(--space-5);
}

.hero-grid--split {
  grid-template-columns: minmax(0, 1.36fr) minmax(320px, 0.82fr);
  align-items: stretch;
  gap: 16px;
}

.hero-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  border-radius: 26px;
  padding: clamp(22px, 2.2vw, 30px);
  border: 1px solid rgba(203, 217, 228, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 252, 0.96));
  box-shadow: 0 24px 52px rgba(7, 20, 37, 0.1);
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 213, 118, 0.14), transparent 24%),
    radial-gradient(circle at 84% 90%, rgba(15, 76, 129, 0.1), transparent 28%);
}

.hero-card h1,
.hero-card h2 {
  max-width: 13ch;
  font-weight: 600;
}

.hero-card > * {
  margin-top: 0;
  margin-bottom: 0;
}

.hero-card--main {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-home .hero-card--main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.hero-copy {
  grid-area: copy;
  display: grid;
  gap: 12px;
  max-width: 700px;
}

.hero-home .hero-card--main h1 {
  max-width: none;
  font-size: clamp(2.05rem, 3vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-home .hero-card--main .hero-lead {
  max-width: 48ch;
}

.hero-lead {
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.58;
}

.hero-home .hero-cta-row {
  display: grid;
  gap: 10px;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.hero-actions .btn {
  width: auto;
  min-width: 180px;
}

.hero-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.hero-links-inline a {
  color: #35536b;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-links-inline a:hover {
  color: var(--accent-strong);
}

.hero-home .hero-strip {
  display: grid;
  gap: 0;
  max-width: 380px;
  padding: 10px 12px;
  border: 1px solid rgba(205, 217, 228, 0.8);
  border-radius: 18px;
  background: rgba(247, 250, 253, 0.88);
}

.microtext {
  color: #456076;
  font-size: 0.88rem;
  line-height: 1.52;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(246, 250, 253, 0.98), rgba(241, 247, 251, 0.96));
}

.hero-panel h2 {
  max-width: none;
  font-size: clamp(1.34rem, 1.6vw, 1.7rem);
  line-height: 1.1;
}

.hero-panel__intro {
  display: grid;
  gap: 8px;
}

.hero-panel__lead {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.54;
}

.hero-stack {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 8px;
}

.hero-stack li {
  display: grid;
  gap: 3px;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(11, 23, 38, 0.08);
}

.hero-stack li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-stack strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.hero-stack span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.48;
}

.thanks-panel {
  justify-content: flex-start;
}

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

.thanks-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(205, 217, 228, 0.92);
  background: rgba(255, 255, 255, 0.76);
}

.thanks-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 32px;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.11);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.thanks-step__body {
  display: grid;
  gap: 4px;
}

.thanks-step__body strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.thanks-step__body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.52;
}

.price-stack {
  display: grid;
  gap: 10px;
}

.price-line {
  display: grid;
  grid-template-columns: minmax(128px, 154px) minmax(0, 1fr);
  align-items: center;
  gap: 12px 18px;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(250, 252, 254, 0.9);
  border: 1px solid rgba(214, 225, 234, 0.92);
}

.price-line span {
  min-width: 0;
  color: #27405a;
  font-size: 0.9rem;
  font-weight: 700;
}

.price-line strong {
  min-width: 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.34;
  white-space: normal;
  overflow-wrap: anywhere;
}

.stat-grid {
  grid-area: stats;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.stat-item {
  min-height: 0;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(211, 222, 231, 0.92);
  background: rgba(248, 251, 253, 0.98);
}

.stat-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.12;
}

.stat-item span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.hero-form-panel {
  grid-area: form;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(200, 214, 225, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.hero-form-panel--aside .btn {
  width: 100%;
}

section.hero:not(.hero-home) {
  padding: 26px 0 20px;
}

section.hero:not(.hero-home) .hero-grid--split {
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  gap: 14px;
}

section.hero:not(.hero-home) .hero-card,
section.hero:not(.hero-home) .hero-panel {
  gap: 14px;
  padding: 20px;
}

section.hero:not(.hero-home) .hero-card h1,
section.hero:not(.hero-home) .hero-card h2 {
  max-width: none;
}

section.hero:not(.hero-home) .hero-card--main h1 {
  font-size: clamp(1.95rem, 2.9vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

section.hero:not(.hero-home) .hero-lead {
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.56;
}

section.hero:not(.hero-home) .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

section.hero:not(.hero-home) .hero-actions .btn {
  min-width: 178px;
}

section.hero:not(.hero-home) .hero-panel h2 {
  font-size: clamp(1.26rem, 1.5vw, 1.58rem);
  line-height: 1.12;
}

section.hero:not(.hero-home) .hero-panel__lead {
  font-size: 0.9rem;
  line-height: 1.52;
}

section.hero:not(.hero-home) .hero-stack {
  gap: 8px;
}

section.hero:not(.hero-home) .hero-stack li {
  gap: 3px;
  padding: 0 0 8px;
}

section.hero:not(.hero-home) .hero-stack strong {
  font-size: 0.92rem;
}

section.hero:not(.hero-home) .hero-stack span {
  font-size: 0.88rem;
  line-height: 1.48;
}

section.hero:not(.hero-home) .stat-grid {
  gap: 10px;
}

section.hero:not(.hero-home) .stat-item {
  padding: 12px;
}

section.hero:not(.hero-home) .stat-item strong {
  font-size: 1rem;
}

section.hero:not(.hero-home) .stat-item span {
  font-size: 0.82rem;
}

.hero-contact-note {
  color: #577086;
}

.hero-note {
  padding: 14px 16px;
  font-size: 0.94rem;
  line-height: 1.58;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--accent-alt);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.kicker::before {
  content: '';
  width: 30px;
  height: 2px;
  background: currentColor;
  opacity: 0.45;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(15, 76, 129, 0.7), rgba(12, 124, 134, 0.45));
}

.card > * {
  margin-top: 0;
  margin-bottom: 0;
}

.card:hover,
.faq-item:hover {
  transform: translateY(-2px);
  border-color: #bfd3e3;
  box-shadow: 0 22px 42px rgba(7, 20, 37, 0.11);
}

.label,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.label {
  margin-bottom: 0;
  background: var(--accent-soft);
  border: 1px solid #cddcef;
  color: #1d4b76;
}

.card ul {
  list-style: none;
  padding-left: 0;
}

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

.card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #4ed0da, var(--accent-alt));
  box-shadow: 0 0 0 4px rgba(12, 124, 134, 0.12);
}

.card .hero-stack li {
  padding-left: 0;
  color: inherit;
}

.card .hero-stack li::before {
  content: none;
  display: none;
}

.card ol,
.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.note {
  border-left: 4px solid var(--accent-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 18px;
  background: #ecf8fa;
  color: #2b4d63;
}

.solution-grid,
.trust-grid {
  align-items: stretch;
}

.card--dense {
  gap: 10px;
  padding: 22px 24px;
}

.solution-grid > .card,
.trust-grid > .card,
.packages .card {
  display: flex;
  flex-direction: column;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  gap: 14px;
}

.pricing-card__top,
.pricing-card__body,
.pricing-card__footer {
  display: grid;
  gap: 10px;
}

.pricing-card__body {
  align-content: start;
}

.pricing-card__list {
  margin: 0;
}

.pricing-card__footer {
  margin-top: auto;
}

.packages .price {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1.24;
}

.packages .timing {
  margin: 0;
  color: #426073;
  font-weight: 700;
}

.scenario-card {
  gap: 14px;
}

.scenario-card__rows {
  display: grid;
  gap: 10px;
}

.scenario-row {
  display: grid;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(247, 250, 253, 0.9);
  border: 1px solid rgba(214, 225, 234, 0.86);
}

.scenario-row p {
  margin: 0;
}

.scenario-row__label {
  color: #627b90;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-grid,
.case-benefits-grid {
  align-items: stretch;
}

.process-card {
  gap: 10px;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.11);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.faq-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-group-card {
  gap: 14px;
  align-content: start;
}

.faq-group-card__head,
.faq-group-card__items {
  display: grid;
}

.faq-group-card__head {
  gap: 8px;
}

.faq-group-card__head h2 {
  margin: 0;
  font-size: clamp(1.32rem, 1.6vw, 1.7rem);
  line-height: 1.12;
}

.faq-group-card__items {
  gap: 12px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.faq-item h3,
.faq-item h4 {
  margin-bottom: 0;
  font-size: 1.15rem;
}

.faq-item > * {
  margin-top: 0;
  margin-bottom: 0;
}

.not-found-card {
  max-width: 860px;
}

.not-found-links {
  margin-top: var(--space-3);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form--inline {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.field,
textarea.field,
select.field {
  width: 100%;
  min-height: 52px;
  border: 1px solid #c6d6e3;
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.field:hover,
textarea.field:hover,
select.field:hover {
  border-color: #a9bfd0;
}

.field:focus,
textarea.field:focus,
select.field:focus {
  border-color: var(--accent);
  box-shadow: var(--focus);
}

textarea.field {
  min-height: 132px;
  resize: vertical;
}

.check-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d0dde8;
  background: #fff;
  color: #324d63;
  font-size: 0.96rem;
  transition: border-color 0.16s ease, background 0.16s ease;
}

.check:hover {
  border-color: #acc3d3;
  background: #f8fbfd;
}

.check input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: clamp(24px, 3vw, 34px);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid #d8e2eb;
  background: linear-gradient(150deg, var(--warm-soft), #edf8fb 58%, #f6fbff);
  box-shadow: var(--shadow-md);
}

.cta-panel--contact {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: start;
  gap: 18px 22px;
}

.cta-panel__main,
.cta-panel__aside {
  display: grid;
  gap: 14px;
}

.thanks-shell {
  background: linear-gradient(150deg, #eef8fb, #f7fbff 56%, #fff7ea);
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thanks-actions .btn {
  width: auto;
  min-width: 180px;
}

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

.contact-card {
  display: grid;
  gap: 4px;
  min-height: 88px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(174, 191, 206, 0.34);
  background: rgba(255, 255, 255, 0.84);
  color: #18354d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.contact-card:hover {
  border-color: rgba(15, 76, 129, 0.2);
  background: rgba(255, 255, 255, 0.96);
}

.contact-card--wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.contact-card__label {
  color: #6b8297;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card__value {
  color: #18354d;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.38;
}

.contact-card__value a,
.contact-card a {
  color: inherit;
  text-decoration: none;
}

.contact-card__value a:hover,
.contact-card a:hover {
  color: var(--accent-strong);
}

.material-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.material-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(171, 189, 205, 0.3);
  background: rgba(255, 255, 255, 0.7);
  color: #244058;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.material-links a:hover {
  border-color: rgba(15, 76, 129, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.contact-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-checklist li {
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(176, 192, 206, 0.34);
  background: rgba(255, 255, 255, 0.74);
  color: #335068;
  font-size: 0.92rem;
  line-height: 1.42;
}

.contact-intro {
  max-width: 56ch;
}

.contact-grid p:last-child {
  margin-bottom: 0;
}

.form-result {
  margin: 0 0 12px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.92rem;
}

.form-result--ok {
  background: #e7f7f2;
  border: 1px solid #b9e8d8;
  color: var(--ok);
}

.form-result--error {
  background: #fff0f0;
  border: 1px solid #ffd3d3;
  color: var(--danger);
}

.case-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.case-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid #d3dfe9;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #2a455f;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  margin-top: 14px;
  padding: 0 0 28px;
  background: transparent;
}

.footer-shell {
  width: min(100% - 44px, 1440px);
  margin-inline: auto;
  display: grid;
  gap: 12px;
  padding: 14px 18px 16px;
  border: 1px solid rgba(155, 178, 197, 0.34);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.94)),
    radial-gradient(circle at top left, rgba(15, 76, 129, 0.08), transparent 38%);
  box-shadow:
    0 20px 44px rgba(7, 20, 37, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.footer-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 72px;
}

.footer-brand {
  min-width: 0;
  white-space: nowrap;
}

.footer-brand .brand-mark {
  width: 46px;
  height: 46px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.footer-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  display: flex;
  min-width: 0;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: #244058;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.footer-nav a:hover {
  background: rgba(240, 246, 251, 0.92);
  border-color: rgba(170, 189, 206, 0.28);
  color: var(--ink);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-cta .btn {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.footer-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(159, 181, 199, 0.24);
}

.footer-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-chip {
  display: grid;
  gap: 4px;
  min-width: 154px;
  padding: 10px 12px;
  border: 1px solid rgba(168, 187, 205, 0.34);
  border-radius: 16px;
  background: rgba(250, 252, 254, 0.88);
  color: #18354d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.footer-chip:hover {
  border-color: rgba(15, 76, 129, 0.2);
  background: rgba(255, 255, 255, 0.96);
}

.footer-chip__label {
  color: #6b8297;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-chip__value {
  color: #18354d;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.26;
}

.footer-docs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-doc-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(171, 189, 205, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #244058;
  font-size: 0.84rem;
  font-weight: 700;
}

.footer-doc-link:hover {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(15, 76, 129, 0.18);
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(159, 181, 199, 0.26);
}

.footer-legal {
  margin: 0;
  color: #60798e;
  font-size: 0.9rem;
  line-height: 1.5;
}

.small {
  font-size: 0.94rem;
  line-height: 1.62;
}

.mobile-quick-actions {
  display: none;
}

@media (max-width: 1360px) {
  .header-phone {
    display: none;
  }
}

@media (max-width: 1180px) {
  .site-header .inner {
    column-gap: 14px;
  }

  .site-nav a {
    padding-inline: 10px;
    font-size: 0.84rem;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 12px;
  }

  .footer-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .footer-nav ul {
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .hero-grid--split {
    grid-template-columns: 1fr;
  }

  section.hero:not(.hero-home) .hero-grid--split {
    grid-template-columns: 1fr;
  }

  .hero-card--main {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-board {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card--main h1 {
    max-width: 14ch;
  }

  .hero-panel h2 {
    max-width: none;
  }

  .section {
    padding: 52px 0;
  }

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

  .section-compact {
    padding: 28px 0;
  }

  .footer-meta {
    flex-direction: column;
  }

  .footer-docs {
    justify-content: flex-start;
  }

  .cta-panel--contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header .inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 78px;
  }

  .desktop-only {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    border: 1px solid rgba(168, 187, 205, 0.4);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 22px 38px rgba(7, 20, 37, 0.16);
    padding: 12px;
    margin-left: 0;
  }

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

  .site-nav ul {
    display: grid;
    gap: 8px;
    width: 100%;
  }

  .site-nav a {
    justify-content: flex-start;
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    text-align: left;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 16px;
    line-height: 1.72;
  }

  .site-main {
    padding-bottom: 96px;
  }

  .site-header {
    padding-top: 10px;
  }

  .site-header .inner {
    min-height: 74px;
    padding: 12px 14px;
    border-radius: 22px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 1.16rem;
  }

  .breadcrumb-bar {
    padding-top: 12px;
  }

  .breadcrumbs {
    width: 100%;
    border-radius: 18px;
  }

  .hero {
    padding: 28px 0 20px;
  }

  .hero-grid--split,
  .grid-2,
  .grid-3,
  .stat-grid,
  .lead-form--inline {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    gap: 10px;
  }

  .hero-card--main h1 {
    max-width: none;
    font-size: clamp(1.95rem, 9.8vw, 2.9rem);
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-links-inline {
    display: none;
  }

  .hero-strip {
    display: none;
  }

  .hero-form-panel {
    padding: 14px;
    border-radius: 16px;
  }

  .hero-panel {
    gap: 12px;
  }

  .hero-home .hero-panel {
    display: none;
  }

  section.hero:not(.hero-home) .hero-panel {
    display: none;
  }

  .page-slug-thanks section.hero .hero-panel {
    display: flex;
  }

  .hero-panel__lead,
  .hero-note,
  .hero-stack span,
  .microtext {
    font-size: 0.9rem;
  }

  .hero-panel__lead,
  .hero-stack span,
  .hero-form-panel:not(.hero-form-panel--aside) {
    display: none;
  }

  .hero .stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero .stat-item {
    padding: 10px 8px;
  }

  .hero .stat-item strong {
    font-size: 0.84rem;
  }

  .hero .stat-item span {
    font-size: 0.74rem;
    line-height: 1.32;
  }

  .hero-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-stack li {
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(208, 220, 230, 0.92);
    border-radius: 14px;
    background: rgba(248, 251, 253, 0.96);
  }

  .hero-stack strong {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .hero-form-panel--aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .hero-form-panel--aside .microtext {
    grid-column: 1 / -1;
    display: block;
    font-size: 0.84rem;
  }

  .hero-actions .btn,
  .lead-form--inline .btn,
  .mobile-quick-actions .btn {
    width: 100%;
  }

  .thanks-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .thanks-actions .btn {
    min-width: 0;
  }

  .card,
  .faq-item,
  .hero-card {
    padding: 20px;
  }

  .card--dense {
    padding: 18px 20px;
  }

  .cta-panel {
    padding: 20px;
  }

  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card,
  .scenario-card,
  .faq-group-card {
    gap: 12px;
  }

  .scenario-card__rows,
  .faq-group-card__items {
    gap: 10px;
  }

  .scenario-row {
    gap: 4px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
  }

  .step-badge {
    width: 38px;
    min-height: 28px;
    font-size: 0.78rem;
  }

  .contact-card-grid--home .contact-card--meta {
    display: none;
  }

  .contact-checklist {
    display: none;
  }

  .contact-card {
    min-height: 0;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .contact-card__value {
    font-size: 0.92rem;
  }

  .material-links {
    gap: 6px;
  }

  .material-links a {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .footer-shell {
    width: min(100% - 20px, 1440px);
    gap: 8px;
    padding: 12px 14px 12px;
    border-radius: 22px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    gap: 8px;
  }

  .footer-nav {
    display: none;
  }

  .footer-cta {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 8px;
  }

  .footer-meta {
    padding-top: 8px;
  }

  .footer-chip-list {
    display: none;
  }

  .footer-docs {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .footer-doc-link {
    min-height: 32px;
    padding: 0 9px;
    font-size: 0.75rem;
  }

  .site-footer {
    padding-bottom: 116px;
  }

  .footer-bottom {
    padding-top: 8px;
  }

  .footer-legal {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .mobile-quick-actions {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 16px;
    border: 1px solid rgba(11, 23, 38, 0.1);
    background: rgba(248, 251, 253, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 28px rgba(7, 20, 37, 0.14);
  }

  .mobile-quick-actions .btn {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.92rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 1.36rem;
  }

  .btn {
    min-height: 46px;
    font-size: 0.95rem;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .faq-board {
    gap: 14px;
  }
}
