@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
  --primary: #FFC700;       /* Amarelo vibrante do sticker */
  --primary-hover: #E5B200;
  --primary-rgb: 255, 199, 0;
  
  --dark-bg: #0D0E10;       /* Fundo escuro premium (clube de comédia) */
  --dark-card: #16171B;     /* Cards no fundo escuro */
  --dark-border: rgba(255, 255, 255, 0.08);
  
  --light-bg: #F8F9FC;      /* Fundo claro para contraste */
  --light-card: #FFFFFF;    /* Cards no fundo claro */
  --light-border: rgba(0, 0, 0, 0.06);
  
  --text-white: #FFFFFF;
  --text-dark: #121214;
  --text-muted: #8F909A;
  --text-muted-dark: #6C6D75;
  
  --font-title: 'Bebas Neue', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.3);
  --shadow-yellow: 0 10px 30px rgba(255, 199, 0, 0.3);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

/* Scrollbar Customizada */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #08080A;
}
::-webkit-scrollbar-thumb {
  background: #25262B;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ==========================================
   LAYOUT COMPONENTS & CONTAINER
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
.title-font {
  font-family: var(--font-title);
  letter-spacing: 1px;
}

.section-title {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
  .section-subtitle {
    margin-bottom: 40px;
  }
}

/* ==========================================
   BOTÕES & AÇÕES (CTA)
   ========================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--primary);
  color: var(--text-dark);
  font-family: var(--font-title);
  font-size: 1.6rem;
  padding: 18px 48px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-bounce);
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-yellow);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  background-color: #FFF;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.btn-primary:active {
  transform: translateY(-2px);
}

/* Animação de pulsação infinita para o checkout */
.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 199, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 199, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 199, 0, 0);
  }
}

/* ==========================================
   HEADER / HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #1E1F24 0%, #0D0E10 70%);
  padding-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
}

/* Detalhes de Background Drips (CSS Blobs) */
.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 199, 0, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 199, 0, 0.05) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 199, 0, 0.1);
  border: 1px solid rgba(255, 199, 0, 0.3);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge-live::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hero-title {
  font-size: 5.5rem;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  color: var(--text-white);
  text-shadow: none;
}

.hero-title span:last-child {
  color: var(--primary);
  text-shadow: 0 0 20px rgba(255, 199, 0, 0.55);
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-sticker-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  animation: float 6s ease-in-out infinite;
}

.logo-sticker {
  width: 100%;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  border-radius: 20px;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  .hero-text {
    align-items: center;
  }
  .hero-title {
    font-size: 4rem;
  }
  .hero-desc {
    margin-bottom: 30px;
  }
  .cta-subtext {
    justify-content: center;
    margin-left: 0;
  }
  .logo-sticker-container {
    max-width: 340px;
  }
}

/* ==========================================
   VIDEO / VSL SECTION
   ========================================== */
.vsl-section {
  background-color: #08080A;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-color: #121214;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 199, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  aspect-ratio: 16 / 9;
}

/* Simulador de Player de Vídeo */
.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition-smooth);
}

.video-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.video-play-btn {
  position: relative;
  z-index: 5;
  width: 90px;
  height: 90px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(255, 199, 0, 0.4);
  transition: var(--transition-bounce);
}

.video-play-btn svg {
  width: 35px;
  height: 35px;
  fill: var(--text-dark);
  margin-left: 5px;
}

.video-placeholder:hover .video-play-btn {
  transform: scale(1.1);
  background-color: #FFF;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.video-overlay-text {
  position: relative;
  z-index: 5;
  margin-top: 20px;
  font-family: var(--font-title);
  font-size: 1.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Elemento de Vídeo Real (inicialmente oculto ou carregável) */
.video-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.vsl-cta-wrapper {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.badge-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

/* ==========================================
   SINOPSE & DESIGN DE HISTÓRIA
   ========================================== */
.about-section {
  background: var(--light-bg);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

/* Efeito de Divisor Escorrido Amarelo */
.drip-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.drip-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 40px;
}

.drip-divider .shape-fill {
  fill: var(--primary);
}

.about-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-poster {
  position: relative;
}

.about-poster::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--primary);
  border-radius: 16px;
  z-index: 1;
}

.poster-img {
  position: relative;
  z-index: 5;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.about-poster:hover .poster-img {
  transform: translate(-10px, -10px);
}

.synopsis-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.synopsis-tag {
  align-self: flex-start;
  background-color: var(--text-dark);
  color: var(--primary);
  font-family: var(--font-title);
  font-size: 1.2rem;
  padding: 6px 16px;
  border-radius: 4px;
  text-transform: uppercase;
}

.synopsis-title {
  font-size: 3rem;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.synopsis-text {
  font-size: 1.05rem;
  color: #4A4B53;
  margin-bottom: 10px;
}

.highlight-quote {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin: 15px 0;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-poster {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ==========================================
   CAST / ELENCO SECTION
   ========================================== */
.cast-section {
  background-color: var(--dark-bg);
  position: relative;
}

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

.cast-card {
  background-color: var(--dark-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
}

.cast-card:hover {
  transform: translateY(-15px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(255, 199, 0, 0.1);
}

.cast-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
}

.cast-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: var(--transition-smooth);
}

.cast-card:hover .cast-img {
  transform: scale(1.05);
}

.cast-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cast-name {
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1;
}

.cast-role {
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
}

.cast-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cast-bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.cast-funfact {
  background: rgba(255, 199, 0, 0.05);
  border: 1px dashed rgba(255, 199, 0, 0.2);
  padding: 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--primary);
}

@media (max-width: 992px) {
  .cast-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cast-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   BENEFITS / VANTAGENS
   ========================================== */
.benefits-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #121316 100%);
  border-top: 1px solid var(--dark-border);
}

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

.benefit-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 199, 0, 0.3);
  transform: translateY(-5px);
}

.benefit-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(255, 199, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: var(--primary);
  transition: var(--transition-bounce);
}

.benefit-card:hover .benefit-icon-box {
  background: var(--primary);
  color: var(--text-dark);
  transform: scale(1.1) rotate(10deg);
}

.benefit-icon-box svg {
  width: 28px;
  height: 28px;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   TESTIMONIALS / PROVA SOCIAL
   ========================================== */
.testimonials-section {
  background-color: var(--light-bg);
  color: var(--text-dark);
}

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

.testimonial-card {
  background-color: var(--light-card);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--light-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.stars-rating {
  display: flex;
  gap: 4px;
  color: var(--primary);
  margin-bottom: 16px;
}

.stars-rating svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #4A4B53;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #E2E8F0;
}

.user-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.user-tag {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ==========================================
   OFFER / CHECKOUT SECTION
   ========================================== */
.offer-section {
  background: radial-gradient(circle at bottom, #1E1F24 0%, #0D0E10 80%);
  position: relative;
}

.offer-container {
  max-width: 760px;
  margin: 0 auto;
}

.offer-card {
  background: #141519;
  border: 2px solid var(--primary);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-yellow);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: 'OFERTA LIMITADA';
  position: absolute;
  top: 25px;
  right: -55px;
  background: var(--primary);
  color: var(--text-dark);
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: bold;
  padding: 8px 60px;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.offer-tagline {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.offer-title {
  font-size: 3.5rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.offer-bonuses {
  text-align: left;
  max-width: 500px;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.bonus-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.bonus-item span strong {
  color: var(--primary);
}

.price-box {
  margin-bottom: 30px;
}

.price-old {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 6px;
}

.price-main {
  font-family: var(--font-title);
  font-size: 6.5rem;
  color: var(--primary);
  line-height: 0.95;
  margin-bottom: 10px;
}

.price-main span {
  font-size: 0.42em;
  vertical-align: middle;
  margin-right: 4px;
}

.price-installments {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.price-subtext {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.offer-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.guarantee-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 500px;
  margin: 40px auto 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.guarantee-badge-img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.guarantee-text {
  text-align: left;
}

.guarantee-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.guarantee-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contador Regressivo Urgente */
.countdown-box {
  background: rgba(255, 199, 0, 0.05);
  border: 1px solid rgba(255, 199, 0, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 30px;
}

.countdown-box svg {
  width: 18px;
  height: 18px;
  animation: rotateClock 5s linear infinite;
}

@keyframes rotateClock {
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .offer-card {
    padding: 40px 20px;
  }
  .offer-title {
    font-size: 2.5rem;
  }
  .price-main {
    font-size: 5rem;
  }
  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }
  .guarantee-text {
    text-align: center;
  }
}

/* ==========================================
   FAQ SECTION (ACORDEÃO)
   ========================================== */
.faq-section {
  background-color: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(255, 199, 0, 0.4);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-white);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-icon-box {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.active .faq-icon-box {
  transform: rotate(180deg);
  background-color: var(--primary);
  color: var(--text-dark);
}

.faq-icon-box svg {
  width: 16px;
  height: 16px;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-content-inner {
  padding: 0 24px 24px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 16px;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background-color: #060608;
  padding: 60px 0 30px 0;
  border-top: 1px solid var(--dark-border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted-dark);
}

.footer-logo {
  max-width: 140px;
  margin: 0 auto 30px auto;
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.footer-logo:hover {
  opacity: 1;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-disclaimer {
  max-width: 800px;
  margin: 20px auto 0 auto;
  font-size: 0.75rem;
  line-height: 1.5;
}

/* ==========================================
   MODERN MOBILE OPTIMIZATIONS (NEW GEN SMARTPHONES)
   ========================================== */
@media (max-width: 600px) {
  /* Safe areas for Notch / Dynamic Island */
  .container {
    padding-left: calc(16px + env(safe-area-inset-left));
    padding-right: calc(16px + env(safe-area-inset-right));
  }
  
  /* Fluid Typography using clamp for section titles and hero */
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 3.8rem) !important;
    line-height: 1.0 !important;
  }
  
  .section-title {
    font-size: clamp(2.0rem, 10vw, 2.8rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 12px !important;
  }
  
  .section-subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 30px !important;
  }

  /* Swap order of elements on Mobile Hero so logo sticker is seen FIRST */
  .hero-content {
    display: flex !important;
    flex-direction: column-reverse !important; /* logo-sticker at the top, text at the bottom */
    gap: 32px !important;
    padding-top: 20px !important;
  }

  .logo-sticker-container {
    max-width: 260px !important;
    margin: 0 auto !important;
  }

  .hero-text {
    align-items: center !important;
    text-align: center !important;
  }
  
  .hero-desc {
    font-size: 1.0rem !important;
    line-height: 1.5 !important;
    margin-bottom: 24px !important;
  }

  .btn-primary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px 24px !important;
    font-size: 1.35rem !important;
    border-radius: 12px !important;
  }

  /* Swipeable Cast Cards Carousel (No vertical stacking!) */
  .cast-grid {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    gap: 16px !important;
    padding: 10px 16px 24px 16px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* Hide scrollbar for cast grid */
  .cast-grid::-webkit-scrollbar {
    display: none !important;
  }

  .cast-card {
    flex: 0 0 85% !important; /* peak next card */
    scroll-snap-align: center !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4) !important;
  }
  
  .cast-img-wrapper {
    aspect-ratio: 1 / 1 !important; /* make it square on mobile to save vertical space */
  }

  /* Swipeable Testimonial Cards Carousel */
  .testimonials-grid {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    gap: 16px !important;
    padding: 10px 16px 24px 16px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none !important;
  }

  .testimonial-card {
    flex: 0 0 85% !important;
    scroll-snap-align: center !important;
    border-radius: 12px !important;
  }

  /* Benefits Grid adjustment */
  .benefits-grid {
    grid-template-columns: 1fr 1fr !important; /* 2 columns instead of 1 is much better on mobile! */
    gap: 12px !important;
  }

  .benefit-card {
    padding: 20px 12px !important;
    border-radius: 12px !important;
  }

  .benefit-icon-box {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 12px !important;
  }

  .benefit-icon-box svg {
    width: 22px !important;
    height: 22px !important;
  }

  .benefit-title {
    font-size: 1.05rem !important;
    margin-bottom: 6px !important;
  }

  .benefit-desc {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  /* Checkout Offer Card optimization */
  .offer-card {
    padding: 30px 16px !important;
    border-radius: 16px !important;
  }

  .offer-title {
    font-size: 2.2rem !important;
  }

  .price-main {
    font-size: 4.5rem !important;
  }

  .offer-bonuses {
    padding: 16px !important;
    gap: 10px !important;
  }

  .bonus-item {
    font-size: 0.85rem !important;
  }

  .guarantee-box {
    margin-top: 30px !important;
    gap: 12px !important;
  }

  .guarantee-badge-img {
    width: 50px !important;
    height: 50px !important;
  }

  .guarantee-title {
    font-size: 0.9rem !important;
  }

  .guarantee-desc {
    font-size: 0.78rem !important;
  }

  /* FAQ trigger height/padding adjustment for comfortable tap */
  .faq-trigger {
    padding: 18px 16px !important;
  }

  .faq-question {
    font-size: 0.95rem !important;
  }

  /* GPU Acceleration for high refresh rate screens */
  .logo-sticker, .btn-primary, .cast-card, .testimonial-card, .faq-item, .benefit-card {
    will-change: transform, opacity;
    transform: translate3d(0,0,0);
  }
}
