:root {
  --color-primary: #1e5eff;
  --color-primary-hover: #174fdc;
  --color-primary-light: #e8f1ff;
  --color-deep: #071a3c;
  --color-deep-2: #0a2d73;
  --color-danger: #c8102e;

  --color-bg: #f5f8ff;
  --color-surface: #ffffff;
  --color-border: #cfe0ff;
  --color-border-soft: #dbe7fb;

  --color-text-primary: #0e224f;
  --color-text-secondary: #3f5f95;
  --color-text-muted: #64748b;
  --color-text-white: #ffffff;
  --color-success: #16a34a;

  --color-footer-bg: #0f172a;
  --color-footer-divider: #1e293b;
  --color-footer-text: #64748b;
  --color-footer-link: #94a3b8;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 18px 44px rgba(30, 94, 255, 0.11);

  --container: 1200px;
  --container-wide: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  padding-top: 80px;
  color: var(--color-text-primary);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  background: var(--color-bg);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
}

a {
  color: inherit;
}

a,
button {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease,
    transform 0.2s ease;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(30, 94, 255, 0.32);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
}

.container-wide {
  width: min(var(--container-wide), calc(100% - 64px));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section--white {
  background: #ffffff;
}

.section--light {
  background: #f8fbff;
}

.section--soft {
  background: #eef4ff;
}

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

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

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

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 42px;
}

.section-head--center {
  align-items: center;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  color: var(--color-primary);
  font-family: Manrope, Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: var(--color-primary-light);
}

.section-head h2 {
  max-width: 920px;
  font-family: Newsreader, Manrope, serif;
  font-size: clamp(34px, 3.8vw, 46px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.section-head p {
  max-width: 760px;
  color: var(--color-text-secondary);
  font-size: 18px;
  line-height: 1.58;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 140;
  border-bottom: 1px solid var(--color-border);
  background: rgba(247, 250, 255, 0.96);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}

.site-logo {
  color: #0b2a6b;
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 32px;
}

.site-nav a {
  color: #244a8f;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--color-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 15px 30px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--header {
  border-radius: 12px;
  padding: 12px 22px;
  color: var(--color-text-white);
  font-size: 14px;
  font-weight: 600;
  background: var(--color-primary);
  box-shadow: 0 8px 18px rgba(30, 94, 255, 0.22);
}

.btn--header:hover {
  background: var(--color-primary-hover);
}

.btn--primary {
  color: var(--color-text-white);
  background: var(--color-primary);
  box-shadow: 0 10px 24px rgba(30, 94, 255, 0.28);
}

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

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--color-text-white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.17);
}

.btn--light {
  color: var(--color-primary);
  background: var(--color-surface);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Hero */
.hero {
  padding: 76px 0 72px;
  background: linear-gradient(145deg, #071a3c 0%, #0a2d73 54%, #1e5eff 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 44px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  color: #ffffff;
  font-family: Newsreader, Manrope, serif;
  font-size: clamp(36px, 3.8vw, 52px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.hero__subtitle {
  max-width: 680px;
  color: #d7e6ff;
  font-size: 18px;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-pill);
  padding: 10px 15px;
  color: #1e3f77;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.9);
}

.hero__chips span {
  color: var(--color-success);
  font-weight: 700;
}

.hero-widget {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(110, 162, 255, 0.25);
  border-radius: 22px;
  padding: 22px;
  background: #0a2559;
  box-shadow: 0 20px 54px rgba(3, 20, 51, 0.32);
}

.hero-widget__head p {
  color: #cfe0ff;
  font-family: Manrope, Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.mini-offer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 16px;
  background: #16253d;
}

.mini-offer h3,
.mini-offer p,
.mini-offer small {
  color: #dde8ff;
}

.mini-offer h3 {
  font-family: Manrope, Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.mini-offer p {
  font-size: 13px;
}

.mini-offer small {
  font-size: 12px;
  line-height: 1.45;
}

.mini-offer__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.mini-offer__price {
  color: #ffffff;
  font-family: Manrope, Inter, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.mini-offer--active {
  border-color: var(--color-primary);
  border-width: 2px;
  background: #142a4d;
}

.mini-offer__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 5px 10px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  background: var(--color-primary);
}

/* TOC */
.toc-section {
  padding: 42px 0;
  background: #f3f8ff;
}

.toc-section h2 {
  margin-bottom: 18px;
  color: #0c255b;
  font-family: Newsreader, serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
}

.toc-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  list-style: none;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.toc-list a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 10px;
  padding: 10px;
  color: #1f3d74;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.toc-list a:hover {
  background: #edf4ff;
}

.toc-list span {
  color: #2d6bff;
  font-size: 13px;
  font-weight: 700;
}

/* Cards */
.card,
.step-card,
.income-card,
.compare-card,
.offer-card,
.objection-card,
.faq-item {
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.card,
.step-card,
.income-card,
.offer-card,
.compare-card,
.objection-card {
  padding: 26px;
}

.card,
.step-card,
.income-card,
.offer-card,
.compare-card,
.objection-card,
.faq-item {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover,
.step-card:hover,
.income-card:hover,
.offer-card:hover,
.compare-card:hover,
.objection-card:hover,
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.card h3,
.step-card h3,
.income-card h3,
.offer-card h3,
.compare-card h3,
.objection-card h3,
.callout-dark h3,
.note-wide h3 {
  font-family: Manrope, Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.32;
}

.card p,
.step-card p,
.income-card p,
.offer-card p,
.compare-card p,
.objection-card p,
.callout-dark p,
.note-wide p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card--soft {
  background: #fbfdff;
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 700;
  background: #eaf3ff;
}

/* Steps */
.steps-grid {
  gap: 20px;
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  font-weight: 800;
  background: #e7efff;
}

/* Income */
.income-grid {
  align-items: stretch;
}

.income-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.income-card__value {
  color: var(--color-primary);
  font-family: Manrope, Inter, sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.income-card__meta {
  color: var(--color-text-muted);
  font-size: 13px;
  text-transform: uppercase;
}

.income-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--color-text-secondary);
  font-size: 14px;
}

.income-card li + li {
  margin-top: 6px;
}

.note-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  border-radius: 16px;
  padding: 24px 30px;
  background: #eaf3ff;
}

.note-card span {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 700;
}

.note-card p {
  color: var(--color-text-primary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.56;
}

/* Advantages callout */
.callout-dark {
  margin-top: 20px;
  border-radius: 20px;
  padding: 32px;
  background: linear-gradient(90deg, #0f2847 0%, #1e3a5f 100%);
}

.callout-dark h3,
.callout-dark p {
  color: #ffffff;
}

.callout-dark p {
  margin-top: 8px;
  color: #cfdef8;
}

/* Why one brand */
.note-wide {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  margin-top: 20px;
  border: 1px solid #b6ccff;
  border-radius: 20px;
  padding: 32px 40px;
  background: #e8f1ff;
}

.note-wide__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  background: var(--color-primary);
}

.note-wide p {
  margin-top: 6px;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* Lists */
.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.list li + li {
  margin-top: 10px;
}

.list--check li::before,
.list--cross li::before {
  display: inline-block;
  margin-top: 1px;
  font-size: 13px;
  font-weight: 700;
}

.list--check li::before {
  content: "✓";
  color: var(--color-success);
}

.list--cross li::before {
  content: "✕";
  color: #ef4444;
}

/* Comparison section */
.compare-grid {
  align-items: stretch;
}

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

.compare-card__label {
  width: fit-content;
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  color: #1d3663;
  font-size: 12px;
  font-weight: 700;
  background: #edf4ff;
}

.compare-card--best {
  border: 2px solid #2d6bff;
  background: #f1f6ff;
  box-shadow: 0 10px 30px rgba(30, 94, 255, 0.16);
}

.compare-card__label--best {
  color: #ffffff;
  background: #2d6bff;
}

/* Flow + offers */
.flow-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.flow-row article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-border-soft);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  color: #1e3e74;
  font-size: 14px;
  font-weight: 600;
  background: #ffffff;
}

.flow-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-pill);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  background: var(--color-primary);
}

.offers-grid {
  margin-top: 8px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.offer-card__price {
  color: #1146a8;
  font-family: Manrope, Inter, sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.offer-card__meta {
  color: var(--color-text-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.offer-card--best {
  border: 2px solid #2d6bff;
  background: #f1f6ff;
}

.section-note {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

/* Objections */
.objections-wrap {
  max-width: 980px;
}

.objection-card {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* FAQ */
.faq-wrap {
  display: flex;
  flex-direction: column;
}

.faq-list {
  width: min(800px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 24px 28px;
  background: #ffffff;
}

.faq-item.is-open {
  border-color: #b9d8ff;
  box-shadow: 0 8px 24px rgba(30, 94, 255, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 14px;
  border: 0;
  padding: 0;
  color: var(--color-text-primary);
  font-family: Manrope, Inter, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.faq-chevron {
  color: var(--color-text-muted);
  font-size: 20px;
  line-height: 1;
}

.faq-answer {
  margin-top: 16px;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.62;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(165deg, #071a66 0%, #0a2896 55%, #1e5eff 100%);
}

.final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.final-cta h2 {
  max-width: 960px;
  color: #ffffff;
  font-family: Newsreader, serif;
  font-size: clamp(34px, 3.8vw, 46px);
  font-weight: 500;
  line-height: 1.12;
}

.final-cta p {
  max-width: 800px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.65;
}

.final-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.final-cta__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.final-cta__chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  color: #1e3f77;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.9);
}

.final-cta__chips span {
  color: var(--color-success);
}

/* Footer */
.site-footer { background: var(--color-footer-bg); }
.site-footer__info { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; padding: 48px 0 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-org { color: #fff; font-family: Manrope, sans-serif; font-size: 15px; font-weight: 700; margin: 0 0 6px; }
.footer-reg { color: var(--color-footer-text); font-size: 13px; margin: 0 0 8px; }
.footer-accr { color: var(--color-footer-text); font-size: 12px; line-height: 1.5; margin: 0 0 8px; max-width: 560px; }
.footer-desc { color: var(--color-footer-text); font-size: 13px; line-height: 1.6; margin: 0; max-width: 560px; }
.footer-contacts { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.footer-contacts a { color: var(--color-footer-text); font-size: 14px; text-decoration: none; }
.footer-contacts a:hover { color: #fff; }
.site-footer__nav { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 32px 20px; padding: 40px 0 44px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h3 { margin: 0 0 4px; color: #fff; font-family: Manrope, sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.footer-col a { color: var(--color-footer-text); font-size: 13px; line-height: 1.4; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bottom p { color: var(--color-footer-text); font-size: 13px; margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--color-footer-text); font-size: 13px; text-decoration: none; }
.footer-bottom-links a:hover { color: #fff; }

@media (max-width: 1200px) {
  .container,
  .container-wide {
    width: calc(100% - 48px);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-widget {
    max-width: 560px;
  }

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

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

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

@media (max-width: 980px) {
  body {
    padding-top: 76px;
  }

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

  .site-nav {
    gap: 20px;
  }

  .section {
    padding: 68px 0;
  }

  .grid--2,
  .flow-row,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .note-wide {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .note-wide__icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta__actions .btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .container,
  .container-wide {
    width: calc(100% - 28px);
  }

  .site-nav {
    display: none;
  }

  .btn {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
  }

  .btn--header {
    width: auto;
    padding: 10px 14px;
    font-size: 13px;
  }

  .hero {
    padding: 58px 0;
  }

  .hero__content {
    gap: 22px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-widget {
    padding: 18px;
  }

  .mini-offer {
    padding: 14px;
  }

  .mini-offer__price {
    font-size: 28px;
  }

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

  .section-head p,
  .hero__subtitle,
  .final-cta p,
  .section-note {
    font-size: 16px;
  }

  .grid--3 {
    grid-template-columns: 1fr;
  }

  .card,
  .step-card,
  .income-card,
  .compare-card,
  .offer-card,
  .objection-card,
  .faq-item {
    padding: 20px;
  }

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

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
