/* ==========================================================================
   KIT 10 MIL TEMAS PARA FESTA - DESIGN SYSTEM & SALES PAGE STYLES
   ========================================================================== */

:root {
  /* Color Palette */
  --primary-purple: #7b2cbf;
  --primary-purple-hover: #6a24a6;
  --primary-gradient: linear-gradient(135deg, #8e54e9 0%, #7b2cbf 100%);
  --secondary-gradient: linear-gradient(135deg, #c872da 0%, #8e54e9 100%);
  
  --cta-green: #10b981;
  --cta-green-hover: #059669;
  --cta-gradient: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
  --cta-shadow: rgba(16, 185, 129, 0.35);

  --accent-pink: #f43f5e;
  --accent-pink-soft: #ffe4e6;
  --accent-blue: #0284c7;
  --accent-blue-soft: #e0f2fe;
  --accent-gold: #f59e0b;
  --accent-gold-soft: #fef3c7;

  /* Neutrals */
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 30px -10px rgba(123, 44, 191, 0.15);
  --shadow-glow: 0 0 35px rgba(142, 84, 233, 0.25);

  /* Dimensions */
  --max-content-width: 900px;
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 75px; /* space for sticky bar */
}

/* Container Structure */
.page-wrapper {
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06);
  min-height: 100vh;
  position: relative;
}

/* Section Common Styles */
.section {
  padding: 44px 20px;
  position: relative;
}

.section-alt {
  background-color: #faf7fd;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius-full);
  background: rgba(142, 84, 233, 0.12);
  color: var(--primary-purple);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.section-title span.highlight {
  color: var(--primary-purple);
  background: linear-gradient(135deg, #c872da 0%, #8e54e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   TOP URGENCE BAR
   ========================================================================== */
.urgency-topbar {
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.urgency-pulse-icon {
  display: inline-block;
  animation: pulseIcon 1.5s infinite;
}

.urgency-timer-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3px 10px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fef08a;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: 28px;
  padding-bottom: 36px;
  text-align: center;
  background: linear-gradient(180deg, #fbf7ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1e1b4b;
  margin-top: 10px;
  margin-bottom: 14px;
}

.hero-headline .gradient-text {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 24px;
}

.hero-subheadline strong {
  color: #7c3aed;
  font-weight: 700;
}

/* Hero Media Display */
.hero-media-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 35px -5px rgba(123, 44, 191, 0.2);
  margin: 0 auto 28px;
  max-width: 640px;
  border: 3px solid rgba(142, 84, 233, 0.15);
  background: #ffffff;
  transition: transform 0.3s ease;
}

.hero-media-card:hover {
  transform: translateY(-3px);
}

.hero-media-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Key Features Pills Row */
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: var(--border-radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  box-shadow: var(--shadow-sm);
}

.feature-pill svg {
  color: var(--primary-purple);
}

/* CTA Buttons */
.cta-btn-main {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  padding: 16px 24px;
  background: var(--cta-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px var(--cta-shadow);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: pulseButton 2.5s infinite;
}

.cta-btn-main:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.45);
}

.cta-btn-main span.sub-text {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.95;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Shimmer Animation */
.cta-btn-main::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 20%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 80%
  );
  transform: rotate(30deg);
  animation: shimmer 4s infinite;
}

/* Trust Pill */
.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stars-rating {
  color: #f59e0b;
  display: flex;
  gap: 2px;
}

/* ==========================================================================
   SHOWCASE CAROUSEL SECTION
   ========================================================================== */
.carousel-container {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid #ede9fe;
  background: #ffffff;
}

.carousel-counter {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--border-radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 15;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  touch-action: pan-y pinch-zoom;
  border-radius: calc(var(--border-radius-lg) - 3px);
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #ffffff;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.carousel-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 28px);
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--border-radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  z-index: 5;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1e1b4b;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
}

.carousel-nav-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.carousel-nav-btn.prev {
  left: 12px;
}

.carousel-nav-btn.next {
  right: 12px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--primary-purple);
}

.showcase-footer-pill {
  margin: 24px auto 0;
  max-width: 480px;
  text-align: center;
  background: #fdf2f8;
  border: 1px solid #fbcfe8;
  padding: 12px 20px;
  border-radius: var(--border-radius-md);
  color: #9d174d;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ==========================================================================
   HOW IT WORKS (COMO FUNCIONA)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #ffffff;
  padding: 22px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #d8b4fe;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-gradient);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(123, 44, 191, 0.25);
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.step-highlight-tag {
  display: inline-block;
  background: #f3e8ff;
  color: #7e22ce;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 8px;
}

/* ==========================================================================
   WHAT IS INCLUDED (O QUE VEM NO KIT)
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 680px;
  margin: 0 auto;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.benefit-card:hover {
  border-color: #c084fc;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: #faf5ff;
  border: 1px solid #ede9fe;
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.benefit-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* ==========================================================================
   BONUSES SECTION
   ========================================================================== */
.bonuses-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
  margin: 0 auto;
}

.bonus-card {
  background: #ffffff;
  border: 2px solid #ede9fe;
  border-radius: var(--border-radius-md);
  padding: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bonus-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #22c55e;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--border-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.bonus-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f3e8ff 0%, #ede9fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  border: 1px solid #d8b4fe;
}

.bonus-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e1b4b;
  margin-bottom: 6px;
  padding-right: 70px;
}

.bonus-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 8px;
}

.bonus-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
}

.bonus-value span.strike {
  text-decoration: line-through;
  color: #ef4444;
  margin-right: 6px;
}

.bonus-value span.free {
  color: #16a34a;
  font-weight: 800;
}

/* ==========================================================================
   SOCIAL PROOF & TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #64748b;
  border: 2px solid #ede9fe;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.author-meta span {
  font-size: 0.78rem;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.testimonial-text {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.55;
  font-style: italic;
}

.testimonial-gallery-preview {
  margin-top: 24px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid #e2e8f0;
}

.testimonial-gallery-preview img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   OFFER SECTION & PRICING CARD (CRO PEAK)
   ========================================================================== */
.offer-section {
  background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
  padding-top: 50px;
  padding-bottom: 50px;
}

.offer-card {
  background: #ffffff;
  border-radius: var(--border-radius-lg);
  border: 3px solid #c084fc;
  box-shadow: 0 16px 45px -8px rgba(123, 44, 191, 0.22);
  padding: 36px 24px 30px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.offer-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  padding: 6px 20px;
  border-radius: var(--border-radius-full);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
  white-space: nowrap;
}

.offer-product-mockup {
  max-width: 240px;
  margin: 10px auto 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.offer-product-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

.price-anchor {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 4px;
}

.price-anchor span.strike {
  text-decoration: line-through;
  font-weight: 600;
  color: #94a3b8;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}

.price-main .currency {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cta-green);
  font-family: var(--font-heading);
}

.price-main .amount {
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--cta-green);
  font-family: var(--font-heading);
  line-height: 1;
}

.price-note {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 24px;
}

.price-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 0 -24px 24px;
}

.offer-checklist {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  font-weight: 600;
  color: #334155;
}

.offer-checklist li .check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.delivery-notice-box {
  margin-top: 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--border-radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.delivery-notice-box img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.delivery-notice-box p {
  font-size: 0.84rem;
  color: #166534;
  line-height: 1.4;
  font-weight: 500;
}

/* ==========================================================================
   GUARANTEE SECTION (RISK REVERSAL)
   ========================================================================== */
.guarantee-card {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  padding: 8px 16px;
}

.guarantee-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item.active {
  border-color: #c084fc;
  box-shadow: 0 4px 12px rgba(123, 44, 191, 0.08);
}

.faq-question-btn {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  gap: 14px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-purple);
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: #ede9fe;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-answer-inner {
  padding: 0 20px 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  border-top: 1px solid #f8fafc;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.82rem;
}

.site-footer p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-disclaimer {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.74rem;
  opacity: 0.75;
}

/* ==========================================================================
   STICKY BOTTOM CTA BAR
   ========================================================================== */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  padding: 10px 16px;
  z-index: 999;
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-info .sticky-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
}

.sticky-info .sticky-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--cta-green);
  line-height: 1;
}

.sticky-btn {
  flex-grow: 1;
  max-width: 280px;
  padding: 12px 18px;
  background: var(--cta-gradient);
  color: #ffffff;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 4px 14px var(--cta-shadow);
  animation: pulseButton 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================================================
   LIVE SOCIAL PROOF TOAST
   ========================================================================== */
.social-proof-toast {
  position: fixed;
  bottom: 85px;
  left: 20px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 998;
  max-width: 320px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.social-proof-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.social-proof-toast .toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-proof-toast .toast-text {
  font-size: 0.8rem;
  color: #1e293b;
  line-height: 1.35;
}

.social-proof-toast .toast-text strong {
  color: #0f172a;
}

.social-proof-toast .toast-time {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 2px;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes pulseButton {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 20px var(--cta-shadow);
  }
  50% {
    transform: scale(1.025);
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.45);
  }
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(30deg); }
  30%, 100% { transform: translateX(100%) rotate(30deg); }
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 640px) {
  .hero-headline {
    font-size: 1.7rem;
  }
  
  .section-title {
    font-size: 1.55rem;
  }

  /* Carousel Mobile Optimization */
  .carousel-container {
    max-width: 100%;
    border-radius: var(--border-radius-md);
    border-width: 2px;
  }

  .carousel-slide {
    aspect-ratio: 1 / 1;
    max-height: 380px;
  }

  .carousel-badge {
    font-size: 0.72rem;
    padding: 5px 10px;
    bottom: 8px;
    max-width: calc(100% - 20px);
    letter-spacing: -0.01em;
  }

  .carousel-nav-btn {
    width: 34px;
    height: 34px;
  }

  .carousel-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .carousel-nav-btn.prev {
    left: 6px;
  }

  .carousel-nav-btn.next {
    right: 6px;
  }

  .carousel-counter {
    top: 8px;
    right: 8px;
    font-size: 0.68rem;
    padding: 3px 8px;
  }

  .carousel-dots {
    margin-top: 10px;
    gap: 6px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .carousel-dot.active {
    width: 22px;
  }

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

  .bonus-card {
    flex-direction: column;
    gap: 12px;
  }

  .bonus-badge {
    position: static;
    display: inline-block;
    margin-bottom: 4px;
  }

  .offer-card {
    padding: 30px 18px 24px;
  }

  .price-main .amount {
    font-size: 2.8rem;
  }
}

@media (min-width: 768px) {
  .page-wrapper {
    margin: 20px auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
  }

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

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

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