/* Atalho Inteligente — espelho visual dos componentes React/Tailwind */

:root {
  --background: 222 47% 6%;
  --foreground: 210 40% 98%;
  --card: 222 47% 9%;
  --muted-foreground: 215 20% 55%;
  --border: 217 33% 17%;
  --primary: 210 40% 98%;
  --primary-foreground: 222 47% 11%;
  --secondary: 160 60% 45%;
  --secondary-foreground: 222 47% 11%;
  --accent: 25 95% 53%;
  --accent-foreground: 222 47% 11%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* VSL: esconde oferta até o tempo de pitch — só hero (sem CTA) + rodapé */
.page-delay-waiting .page-delay-hidden {
  display: none !important;
}

@keyframes page-delay-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body:not(.page-delay-waiting) .page-delay-hidden {
  animation: page-delay-fade-in 0.85s ease-out both;
}

.page {
  min-height: 100vh;
}

.font-display {
  font-family: "Outfit", "Plus Jakarta Sans", sans-serif;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }
}

.section-full {
  min-height: 100vh;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.overflow-hidden {
  overflow: hidden;
}

/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #0b1e41 0%, #1d575c 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-1 {
  background: radial-gradient(ellipse at top right, hsl(160 60% 45% / 0.15), transparent 50%);
}

.hero-bg-2 {
  background: radial-gradient(ellipse at bottom left, hsl(200 70% 50% / 0.1), transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 10;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .hero-inner {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.hero-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: clamp(10rem, 22vh, 18rem);
  pointer-events: none;
  /* Do tom inferior do hero (#1d575c) para a sessão clara */
  background: linear-gradient(
    to bottom,
    rgb(29 87 92 / 0) 0%,
    rgb(29 87 92 / 0.4) 12%,
    hsl(195 28% 38%) 38%,
    hsl(200 22% 72%) 72%,
    hsl(220 20% 94%) 92%,
    #f6f7f9 100%
  );
}

/* Dark sections */
.dark-section {
  position: relative;
  overflow: hidden;
  background: hsl(222 47% 7%);
}

.dark-section-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, hsl(160 60% 45% / 0.08), transparent 60%);
  pointer-events: none;
}

.dark-section-lighter {
  background: hsl(222 45% 10% / 0.85);
}

.mentor-glow {
  background: hsl(222 47% 7%);
}

.mentor-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, hsl(200 70% 50% / 0.1), transparent 50%);
  pointer-events: none;
}

.modules-top-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, hsl(160 60% 45% / 0.08), transparent 50%);
  pointer-events: none;
}

/* Background utilities */
.bg-background {
  background: hsl(var(--background));
}

/* Seção identificação (fundo claro) — cor casa com o fim do degradê do hero */
.pain-section {
  background: #f6f7f9;
  color: hsl(222 47% 16%);
}

.pain-section-title {
  color: hsl(222 47% 12%);
}

.pain-section-lead {
  color: hsl(222 18% 38%);
  font-weight: 500;
}

.pain-quote {
  color: hsl(222 47% 18%);
  font-style: italic;
}

.pain-section .text-muted {
  color: hsl(222 14% 42%);
}

.pain-section .card-elevated {
  background: #fff;
  border: 1px solid hsl(222 16% 88%);
  box-shadow: 0 4px 24px rgb(15 23 42 / 0.06);
}

.pain-section .card-elevated:hover {
  border-color: hsl(222 16% 80%);
  box-shadow: 0 8px 28px rgb(15 23 42 / 0.08);
}

.pain-section .text-foreground-90 {
  color: hsl(222 47% 22%);
}

/* Typography helpers */
.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-muted {
  color: hsl(var(--muted-foreground));
}

.text-foreground {
  color: hsl(var(--foreground));
}

.text-foreground-80 {
  color: hsl(var(--foreground) / 0.8);
}

.text-foreground-90 {
  color: hsl(var(--foreground) / 0.9);
}

.text-pf {
  color: hsl(var(--primary));
}

.text-pf-40 {
  color: hsl(var(--primary) / 0.4);
}

.text-pf-60 {
  color: hsl(var(--primary) / 0.6);
}

.text-pf-70 {
  color: hsl(var(--primary) / 0.7);
}

.text-pf-80 {
  color: hsl(var(--primary) / 0.8);
}

.text-pf-90 {
  color: hsl(var(--primary) / 0.9);
}

.text-secondary {
  color: hsl(var(--secondary));
}

.text-accent {
  color: hsl(var(--accent));
}

.text-sf {
  color: hsl(var(--secondary-foreground));
}

.text-sf-90 {
  color: hsl(var(--secondary-foreground) / 0.9);
}

.text-gradient {
  background: linear-gradient(135deg, hsl(var(--secondary)), hsl(170 55% 55%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-accent {
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(35 90% 60%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Headlines */
.headline {
  font-size: 1.875rem;
  font-weight: 800;
  color: hsl(var(--primary));
  line-height: 1.15;
  margin: 0 0 1.5rem;
}

@media (min-width: 640px) {
  .headline {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .headline {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .headline {
    font-size: 3.75rem;
  }
}

.subhead {
  font-size: 1.125rem;
  color: hsl(var(--primary) / 0.8);
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {
  .subhead {
    font-size: 1.25rem;
  }
}

.section-h2 {
  font-size: 1.875rem;
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-h2 {
    font-size: 3rem;
  }
}

.md-text-3xl {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .md-text-3xl {
    font-size: 1.875rem;
  }
}

.text-2xl {
  font-size: 1.5rem;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.badge-secondary {
  background: hsl(var(--secondary) / 0.2);
  border: 1px solid hsl(var(--secondary) / 0.3);
  color: hsl(var(--secondary));
}

.badge-accent {
  background: hsl(var(--accent) / 0.2);
  border: 1px solid hsl(var(--accent) / 0.3);
  color: hsl(var(--accent));
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: hsl(var(--secondary));
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Badge do hero: inline-grid centraliza como antes e quebra texto bem no mobile */
.badge-hero {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 0.5rem;
  max-width: 100%;
  box-sizing: border-box;
  text-align: left;
  vertical-align: top;
}

.badge-hero .text-sm {
  min-width: 0;
  line-height: 1.45;
}

@media (max-width: 639px) {
  .badge-hero {
    padding: 0.5rem 0.75rem;
    column-gap: 0.5rem;
  }

  .badge-hero .text-sm {
    font-size: 0.8125rem;
    text-wrap: balance;
  }
}

.accent-dot {
  background: hsl(var(--accent));
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* VSL */
.vsl-wrap {
  max-width: 56rem;
  margin: 0 auto 2.5rem;
}

.vsl-box {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 4px solid hsl(var(--primary) / 0.1);
  background: hsl(222 47% 12% / 0.5);
  backdrop-filter: blur(8px);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.5);
}

.vsl-box--vturb {
  background: hsl(222 47% 8% / 0.6);
}

.vsl-box--vturb vturb-smartplayer {
  min-height: 12rem;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

.vsl-play-area {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vsl-footer {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: hsl(var(--primary) / 0.6);
}

.btn-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  border: none;
  background: hsl(var(--accent));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 25px rgb(0 0 0 / 0.3);
  transition: transform 0.3s ease;
}

.btn-play:hover {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .btn-play {
    width: 6rem;
    height: 6rem;
  }

  .icon-play {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.icon-play {
  margin-left: 4px;
}

/* Buttons */
.btn {
  font-family: inherit;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.btn-cta {
  background: hsl(var(--accent));
  color: #fff;
  border-radius: 0.75rem;
  padding: 1rem 1.75rem;
  font-size: 0.875rem;
  box-shadow: 0 0 30px hsl(var(--accent) / 0.35);
}

.btn-cta:hover {
  filter: brightness(1.05);
  box-shadow: 0 0 40px hsl(var(--accent) / 0.45);
}

.btn-xl {
  padding: 1.125rem 2rem;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .btn-xl {
    padding: 1.25rem 2.25rem;
    font-size: 1rem;
  }
}

.btn-cta-lg {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .btn-cta-lg {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
  }
}

.group:hover .icon-arrow,
.group:hover .icon-arrow-lg {
  transform: translateX(4px);
}

.icon-arrow {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.icon-arrow-lg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.cta-note {
  font-size: 0.875rem;
  color: hsl(var(--primary) / 0.6);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Cards */
.card-elevated {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: 0 4px 24px rgb(0 0 0 / 0.2);
  transition: transform 0.3s ease, border-color 0.3s;
}

.card-elevated:hover {
  transform: scale(1.02);
}

.pain-item {
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 768px) {
  .pain-item {
    padding: 1.5rem;
  }
}

.pain-check {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: hsl(var(--accent) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-check {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--accent));
}

.relaxed {
  line-height: 1.625;
}

/* Layout */
.narrow-4xl {
  max-width: 56rem;
  margin: 0 auto;
}

.narrow-5xl {
  max-width: 64rem;
  margin: 0 auto;
}

.center {
  text-align: center;
}

.center-text {
  text-align: center;
}

.left-text {
  text-align: left;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-14 {
  margin-bottom: 3.5rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.stack {
  display: flex;
  flex-direction: column;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.flex {
  display: flex;
}

.flex-grow {
  flex-grow: 1;
}

.align-center {
  align-items: center;
}

.wrap-center {
  flex-wrap: wrap;
  justify-content: center;
}

.grid-2 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-10 {
  padding: 2.5rem;
}

@media (min-width: 768px) {
  .p-10.md-p-10 {
    padding: 2.5rem;
  }
}

/* Solution boxes */
.border-accent-soft {
  border: 1px solid hsl(var(--accent) / 0.2);
}

.bg-accent-soft {
  background: hsl(var(--accent) / 0.05);
}

.border-secondary-soft {
  border: 1px solid hsl(var(--secondary) / 0.3);
}

.bg-secondary-soft {
  background: hsl(var(--secondary) / 0.05);
}

.border-pf-10 {
  border: 1px solid hsl(var(--primary) / 0.1);
}

.bg-pf-5 {
  background: hsl(var(--primary) / 0.05);
}

.divider-gradient {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    hsl(var(--secondary) / 0.3),
    transparent
  );
}

.divider-neutral {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    hsl(var(--border)),
    transparent
  );
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
}

.icon-box-secondary {
  background: hsl(var(--secondary) / 0.2);
}

.icon-box-accent {
  background: hsl(var(--accent) / 0.2);
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

.icon-md {
  width: 1.75rem;
  height: 1.75rem;
}

.icon-sm {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-stat {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 auto 0.5rem;
}

.icon-tile {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-secondary-20 {
  background: hsl(var(--secondary) / 0.2);
}

.bg-accent-20 {
  background: hsl(var(--accent) / 0.2);
}

.bg-pf-10 {
  background: hsl(var(--primary) / 0.1);
}

/* Testimonials */
.testimonials-section {
  position: relative;
  background: #f6f7f9;
  color: hsl(222 47% 16%);
}

.testimonials-section .section-h2 {
  color: hsl(222 47% 12%);
}

.testimonials-section .text-muted {
  color: hsl(222 14% 42%);
}

.testimonials-section .card-elevated {
  background: #fff;
  border: 1px solid hsl(222 16% 88%);
  box-shadow: 0 4px 24px rgb(15 23 42 / 0.06);
}

.testimonials-section .card-elevated:hover {
  border-color: hsl(var(--secondary) / 0.35);
  box-shadow: 0 8px 28px rgb(15 23 42 / 0.08);
}

.testimonials-section .text-foreground-80 {
  color: hsl(222 47% 28%);
}

.testimonials-section .text-foreground {
  color: hsl(222 47% 20%);
}

.testimonial-bg-1 {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, hsl(var(--secondary) / 0.05), transparent 40%);
  pointer-events: none;
}

.testimonial-bg-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, hsl(var(--accent) / 0.05), transparent 40%);
  pointer-events: none;
}

.testimonial-card {
  position: relative;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border) / 0.5);
}

.testimonial-card:hover {
  border-color: hsl(var(--secondary) / 0.3);
}

.quote-badge {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgb(0 0 0 / 0.25);
}

.stars-row {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.star {
  color: hsl(var(--accent));
  font-size: 1rem;
  line-height: 1;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: hsl(222 47% 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: hsl(var(--primary));
}

.success-badge {
  background: linear-gradient(  
    135deg,
    hsl(var(--secondary)),
    hsl(160 55% 38%)
  );
  border: 1px solid hsl(var(--secondary) / 0.3);
}

.success-badge-head {
  text-align: center;
}

.success-badge-icon {
  flex-shrink: 0;
  display: block;
}

.success-badge-title {
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

/* Mentor */
.grid-mentor {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .grid-mentor {
    grid-template-columns: 2fr 3fr;
  }
}

.mentor-photo-wrap {
  position: relative;
  margin-bottom: 2rem;
}

.mentor-photo {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 4px solid hsl(var(--secondary) / 0.3);
  background: linear-gradient(
    to bottom right,
    hsl(222 47% 14%),
    hsl(var(--secondary) / 0.2)
  );
}

.aspect-square {
  aspect-ratio: 1;
}

.mentor-photo-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.mentor-photo-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mentor-initials {
  width: 8rem;
  height: 8rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: hsl(var(--secondary));
  margin-bottom: 1rem;
}

.mentor-name-label {
  font-size: 0.875rem;
  color: hsl(var(--primary) / 0.6);
  margin: 0;
}

.deco {
  position: absolute;
  border-radius: 0.75rem;
  z-index: -1;
}

.deco-br {
  width: 6rem;
  height: 6rem;
  bottom: -1rem;
  right: -1rem;
  background: hsl(var(--secondary) / 0.2);
}

.deco-tl {
  width: 4rem;
  height: 4rem;
  top: -1rem;
  left: -1rem;
  background: hsl(var(--accent) / 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  padding: 1rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.05);
  border: 1px solid hsl(var(--primary) / 0.1);
  text-align: center;
}

.mentor-story.space-y-6 > * + * {
  margin-top: 0;
}

.mentor-story p {
  margin: 0 0 1rem;
}

.mentor-story p:last-child {
  margin-bottom: 0;
}

.mentor-story .divider-gradient {
  margin: 1.5rem 0;
}

/* Product */
.product-section {
  background: #f6f7f9;
  color: hsl(222 47% 16%);
}

.product-section .text-muted {
  color: hsl(222 14% 42%);
}

.product-section .text-foreground {
  color: hsl(222 47% 12%);
}

.product-section .card-elevated {
  background: #fff;
  border: 1px solid hsl(222 16% 88%);
  box-shadow: 0 4px 24px rgb(15 23 42 / 0.06);
}

.product-section .card-elevated:hover {
  border-color: hsl(222 16% 80%);
  box-shadow: 0 8px 28px rgb(15 23 42 / 0.08);
}

.product-section .text-foreground-90 {
  color: hsl(222 47% 22%);
}

.product-section .text-foreground-80 {
  color: hsl(222 47% 30%);
}

.product-section .product-card {
  background: #fff;
  border-color: hsl(var(--secondary) / 0.35);
}

.product-section .divider-neutral {
  background: linear-gradient(
    to right,
    transparent,
    hsl(222 16% 85%),
    transparent
  );
}

.product-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, hsl(var(--accent) / 0.06), transparent 60%);
  pointer-events: none;
}

.product-title-wrap {
  position: relative;
  display: inline-block;
}

.product-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(
    to right,
    hsl(var(--secondary) / 0.2),
    hsl(var(--accent) / 0.2),
    hsl(var(--secondary) / 0.2)
  );
  border-radius: 1.5rem;
  filter: blur(24px);
  z-index: 0;
}

.product-card {
  position: relative;
  z-index: 1;
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 2rem;
  border-width: 2px;
  border-style: solid;
}

.border-secondary {
  border-color: hsl(var(--secondary) / 0.3);
}

.border-default {
  border: 1px solid hsl(var(--border) / 0.5);
}

/* Modules */
.pillars-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.pillar-block {
  position: relative;
}

.pillar-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pillar-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modules-lane {
  display: grid;
  gap: 1rem;
  padding-left: 1rem;
  margin-left: 1.75rem;
  border-left: 2px solid hsl(var(--primary) / 0.1);
}

.module-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: hsl(222 45% 10% / 0.85);
  border: 1px solid hsl(var(--primary) / 0.1);
  transition: border-color 0.3s;
}

.module-card:hover {
  border-color: hsl(var(--secondary) / 0.3);
}

.mod-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: hsl(var(--primary) / 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary) / 0.6);
  transition: background 0.2s, color 0.2s;
}

.module-card:hover .mod-icon {
  background: hsl(var(--secondary) / 0.2);
  color: hsl(var(--secondary));
}

/* Bonus */
.bonus-section {
  background: #f6f7f9;
  color: hsl(222 47% 16%);
}

.bonus-section .section-h2 {
  color: hsl(222 47% 12%);
}

.bonus-section .text-muted {
  color: hsl(222 14% 42%);
}

.bonus-section .card-elevated {
  background: #fff;
  border: 1px solid hsl(222 16% 88%);
  box-shadow: 0 4px 24px rgb(15 23 42 / 0.06);
}

.bonus-section .card-elevated:hover {
  border-color: hsl(222 16% 80%);
  box-shadow: 0 8px 28px rgb(15 23 42 / 0.08);
}

.bonus-section .bonus-card {
  border: 2px solid hsl(var(--accent) / 0.25);
  background: #fff;
}

.bonus-section .bonus-card-wrap:hover .bonus-card {
  border-color: hsl(var(--accent) / 0.45);
}

.bonus-section .font-bold.text-lg,
.bonus-section h3 {
  color: hsl(222 47% 14%);
}

.bonus-section .bonus-value {
  border-top-color: hsl(222 16% 88%);
}

.bonus-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at bottom right,
    hsl(var(--accent) / 0.08),
    transparent 50%
  );
  pointer-events: none;
}

.bonus-card-wrap {
  position: relative;
}

.bonus-glow {
  position: absolute;
  inset: -4px;
  border-radius: 1rem;
  background: linear-gradient(to right, hsl(var(--accent) / 0.3), hsl(var(--secondary) / 0.3));
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}

.bonus-card-wrap:hover .bonus-glow {
  opacity: 1;
}

.bonus-card {
  position: relative;
  z-index: 1;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 2px solid hsl(var(--accent) / 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.bonus-card-wrap:hover .bonus-card {
  border-color: hsl(var(--accent) / 0.4);
}

.bonus-num {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgb(0 0 0 / 0.25);
}

.bonus-icon-tile {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--accent) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.bonus-value {
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
  margin-top: auto;
}

/* Final CTA */
.final-cta {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .final-cta {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.final-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, hsl(25 95% 53% / 0.15), transparent 60%);
  pointer-events: none;
}

.final-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.recap-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.icon-check-sm {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.strike {
  text-decoration: line-through;
}

.price-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.price-pulse {
  position: absolute;
  inset: -8px;
  background: hsl(var(--accent) / 0.3);
  border-radius: 1.5rem;
  filter: blur(16px);
  animation: pulse-soft 2s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulse-soft {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.price-box {
  position: relative;
  z-index: 1;
  background: hsl(222 47% 12% / 0.5);
  backdrop-filter: blur(8px);
  border: 2px solid hsl(var(--accent) / 0.5);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.price-box .mb-6 > .flex {
  justify-content: center;
}

@media (min-width: 768px) {
  .price-box {
    padding: 2.5rem;
  }
}

.price-big {
  font-size: 2.25rem;
  font-weight: 800;
}

@media (min-width: 768px) {
  .price-big {
    font-size: 3rem;
  }
}

.guarantees-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary) / 0.8);
}

/* Footer */
.footer {
  padding: 2.5rem 0;
}

.border-top {
  border-top: 1px solid hsl(var(--primary) / 0.1);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: hsl(var(--primary) / 0.5);
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: hsl(var(--primary));
}

/* Animations */
.animate-fade-up {
  animation: fade-up 0.7s ease-out both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-up,
  .badge-dot,
  .price-pulse {
    animation: none;
  }

  body:not(.page-delay-waiting) .page-delay-hidden {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .btn-play:hover,
  .card-elevated:hover {
    transform: none;
  }
}
