:root {
  --accent: #eaf3ff;
  --accent-orange: #f59e0b;
  --bg: #f7f9fc;
  --bg-white: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #dbeafe;
  --secondary: #059669;
  --secondary-light: #d1fae5;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-white: #ffffff;
  --surface-alt: #f1f5f9;

  --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--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: Manrope, Inter, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
  text-decoration: none;
}

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

.site-nav a {
  color: var(--text-secondary);
  font-size: 14px;
  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: var(--radius-md);
  padding: 16px 32px;
  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: var(--radius-sm);
  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 {
  color: var(--primary);
  background: var(--bg-white);
  border-color: #cfe0ff;
}

.btn--outline:hover {
  border-color: var(--primary);
  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: #16a34a;
  background: #f0fdf4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.btn--mint:hover {
  background: #dcfce7;
}

.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.18);
}

/* Hero */
.hero-section {
  padding: 88px 0;
  background: linear-gradient(125deg, #eaf3ff 0%, #f4f9ff 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: Manrope, Inter, sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.12;
}

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

.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: Manrope, 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: Manrope, Inter, sans-serif;
  letter-spacing: -1px;
  line-height: 1.18;
}

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

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

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

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

/* 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(--primary);
  background: var(--primary-light);
}

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

.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 h3,
.choice-card h3,
.benefit-card h3 {
  font-family: Manrope, 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: Manrope, 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);
}

/* Trust */
.trust-section {
  padding: 64px 0;
  background: linear-gradient(90deg, #eff6ff 0%, #f7fbff 58%, #ecfdf5 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: 800;
}

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

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

.how-start h2 {
  max-width: 800px;
  font-size: 38px;
  font-weight: 800;
  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: Manrope, 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: Manrope, 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__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: Manrope, 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(--secondary);
  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: Manrope, 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);
  color: var(--text-secondary);
  font-family: Manrope, 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: Manrope, 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__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(--primary);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.12);
}

/* 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: Manrope, Inter, sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.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: #fee2e2;
}

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

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

.benefit-card .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 17px;
}

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

.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(--primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

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

.audience-card h3 {
  font-family: Manrope, 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);
}

.objection-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Manrope, 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-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.faq-block h2 {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
}

.faq-list {
  width: min(800px, 100%);
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
}

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

.faq-question:hover {
  color: var(--primary);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1;
  transform: rotate(-90deg);
  transform-origin: center;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 24px 24px;
}

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

/* Final CTA */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(180deg, #1e5eff 0%, #14b8d4 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: 800;
}

.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__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 {
  padding: 60px 0;
  color: #64748b;
  background: #0f172a;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 300px repeat(3, minmax(150px, 1fr));
  gap: 48px;
}

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

.site-footer__logo {
  color: var(--text-white);
  font-family: Manrope, Inter, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.site-footer__brand p {
  max-width: 280px;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__col p {
  color: var(--text-white);
  font-family: Manrope, Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.site-footer__col a,
.site-footer__meta-links a {
  color: #64748b;
  font-size: 14px;
  text-decoration: none;
}

.site-footer__col a:hover,
.site-footer__meta-links a:hover {
  color: #cbd5e1;
}

.site-footer__divider {
  height: 1px;
  margin-top: 48px;
  background: #1e293b;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
}

.site-footer__bottom p,
.site-footer__meta-links a {
  font-size: 13px;
}

.site-footer__meta-links {
  display: flex;
  gap: 24px;
}

.site-footer__meta-links a {
  color: #94a3b8;
}

/* Responsive */
@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-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__top,
  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .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,
  .faq-answer,
  .hero-comparison {
    padding-left: 18px;
    padding-right: 18px;
  }

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