.top-strip {
  background: #eef4fa;
  border-bottom: 1px solid rgba(204, 217, 230, 0.86);
  color: var(--color-muted);
  font-size: var(--text-xs);
}

.top-strip__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.site-header.site-header {
  --header-container-left: max(calc(var(--gutter-desktop) / 2), calc((100% - var(--container)) / 2));
  --header-gradient-start: min(calc(var(--header-container-left) + 320px), 78vw);
  --header-gradient-blue: calc(var(--header-gradient-start) + 130px);
  --header-gradient-light: calc(var(--header-gradient-start) + 460px);
  position: relative;
  overflow: hidden;
  background: #060f1c;
  border-bottom: 1px solid rgba(216, 225, 235, 0.72);
  box-shadow: 0 10px 34px rgba(13, 30, 51, 0.08);
}

.site-header.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #060f1c 0, #060f1c var(--header-gradient-start), #123762 var(--header-gradient-blue), #edf4fa var(--header-gradient-light), #f8fbff 100%);
}

.site-header__inner {
  position: relative;
  z-index: 1;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.site-header__inner::before {
  content: none;
}

.site-header__inner > * {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  font-weight: 800;
  color: #fff;
  font-size: 18px;
  line-height: 1.05;
}

.brand img {
  width: auto;
  height: 48.6px;
  object-fit: contain;
  border-radius: var(--radius-ui);
  box-shadow: 0 14px 28px rgba(11, 24, 40, 0.16);
}

.brand > span {
  display: grid;
  gap: var(--space-1);
}

.brand__sub {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--text-sm);
  font-weight: 600;
  max-width: 260px;
  line-height: 1.15;
}

.header-facts {
  display: flex;
  gap: var(--space-3);
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.header-fact {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  white-space: nowrap;
  min-height: 48px;
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgba(195, 211, 226, 0.9);
  border-radius: var(--radius-md);
  background: var(--color-surface-soft);
  box-shadow: 0 8px 18px rgba(13, 30, 51, 0.04);
}

.header-fact__icon,
.card__icon,
.step__icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 800;
}

.nav-shell {
  background: linear-gradient(180deg, #10243a 0%, var(--color-dark) 100%);
  color: #fff;
  box-shadow: 0 16px 32px rgba(11, 24, 40, 0.12);
}

.nav-shell__inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.nav-toggle {
  display: none;
  min-height: var(--touch);
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(96, 165, 250, 0.36);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(30, 86, 145, 0.48), rgba(6, 15, 28, 0.82));
  color: #fff;
  padding: 0 16px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.nav-toggle::before {
  content: "\2630";
  font-size: 18px;
  line-height: 1;
}

.nav-toggle:hover {
  border-color: rgba(147, 197, 253, 0.62);
  background: linear-gradient(180deg, rgba(39, 107, 176, 0.58), rgba(8, 28, 50, 0.9));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-toggle:active {
  transform: translateY(1px);
  background: linear-gradient(180deg, rgba(18, 55, 98, 0.72), rgba(5, 13, 24, 0.94));
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(147, 197, 253, 0.72);
  outline-offset: 3px;
}

.site-nav {
  display: flex;
  align-items: stretch;
  gap: 2px;
}

.site-nav a {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: #e2ebf5;
  font-size: var(--text-sm);
  font-weight: 700;
  border-top: 3px solid transparent;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.site-nav a.is-active {
  background: var(--color-primary);
  border-top-color: #9bc7ff;
  color: #fff;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.16);
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0 var(--space-5-plus);
  font-weight: 800;
  line-height: 1.2;
  font-size: var(--text-sm);
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.button-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 16px 30px rgba(20, 107, 209, 0.26);
}

.button-primary:hover {
  background: var(--color-primary-2);
  box-shadow: 0 18px 34px rgba(20, 107, 209, 0.32);
  transform: translateY(-1px);
}

.button-secondary {
  background: var(--color-surface);
  border-color: var(--color-line);
  color: var(--color-dark);
  box-shadow: 0 10px 22px rgba(13, 30, 51, 0.06);
}

.button-secondary:hover {
  border-color: var(--color-line-strong);
  box-shadow: 0 14px 26px rgba(13, 30, 51, 0.09);
  transform: translateY(-1px);
}

.home-hero .button-secondary:hover {
  border-color: rgba(245, 155, 18, 0.68);
  box-shadow: 0 14px 28px rgba(245, 155, 18, 0.12);
}

.button-dark {
  background: var(--color-surface);
  color: var(--color-dark);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.button-dark:hover {
  background: var(--color-surface-soft);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.button-row-spaced {
  margin-top: var(--space-5);
}

.home-hero .hero-cta {
  display: grid;
  gap: 18px;
  width: min(100%, 520px);
}

.home-hero .button-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.92fr) minmax(220px, 1.08fr);
  gap: var(--space-3);
}

.home-hero .button-row .button {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-muted);
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.home-hero .eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(245, 155, 18, 0.14);
}

.hero-title {
  max-width: 700px;
  color: var(--color-dark);
  font-size: var(--text-hero);
  line-height: 1.02;
  font-weight: 900;
}

.hero-title span {
  color: var(--color-primary);
}

.product-name {
  display: inline;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.product-name .product-name__main {
  color: var(--color-primary);
}

.product-name .product-name__one {
  color: var(--color-accent);
}

.hero-title .hero-title__accent {
  display: inline-block;
  color: var(--color-accent);
}

.lead {
  max-width: 640px;
  color: var(--color-muted);
  font-size: var(--text-lg);
  line-height: 1.66;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  color: var(--color-soft);
  font-size: var(--text-sm);
  font-weight: 750;
  line-height: 1.45;
}

.trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-list span::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: 900;
}

.card,
.step,
.pricing-card,
.notice,
.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.card,
.step {
  padding: 28px 26px;
  min-height: 188px;
  box-shadow: 0 14px 34px rgba(13, 30, 51, 0.07);
}

.card h3,
.step h3 {
  margin-top: 18px;
  margin-bottom: var(--space-2);
  color: var(--color-dark);
  font-size: var(--text-lg);
  line-height: 1.25;
  font-weight: 800;
}

.card p,
.step p {
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.58;
}

.benefit-card {
  position: relative;
  min-height: 248px;
  padding: var(--space-6) var(--space-5) var(--space-5-plus);
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-surface-soft) 100%);
  border: 1px solid rgba(191, 210, 229, 0.92);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 42px rgba(13, 30, 51, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  background: linear-gradient(90deg, rgba(20, 107, 209, 0.86), rgba(123, 194, 255, 0.32));
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(146, 187, 228, 0.98);
  box-shadow: 0 24px 52px rgba(13, 30, 51, 0.13);
}

.benefit-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4-plus);
}

.benefit-card__icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary-soft);
  border: 1px solid rgba(176, 207, 239, 0.9);
  color: var(--color-primary);
  box-shadow: 0 12px 24px rgba(20, 107, 209, 0.1);
}

.benefit-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card__number {
  color: var(--color-soft);
  font-size: var(--text-xs);
  font-weight: 800;
}

.benefit-card h3 {
  margin: 0 0 var(--space-2);
  color: var(--color-dark);
  font-size: var(--text-lg);
  line-height: 1.22;
  font-weight: 800;
}

.benefit-card p {
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.section-heading {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.section-heading h2 {
  color: var(--color-dark);
  font-size: var(--text-2xl);
  line-height: 1.16;
  font-weight: 900;
}

.section-heading h2 span {
  color: var(--color-primary);
}

.section-heading p {
  max-width: 720px;
  color: var(--color-muted);
  line-height: 1.62;
}

.hero-visual {
  width: 100%;
  min-width: 0;
}

.hero-visual img {
  width: min(100%, 780px);
  margin: 0 auto;
  filter: drop-shadow(0 32px 70px rgba(13, 30, 51, 0.24));
}

.pricing-card {
  padding: var(--space-6);
}

.price {
  margin: var(--space-4) 0;
  color: var(--color-dark);
  font-size: var(--text-3xl);
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: var(--space-3);
  color: var(--color-muted);
}

.check-list li {
  list-style: none;
  padding-left: var(--space-5);
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-primary);
}

.form-card {
  padding: var(--space-6);
}

.field {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  color: var(--color-dark);
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  min-height: var(--touch);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: var(--space-3);
  color: var(--color-text);
  background: var(--color-surface);
}

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

.notice {
  padding: var(--space-5);
  color: var(--color-muted);
}

.notice strong {
  color: var(--color-dark);
}

.status-success {
  border-left: 4px solid var(--color-success);
}

.status-warning {
  border-left: 4px solid var(--color-warning);
}

.status-danger {
  border-left: 4px solid var(--color-danger);
}

.site-footer {
  flex-shrink: 0;
  background: var(--color-dark-2);
  color: #d9e6f6;
  padding: var(--space-6) 0 var(--space-5);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--space-5);
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.site-footer__brand h2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__brand h2 img {
  width: auto;
  height: 37px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.site-footer p,
.site-footer a {
  color: #c1d0e1;
  font-size: var(--text-sm);
  line-height: 1.5;
  transition: color 0.18s ease;
}

.site-footer__brand {
  max-width: 420px;
}

.site-footer__brand p {
  margin: 0;
}

.site-footer__brand p + p {
  margin-top: 10px;
}

.site-footer__bottom {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(193, 208, 225, 0.14);
  color: #9fb1c5;
  font-size: var(--text-sm);
}

.footer-links {
  display: grid;
  gap: var(--space-2);
}

.footer-links a:hover {
  color: #9fc4ff;
}

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

  .hero-title {
    font-size: var(--text-3xl);
  }
}

@media (max-width: 720px) {
  .top-strip__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-2) 0;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .nav-shell__inner {
    align-items: stretch;
    flex-direction: column;
    padding: var(--space-2) 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    width: 100%;
  }

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

  .site-nav a {
    min-height: var(--touch);
    border-top: 0;
    border-left: 3px solid transparent;
  }

  .site-nav a.is-active {
    border-left-color: #9fc4ff;
  }

  .nav-shell .button {
    width: 100%;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .home-hero .button-row {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}
