:root {
  --dark: #000211;
  --deep: #01041b;
  --cyan: #46e6ff;
  --cyan-strong: #2ab3ff;
  --danger: #ff3b3b;
  --danger-strong: #ff6b5f;
  --text: #fafafa;
  --button-a: #70e1df;
  --button-b: #1bc0df;
  --button-c: #10a0df;
  --gold: #f6c75b;
  --gold-strong: #ffdf86;
  --gold-deep: #8a5d12;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #000;
}

body::-webkit-scrollbar-thumb {
  background: #1a9bff;
  border: 2px solid #000;
  border-radius: 10px;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
p {
  margin: 0;
}

strong {
  font-weight: 800;
}

.hero {
  min-height: 800px;
  background-color: #000710;
  background-image: url("assets/hero-pc.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto;
}

.hero-inner {
  display: flex;
  align-items: center;
  width: min(1280px, calc(100% - 10rem));
  min-height: 800px;
  margin: 0 auto;
}

.hero-copy {
  display: flex;
  width: 40%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
}

.hero-logo {
  height: auto;
  width: 67%;
}

.course-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
}

.course-logo span {
  color: var(--cyan);
  font-size: 0.85em;
  font-weight: 700;
}

.course-logo strong {
  color: #fff;
  font-size: 3.6em;
  font-weight: 900;
}

.course-logo small {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 8px;
  padding: 5px 12px;
  border: 1px solid rgb(42 179 255 / 0.62);
  border-radius: 999px;
  color: #fff;
  font-size: 0.62em;
  font-weight: 500;
  line-height: 1.2;
}

.hero h1 {
  color: #fff;
  font-size: 2.1em;
  font-weight: 400;
  line-height: 1.2;
}

.hero p {
  width: 96%;
  color: #fafafa;
  font-size: 1.1em;
  line-height: 1.5;
}

.date,
.checkout-date,
.cash {
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.date {
  width: 100%;
}

.cta {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  width: 100%;
  overflow: hidden;
  padding: 30px 60px;
  border-radius: 5px;
  background-image: linear-gradient(135deg, var(--button-a) 0%, var(--button-b) 50%, var(--button-c) 100%);
  color: #00041c;
  font-size: 1.24em;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.cta::before,
.cta::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.cta::before {
  padding: 1px;
  background: linear-gradient(to bottom, rgb(255 255 255 / 0.32), transparent);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.cta::after {
  box-shadow: 0 15px 20px rgb(0 0 25 / 0.13), 0 -3px rgb(73 2 57 / 0.2) inset;
}

.cta:hover,
.cta:focus-visible {
  filter: brightness(1.1);
}

.section-heading {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.section-heading h2,
.faq h2 {
  color: #fff;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1.2;
}

.divider {
  display: block;
  width: 115px;
  height: 6px;
  margin-top: 18px;
  background: var(--cyan);
}

.section-cta {
  width: min(565px, 100%);
}

.target-title {
  display: flex;
  min-height: 206px;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  background-image: linear-gradient(180deg, #01041a 0%, #00051b 100%);
}

.target-title h2 {
  width: min(720px, calc(100% - 2rem));
}

.cards-section {
  display: flex;
  min-height: 746px;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem;
  background-image: linear-gradient(180deg, #00051c 0%, #000112 100%);
}

.cards-grid {
  display: grid;
  width: min(1280px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.glass-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 2px solid rgb(42 179 255 / 0.2);
  border-radius: 15px;
  background: rgb(0 4 27 / 0.7);
  backdrop-filter: blur(15px);
}

.glass-card::after {
  position: absolute;
  top: 0;
  left: 5%;
  width: 20%;
  height: 5px;
  border-radius: 5px;
  background: var(--cyan);
  content: "";
}

.glass-card img {
  width: 100%;
  border-radius: 15px;
}

.copy-card {
  min-height: 360px;
  padding: 2rem;
}

.copy-card h3,
.module-card h3 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 1.55em;
  font-weight: 800;
  line-height: 1.2;
}

.copy-card p,
.copy-card li,
.module-card h3 {
  color: #fafafa;
}

.copy-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.copy-card li {
  position: relative;
  padding-left: 24px;
  font-size: 1.02em;
  line-height: 1.45;
}

.copy-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--cyan);
  content: "✓";
  font-weight: 900;
}

.negative-card {
  border-color: rgb(255 59 59 / 0.38);
  box-shadow: 0 0 30px rgb(255 59 59 / 0.08);
}

.negative-card::after {
  background: linear-gradient(90deg, var(--danger), var(--danger-strong));
  box-shadow: 0 0 16px rgb(255 59 59 / 0.35);
}

.negative-card li::before {
  color: var(--danger-strong);
  content: "X";
}

.copy-card p {
  font-size: 1.1em;
  line-height: 1.45;
}

.scroll-bottom {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-bottom.ativo {
  opacity: 1;
  transform: translateY(0);
}

.cards-grid .scroll-bottom:nth-child(2) {
  transition-delay: 0.12s;
}

.glass-card.ativo:hover {
  transform: scale(1.02);
}

.after-cards {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

#stars-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  pointer-events: none;
  mix-blend-mode: screen;
}

.checkout,
.pablo,
.faq,
.copy-section {
  position: relative;
}

.copy-section {
  padding: 4rem;
  background: #000212;
}

.modules-section {
  padding-top: 6rem;
  background-image: linear-gradient(180deg, #000112 0%, #000212 100%);
}

.testimonial-section,
.bonus-section,
.guarantee-section {
  background: #000212;
}

.bonus-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 16%, rgb(246 199 91 / 0.2) 0%, rgb(138 93 18 / 0.08) 28%, transparent 58%),
    linear-gradient(180deg, #090704 0%, #000212 100%);
}

.bonus-section::before {
  position: absolute;
  top: 10%;
  left: 50%;
  width: min(760px, 78vw);
  height: 180px;
  border-radius: 999px;
  background: linear-gradient(91deg, var(--gold) 0%, var(--gold-strong) 50%, var(--gold-deep) 100%);
  content: "";
  filter: blur(120px);
  opacity: 0.32;
  pointer-events: none;
  transform: translateX(-50%);
}

.bonus-section .divider {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-strong), var(--gold));
  box-shadow: 0 0 22px rgb(246 199 91 / 0.45);
}

.bonus-section h2 strong,
.bonus-section .copy-card h3,
.bonus-section .copy-card strong,
.bonus-section .total-bonus strong {
  color: var(--gold-strong);
}

.bonus-section .glass-card {
  border-color: rgb(246 199 91 / 0.42);
  background:
    linear-gradient(180deg, rgb(246 199 91 / 0.13), rgb(0 4 27 / 0.72) 42%),
    rgb(0 4 27 / 0.72);
  box-shadow: 0 0 32px rgb(246 199 91 / 0.1), inset 0 1px 0 rgb(255 223 134 / 0.18);
}

.bonus-section .glass-card::after {
  background: linear-gradient(90deg, var(--gold), var(--gold-strong));
  box-shadow: 0 0 18px rgb(246 199 91 / 0.55);
}

.bonus-section .copy-card {
  text-align: center;
}

.bonus-section .copy-card p {
  color: #fff8e6;
}

.bonus-card-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgb(246 199 91 / 0.42));
}

.bonus-card-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bonus-card-detail strong {
  display: block;
  line-height: 1.2;
}

.bonus-card-price {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35em;
}

.bonus-card-price strong {
  display: inline;
}

.copy-inner {
  position: relative;
  z-index: 5;
  display: flex;
  width: min(1280px, 100%);
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.copy-grid {
  display: grid;
  width: 100%;
  gap: 20px;
  margin-top: 42px;
}

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

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

@media (min-width: 768px) {
  .bonus-grid {
    position: relative;
    padding-bottom: 18px;
  }

  .bonus-grid::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-strong), var(--gold), transparent);
    box-shadow: 0 0 18px rgb(246 199 91 / 0.45);
    content: "";
  }
}

.stats-row {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(980px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.stats-row span {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid rgb(42 179 255 / 0.2);
  border-radius: 15px;
  background: rgb(0 4 27 / 0.5);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.module-card {
  min-height: 165px;
  padding: 1.5rem;
}

.module-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 0.95em;
  font-weight: 800;
  text-transform: uppercase;
}

.testimonial-carousel,
.guarantee-card {
  display: flex;
  width: min(900px, 100%);
  flex-direction: column;
  align-items: center;
  padding: 2.4rem;
}

.testimonial-carousel h2,
.guarantee-card h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.testimonial-viewport {
  width: 100%;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-slide {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  padding: 0 1rem;
}

.tweet-card {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 1.5rem;
  border: 1px solid rgb(15 20 25 / 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 48px rgb(0 0 0 / 0.22);
}

.tweet-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tweet-avatar {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-strong));
  color: #00041c;
  font-size: 0.9em;
  font-weight: 900;
}

.tweet-author {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.tweet-author strong {
  color: #0f1419;
  font-size: 1em;
  font-weight: 800;
}

.tweet-author span,
.tweet-replying,
.tweet-meta {
  color: #536471;
}

.tweet-author span {
  overflow: hidden;
  max-width: 100%;
  font-size: 0.92em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tweet-replying {
  margin-top: 14px;
  font-size: 0.95em;
  line-height: 1.35;
}

.tweet-replying strong {
  color: #1d9bf0;
}

.tweet-text,
.guarantee-card p {
  font-size: 1.18em;
  line-height: 1.55;
}

.tweet-text {
  margin-top: 10px;
  color: #0f1419;
  text-align: left;
}


.guarantee-card p {
  color: #fafafa;
  text-align: center;
}

.tweet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #eff3f4;
  font-size: 0.88em;
  line-height: 1.3;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.testimonial-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgb(70 230 255 / 0.42);
  border-radius: 50%;
  background: rgb(0 4 27 / 0.62);
  color: #fff;
  cursor: pointer;
  font-size: 2em;
  font-weight: 500;
  line-height: 1;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  border-color: var(--cyan);
  background: rgb(42 179 255 / 0.16);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.32);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.testimonial-dots button.is-active {
  width: 28px;
  background: var(--cyan);
}

.guarantee-card p + p {
  margin-top: 16px;
}

.guarantee-card .cta,
.copy-inner > .cta {
  margin-top: 42px;
}

.total-bonus {
  margin-top: 34px;
  color: #fff5d6;
  font-size: 1.5em;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

.bonus-section .total-bonus {
  padding: 1rem 1.4rem;
  border: 1px solid rgb(246 199 91 / 0.38);
  border-radius: 15px;
  background: rgb(50 32 4 / 0.45);
  box-shadow: 0 0 28px rgb(246 199 91 / 0.13);
  backdrop-filter: blur(10px);
}

.checkout {
  min-height: 775px;
  padding: 350px 4rem 72px;
  background-color: #000212;
  background-image: url("assets/BG-CHECKOUT-1.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.checkout::before {
  position: absolute;
  top: 300px;
  left: 50%;
  z-index: 0;
  width: 70rem;
  height: 10rem;
  border-radius: 0.5rem;
  background: linear-gradient(91deg, #2ab3ff 0%, #00a4ff 100%);
  content: "";
  filter: blur(135px);
  mix-blend-mode: screen;
  opacity: 0.45;
  pointer-events: none;
  transform: translateX(-50%);
}

.checkout-card {
  position: relative;
  z-index: 5;
  display: flex;
  width: min(614px, 48%);
  min-height: 391px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid rgb(42 179 255 / 0.2);
  border-radius: 15px;
  background: rgb(0 4 27 / 0.7);
  backdrop-filter: blur(15px);
}

.checkout-logo {
  display: block;
  height: auto;
  width: 220px;
  margin-bottom: 28px;
}

.price {
  color: #fff;
  font-size: 3.6em;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.price strong {
  font-weight: 900;
}

.cash {
  margin-top: 12px;
  margin-bottom: 14px;
  font-weight: 700;
}

.offer-note {
  width: min(440px, 100%);
  margin-top: 24px;
  color: #fafafa;
  font-size: 0.95em;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.checkout-cta {
  width: 89%;
}

.pablo {
  display: flex;
  min-height: 1080px;
  align-items: center;
  border-top: 1px solid rgb(42 179 255 / 0.27);
  border-right: 1px solid rgb(42 179 255 / 0.27);
  border-radius: 80px 80px 0 60px;
  background-color: #000211;
  background-image: url("assets/expert-pc.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4rem;
}

.pablo-inner {
  display: flex;
  width: min(1280px, 100%);
  justify-content: flex-end;
  margin: 0 auto;
}

.pablo-card {
  position: relative;
  z-index: 5;
  width: 45%;
  padding: 2rem;
  border: 1px solid rgb(42 179 255 / 0.2);
  border-radius: 15px;
  background: rgb(0 4 27 / 0.82);
  backdrop-filter: blur(15px);
}

.pablo-card h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1.2;
}

.pablo-card p {
  margin-bottom: 0.9rem;
  color: #fafafa;
  font-size: 1.1em;
  line-height: 1.45;
}

.pablo-card a {
  color: var(--cyan-strong);
}

.pablo-scroll {
  max-height: 500px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 20px;
}

.pablo-scroll::-webkit-scrollbar {
  width: 5px;
}

.pablo-scroll::-webkit-scrollbar-track {
  background: rgb(34 153 130 / 0.12);
}

.pablo-scroll::-webkit-scrollbar-thumb {
  border-radius: 1px;
  background: var(--cyan);
}

.faq {
  min-height: 1300px;
  padding: 4rem;
  background: #000212;
}

.faq::after {
  position: absolute;
  top: 500px;
  left: -300px;
  width: 40rem;
  height: 40rem;
  background: linear-gradient(90deg, rgb(70 230 241 / 0.1) 0%, rgb(70 230 241 / 0.4) 25%, rgb(70 230 241 / 0.8) 50%, rgb(70 230 241 / 0.4) 75%, rgb(70 230 241 / 0.1) 100%);
  content: "";
  filter: blur(250px);
  mix-blend-mode: screen;
  opacity: 0.5;
  pointer-events: none;
  transform: rotate(-177deg);
}

.faq-inner {
  position: relative;
  z-index: 5;
  display: flex;
  width: min(1280px, 100%);
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.faq h2 {
  margin-top: 0;
  text-align: center;
}

.faq-list {
  width: min(768px, 60%);
  margin: 60px 0;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgb(42 179 255 / 0.2);
  border-radius: 15px;
  background: rgb(0 4 27 / 0.22);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 15px;
  min-height: 70px;
  padding: 25px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
}

.faq-icon {
  flex: 0 0 auto;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  color: #fafafa;
  font-size: 1.1em;
  line-height: 1.4;
  transition: max-height 0.3s ease;
}

.faq-content p {
  padding: 0 20px 20px;
}

.faq-cta {
  width: min(488px, 100%);
}

footer {
  position: relative;
  z-index: 3;
  padding: 2rem;
  border: 1px solid rgb(42 179 255 / 0.2);
  background: rgb(0 4 27 / 0.7);
  backdrop-filter: blur(5px);
  color: #fff;
  font-size: 1em;
  text-align: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .hero {
    min-height: 815px;
    background-image: url("assets/BG-MOBILE.webp");
    background-position: 0 -8px;
    background-size: contain;
  }

  .hero-inner {
    align-items: flex-end;
    width: 100%;
    min-height: 815px;
    padding: 1rem 1rem 3.7rem;
  }

  .hero-copy {
    position: relative;
    z-index: 0;
    width: 100%;
    align-items: center;
    gap: 20px;
    padding: 2rem 1rem;
    border-radius: 10px;
    background: rgb(0 4 27 / 0.7);
    text-align: center;
    animation: fadeInUp 1.25s ease both;
    backdrop-filter: blur(10px);
  }

  .hero-copy::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(to bottom, rgb(42 179 255 / 0.66), transparent);
    content: "";
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
  }

  .hero-logo {
    width: 55%;
  }

  .course-logo {
    align-items: center;
  }

  .course-logo strong {
    font-size: 2.55em;
  }

  .course-logo small {
    justify-content: center;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.82em;
  }

  .hero p {
    width: 100%;
    font-size: 1em;
    line-height: 1.45;
  }

  .cta {
    padding: 30px 15px;
    font-size: 1.08em;
  }

  .date,
  .checkout-date,
  .cash {
    font-size: 0.8em;
    line-height: 1.4;
  }

  .section-heading h2,
  .faq h2 {
    font-size: 1.4em;
  }

  .divider {
    width: 58px;
    height: 5px;
  }

  .section-cta {
    position: relative;
    z-index: 2;
  }

  .target-title {
    min-height: 150px;
    padding: 2rem 1rem;
  }

  .cards-section {
    min-height: 0;
    padding: 2rem 1rem 5rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .copy-card {
    min-height: 0;
    padding: 1.5rem;
  }

  .copy-card h3,
  .module-card h3 {
    font-size: 1.35em;
  }

  .copy-section {
    padding: 2rem 1rem;
  }

  .modules-section {
    padding-top: 3rem;
  }

  .copy-grid,
  .modules-grid,
  .bonus-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .stats-row {
    margin-top: 24px;
  }

  .module-card {
    min-height: 0;
    padding: 1.4rem;
  }

  .testimonial-carousel,
  .guarantee-card {
    padding: 1.5rem;
  }

  .testimonial-carousel h2,
  .guarantee-card h2 {
    font-size: 1.4em;
  }

  .testimonial-slide {
    padding: 0;
  }

  .tweet-card {
    padding: 1.15rem;
    border-radius: 15px;
  }

  .tweet-avatar {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 0.8em;
  }

  .tweet-text,
  .guarantee-card p {
    font-size: 1em;
  }

  .tweet-meta {
    gap: 8px 12px;
    font-size: 0.8em;
  }

  .testimonial-controls {
    gap: 12px;
    margin-top: 24px;
  }

  .testimonial-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.7em;
  }

  .guarantee-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
    font-size: 1.25em;
  }

  .total-bonus {
    font-size: 1.2em;
  }

  .checkout {
    min-height: 620px;
    padding: 155px 1rem 2rem;
    background-position: top center;
    background-size: 488px auto;
  }

  .checkout::before {
    top: 0;
    width: 10rem;
    height: 10rem;
  }

  .checkout-card {
    width: 100%;
    padding: 2rem 1rem;
  }

  .checkout-logo {
    width: 62%;
  }

  .price {
    font-size: 2em;
  }

  .offer-note {
    font-size: 0.8em;
  }

  .checkout-cta {
    width: 100%;
  }

  .pablo {
    min-height: 1460px;
    align-items: flex-start;
    border-radius: 40px 40px 0 0;
    background-image: url("assets/BG-EXPERT-MOBILE.webp");
    background-position: top center;
    background-size: contain;
    padding: 380px 1rem 2rem;
  }

  .pablo-card {
    width: 100%;
    padding: 1.35rem 1rem;
  }

  .pablo-card h2 {
    font-size: 33px;
  }

  .pablo-card p {
    font-size: 1em;
  }

  .pablo-scroll {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .faq {
    min-height: 0;
    padding: 2rem 1rem;
  }

  .faq::after {
    display: none;
  }

  .faq-list {
    width: 100%;
    margin: 20px 0 28px;
  }

  .faq-item button {
    min-height: 56px;
    padding: 18px 15px;
    font-size: 14px;
    line-height: 1.4;
  }

  .faq-content {
    font-size: 14px;
  }

  .faq-content p {
    padding: 0 15px 15px;
  }

  footer {
    padding: 1rem;
    font-size: 0.9em;
  }
}

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

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