:root {
  --accent: #eaf3ff;
  --accent-orange: #f59e0b;
  --bg: #f7f9fc;
  --bg-white: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --primary: #0055cc;
  --primary-dark: #003da5;
  --primary-light: #d6e6ff;
  --secondary: #059669;
  --secondary-light: #d1fae5;
  --vsk-bright-blue: #0091ff;
  --vsk-bright-blue-light: #e6f4ff;
  --vsk-pink: #ff2d87;
  --vsk-pink-light: #fff0f6;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-white: #ffffff;
  --surface-alt: #f0f5fa;

  --shadow-soft: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-card: 0 6px 18px rgba(15, 23, 42, 0.08);
  --shadow-primary: 0 10px 24px rgba(37, 99, 235, 0.2);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  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(37, 99, 235, 0.3);
  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: var(--bg-white);
}

.section--soft {
  background: var(--bg);
}

.section--soft-gradient {
  background: linear-gradient(180deg, #f5f9ff 0%, #fafcff 100%);
}

.section--mist {
  background: #fafbfe;
}

.section--faq {
  background: var(--surface-alt);
}

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

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

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.site-logo {
  font-family: "Nunito Sans", Inter, sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--primary-dark);
  text-decoration: none;
}

.site-partner-badge {
  margin: 0;
  border-radius: 100px;
  padding: 4px 12px;
  color: var(--vsk-pink);
  font-size: 11px;
  font-weight: 600;
  background: var(--vsk-pink-light);
}

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

.site-nav a {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 16px 32px;
  font-family: "Nunito Sans", 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: 100px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  background: var(--primary);
}

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

.btn--primary {
  color: var(--text-white);
  background: var(--primary);
  box-shadow: var(--shadow-primary);
}

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

.btn--outline {
  border-width: 1.5px;
  color: var(--vsk-pink);
  background: var(--bg-white);
  border-color: var(--vsk-pink);
}

.btn--outline:hover {
  border-color: #dc1a73;
  color: #dc1a73;
  box-shadow: var(--shadow-soft);
}

.btn--with-arrow::after {
  content: "→";
  font-size: 15px;
  line-height: 1;
}

.btn--white {
  color: var(--primary);
  background: var(--bg-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

.btn--mint {
  color: var(--vsk-pink);
  background: var(--vsk-pink-light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.btn--mint:hover {
  color: #dc1a73;
  background: #ffe4f1;
}

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

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* Hero */
.hero-section {
  padding: 88px 0;
  background: linear-gradient(125deg, #e6f4ff 0%, #f0f7ff 58%, #ffffff 100%);
}

.hero-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-content h1 {
  max-width: 700px;
  font-family: "Nunito Sans", Inter, sans-serif;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
}

.hero-content p {
  max-width: 620px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.65;
}

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

.hero-badges {
  display: grid;
  gap: 12px;
  width: fit-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-secondary);
  font-size: 13px;
}

.hero-comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 420px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background: var(--bg-white);
  box-shadow: 0 24px 64px rgba(30, 94, 255, 0.08);
}

.hero-comparison h2 {
  font-family: "Nunito Sans", Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.hero-comparison__row {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 13px;
  background: var(--border-light);
}

.hero-comparison__row--best {
  color: var(--primary);
  font-weight: 500;
  background: var(--accent);
}

.hero-comparison__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 500;
  background: var(--secondary-light);
}

/* Common heading blocks */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2,
.trust-section h2,
.how-start h2,
.faq-block h2,
.final-cta h2 {
  font-family: "Nunito Sans", Inter, sans-serif;
  letter-spacing: -1px;
  line-height: 1.18;
}

.section-heading h2 {
  max-width: 900px;
  font-size: 40px;
  font-weight: 800;
}

.section-heading--strong h2 {
  font-weight: 900;
}

.section-heading--md h2 {
  font-size: 38px;
}

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

/* Pills and mini icons */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

.pill--primary {
  padding: 8px 20px;
  color: var(--vsk-bright-blue);
  background: var(--vsk-bright-blue-light);
}

.pill--success {
  padding: 8px 18px;
  color: #16a34a;
  background: #ecfdf5;
}

.trust-section .pill--success {
  color: var(--vsk-pink);
  background: var(--vsk-pink-light);
}

.trust-section .pill--success .mini-icon {
  color: var(--vsk-pink);
  background: rgba(255, 45, 135, 0.14);
}

#advantages .pill--success {
  color: var(--vsk-bright-blue);
  background: var(--vsk-bright-blue-light);
}

#advantages .pill--success .mini-icon {
  color: var(--vsk-bright-blue);
  background: rgba(0, 145, 255, 0.15);
}

.pill--line-success {
  padding: 10px 18px;
  color: var(--secondary);
  background: var(--secondary-light);
  font-weight: 500;
}

.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.mini-icon--blue {
  color: var(--primary);
  background: var(--primary-light);
}

.mini-icon--green {
  color: var(--secondary);
  background: var(--secondary-light);
}

.mini-icon--white {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.16);
}

/* Card grids */
.grid {
  display: grid;
  gap: 24px;
}

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

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

.feature-card,
.choice-card,
.benefit-card,
.audience-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover,
.choice-card:hover,
.benefit-card:hover,
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.feature-card--featured {
  border-color: transparent;
  background: linear-gradient(180deg, #0091ff 0%, #0068d6 100%);
}

.feature-card.feature-card--featured h3,
.feature-card.feature-card--featured p {
  color: rgba(255, 255, 255, 0.95);
}

.feature-card h3,
.choice-card h3,
.benefit-card h3 {
  font-family: "Nunito Sans", Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.feature-card p,
.choice-card p,
.benefit-card p,
.audience-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: var(--primary);
  background: var(--primary-light);
  font-family: "Nunito Sans", Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.icon-box--green {
  color: var(--secondary);
  background: var(--secondary-light);
}

.icon-box--solid {
  color: var(--text-white);
  background: var(--primary);
}

.icon-box--glass {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.15);
}

.icon-box--soft-pink {
  color: var(--vsk-pink);
  background: var(--vsk-pink-light);
}

.icon-box--soft-bright {
  color: var(--vsk-bright-blue);
  background: var(--vsk-bright-blue-light);
}

.icon-box--bright-solid {
  color: var(--text-white);
  background: var(--vsk-bright-blue);
}

/* Trust */
.trust-section {
  padding: 64px 0;
  background: linear-gradient(90deg, #e6f4ff 0%, #f5f9ff 50%, #fff0f6 100%);
}

.trust-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.trust-section h2 {
  max-width: 800px;
  font-size: 32px;
  font-weight: 900;
}

.trust-section p {
  max-width: 700px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.65;
}

/* Timeline */
.how-start {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.how-start h2 {
  max-width: 800px;
  font-size: 38px;
  font-weight: 900;
  text-align: center;
}

.timeline {
  width: min(700px, 100%);
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
}

.timeline__item:not(:last-child) {
  margin-bottom: 0;
}

.timeline__index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-white);
  background: var(--primary);
  font-family: "Nunito Sans", Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.timeline__item:not(:last-child) .timeline__index::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  width: 2px;
  height: 40px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline__item--done .timeline__index {
  background: var(--secondary);
}

.timeline__content {
  padding-top: 8px;
  padding-bottom: 12px;
}

.timeline__content h3 {
  margin-bottom: 4px;
  font-family: "Nunito Sans", Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.timeline__content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

/* Offer comparison section */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.offer-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background: var(--bg-white);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.offer-card--primary {
  border: 2px solid var(--primary);
}

.offer-card--primary .offer-card__head h3 {
  color: var(--primary);
}

.offer-card--primary .offer-price {
  color: var(--vsk-bright-blue);
}

.offer-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 12px 20px;
  background: var(--bg);
}

.offer-card__head h3 {
  font-family: "Nunito Sans", Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.offer-card__head--primary {
  background: var(--primary-light);
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
}

.tag--primary {
  color: var(--text-white);
  background: var(--primary);
}

.tag--success {
  color: var(--text-white);
  background: var(--vsk-bright-blue);
  width: fit-content;
  font-size: 12px;
  font-weight: 600;
}

.offer-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

.offer-type {
  color: var(--text-secondary);
  font-size: 14px;
}

.offer-price {
  font-family: "Nunito Sans", Inter, sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
}

.offer-rating {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}

.offer-rating span {
  color: var(--accent-orange);
}

.offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-family: "Nunito Sans", Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

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

.offer-btn--primary {
  border-color: var(--primary);
  color: var(--text-white);
  background: var(--primary);
}

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

.comparison-table-wrap {
  overflow-x: auto;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  border-top: 1px solid var(--border);
  padding: 14px 20px;
  text-align: left;
  font-size: 13px;
}

.comparison-table thead th {
  border-top: 0;
  background: var(--bg);
  color: var(--text-secondary);
  font-family: "Nunito Sans", Inter, sans-serif;
  font-weight: 600;
}

.comparison-table .is-highlight {
  color: var(--primary);
  font-weight: 600;
}

/* Smart choice */
.smart-choice {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.smart-choice .section-heading {
  margin-bottom: 0;
}

.smart-choice .pill--primary {
  border-radius: 20px;
}

.smart-choice .pill--primary .mini-icon {
  color: var(--vsk-bright-blue);
  background: rgba(0, 145, 255, 0.16);
}

.smart-choice__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 280px));
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.choice-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--bg-white);
}

.choice-card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.choice-card h3 {
  font-size: 18px;
  font-weight: 600;
}

.choice-card--highlight {
  border-color: var(--vsk-bright-blue);
  border-width: 1.5px;
  box-shadow: 0 4px 20px rgba(0, 145, 255, 0.1);
}

/* Approach compare */
.approach-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.approach-block .section-heading {
  margin-bottom: 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 540px));
  gap: 32px;
  width: 100%;
  justify-content: center;
}

.approach-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.approach-card header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.approach-card h3 {
  font-family: "Nunito Sans", Inter, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.approach-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.approach-card li {
  position: relative;
  padding-left: 28px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
}

.approach-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  line-height: 1.3;
}

.approach-card--negative {
  background: var(--bg);
}

.approach-card--negative li::before {
  content: "×";
  color: #ef4444;
}

.approach-card--positive {
  border-width: 2px;
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
}

.approach-card--positive li::before {
  content: "✓";
  color: var(--secondary);
}

.state-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
}

.state-icon--negative {
  color: #ef4444;
  background: var(--vsk-pink-light);
}

.state-icon--positive {
  color: var(--secondary);
  background: var(--vsk-bright-blue-light);
}

/* Benefits and audience */
.benefit-card,
.audience-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--bg-white);
}

.benefit-card .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  color: var(--vsk-bright-blue);
  background: var(--vsk-bright-blue-light);
  font-size: 17px;
}

.benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
}

.benefit-card--spacer {
  border: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.audience-card {
  gap: 14px;
  padding: 24px;
  background: var(--bg-white);
}

.audience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--vsk-pink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.audience-icon--green {
  color: var(--vsk-pink);
}

.audience-card h3 {
  font-family: "Nunito Sans", Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.audience-card p {
  font-size: 13px;
}

/* Objections */
.objections {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.objections .section-heading {
  margin-bottom: 48px;
}

.objections-list {
  width: min(860px, 100%);
  display: grid;
  gap: 16px;
}

.objection-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
}

.objection-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Nunito Sans", Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.objection-card h3 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--primary);
  background: var(--primary-light);
  font-size: 13px;
  font-weight: 700;
}

.objection-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

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

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 12px rgba(0, 85, 204, 0.10);
}

.faq-item.is-open {
  border-color: var(--primary);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 28px;
  border: 0;
  color: var(--text-primary);
  font-family: "Nunito Sans", Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  background: transparent;
  cursor: pointer;
  pointer-events: none;
  transition: color 0.15s ease;
}

.faq-item {
  cursor: pointer;
}

.faq-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--text-muted);
  transition: transform 0.25s ease, color 0.15s ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.faq-answer__inner {
  padding: 0 28px 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

/* Final CTA */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(180deg, #003da5 0%, #0068d6 100%);
}

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

.final-cta h2 {
  max-width: 800px;
  color: var(--text-white);
  font-size: 46px;
  font-weight: 900;
}

.final-cta p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.55;
}

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

.final-cta .btn {
  padding: 18px 36px;
}

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

.final-cta__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* 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: 1260px) {
  .container,
  .container-wide {
    width: calc(100% - 48px);
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .section-heading h2,
  .faq-block h2,
  .final-cta h2 {
    font-size: 36px;
  }
}

@media (max-width: 1100px) {
  body {
    padding-top: 73px;
  }

  .site-partner-badge {
    display: none;
  }

  .site-nav {
    gap: 20px;
  }

  .hero-section__grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .hero-comparison {
    min-height: 0;
  }

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

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

  .benefit-card--spacer {
    display: none;
  }

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

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

  .section,
  .hero-section {
    padding: 64px 0;
  }

  .site-nav {
    display: none;
  }

  .site-header__inner {
    gap: 12px;
  }

  .site-logo {
    font-size: 20px;
  }

  .btn--header {
    padding: 10px 16px;
  }

  .hero-content {
    gap: 24px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p,
  .section-heading p,
  .trust-section p,
  .final-cta p {
    font-size: 16px;
  }

  .section-heading,
  .objections .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .how-start h2,
  .faq-block h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .offer-price {
    font-size: 28px;
  }

  .grid--4,
  .grid--3,
  .offer-grid,
  .smart-choice__cards,
  .site-footer__info { flex-direction: column; }
  .site-footer__nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom-links { flex-direction: column; gap: 8px; }

  .site-footer__bottom {
    display: grid;
    justify-content: start;
  }

  .site-footer__meta-links {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .timeline__content {
    padding-top: 6px;
  }
}

@media (max-width: 620px) {
  body {
    padding-top: 69px;
  }

  .btn {
    width: 100%;
    padding: 15px 18px;
  }

  .hero-actions,
  .final-cta__actions {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 31px;
    letter-spacing: -0.8px;
  }

  .section-heading h2,
  .how-start h2,
  .faq-block h2,
  .final-cta h2,
  .trust-section h2 {
    font-size: 28px;
  }

  .approach-card,
  .feature-card,
  .choice-card,
  .benefit-card,
  .audience-card,
  .objection-card,
  .faq-question {
    padding-left: 18px;
    padding-right: 18px;
  }

  .faq-answer__inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-comparison {
    padding-left: 18px;
    padding-right: 18px;
  }

  .final-cta__trust {
    gap: 14px;
    justify-content: flex-start;
  }
}

/* =====================================================
   NEW AGENT LANDING COMPONENTS
   ===================================================== */

/* Section Badge */
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: var(--primary-light);
}

/* Article Intro Block */
.article-block {
  max-width: 800px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 13px;
}

.article-block h2 {
  margin-bottom: 16px;
  font-family: "Nunito Sans", Inter, sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  line-height: 1.25;
}

.article-block > p {
  margin-bottom: 32px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

/* Table of Contents */
.toc {
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--bg-white);
}

.toc__title {
  margin: 0 0 12px;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.toc ol {
  margin: 0;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.4;
}

.toc a {
  color: var(--primary);
  text-decoration: none;
}

.toc a:hover {
  text-decoration: underline;
}

/* Callout */
.callout {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-white);
}

.callout--success {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.callout__stripe {
  width: 6px;
  flex-shrink: 0;
  background: var(--secondary);
}

.callout__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
}

.callout__content p {
  flex: 1;
  min-width: 260px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive Tables */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
}

.data-table caption {
  padding: 10px 16px;
  color: var(--text-muted);
  font-size: 12px;
  text-align: left;
  caption-side: top;
  border-bottom: 1px solid var(--border-light);
}

.data-table th {
  padding: 12px 16px;
  border-bottom: 2px solid var(--border);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  background: var(--bg);
  white-space: nowrap;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  vertical-align: top;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover td {
  background: var(--border-light);
}

/* Step Cards */
.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--bg-white);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--text-white);
  font-family: "Nunito Sans", Inter, sans-serif;
  font-size: 16px;
  font-weight: 800;
  background: var(--primary);
}

.step-card h3 {
  font-family: "Nunito Sans", Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.step-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

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

/* Centred section CTA */
.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Hero comparison product rows */
.hero-comparison__row--product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.hero-comparison__row--product strong {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

/* Second grid row spacing */
.grid--second-row {
  margin-top: 20px;
}

/* Responsive additions */
@media (max-width: 860px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }

  .article-block h2 {
    font-size: 22px;
  }

  .toc {
    padding: 20px;
  }

  .step-card {
    padding: 22px;
  }

  .data-table th,
  .data-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
}

@media (max-width: 620px) {
  .callout__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .callout__content .btn {
    width: 100%;
  }

  .toc {
    padding: 16px;
  }

  .toc li {
    font-size: 14px;
  }

  .step-card,
  .callout,
  .table-responsive {
    border-radius: var(--radius-lg);
  }
}

/* =====================================================
   Mobile XS: 320–375px
   ===================================================== */
@media (max-width: 375px) {
  /* Уменьшаем боковые отступы для выигрыша ~8px на сторону */
  .container,
  .container-wide {
    width: calc(100% - 24px);
  }

  /* Кнопки: white-space: nowrap + inline-flex = min-content-size > viewport.
     Разрешаем перенос текста — ширина при этом остаётся 100% контейнера */
  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }

  /* Шапка — кнопка НЕ должна переноситься, там текст короткий */
  .btn--header {
    white-space: nowrap;
  }

  /* Секции — меньше вертикального пространства */
  .section,
  .hero-section {
    padding: 48px 0;
  }

  .final-cta {
    padding: 56px 0;
  }

  /* ── Header ─────────────────────────────────────── */
  .site-header__inner {
    gap: 8px;
  }

  .site-logo {
    font-size: 17px;
  }

  .btn--header {
    padding: 8px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  /* ── Hero ───────────────────────────────────────── */
  .hero-content h1 {
    font-size: 26px;
    letter-spacing: -0.5px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges li {
    font-size: 13px;
    gap: 6px;
  }

  /* Строки продуктов — переносим на две строки, чтобы
     «Ипотечное страхование» + «до 50% комиссии» не обрезались */
  .hero-comparison__row--product {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2px 8px;
    min-height: 0;
    padding: 10px 0;
  }

  .hero-comparison__row--product strong {
    flex-basis: 100%;
  }

  .hero-comparison h2 {
    font-size: 15px;
  }

  /* ── Заголовки секций ───────────────────────────── */
  .section-heading h2,
  .final-cta h2 {
    font-size: 22px;
  }

  .section-badge {
    font-size: 10px;
    padding: 5px 12px;
  }

  /* ── SEO-блок и TOC ─────────────────────────────── */
  .article-block h2 {
    font-size: 20px;
  }

  .toc {
    padding: 14px;
  }

  .toc li {
    font-size: 12px;
    line-height: 1.5;
  }

  /* ── Step-карточки ──────────────────────────────── */
  .step-card {
    padding: 16px;
    gap: 10px;
  }

  .step-card__num {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  /* ── Callout ────────────────────────────────────── */
  .callout__content {
    padding: 14px 16px;
    gap: 12px;
  }

  /* min-width: 260px на p переполняет при 320px → сбрасываем */
  .callout__content p {
    min-width: 0;
    font-size: 14px;
  }

  /* ── Таблицы ────────────────────────────────────── */
  .data-table th,
  .data-table td {
    font-size: 11px;
    padding: 6px 8px;
  }

  .data-table caption {
    font-size: 12px;
    padding: 10px 8px 8px;
  }

  /* ── FAQ ────────────────────────────────────────── */
  .faq-question {
    font-size: 14px;
    padding: 18px 16px;
    gap: 12px;
  }

  .faq-answer__inner {
    font-size: 14px;
    padding: 0 16px 18px;
  }

  /* ── Финальный CTA ──────────────────────────────── */
  .final-cta__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .final-cta__trust li {
    font-size: 13px;
  }

  /* ── Feature/benefit карточки ───────────────────── */
  .feature-card,
  .benefit-card,
  .audience-card {
    padding-left: 16px;
    padding-right: 16px;
  }
}
