/* systeme io affiliate landing - brand-aligned palette */
:root {
  --brand: #00a0ff;
  --brand-dark: #0086d9;
  --ink: #19191b;
  --muted: #7b7e85;
  --surface: #f2f2f3;
  --page: #f6f6f9;
  --navy: #181c39;
  --navy-2: #12152b;
  --white: #ffffff;
  --border: #e4e5e8;
  --shadow: 0 12px 40px rgba(24, 28, 57, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --aff: #00a0ff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a[href*="systeme.io"] {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a.btn[href*="systeme.io"],
.navbar a[href*="systeme.io"],
.site-footer a[href*="systeme.io"],
.mobile-cta a[href*="systeme.io"] {
  text-decoration: none;
}

.container-narrow {
  max-width: 1140px;
}

/* Nav */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.96);
}

.site-nav .navbar-brand img {
  height: 28px;
  width: auto;
}

.site-nav .nav-link {
  color: var(--ink) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem !important;
}

.site-nav .nav-link:hover {
  color: var(--brand) !important;
}

.btn-brand {
  background: var(--brand);
  color: var(--white) !important;
  border: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 160, 255, 0.28);
}

.btn-brand:not(.btn-nav-cta) {
  text-transform: uppercase;
}

.btn-brand:hover {
  background: var(--brand-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 160, 255, 0.35);
}

.btn-brand-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1.05rem;
}

.btn-outline-brand {
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid var(--border);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
}

.btn-outline-brand:hover {
  border-color: var(--brand);
  color: var(--brand) !important;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(0, 160, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(24, 28, 57, 0.06), transparent 50%),
    linear-gradient(180deg, #f8fbff 0%, var(--white) 100%);
  padding: 4rem 0 3.5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(0, 160, 255, 0.1);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.1rem;
}

.hero h1 .accent {
  color: var(--brand);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 1.35rem;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.hero-bullets li {
  position: relative;
  padding-left: 1.55rem;
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-weight: 500;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 160, 255, 0.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.hero-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual-frame {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-shot {
  border-radius: 0;
  box-shadow: none;
  border: none;
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto;
  background: var(--navy);
  transform: scale(1.08);
  transform-origin: center center;
}

.content-shot {
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(24, 28, 57, 0.06);
  border: 1px solid var(--border);
  width: 100%;
  height: auto;
  margin: 1.25rem 0;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #fafbfc;
}

.content-shot--navy {
  background: var(--navy);
  border-color: rgba(24, 28, 57, 0.25);
  object-fit: contain;
  object-position: center center;
}

.what-is-media {
  background: var(--navy);
  border: 1px solid rgba(24, 28, 57, 0.25);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(24, 28, 57, 0.06);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1rem 1.15rem;
}

.what-is-media .content-shot--navy {
  margin: 0;
  border: none;
  box-shadow: none;
  width: 100%;
  height: auto;
  max-width: 100%;
  transform: none;
  object-fit: contain;
  object-position: center center;
  border-radius: 10px;
  background: transparent;
}

.topic-block {
  margin-bottom: 2.75rem;
}

.topic-block h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}

.topic-block p,
.topic-block li {
  color: var(--muted);
}

.topic-block ul {
  padding-left: 1.15rem;
  margin-bottom: 0;
}

.topic-block li {
  margin-bottom: 0.4rem;
}

.hero-card-top {
  background: var(--navy);
  padding: 0.85rem 1rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.hero-card-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3d4160;
}

.hero-card-top span:nth-child(1) { background: #ff5f57; }
.hero-card-top span:nth-child(2) { background: #febc2e; }
.hero-card-top span:nth-child(3) { background: #28c840; }

.hero-card-body {
  padding: 1.25rem;
  background: linear-gradient(160deg, #f8fbff, #fff);
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.dash-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem;
}

.dash-tile strong {
  display: block;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.dash-tile small {
  color: var(--muted);
  font-size: 0.78rem;
}

.dash-wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(0, 160, 255, 0.1), rgba(0, 160, 255, 0.02));
  border: 1px solid rgba(0, 160, 255, 0.2);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 0.75rem;
}

.dash-wide .label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.progress-bars {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.progress-bars .bar {
  height: 8px;
  border-radius: 999px;
  background: var(--surface);
  overflow: hidden;
}

.progress-bars .bar i {
  display: block;
  height: 100%;
  background: var(--brand);
  border-radius: 999px;
}

/* Stats */
.stats {
  background: var(--navy);
  color: var(--white);
  padding: 2.75rem 0 2.5rem;
}

.stats-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0 0 1.75rem;
}

.stats-intro strong {
  color: var(--white);
  font-weight: 600;
}

.stats-row .col-md-3:not(:last-child) .stat-item {
  border-right: none;
}

@media (min-width: 768px) {
  .stats-row .col-md-3:not(:last-child) .stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.stat-item {
  text-align: center;
  padding: 0.75rem 1rem;
}

.stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.65rem;
  border-radius: 12px;
  background: rgba(0, 160, 255, 0.15);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.stat-item .num {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.2;
}

.stat-item .num span {
  color: var(--brand);
}

.stat-item p {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.4;
}

/* Sections */
.section {
  padding: 5rem 0;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.65rem;
}

.section h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ink);
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-lead.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Feature cards */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 160, 255, 0.35);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 160, 255, 0.12);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Reasons */
.reason-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.reason-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.reason-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.reason-item p {
  color: var(--muted);
  margin: 0;
}

/* Steps */
.step-card {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.step-num {
  width: 42px;
  height: 42px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.step-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* Pricing */
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.4rem;
  height: 100%;
  position: relative;
}

.price-card.featured {
  border-color: var(--brand);
  box-shadow: 0 16px 40px rgba(0, 160, 255, 0.15);
}

.price-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.price-card .amount {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.price-card .amount span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.price-card ul li {
  padding: 0.35rem 0;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--border);
}

.price-card ul li:first-child {
  border-top: none;
}

/* Compare table */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
}

.compare-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 0.95rem;
}

.compare-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}

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

.compare-table .yes {
  color: #0a9f5c;
  font-weight: 600;
}

.compare-table .highlight {
  background: rgba(0, 160, 255, 0.06);
  font-weight: 600;
}

/* Reviews */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
}

.review-stars {
  color: #f5a623;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.review-card blockquote {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-size: 0.98rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface);
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
}

.review-author span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Audience */
.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  height: 100%;
}

.audience-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Pros / Cons */
.pros-cons-shell {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(24, 28, 57, 0.06);
}

.pros-cons-col {
  padding: 1.75rem 1.6rem 1.5rem;
}

.pros-cons-col--pros {
  background:
    linear-gradient(165deg, rgba(0, 160, 255, 0.09) 0%, rgba(255, 255, 255, 0.96) 48%),
    var(--white);
  border-right: 1px solid var(--border);
}

.pros-cons-col--cons {
  background:
    linear-gradient(165deg, rgba(246, 246, 249, 0.95) 0%, #fff 55%);
}

.pros-cons-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  padding: 0.4rem 0.85rem 0.4rem 0.55rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.pros-cons-label h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pros-cons-col--pros .pros-cons-label {
  background: rgba(0, 160, 255, 0.12);
  color: var(--brand-dark);
}

.pros-cons-col--cons .pros-cons-label {
  background: rgba(24, 28, 57, 0.08);
  color: var(--navy);
}

.pros-cons-label i {
  font-size: 0.95rem;
}

.pros-cons-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.pros-cons-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(228, 229, 232, 0.9);
}

.pros-cons-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0.15rem;
}

.pros-cons-list > li > i {
  margin-top: 0.15rem;
  font-size: 1.05rem;
  line-height: 1;
}

.pros-cons-col--pros .pros-cons-list > li > i {
  color: var(--brand);
}

.pros-cons-col--cons .pros-cons-list > li > i {
  color: #8b91a1;
}

.pros-cons-list strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 0.15rem;
}

.pros-cons-list span {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.pros-cons-summary {
  margin-top: 1.5rem;
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid transparent;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.pros-cons-summary p {
  margin: 0;
  flex: 1 1 18rem;
  color: #3a3d45;
  font-size: 0.98rem;
}

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

  .pros-cons-col--pros {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 575.98px) {
  .pros-cons-col {
    padding: 1.35rem 1.15rem 1.2rem;
  }

  .pros-cons-summary {
    padding: 1.15rem;
  }
}

/* CTA banner */
.cta-banner {
  background:
    radial-gradient(ellipse 70% 80% at 90% 50%, rgba(0, 160, 255, 0.25), transparent 55%),
    var(--navy);
  color: var(--white);
  border-radius: 24px;
  padding: 2.75rem 2rem;
  text-align: center;
}

.cta-banner h2,
.cta-banner h3 {
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

/* FAQ */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item .accordion-button {
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  box-shadow: none !important;
  font-size: 1rem;
  padding: 1.1rem 1.25rem;
}

.faq-item .accordion-button:not(.collapsed) {
  color: var(--brand-dark);
  background: rgba(0, 160, 255, 0.06);
}

.faq-item .accordion-button::after {
  background-size: 1rem;
}

.faq-item .accordion-body {
  color: var(--muted);
  padding: 0 1.25rem 1.2rem;
}

/* Footer */
.site-footer {
  background: var(--navy-2);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 2rem;
  font-size: 0.92rem;
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a:hover {
  color: var(--brand);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.footer-brand img {
  height: 26px;
  margin-bottom: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.footer-bottom p:first-child {
  color: rgba(255, 255, 255, 0.5);
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

/* Legal / about pages */
.page-hero {
  background: var(--page);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 1.2rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Mobile sticky CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(24, 28, 57, 0.08);
}

.mobile-cta .btn-brand {
  width: 100%;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .hero {
    padding: 2.75rem 0 2.5rem;
    text-align: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-bullets {
    text-align: left;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 2.5rem;
  }

  .mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 4.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .cta-banner {
    padding: 2rem 1.25rem;
    border-radius: 18px;
  }
}
