:root {
  --blue-950: #06162f;
  --blue-900: #08255a;
  --blue-800: #0b3a82;
  --blue-600: #0b5cff;
  --blue-100: #eaf2ff;
  --green-600: #00c853;
  --green-500: #14df6b;
  --green-100: #e8fff1;
  --white: #ffffff;
  --ink: #102033;
  --muted: #62738a;
  --line: #dbe5f2;
  --soft: #f5f8fc;
  --shadow: 0 24px 70px rgba(6, 22, 47, 0.16);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 22, 47, 0.78);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 22, 47, 0.94);
  box-shadow: 0 18px 50px rgba(6, 22, 47, 0.2);
}

.header-grid {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 900;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--green-500);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius);
  color: #04260f;
  background: var(--green-500);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 200, 83, 0.25);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(20, 223, 107, 0.22), transparent 28%),
    radial-gradient(circle at 12% 18%, rgba(11, 92, 255, 0.36), transparent 32%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900) 48%, #021026);
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 136px 0 86px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-500);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 16px rgba(20, 223, 107, 0.76);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: 62px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 950;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #04260f;
  background: linear-gradient(135deg, var(--green-500), #9bffbb);
  box-shadow: 0 18px 42px rgba(0, 200, 83, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 24px 54px rgba(0, 200, 83, 0.34);
}

.btn-soft {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-link {
  min-height: 52px;
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-large {
  min-height: 58px;
  padding: 0 28px;
  font-size: 16px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.phone-card {
  position: relative;
  width: min(330px, 92vw);
  min-height: 560px;
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, #0b1c3d, #051124);
  border: 10px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.38);
}

.phone-top {
  width: 92px;
  height: 20px;
  margin: 0 auto 18px;
  border-radius: 0 0 18px 18px;
  background: rgba(255, 255, 255, 0.16);
}

.ad-preview {
  min-height: 480px;
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    #081a38;
}

.ad-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  color: #04260f;
  background: var(--green-500);
  font-size: 12px;
  font-weight: 900;
}

.ad-preview h2 {
  margin: 22px 0 0;
  color: var(--white);
  font-size: 31px;
  line-height: 1.12;
}

.chart-bars {
  height: 150px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  margin: 34px 0 26px;
}

.chart-bars span {
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--green-500), var(--blue-600));
  box-shadow: 0 12px 28px rgba(20, 223, 107, 0.18);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.metric-grid div {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.metric-grid strong,
.metric-grid small {
  display: block;
}

.metric-grid strong {
  color: var(--white);
  font-size: 22px;
}

.metric-grid small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.floating-card {
  position: absolute;
  width: 210px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  color: var(--white);
}

.floating-card span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.4;
}

.floating-card-a {
  top: 64px;
  left: 0;
}

.floating-card-b {
  right: 0;
  bottom: 72px;
}

section {
  position: relative;
}

.benefits,
.audience,
.testimonials,
.offer,
.faq {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.split-grid h2,
.offer-copy h2,
.faq-grid h2,
.final-box h2,
.cta-grid h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.section-text,
.offer-copy > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-card {
  min-height: 218px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(6, 22, 47, 0.06);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--blue-600);
  background: var(--blue-100);
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  margin: 18px 0 9px;
  font-size: 18px;
  line-height: 1.25;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-blue {
  color: var(--white);
  padding: 92px 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(20, 223, 107, 0.22), transparent 26%),
    linear-gradient(135deg, var(--blue-900), var(--blue-800));
}

.section-blue .section-text,
.section-blue .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.split-grid .btn {
  margin-top: 28px;
}

.check-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-500);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 6px;
  height: 10px;
  border: solid #04260f;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.audience {
  background: var(--soft);
}

.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-grid span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: var(--radius);
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(6, 22, 47, 0.05);
}

.cta-strip {
  padding: 72px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.testimonial-card p {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--blue-900);
  font-size: 17px;
}

.testimonial-card span {
  margin-top: 4px;
  color: var(--muted);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bonus-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
}

.bonus-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  color: #04260f;
  background: var(--green-500);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.bonus-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.bonus-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.course-program {
  padding: 96px 0;
  background:
    radial-gradient(circle at top right, rgba(11, 92, 255, 0.08), transparent 34%),
    var(--white);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.program-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(6, 22, 47, 0.08);
}

.program-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.program-card h3 {
  margin: 0 0 10px;
  color: var(--blue-950);
  font-size: 20px;
  line-height: 1.25;
}

.program-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.offer {
  background:
    linear-gradient(180deg, rgba(245, 248, 252, 0.88), rgba(255, 255, 255, 1)),
    var(--soft);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr minmax(330px, 430px);
  gap: 46px;
  align-items: center;
}

.offer-grid-duo {
  grid-template-columns: minmax(280px, 0.75fr) minmax(580px, 1.25fr);
}

.offer-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.guarantee {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid #c9f5d8;
  border-radius: var(--radius);
  background: var(--green-100);
}

.guarantee strong,
.guarantee span {
  display: block;
}

.guarantee strong {
  color: #056326;
  font-size: 18px;
}

.guarantee span {
  margin-top: 7px;
  color: #2b6c44;
  line-height: 1.55;
}

.price-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-card-featured {
  position: relative;
  border-color: rgba(14, 165, 233, 0.32);
}

.price-card-basic {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.price-card-basic .price-label {
  background: var(--green-600);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  margin: 0 0 18px;
  border-radius: calc(var(--radius) - 6px);
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

.price-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue-600);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.old-price {
  margin: 18px 0 4px;
  color: var(--muted);
  font-size: 18px;
  text-decoration: line-through;
}

.old-price-clean {
  text-decoration: none;
}

.price-card h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 46px;
  line-height: 1;
}

.payment-note {
  margin: 12px 0 22px;
  color: var(--muted);
  line-height: 1.55;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid #c9f5d8;
  border-radius: var(--radius);
  color: #056326;
  background: var(--green-100);
}

.countdown span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown strong {
  color: var(--blue-900);
  font-size: 24px;
  line-height: 1;
}

.price-card .btn {
  width: 100%;
}

.offer-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 700;
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-500);
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  overflow: hidden;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--blue-900);
  font-weight: 950;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  margin-left: auto;
  color: var(--green-600);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.65;
}

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

.final-box {
  max-width: 880px;
  text-align: center;
}

.final-box .eyebrow {
  margin-inline: auto;
}

.final-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.final-actions .btn {
  min-width: min(100%, 260px);
}

.footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.74);
  background: #031026;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: var(--white);
}

.footer span {
  margin-top: 4px;
}

.footer p {
  margin: 0;
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  z-index: 60;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(6, 22, 47, 0.24);
}

.whatsapp-float {
  right: 18px;
  bottom: 88px;
  color: var(--white);
  background: #18c45c;
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
}

.back-to-top {
  right: 18px;
  bottom: 22px;
  color: var(--white);
  background: var(--blue-600);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top svg {
  width: 26px;
  height: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1040px) {
  .main-nav {
    display: none;
  }

  .header-grid {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .hero-grid,
  .split-grid,
  .offer-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

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

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

@media (max-width: 780px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .offer-options {
    grid-template-columns: 1fr;
  }

  .header-grid {
    min-height: 68px;
    gap: 16px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 66px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions,
  .trust-row {
    flex-direction: column;
  }

  .hero-actions .btn,
  .trust-row span,
  .cta-grid .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 12px;
  }

  .phone-card {
    min-height: 500px;
  }

  .ad-preview {
    min-height: 420px;
  }

  .floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 12px;
  }

  .benefits,
  .audience,
  .testimonials,
  .offer,
  .faq,
  .section-blue,
  .final-cta {
    padding: 68px 0;
  }

  .section-heading h2,
  .split-grid h2,
  .offer-copy h2,
  .faq-grid h2,
  .final-box h2,
  .cta-grid h2 {
    font-size: 32px;
  }

  .benefit-grid,
  .testimonial-grid,
  .bonus-grid,
  .program-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

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

  .price-card h3 {
    font-size: 38px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 34px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .btn {
    padding: 0 16px;
  }
}
