:root {
  --primary: #1e5eff;
  --primary-dark: #184bcc;
  --secondary: #14b8d4;
  --success: #16a34a;
  --warning: #f59e0b;
  --danger: #ef4444;

  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  --accent: #eaf3ff;
  --border: #d9e2ec;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-white: #ffffff;

  --footer-bg: #0f172a;
  --footer-text: #64748b;
  --footer-link: #94a3b8;

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

  --shadow-soft: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 8px 24px rgba(15, 23, 42, 0.1);
  --shadow-hero: 0 24px 64px rgba(0, 0, 0, 0.2);

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

* {
  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(--surface);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  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: var(--surface);
}

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

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

.gap-md {
  gap: 20px;
}

.gap-lg {
  gap: 32px;
}

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

.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;
  min-height: 77px;
}

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

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

.site-nav a {
  color: var(--text-secondary);
  font-family: Manrope, Inter, sans-serif;
  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: 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;
  color: var(--text-white);
  font-size: 14px;
  font-weight: 600;
  background: var(--primary);
}

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

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

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

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

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

.btn--ghost {
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

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

/* Heading */
.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: fit-content;
  margin-bottom: 48px;
}

.section-heading--center {
  align-items: center;
  width: 100%;
  text-align: center;
}

.heading-wide p {
  max-width: 700px;
}

.section-heading h2 {
  max-width: 900px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.2;
}

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

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

.section-badge--caps {
  font-family: Inter, sans-serif;
  letter-spacing: 1.5px;
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

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

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, #1e5eff 0%, #14b8d4 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  top: -180px;
  left: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 72%);
}

.hero::after {
  right: -180px;
  bottom: -240px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 74%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.hero__content h1 {
  max-width: 900px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
}

.hero__content p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.8);
  font-family: Manrope, Inter, sans-serif;
  font-size: 19px;
  line-height: 1.6;
}

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

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

.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 500;
}

.hero__chips li span {
  color: #d1fae5;
}

.hero__mockup {
  width: min(960px, 100%);
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding: 22px 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-hero);
}

.lk-preview {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lk-preview__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.lk-preview__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lk-preview__title {
  display: block;
  color: var(--text-primary);
  font-family: Manrope, Inter, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.lk-preview__badge {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(30, 94, 255, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

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

.lk-preview__stat {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #eff6ff 0%, #f8fafc 100%);
  border: 1px solid #dbeafe;
}

.lk-preview__stat-label {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.lk-preview__stat-value {
  display: block;
  margin-top: 4px;
  color: var(--primary);
  font-family: Manrope, Inter, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.lk-preview__stat-hint {
  display: block;
  margin-top: 2px;
  color: var(--text-secondary);
  font-size: 12px;
}

.lk-preview__data {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
  table-layout: fixed;
}

.lk-preview__data thead th {
  padding: 10px 12px;
  background: var(--surface-alt);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.lk-preview__data thead th:nth-child(2) {
  width: 28%;
  text-align: right;
}

.lk-preview__data thead th:nth-child(3) {
  width: 26%;
  text-align: right;
}

.lk-preview__data tbody td {
  padding: 10px 12px;
  color: var(--text-primary);
  vertical-align: middle;
  border-top: 1px solid var(--border);
}

.lk-preview__cell-premium {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.lk-preview__cell-status {
  text-align: right;
}

.lk-preview__pill {
  display: inline-flex;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.lk-preview__pill--ok {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
}

.lk-preview__pill--wait {
  background: rgba(245, 158, 11, 0.15);
  color: #b45309;
}

.lk-preview__footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lk-preview__hint {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}

.lk-preview__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lk-preview__chips span {
  padding: 6px 11px;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
}

.lk-preview__caption {
  margin: 0;
  color: var(--text-muted);
  font-family: Manrope, Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
}

/* Grids */
.grid {
  display: grid;
}

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

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

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

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-family: Manrope, Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

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

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

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: var(--primary);
  font-size: 22px;
  background: var(--accent);
}

/* Section 4 benefits */
.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.num-badge {
  color: var(--primary);
  font-family: Manrope, Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.benefit-card h3 {
  font-family: Manrope, Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

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

/* Section 5 audience */
.audience-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  height: 100%;
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  background: var(--bg);
}

.audience-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--primary);
  font-size: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.audience-card h3 {
  font-family: Manrope, Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

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

/* Section 6 qualities */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.quality-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 128px;
  padding: 28px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  color: var(--text-primary);
  font-family: Manrope, Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  background: var(--surface);
}

.quality-item span {
  color: var(--success);
  font-size: 20px;
}

.note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  background: #ecfdf5;
}

.note span {
  color: var(--success);
  font-size: 18px;
}

.note p {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
}

/* Section 7 */
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  height: 100%;
  padding: 36px;
  border-radius: var(--radius-2xl);
  background: var(--bg);
  text-align: center;
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 28px;
  color: var(--surface);
  font-family: Manrope, Inter, sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: var(--primary);
}

.step-card h3 {
  font-family: Manrope, Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

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

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

/* SEO guide: pros/cons, tables, long-form steps */
.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pros-cons-card {
  padding: 28px 32px;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.pros-cons-card h3 {
  margin-bottom: 18px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.pros-cons-card--pro {
  border-color: rgba(22, 163, 74, 0.25);
}

.pros-cons-card--con {
  border-color: rgba(239, 68, 68, 0.2);
}

.section--steps {
  background: linear-gradient(180deg, #eef4ff 0%, #f0f9ff 45%, #ecfeff 100%);
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.step-detail {
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30, 94, 255, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, #e8f1ff 55%, #dff6ff 100%);
  box-shadow: 0 4px 14px rgba(30, 94, 255, 0.06);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease,
    filter 0.22s ease;
}

.step-detail:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(30, 94, 255, 0.14);
  transform: translateY(-2px);
  background: linear-gradient(145deg, #ffffff 0%, #e0ecff 50%, #d8f3ff 100%);
  filter: saturate(1.05);
}

.step-detail:focus-within {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 94, 255, 0.22), 0 10px 28px rgba(30, 94, 255, 0.12);
}

.step-detail h3 {
  margin-bottom: 10px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-primary);
}

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

.content-table-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.content-table th,
.content-table td {
  padding: 14px 16px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.content-table thead th {
  background: var(--surface-alt);
  font-weight: 600;
  color: var(--text-primary);
}

.content-table tbody td {
  color: var(--text-secondary);
}

.table-note {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.why-rosstrah__extra {
  margin-top: 32px;
}

@media (max-width: 900px) {
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .content-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .content-table {
    min-width: 560px;
  }
}

/* Section 9 compare */
.compare-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px;
  border-radius: var(--radius-2xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.compare-card--old {
  border: 1px solid var(--border);
}

.compare-card--new {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 32px rgba(30, 94, 255, 0.14);
}

.compare-card h3 {
  font-family: Inter, Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.list li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  font-weight: 700;
}

.list--cross li::before {
  content: "✕";
  color: var(--danger);
}

.list--check li {
  color: var(--text-primary);
}

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

/* Section 10 earnings */
.earnings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 32px;
}

.calc-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

.calc-card h3 {
  font-family: Inter, Manrope, sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.calc-row span {
  color: var(--text-secondary);
  font-size: 16px;
}

.calc-row strong {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}

.calc-divider {
  height: 1px;
  background: var(--border);
}

.calc-row--result strong {
  color: var(--primary);
  font-size: 22px;
}

.calc-note {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.income-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
  border-radius: var(--radius-2xl);
  color: var(--text-white);
  background: linear-gradient(180deg, #1e5eff 0%, #14b8d4 100%);
}

.income-card h3 {
  font-family: Inter, Manrope, sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.income-card > p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.6;
}

.income-card__stats {
  display: grid;
  gap: 16px;
}

.income-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.14);
}

.income-stat strong {
  font-size: 32px;
  font-weight: 700;
}

.income-stat span,
.income-stat em {
  font-size: 14px;
  font-style: normal;
}

.income-card .btn {
  margin-top: auto;
}

/* Section 11 FAQ (аккордеон + hover как на Т-Страховании) */
.faq-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-soft);
  background: var(--accent);
}

.faq-item.is-open {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(30, 94, 255, 0.12);
  background: var(--surface);
}

.faq-item h3 {
  margin: 0;
}

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

.faq-item.is-open .faq-question {
  padding-bottom: 12px;
}

.faq-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-answer {
  max-height: 1200px;
}

.faq-answer__inner {
  padding-bottom: 22px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* Section 12 trust */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 24px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px;
  border-radius: var(--radius-xl);
  text-align: center;
  background: var(--accent);
}

.stat-card strong {
  color: var(--primary);
  font-family: Inter, Manrope, sans-serif;
  font-size: 36px;
  font-weight: 800;
}

.stat-card span {
  color: var(--text-secondary);
  font-size: 14px;
}

.reviews-scroller__hint {
  margin: 0 0 12px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

.reviews-scroller {
  position: relative;
  margin: 0 calc(50% - 50vw);
  padding: 8px calc(50vw - 50%);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(16px, calc(50vw - min(var(--container), 100%) / 2));
  -webkit-overflow-scrolling: touch;
  scrollbar-color: rgba(30, 94, 255, 0.35) transparent;
}

.reviews-scroller:focus-visible {
  outline: 3px solid rgba(30, 94, 255, 0.35);
  outline-offset: 4px;
}

.reviews-scroller__track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 6px 4px 14px;
  margin: 0 auto;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 min(340px, 86vw);
  max-width: 360px;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  scroll-snap-align: start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.review-card:hover {
  border-color: rgba(30, 94, 255, 0.35);
  box-shadow: 0 8px 24px rgba(30, 94, 255, 0.1);
  transform: translateY(-2px);
}

.stars {
  color: var(--warning);
  font-size: 16px;
  letter-spacing: 2px;
}

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

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--text-white);
  font-size: 13px;
  font-weight: 700;
  background: var(--primary);
  flex-shrink: 0;
}

.avatar--photo {
  padding: 0;
  border: 2px solid rgba(30, 94, 255, 0.2);
  object-fit: cover;
  background: var(--surface-alt);
}

.review-author strong {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
}

.review-author span {
  color: var(--text-muted);
  font-size: 13px;
}

/* Section 13 final cta */
.final-cta {
  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-family: Inter, Manrope, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.final-cta p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.5;
}

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

.final-cta__chips li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 500;
}

.final-cta__chips li span {
  color: #d1fae5;
}

/* Footer */
.site-footer { background: var(--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(--footer-text); font-size: 13px; margin: 0 0 8px; }
.footer-accr { color: var(--footer-text); font-size: 12px; line-height: 1.5; margin: 0 0 8px; max-width: 560px; }
.footer-desc { color: var(--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(--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(--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(--footer-text); font-size: 13px; margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--footer-text); font-size: 13px; text-decoration: none; }
.footer-bottom-links a:hover { color: #fff; }

@media (max-width: 1260px) {
  .container,
  .container-wide {
    width: min(var(--container), calc(100% - 40px));
  }

  .section {
    padding: 68px 0;
  }

  .hero__mockup {
    min-height: 0;
  }

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

  .final-cta h2 {
    font-size: 38px;
  }

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

@media (max-width: 1080px) {
  body {
    padding-top: 72px;
  }

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

  .site-nav {
    display: none;
  }

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

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

  .income-card {
    width: 100%;
  }

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

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

  .hero {
    padding: 60px 0;
  }

  .hero__content h1 {
    font-size: 38px;
  }

  .hero__content p,
  .section-heading p {
    font-size: 16px;
  }

  .hero__actions,
  .hero__chips,
  .final-cta__chips {
    gap: 12px;
  }

  .lk-preview__stats {
    grid-template-columns: 1fr;
  }

  .lk-preview__data {
    font-size: 12px;
  }

  .lk-preview__data thead th,
  .lk-preview__data tbody td {
    padding: 8px 10px;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .stats-grid,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .compare-card,
  .calc-card,
  .income-card,
  .card,
  .benefit-card,
  .review-card,
  .audience-card {
    padding: 22px;
  }

  .calc-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading {
    margin-bottom: 32px;
  }

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

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

@media (max-width: 560px) {
  .btn {
    width: 100%;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
  }

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

  .final-cta h2 {
    font-size: 30px;
  }

  .final-cta p {
    font-size: 17px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-answer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-answer__inner {
    padding-bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-answer,
  .faq-chevron {
    transition: none;
  }

  .faq-item.is-open .faq-answer {
    max-height: none;
  }

  .faq-item:not(.is-open) .faq-answer {
    max-height: 0;
  }
}
