/* ── BASE & VARIABLES ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* HSL Tailored Colors */
  --coral-h: 14;
  --coral-s: 88%;
  --coral-l: 63%;
  --coral: hsl(var(--coral-h), var(--coral-s), var(--coral-l));
  --coral-light: hsl(var(--coral-h), var(--coral-s), 96%);
  --coral-mid: hsl(var(--coral-h), var(--coral-s), 82%);
  --coral-dark: hsl(var(--coral-h), var(--coral-s), 45%);

  --mint-h: 162;
  --mint-s: 45%;
  --mint-l: 65%;
  --mint: hsl(var(--mint-h), var(--mint-s), var(--mint-l));
  --mint-light: hsl(var(--mint-h), var(--mint-s), 96%);
  --mint-mid: hsl(var(--mint-h), var(--mint-s), 82%);
  --mint-dark: hsl(var(--mint-h), var(--mint-s), 35%);

  --yellow-h: 44;
  --yellow-s: 92%;
  --yellow-l: 62%;
  --yellow: hsl(var(--yellow-h), var(--yellow-s), var(--yellow-l));
  --yellow-light: hsl(var(--yellow-h), var(--yellow-s), 95%);
  --yellow-mid: hsl(var(--yellow-h), var(--yellow-s), 80%);
  --yellow-dark: hsl(var(--yellow-h), var(--yellow-s), 30%);

  --blue-h: 202;
  --blue-s: 57%;
  --blue-l: 63%;
  --blue: hsl(var(--blue-h), var(--blue-s), var(--blue-l));
  --blue-light: hsl(var(--blue-h), var(--blue-s), 96%);
  --blue-mid: hsl(var(--blue-h), var(--blue-s), 82%);
  --blue-dark: hsl(var(--blue-h), var(--blue-s), 38%);

  --lilac-h: 266;
  --lilac-s: 42%;
  --lilac-l: 73%;
  --lilac: hsl(var(--lilac-h), var(--lilac-s), var(--lilac-l));
  --lilac-light: hsl(var(--lilac-h), var(--lilac-s), 96%);
  --lilac-mid: hsl(var(--lilac-h), var(--lilac-s), 85%);
  --lilac-dark: hsl(var(--lilac-h), var(--lilac-s), 45%);

  --beige: hsl(38, 30%, 97%);
  --beige-mid: hsl(38, 20%, 90%);
  --white: hsl(0, 0%, 100%);
  --text-dark: hsl(21, 20%, 20%);
  --text-mid: hsl(21, 12%, 40%);
  --text-light: hsl(21, 8%, 60%);

  /* Border Radii */
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-xl: 50px;

  /* Shadows */
  --shadow-soft: 0 10px 30px rgba(90, 60, 40, 0.06);
  --shadow-card: 0 6px 20px rgba(90, 60, 40, 0.05);
  --shadow-floating: 0 20px 40px rgba(90, 60, 40, 0.12);
  
  /* Transition Timing */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: var(--beige);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

/* ── PAPER TEXTURE EFFECT ── */
.paper-effect {
  position: relative;
}
.paper-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  pointer-events: none;
  background-image: radial-gradient(var(--text-dark) 0.5px, transparent 0.5px),
                    radial-gradient(var(--text-dark) 0.5px, var(--white) 0.5px);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
  border-radius: inherit;
  z-index: 10;
}

/* ── DECORATIVE FLOATING SHAPES ── */
.floating-ornament {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  animation: floatSlow 12s ease-in-out infinite alternate;
}
@keyframes floatSlow {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(10deg); }
}

/* ── UTILITIES ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.tag-coral { background-color: var(--coral-light); color: var(--coral-dark); }
.tag-mint { background-color: var(--mint-light); color: var(--mint-dark); }
.tag-yellow { background-color: var(--yellow-light); color: var(--yellow-dark); }
.tag-blue { background-color: var(--blue-light); color: var(--blue-dark); }
.tag-lilac { background-color: var(--lilac-light); color: var(--lilac-dark); }

/*.btn size */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.btn:hover {
  transform: translateY(-3px) scale(1.02);
}
.btn:active {
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, hsl(var(--coral-h), var(--coral-s), 55%) 100%);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(244, 121, 90, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 12px 30px rgba(244, 121, 90, 0.45);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--mint) 0%, hsl(var(--mint-h), var(--mint-s), 55%) 100%);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(125, 207, 182, 0.3);
}
.btn-secondary:hover {
  box-shadow: 0 12px 30px rgba(125, 207, 182, 0.4);
}
.btn-white {
  background-color: var(--white);
  color: var(--coral-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.btn-white:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.btn-full {
  width: 100%;
}

.section {
  padding: 80px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}
.section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-sub {
  color: var(--text-mid);
  font-size: 16px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.verified-badge {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: -3px;
  object-fit: contain;
  flex: 0 0 auto;
}
.verified-badge-sm {
  width: 15px;
  height: 15px;
  vertical-align: -2px;
  margin-left: 5px;
}
.verified-badge-strip {
  width: 20px;
  height: 20px;
}
.verified-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.divider::before, .divider::after {
  content: "";
  height: 4px;
  width: 40px;
  border-radius: 4px;
  background-color: var(--beige-mid);
}
.divider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--coral);
}

/* ── NAVBAR ("ILHA FLUTUANTE") ── */
.navbar-wrapper {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 600px;
  z-index: 100;
  transition: top 0.3s;
}
.navbar {
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 30px rgba(90, 60, 40, 0.05);
  transition: background-color 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-floating);
  border-color: rgba(255, 255, 255, 0.9);
}
.navbar-logo {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.navbar-logo span {
  background-color: var(--coral-light);
  color: var(--coral);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.navbar-btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, var(--yellow-light) 0%, transparent 40%),
              radial-gradient(circle at bottom left, var(--mint-light) 0%, transparent 45%),
              linear-gradient(to bottom, var(--white) 0%, var(--beige) 100%);
  padding: 20px 0 32px;
}
.hero-pencils-decor {
  position: absolute;
  /* Show only the tips: image is tips+small shaft. left=-60px pushes the shaft off-screen */
  left: -55px;
  top: 50%;
  transform: translateY(-50%);
  height: 75%;
  max-height: 480px;
  width: auto;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
  transition: transform 0.4s ease, opacity 0.3s ease;
  filter: drop-shadow(3px 0 8px rgba(0,0,0,0.08));
}
.hero:hover .hero-pencils-decor {
  transform: translateY(-50%) translateX(4px);
  opacity: 1;
}
@media (max-width: 1024px) {
  .hero-pencils-decor {
    height: 65%;
    left: -60px;
  }
}
@media (max-width: 768px) {
  .hero-pencils-decor {
    height: 55%;
    left: -65px;
    opacity: 0.85;
  }
}
@media (max-width: 580px) {
  .hero-pencils-decor {
    height: 50%;
    left: -70px;
    opacity: 0.8;
  }
}
@media (max-width: 400px) {
  .hero-pencils-decor {
    height: 42%;
    left: -72px;
    opacity: 0.75;
  }
}
.hero-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.hero-video-wrapper {
  background-color: #1a1a1a;
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(90, 60, 40, 0.15), 0 0 0 2px rgba(255,255,255,0.1) inset;
  border: 6px solid #1a1a1a;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 310px;
  margin: 16px auto;
  aspect-ratio: 9 / 16;
}
.hero-video-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 12px;
  background-color: #1a1a1a;
  border-radius: 0 0 8px 8px;
  z-index: 10;
}
.hero-video-wrapper:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: 0 30px 60px rgba(90, 60, 40, 0.22);
}
.video-frame {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  display: block;
  background-color: var(--beige);
  position: relative;
}
.video-frame lt-v2 {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.video-poster-button {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: var(--beige);
}
.video-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-poster-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 14, 10, 0.02), rgba(20, 14, 10, 0.28));
  pointer-events: none;
}
.video-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.94);
  color: var(--coral-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-family: 'Fredoka', sans-serif;
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
  z-index: 2;
}
.video-poster-label {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;
  width: calc(100% - 32px);
  padding: 8px 12px;
  border-radius: 999px;
  background-color: rgba(255,255,255,0.92);
  color: var(--text-dark);
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
.video-loading-message {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  color: var(--white);
  background-color: #1a1a1a;
  font-family: 'Fredoka', sans-serif;
  font-size: 14px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(28px, 4.5vw, 38px);
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.15;
}
.hero-headline span {
  color: var(--coral);
  position: relative;
  display: inline-block;
}
.hero-headline span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background-color: var(--yellow-light);
  z-index: -1;
  border-radius: 4px;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.45;
}
.hero-support {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 32px;
  padding: 16px 20px;
  background-color: var(--white);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--mint);
  box-shadow: var(--shadow-card);
  text-align: left;
  line-height: 1.5;
  max-width: 580px;
}
.hero-bullets {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  max-width: 480px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 600;
  text-align: left;
}
.bullet-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.bi-coral { background-color: var(--coral-light); color: var(--coral); }
.bi-mint { background-color: var(--mint-light); color: var(--mint); }
.bi-yellow { background-color: var(--yellow-light); color: var(--yellow-dark); }
.bi-blue { background-color: var(--blue-light); color: var(--blue); }
.bi-lilac { background-color: var(--lilac-light); color: var(--lilac); }

.hero-cta-area {
  width: 100%;
  max-width: 480px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--beige-mid);
}
.hero-cta-micro {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
}

/* ── PAIN SECTION ── */
.pain {
  background-color: var(--white);
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) {
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.pain-card {
  background-color: var(--beige);
  border-radius: var(--radius-md);
  padding: 32px;
  border-left: 6px solid var(--coral);
  box-shadow: var(--shadow-card);
}
.pain-card p {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.6;
}
.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.5;
}
.pain-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--coral);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 0 4px var(--coral-light);
}

/* ── SOLUTION SECTION ── */
.solution {
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--white) 100%);
}
.solution-marquee-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.solution-marquee-container {
  overflow: hidden;
  width: 100%;
  display: flex;
}
.solution-marquee-track {
  display: flex;
  width: max-content;
  gap: 20px;
}
.solution-marquee-group {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
.solution-card {
  width: 290px;
  flex: 0 0 290px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
}
.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-floating);
}
.solution-card.c-coral { border-color: var(--coral-light); }
.solution-card.c-coral:hover { border-color: var(--coral-mid); }
.solution-card.c-mint { border-color: var(--mint-light); }
.solution-card.c-mint:hover { border-color: var(--mint-mid); }
.solution-card.c-yellow { border-color: var(--yellow-light); }
.solution-card.c-yellow:hover { border-color: var(--yellow-mid); }
.solution-card.c-blue { border-color: var(--blue-light); }
.solution-card.c-blue:hover { border-color: var(--blue-mid); }
.solution-card.c-lilac { border-color: var(--lilac-light); }
.solution-card.c-lilac:hover { border-color: var(--lilac-mid); }
.solution-card.c-beige { border-color: var(--beige-mid); }
.solution-card.c-beige:hover { border-color: var(--text-light); }

.solution-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: inline-block;
  background-color: var(--beige);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.solution-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.solution-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}
.solution-image-showcase {
  width: 100%;
  margin: 0 auto 28px;
  overflow: hidden;
  display: flex;
}
.solution-image-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: solution-images-scroll 32s linear infinite;
  will-change: transform;
}
.solution-image-group {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
}
.solution-image-card {
  width: clamp(220px, 24vw, 330px);
  flex: 0 0 clamp(220px, 24vw, 330px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 2px solid var(--beige-mid);
  background-color: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth), border-color 0.3s ease;
}
.solution-image-card:hover {
  transform: translateY(-5px);
  border-color: var(--mint-mid);
  box-shadow: var(--shadow-floating);
}
.solution-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@keyframes solution-images-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 900px) {
  .solution-image-track,
  .solution-image-group {
    gap: 14px;
  }
  .solution-image-card {
    width: min(72vw, 320px);
    flex-basis: min(72vw, 320px);
  }
}

/* Scroll Animations for Solution Marquee */
.solution-marquee-left .solution-marquee-track {
  animation: solution-scroll-left 35s linear infinite;
}
.solution-marquee-right .solution-marquee-track {
  animation: solution-scroll-right 35s linear infinite;
}
.solution-marquee-container:hover .solution-marquee-track {
  animation-play-state: paused;
}

@keyframes solution-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes solution-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── MODULES GRID ── */
.modules {
  background-color: var(--beige);
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.module-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease-spring), border-color 0.25s, box-shadow 0.25s;
}
.module-card:hover {
  transform: translateY(-4px);
  border-color: var(--coral-light);
  box-shadow: var(--shadow-floating);
}
.module-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', sans-serif;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.module-num-1 { background-color: var(--coral-light); color: var(--coral-dark); }
.module-num-2 { background-color: var(--yellow-light); color: var(--yellow-dark); }
.module-num-3 { background-color: var(--mint-light); color: var(--mint-dark); }
.module-num-4 { background-color: var(--blue-light); color: var(--blue-dark); }
.module-num-5 { background-color: var(--lilac-light); color: var(--lilac-dark); }
.module-num-6 { background-color: var(--coral-light); color: var(--coral-dark); }
.module-num-7 { background-color: var(--mint-light); color: var(--mint-dark); }

.module-details {
  flex-grow: 1;
}
.module-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.module-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.4;
}

@media (max-width: 760px) {
  .modules-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .module-card {
    padding: 20px;
  }
}

/* ── BONUS SECTION ── */
.bonus {
  background: linear-gradient(135deg, var(--yellow-light) 0%, var(--white) 100%);
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.bonus-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--beige-mid);
}
.bonus-card::after {
  content: "REGALO";
  position: absolute;
  top: 14px;
  right: -24px;
  background-color: var(--yellow);
  color: var(--yellow-dark);
  font-size: 10px;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  padding: 4px 28px;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.bonus-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.bonus-icon-1 { background-color: var(--coral-light); }
.bonus-icon-2 { background-color: var(--mint-light); }
.bonus-icon-3 { background-color: var(--lilac-light); }

.bonus-cover-wrapper {
  width: 85px;
  height: 115px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-floating);
  flex-shrink: 0;
  background-color: var(--beige-light);
  border: 2.5px solid var(--beige-mid);
}
.bonus-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.bonus-card:hover .bonus-cover-img {
  transform: scale(1.08);
}

.bonus-info {
  flex-grow: 1;
}
.bonus-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  padding-right: 28px;
}
.bonus-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}


/* ── FOR WHOM SECTION ── */
.forwhom {
  background-color: var(--white);
}
.forwhom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 800px) {
  .forwhom-grid {
    grid-template-columns: 1fr;
  }
}
.forwhom-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.forwhom-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 600;
  padding: 16px 20px;
  background-color: var(--beige);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s var(--ease-spring);
}
.forwhom-list li:hover {
  transform: translateX(5px);
}
.forwhom-emoji {
  font-size: 24px;
  flex-shrink: 0;
  background-color: var(--white);
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

/* ── HOW IT WORKS ── */
.how {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--white) 100%);
}
.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}
@media (max-width: 900px) {
  .steps-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .steps-container::before {
    display: none;
  }
}
.steps-container::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, var(--coral-mid), var(--yellow-mid), var(--mint-mid), var(--lilac-mid));
  z-index: 0;
  border-radius: 4px;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 16px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-floating);
  color: var(--white);
}
.step-num-1 { background-color: var(--coral); }
.step-num-2 { background-color: var(--yellow); color: var(--yellow-dark); }
.step-num-3 { background-color: var(--mint); }
.step-num-4 { background-color: var(--lilac); }

.step-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.step-note {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.4;
}
.how-note {
  font-size: 14px;
  color: var(--text-mid);
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow-card);
  margin-top: 48px;
  text-align: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* ── BENEFITS SECTION ── */
.benefits {
  background-color: var(--beige);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.benefit-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-floating);
}
.benefit-card.c-coral { border-color: var(--coral-light); }
.benefit-card.c-coral:hover { border-color: var(--coral-mid); }
.benefit-card.c-mint { border-color: var(--mint-light); }
.benefit-card.c-mint:hover { border-color: var(--mint-mid); }
.benefit-card.c-yellow { border-color: var(--yellow-light); }
.benefit-card.c-yellow:hover { border-color: var(--yellow-mid); }
.benefit-card.c-blue { border-color: var(--blue-light); }
.benefit-card.c-blue:hover { border-color: var(--blue-mid); }
.benefit-card.c-lilac { border-color: var(--lilac-light); }
.benefit-card.c-lilac:hover { border-color: var(--lilac-mid); }

.benefit-icon {
  font-size: 32px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--beige);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s var(--ease-spring);
}
.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}
.benefit-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.benefit-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ── OFFER CARD ── */
.offer {
  background: linear-gradient(135deg, var(--coral-light) 0%, var(--white) 50%, var(--mint-light) 100%);
  position: relative;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}
.offer-options {
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: visible;
}
.offer-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-floating);
  border: 3px solid var(--coral-mid);
  position: relative;
}
.best-seller-badge {
  display: block;
  text-align: center;
  margin: -52px auto 20px auto;
  width: fit-content;
  background: linear-gradient(135deg, var(--coral) 0%, #e8512a 100%);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 26px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(244,121,90,0.45), 0 0 0 3px rgba(244,121,90,0.18);
  letter-spacing: 0.08em;
  white-space: nowrap;
  animation: badge-pulse 2.4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(244,121,90,0.45), 0 0 0 3px rgba(244,121,90,0.18); }
  50%       { box-shadow: 0 6px 28px rgba(244,121,90,0.65), 0 0 0 7px rgba(244,121,90,0.10); }
}
.offer-card.basic-offer {
  border-color: var(--beige-mid);
  box-shadow: var(--shadow-card);
}
.offer-card.basic-offer::before {
  content: "MATERIAL PRINCIPAL";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--text-dark);
  color: var(--white);
  font-family: 'Fredoka', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  z-index: 2;
}
.offer-card-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 14px;
}
.offer-card-title span {
  color: var(--coral-dark);
}
.offer-product-preview {
  display: block;
  width: min(100%, 330px);
  height: auto;
  margin: 0 auto 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(90, 60, 40, 0.12);
}
.offer-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}
.offer-line-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  font-weight: 800;
}
.offer-line-included .offer-line-icon {
  color: var(--mint-dark);
  background-color: var(--mint-light);
}
.offer-line-excluded {
  color: var(--text-light);
}
.offer-line-excluded .offer-line-icon {
  color: var(--text-light);
  background-color: var(--beige-mid);
}
.offer-line-excluded span:last-child {
  text-decoration: line-through;
}
.offer-title-main {
  font-family: 'Fredoka', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.2;
}
.offer-sub-label {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.offer-includes-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.offer-includes {
  margin-bottom: 28px;
}
.offer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--beige-mid);
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}
.offer-item:last-child {
  border-bottom: none;
}
.offer-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--mint-light);
  color: var(--mint-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  font-weight: 700;
}

/* Price block */
.price-block {
  margin: 24px 0;
  text-align: center;
  background-color: var(--beige);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--beige-mid);
}
.price-original {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.price-original-value {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.price-current-label {
  font-size: 11px;
  color: var(--text-mid);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.price-anchor-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: var(--yellow-light);
  color: var(--yellow-dark);
  border: 1px dashed var(--yellow-mid);
  font-size: 12px;
  font-weight: 800;
}
.price-tag-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.price-accent {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(36px, 5vw, 44px);
  font-weight: 700;
  color: var(--coral-dark);
  display: flex;
  align-items: baseline;
}
.price-accent span {
  font-size: 20px;
  margin-right: 4px;
}
.price-details {
  font-size: 12px;
  color: var(--text-mid);
  margin-top: 4px;
}



/* ── TRUST SECTION ── */
.trust {
  background-color: var(--beige);
}
.trust-inner {
  max-width: 750px;
  margin: 0 auto;
}
.trust-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  text-align: center;
  border: 1px solid var(--beige-mid);
}
.trust-description {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}
.trust-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 24px;
  border-radius: var(--radius-sm);
}
.trust-marquee-container {
  overflow: hidden;
  width: 100%;
  display: flex;
}
.trust-marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: trust-scroll-left 20s linear infinite;
}
.trust-marquee-group {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.trust-seal {
  width: 170px;
  flex: 0 0 170px;
  background-color: var(--beige);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease-smooth);
  text-align: center;
}
.trust-seal:hover {
  background-color: var(--white);
  border-color: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.trust-seal-icon {
  font-size: 26px;
  margin-bottom: 8px;
  display: block;
}
.trust-seal-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}
.trust-marquee-container:hover .trust-marquee-track {
  animation-play-state: paused;
}
@keyframes trust-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Left & Right gradient fades for seamless blending in trust section */
.trust-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 10;
}
.trust-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--white) 15%, transparent);
}
.trust-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--white) 15%, transparent);
}


/* ── FAQ ACCORDION ── */
.faq {
  background-color: var(--white);
}
.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: var(--radius-md);
  background-color: var(--beige);
  border: 2px solid transparent;
  overflow: hidden;
  transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
}
.faq-item[open] {
  border-color: var(--coral-light);
  background-color: var(--white);
  box-shadow: var(--shadow-card);
}
.faq-q {
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  -webkit-user-select: none;
  user-select: none;
  list-style: none; /* Hide summary default arrow */
}
.faq-q::-webkit-details-marker {
  display: none; /* Hide summary default Safari arrow */
}
.faq-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  color: var(--coral);
  transition: transform 0.3s var(--ease-spring), background-color 0.3s, color 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
  background-color: var(--coral-light);
}
.faq-a {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── FINAL CTA SECTION ── */
.final {
  background: linear-gradient(135deg, var(--mint) 0%, hsl(var(--mint-h), var(--mint-s), 45%) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final .section-title {
  color: var(--white);
}
.final .section-sub {
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
  margin-bottom: 32px;
}
.final-cta-micro {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
}

/* ── FOOTER ── */
footer {
  background-color: var(--text-dark);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 32px 24px;
  font-size: 13px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
}

/* Scroll reveal class */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}





/* ── GALLERY MARQUEE SECTION ── */
.gallery {
  background-color: var(--white);
  padding: 80px 0;
  overflow: hidden;
}
.gallery-marquee-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 0;
}
.gallery-showcase-frame {
  width: min(1180px, calc(100% - 32px));
  margin: 40px auto 0;
  padding: 24px 0;
  border: 3px solid var(--blue-mid);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78)),
    radial-gradient(circle at top left, var(--blue-light) 0%, transparent 38%),
    radial-gradient(circle at bottom right, var(--mint-light) 0%, transparent 40%);
  box-shadow: var(--shadow-floating);
  overflow: hidden;
}
.gallery-proof-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0 20px 22px;
}
.gallery-proof-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 14px;
  border-radius: 999px;
  background-color: var(--white);
  border: 1px solid var(--beige-mid);
  color: var(--text-dark);
  font-family: 'Fredoka', sans-serif;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-card);
}
.gallery-marquee-container {
  overflow: hidden;
  width: 100%;
  display: flex;
}
.gallery-marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
}
.gallery-marquee-group {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

/* Animations for seamless infinite scrolling */
.marquee-left-dir .gallery-marquee-track {
  animation: scroll-left 55s linear infinite;
}
.marquee-right-dir .gallery-marquee-track {
  animation: scroll-right 55s linear infinite;
}

/* Keep the preview moving continuously. */
.gallery-marquee-container:hover .gallery-marquee-track {
  animation-play-state: running;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.gallery-card {
  width: 180px;
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-card-paper {
  background-color: var(--white);
  border-radius: 12px;
  padding: 10px;
  border: 2px solid var(--blue-mid);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth);
  width: 100%;
  aspect-ratio: 1 / 1.414;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: zoom-in;
}
.gallery-card:hover .gallery-card-paper {
  transform: translateY(-6px) rotate(1.5deg);
  box-shadow: var(--shadow-floating);
  border-color: var(--coral-mid);
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
  .hero {
    padding: 12px 0 20px;
  }
  .hero-content {
    max-width: 350px;
    margin: 0 auto;
  }
  .hero-headline {
    font-size: 22px;
    max-width: 100%;
    overflow-wrap: break-word;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  .hero-sub {
    font-size: 13.5px;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  .hero-cta-area {
    padding: 14px 16px;
  }
  .hero-video-wrapper {
    max-width: 230px;
    margin: 10px auto;
    padding: 4px;
    border-width: 4px;
    border-radius: 24px;
  }
  .hero-video-wrapper::before {
    width: 40px;
    height: 8px;
    top: 0;
  }
  .video-frame {
    border-radius: 18px;
  }
  .btn {
    padding-left: 18px;
    padding-right: 18px;
    text-align: center;
    white-space: normal;
  }
  .rating-strip {
    width: 100%;
    flex-wrap: wrap;
    line-height: 1.35;
  }
  .navbar {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .floating-ornament {
    display: none;
  }
  .gallery-card {
    width: 150px;
    flex-basis: 150px;
  }
  .gallery-showcase-frame {
    width: calc(100% - 20px);
    padding: 18px 0;
    border-radius: var(--radius-md);
  }
  .gallery-proof-strip {
    padding: 0 14px 18px;
    gap: 8px;
  }
  .gallery-proof-pill {
    font-size: 11px;
    min-height: 30px;
    padding: 6px 10px;
  }
  .gallery-marquee-track,
  .gallery-marquee-group,
  .benefits-marquee-track,
  .benefits-marquee-group {
    gap: 16px;
  }
}

@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;
  }
}
.gallery-meta {
  margin-top: 10px;
  text-align: center;
}
.gallery-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  padding: 4px 11px 4px 8px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  white-space: nowrap;
}
.gallery-badge::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: url("image/optimized/selo-verificacao.png") center / contain no-repeat;
}
.badge-trazos { background-color: var(--coral-light); color: var(--coral-dark); }
.badge-colorear { background-color: var(--yellow-light); color: var(--yellow-dark); }
.badge-recortar { background-color: var(--mint-light); color: var(--mint-dark); }
.badge-juegos { background-color: var(--lilac-light); color: var(--lilac-dark); }
.badge-bonus { background-color: var(--blue-light); color: var(--blue-dark); }

/* Left & Right gradient fades for seamless blending */
.gallery-fade {
  position: absolute;
  top: -20px;
  bottom: -20px;
  width: 120px;
  pointer-events: none;
  z-index: 10;
}
.gallery-fade-left {
  left: -24px;
  background: linear-gradient(to right, var(--white) 30%, transparent);
}
.gallery-fade-right {
  right: -24px;
  background: linear-gradient(to left, var(--white) 30%, transparent);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 18, 15, 0.95);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.95);
  transition: transform 0.3s var(--ease-spring);
}
.lightbox.active .lightbox-content {
  transform: scale(1);
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 4px solid var(--white);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Fredoka', sans-serif;
  transition: transform 0.2s;
}
.lightbox-close:hover {
  transform: scale(1.1);
}
.lightbox-caption {
  margin-top: 16px;
  color: var(--white);
  font-family: 'Fredoka', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

/* ── BENEFITS MARQUEE TICKER ── */
.benefits {
  background-color: var(--beige);
  padding: 80px 0;
  overflow: hidden;
}
.benefits-marquee-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}
.benefits-marquee-container {
  overflow: hidden;
  width: 100%;
  display: flex;
}
.benefits-marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
}
.benefits-marquee-group {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}
.benefits-marquee-container .solution-card {
  width: 290px;
  flex: 0 0 290px;
}
/* Scroll Animations */
.benefits-marquee-left .benefits-marquee-track {
  animation: benefits-scroll-left 50s linear infinite;
}
.benefits-marquee-right .benefits-marquee-track {
  animation: benefits-scroll-right 50s linear infinite;
}

.benefits-marquee-container:hover .benefits-marquee-track {
  animation-play-state: paused;
}

@keyframes benefits-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes benefits-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.benefit-card {
  width: 290px;
  flex: 0 0 290px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-floating);
}
.benefit-card.c-coral { border-color: var(--coral-light); }
.benefit-card.c-coral:hover { border-color: var(--coral-mid); }
.benefit-card.c-mint { border-color: var(--mint-light); }
.benefit-card.c-mint:hover { border-color: var(--mint-mid); }
.benefit-card.c-yellow { border-color: var(--yellow-light); }
.benefit-card.c-yellow:hover { border-color: var(--yellow-mid); }
.benefit-card.c-blue { border-color: var(--blue-light); }
.benefit-card.c-blue:hover { border-color: var(--blue-mid); }
.benefit-card.c-lilac { border-color: var(--lilac-light); }
.benefit-card.c-lilac:hover { border-color: var(--lilac-mid); }

.benefit-icon {
  font-size: 28px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--beige);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s var(--ease-spring);
}
.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}
.benefit-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.benefit-desc {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ── TESTIMONIALS SECTION ── */
:root {
  --beige-light: hsl(38, 30%, 98.5%);
}

.testimonials-section {
  background-color: var(--white);
  position: relative;
}

.testi-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
  padding: 24px 0;
}
.testi-written-heading {
  max-width: 720px;
  margin: 46px auto 0;
  text-align: center;
}
.testi-written-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: var(--mint-light);
  color: var(--mint-dark);
  font-family: 'Fredoka', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.testi-written-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}
.testi-written-sub {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.6;
}
.testi-written-heading + .testi-marquee-wrapper {
  margin-top: 18px;
}

.testi-marquee-container {
  overflow: hidden;
  width: 100%;
  display: flex;
}

.testi-marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
}

.testi-marquee-group {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
  align-items: center;
}

/* Set fixed widths for cards inside marquee to keep layout consistent */
.testi-marquee-group .testi-card {
  width: 350px;
  flex: 0 0 350px;
}

.testi-card-img {
  width: 260px;
  height: calc(260px * 16 / 9);
  flex: 0 0 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--beige-mid);
  display: block;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth);
}

.testi-card-img:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-floating);
}

/* Scroll Animations */
.testi-marquee-left .testi-marquee-track {
  animation: testi-scroll-left 45s linear infinite;
}

@keyframes testi-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testi-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--beige-mid);
  border-top: 6px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth), border-color 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-floating);
  border-color: transparent;
}

.testi-card.testi-c-coral {
  border-top-color: var(--coral);
  background: linear-gradient(to bottom, var(--coral-light) 0%, var(--white) 80px);
}
.testi-card.testi-c-mint {
  border-top-color: var(--mint);
  background: linear-gradient(to bottom, var(--mint-light) 0%, var(--white) 80px);
}
.testi-card.testi-c-yellow {
  border-top-color: var(--yellow);
  background: linear-gradient(to bottom, var(--yellow-light) 0%, var(--white) 80px);
}
.testi-card.testi-c-lilac {
  border-top-color: var(--lilac);
  background: linear-gradient(to bottom, var(--lilac-light) 0%, var(--white) 80px);
}

.testi-stars {
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
  user-select: none;
}

.testi-quote {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 500;
  flex-grow: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px dashed var(--beige-mid);
  padding-top: 16px;
  margin-top: auto;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.testi-avatar-coral {
  background-color: var(--coral);
}
.testi-avatar-mint {
  background-color: var(--mint-dark);
}
.testi-avatar-yellow {
  background-color: var(--yellow-dark);
}
.testi-avatar-lilac {
  background-color: var(--lilac-dark);
}

.testi-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.testi-role {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}

.testi-video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 42px auto 0;
  max-width: 1180px;
  width: 100%;
}

.testi-video-feature {
  width: 100%;
  max-width: 380px;
  background-color: var(--white);
  border: 1.5px solid var(--beige-mid);
  border-top: 6px solid var(--coral);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.testi-video-feature.video-us-flag {
  border-top-color: #0a3161; /* US flag blue */
  background: linear-gradient(135deg, rgba(10, 49, 97, 0.3) 0%, rgba(10, 49, 97, 0.3) 35%, rgba(255, 255, 255, 0.3) 35%, rgba(255, 255, 255, 0.3) 60%, rgba(179, 25, 44, 0.3) 60%, rgba(179, 25, 44, 0.3) 100%);
}

.testi-video-feature.video-mx-flag {
  border-top-color: #006847; /* Mexican flag green */
  background: linear-gradient(135deg, rgba(0, 104, 71, 0.3) 0%, rgba(0, 104, 71, 0.3) 35%, rgba(255, 255, 255, 0.3) 35%, rgba(255, 255, 255, 0.3) 60%, rgba(206, 17, 38, 0.3) 60%, rgba(206, 17, 38, 0.3) 100%);
}

.testi-video-feature.video-co-flag {
  border-top-color: #fcd116; /* Colombia flag yellow */
  background: linear-gradient(135deg, rgba(252, 209, 22, 0.3) 0%, rgba(252, 209, 22, 0.3) 50%, rgba(0, 56, 147, 0.3) 50%, rgba(0, 56, 147, 0.3) 75%, rgba(206, 17, 38, 0.3) 75%, rgba(206, 17, 38, 0.3) 100%);
}

.testi-video-info {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  text-align: left;
}

.testi-video-info p {
  margin: 0;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.35;
}

.testi-video-info strong {
  color: var(--text-dark);
  font-weight: 800;
}

.testi-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 4px);
  background-color: var(--beige);
  box-shadow: inset 0 0 0 1px var(--beige-mid);
}

.testi-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.testi-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  padding: 20px 32px;
  background-color: var(--beige-light);
  border-radius: var(--radius-md);
  border: 1.5px dashed var(--beige-mid);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-soft);
}

.testi-summary-stars {
  font-size: 18px;
  letter-spacing: 2px;
}

.testi-summary-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.4;
}

.testi-summary-text strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 650px) {
  .testi-marquee-group .testi-card {
    width: 290px;
    flex: 0 0 290px;
  }
  .testi-card-img {
    width: 240px;
    height: calc(240px * 16 / 9);
    flex: 0 0 240px;
  }
  .testi-card {
    padding: 24px 20px;
  }
  .testi-video-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
  }
  .testi-video-feature {
    width: min(100%, 340px);
    padding: 18px;
  }
  .testi-summary {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 16px 20px;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  width: min(92%, 760px);
  background-color: var(--white);
  border: 2px solid var(--paper-ink) !important;
  border-radius: var(--wobbly-md) !important;
  box-shadow: var(--shadow-sketch-soft) !important;
  padding: 18px 20px;
  z-index: 9999;
  transition: transform 0.5s var(--ease-spring);
}
.cookie-banner.active {
  transform: translateX(-50%) translateY(0);
}
.cookie-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 20px;
  text-align: left;
}
.cookie-copy {
  min-width: 0;
}
.cookie-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.cookie-content p,
.cookie-option-note {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0;
}
.cookie-content p a {
  color: var(--coral);
  text-decoration: underline;
  font-weight: 700;
}
.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-actions .btn {
  padding: 10px 16px;
  font-size: 13px;
  white-space: nowrap;
}
.btn-outline {
  background-color: var(--white);
  color: var(--text-dark);
  border: 1.5px solid var(--beige-mid);
  box-shadow: none;
}
.btn-outline:hover {
  box-shadow: var(--shadow-card);
}
.cookie-options {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px dashed var(--beige-mid);
}
.cookie-options[hidden] {
  display: none;
}
.cookie-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background-color: var(--beige);
}
.cookie-option input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--coral);
}
.cookie-option strong {
  display: block;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 2px;
}
@media (max-width: 580px) {
  .cookie-content {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-actions .btn {
    width: 100%;
  }
}

/* ── MOBILE READABILITY AND LIGHTER RENDERING ── */
@media (max-width: 700px) {
  .section {
    padding: 56px 0;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-title,
  .section-sub,
  .divider,
  .pain-grid > div:first-child,
  .pain-grid > div:first-child .section-title,
  .pain-grid > div:first-child p,
  .forwhom-grid > div:first-child,
  .offer-grid > div:first-child,
  .offer-title-main,
  .trust-description,
  .testi-written-heading,
  .pedagogical-credential,
  .how-note,
  .final .section-sub,
  footer {
    text-align: center !important;
  }

  .section-sub,
  .pain-grid > div:first-child p,
  .offer-grid > div:first-child p,
  .trust-description,
  .testi-written-sub,
  .faq-a {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: anywhere;
  }

  .pain-list,
  .pain-list li,
  .module-details,
  .offer-line,
  .faq-q,
  .faq-a,
  .cookie-content {
    text-align: left !important;
  }

  .pain-card,
  .module-card,
  .offer-card,
  .trust-card,
  .faq-item,
  .pedagogical-credential {
    border-radius: var(--radius-sm);
  }

  .bonus-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bonus-title {
    padding-right: 0;
  }

  .testi-author {
    justify-content: center;
    text-align: left;
  }

  .gallery-marquee-track,
  .benefits-marquee-track,
  .testi-marquee-track,
  .trust-marquee-track,
  .solution-marquee-track {
    will-change: transform;
  }

  .gallery-marquee-container,
  .benefits-marquee-container,
  .testi-marquee-container,
  .trust-marquee-container,
  .solution-marquee-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gallery-marquee-container::-webkit-scrollbar,
  .benefits-marquee-container::-webkit-scrollbar,
  .testi-marquee-container::-webkit-scrollbar,
  .trust-marquee-container::-webkit-scrollbar,
  .solution-marquee-container::-webkit-scrollbar {
    display: none;
  }

  .gallery-fade,
  .trust-fade {
    display: none;
  }
}

/* ── HAND-DRAWN DESIGN LAYER ── */
:root {
  --paper-warm: #fdfbf7;
  --paper-ink: #2d2d2d;
  --paper-muted: #e5e0d8;
  --wobbly-sm: 18px 22px 16px 24px / 20px 16px 24px 18px;
  --wobbly-md: 28px 18px 30px 20px / 18px 30px 20px 28px;
  --wobbly-lg: 42px 24px 46px 28px / 24px 44px 28px 40px;
  --wobbly-pill: 999px 42px 999px 46px / 44px 999px 48px 999px;
  --shadow-sketch: 4px 4px 0 var(--paper-ink);
  --shadow-sketch-soft: 3px 3px 0 rgba(45, 45, 45, 0.18);
  --shadow-sketch-strong: 7px 7px 0 var(--paper-ink);
}

body {
  font-family: 'Patrick Hand', 'Quicksand', sans-serif;
  background-color: var(--paper-warm);
  background-image:
    radial-gradient(var(--paper-muted) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 207, 182, 0.09) 1px, transparent 1px);
  background-size: 24px 24px, 100% 34px;
  color: var(--paper-ink);
  font-size: 18px;
}

h1, h2, h3, h4,
.section-title,
.hero-headline,
.offer-card-title,
.offer-title-main,
.price-accent,
.cookie-title {
  font-family: 'Kalam', 'Fredoka', sans-serif;
  letter-spacing: 0;
}

.section-title {
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: min(160px, 45vw);
  height: 10px;
  margin: 10px auto 0;
  border-bottom: 3px dashed currentColor;
  border-radius: 50%;
  opacity: 0.18;
  transform: rotate(-1deg);
}

.btn,
.tag,
.best-seller-badge,
.offer-card.basic-offer::before,
.video-poster-label,
.rating-strip {
  border: 2px solid var(--paper-ink) !important;
  border-radius: var(--wobbly-pill) !important;
  box-shadow: var(--shadow-sketch) !important;
  font-family: 'Kalam', 'Fredoka', sans-serif !important;
  letter-spacing: 0 !important;
}

.btn {
  min-height: 48px;
  transform: rotate(-0.35deg);
}

.btn:hover {
  transform: translate(2px, 2px) rotate(0.35deg) !important;
  box-shadow: 2px 2px 0 var(--paper-ink) !important;
}

.btn:active {
  transform: translate(4px, 4px) rotate(0deg) !important;
  box-shadow: none !important;
}

.btn-primary {
  background: var(--coral) !important;
}

.btn-secondary {
  background: var(--mint) !important;
  color: var(--paper-ink) !important;
}

.btn-white,
.btn-outline {
  background-color: var(--white) !important;
  color: var(--paper-ink) !important;
}

.hero-cta-area,
.hero-video-wrapper,
.pain-card,
.solution-image-card,
.module-card,
.bonus-card,
.step-card,
.benefit-card,
.offer-card,
.trust-card,
.testi-card,
.pedagogical-credential,
.price-block,
.lightbox-content,
.faq-item,
.gallery-card-paper {
  border: 2px solid var(--paper-ink) !important;
  border-radius: var(--wobbly-md) !important;
  box-shadow: var(--shadow-sketch-soft) !important;
  position: relative;
}

.offer-card,
.hero-video-wrapper,
.trust-card {
  box-shadow: var(--shadow-sketch-strong) !important;
}

.pain-card,
.module-card:nth-child(2n),
.benefit-card:nth-child(2n),
.testi-card:nth-child(2n),
.bonus-card:nth-child(2n) {
  transform: rotate(-0.45deg);
}

.module-card:nth-child(2n + 1),
.benefit-card:nth-child(2n + 1),
.testi-card:nth-child(2n + 1),
.bonus-card:nth-child(2n + 1),
.step-card:nth-child(2n + 1) {
  transform: rotate(0.45deg);
}

.module-card:hover,
.benefit-card:hover,
.testi-card:hover,
.gallery-card:hover .gallery-card-paper,
.solution-image-card:hover,
.bonus-card:hover {
  transform: translate(2px, 2px) rotate(0deg) !important;
  box-shadow: 2px 2px 0 rgba(45, 45, 45, 0.22) !important;
}

.module-card::before,
.bonus-card::before,
.step-card::before,
.testi-card::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  width: 64px;
  height: 22px;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(229, 224, 216, 0.78);
  border: 1px dashed rgba(45, 45, 45, 0.24);
  border-radius: 4px 8px 5px 7px;
  z-index: 3;
  pointer-events: none;
}

.hero-headline span::after {
  height: 12px;
  bottom: 1px;
  border: 2px solid rgba(45, 45, 45, 0.12);
  border-radius: var(--wobbly-sm);
  transform: rotate(-1deg);
}

.divider-dot,
.pain-dot,
.bullet-icon,
.offer-check,
.offer-line-icon,
.benefit-icon,
.solution-icon {
  border: 2px solid var(--paper-ink);
  box-shadow: 2px 2px 0 rgba(45, 45, 45, 0.15);
}

.gallery-card-paper img,
.solution-image-card img,
.offer-product-preview,
.testi-card-img,
.bonus-cover-img {
  filter: saturate(1.04) contrast(1.01);
}

@media (max-width: 700px) {
  body {
    font-size: 17px;
  }

  .module-card,
  .benefit-card,
  .testi-card,
  .bonus-card,
  .step-card,
  .pain-card {
    transform: none !important;
  }

  .offer-card,
  .hero-video-wrapper,
  .trust-card {
    box-shadow: 4px 4px 0 var(--paper-ink) !important;
  }

  .offer-card {
    padding: 30px 16px !important;
  }

  .price-block {
    padding: 16px 10px !important;
    margin: 16px 0 !important;
  }

  .price-tag-wrapper {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: center !important;
  }
}

/* ── COMPATIBILITY & INLINE STYLE REPLACEMENTS ── */

.ornament-1 {
  top: 15%;
  left: 5%;
  width: 60px;
  height: 60px;
}

.ornament-2 {
  top: 40%;
  right: 4%;
  width: 80px;
  height: 80px;
  animation-duration: 18s;
}

.ornament-3 {
  bottom: 25%;
  left: 3%;
  width: 70px;
  height: 70px;
  animation-duration: 15s;
}

.rating-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  background-color: var(--yellow-light);
  padding: 5px 10px;
  border-radius: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 180, 0, 0.15);
}

.rating-strip-badge {
  color: var(--yellow-dark);
  letter-spacing: 1px;
}

.divider-left {
  justify-content: flex-start;
}

.section-title-left {
  text-align: left;
  margin-bottom: 20px;
}

.pain-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

.solution-section {
  overflow: hidden;
  padding-bottom: 60px;
}

.container-1200 {
  max-width: 1200px !important;
}

.cta-container-34 {
  display: flex;
  justify-content: center;
  margin-top: 34px;
  position: relative;
  z-index: 10;
}

.btn-w-340 {
  max-width: 340px;
  text-align: center;
}

.modules-section {
  padding-bottom: 60px;
}

.cta-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.cta-container-relative {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

.text-block-description {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pedagogical-credential-style {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border-left: 6px solid var(--mint);
  box-shadow: var(--shadow-card);
  margin: 48px 0;
  text-align: left;
}

.pedagogical-credential h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pedagogical-credential p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

.pt-12 {
  padding-top: 12px;
}

.offer-title-main {
  margin-bottom: 16px;
  font-family: 'Fredoka', sans-serif;
  font-size: 24px;
  color: var(--text-dark);
}

.offer-desc-main {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 28px;
}

.price-currency-suffix {
  font-size: 14px;
  margin-left: 2px;
}

.price-type-tag {
  font-size: 11px;
  color: var(--mint-dark);
  font-weight: 700;
  margin-top: 4px;
}

.offer-materials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 12px 0;
  text-align: left;
  width: 100%;
}

.offer-materials-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.offer-divider {
  width: 100%;
  height: 1.5px;
  background-color: var(--beige-mid);
  margin: 6px 0;
}

.mt-16 {
  margin-top: 16px;
}

.checkout-micro-note {
  font-size: 11px;
  color: var(--text-mid);
  text-align: center;
  margin-top: 8px;
  line-height: 1.4;
  font-weight: 500;
}

.offer-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-mid);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.guarantee-section {
  background-color: var(--white);
  padding: 60px 0;
}

.container-800-center {
  max-width: 800px;
  text-align: center;
}

.guarantee-badge-container {
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-floating);
  border: 3px solid var(--coral-mid);
  transition: transform 0.3s ease;
}

.img-block-contain {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.container-flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-divider {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  margin-bottom: 24px;
}

.final-divider::before,
.final-divider::after {
  display: none !important;
}

.btn-w-420 {
  max-width: 420px;
}

.final-rating-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.color-yellow-letter-spacing {
  color: var(--yellow);
  letter-spacing: 1px;
}

.footer-extra-note {
  margin-top: 4px;
  font-size: 11px;
  opacity: 0.8;
}
