: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%);
  height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  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);
}

.hero__mockup-grid {
  width: min(780px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mock-card {
  height: 128px;
  border-radius: 12px;
  background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #dbeafe;
}

.mock-card--wide {
  grid-column: span 2;
  background: linear-gradient(145deg, #ecfeff 0%, #cffafe 100%);
  border-color: #bae6fd;
}

.mock-card--line {
  background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%);
  border-color: #bbf7d0;
}

.hero__mockup p {
  color: var(--text-muted);
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

/* 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;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 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.4;
  background: transparent;
  cursor: pointer;
}

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

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

.faq-answer {
  padding: 0 28px 24px;
  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-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

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

.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__top {
  display: grid;
  grid-template-columns: 360px repeat(3, minmax(0, 1fr));
  gap: 48px;
  padding: 60px 0 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
  font-family: Manrope, Inter, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.footer-logo__icon {
  color: var(--primary);
  font-size: 20px;
}

.footer-brand p {
  color: var(--footer-text);
  font-size: 14px;
  line-height: 1.6;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.footer-col a,
.footer-col span {
  color: var(--footer-text);
  font-size: 14px;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--text-white);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.site-footer__bottom p,
.site-footer__bottom a {
  color: var(--footer-text);
  font-size: 13px;
}

.site-footer__bottom a {
  color: var(--footer-link);
  text-decoration: none;
}

.site-footer__bottom a:hover {
  color: var(--text-white);
}

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

  .section {
    padding: 68px 0;
  }

  .hero__mockup {
    height: auto;
    min-height: 420px;
  }

  .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,
  .reviews-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;
  }

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

  .mock-card,
  .mock-card--wide,
  .mock-card--line {
    grid-column: auto;
  }

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