/* ==========================================
   CSS CUSTOM VARIABLES & CONFIGURATION
   ========================================== */
:root {
  /* HSL Colors mapped to cow manual (Browns, Golds, Greens) */
  --cpa-blue: 45 95% 48%; /* Replaced with Dourado */
  --cpa-blue-dark: 25 40% 12%; /* Deep Warm Chocolate Brown */
  --cpa-blue-card-dark: 25 30% 18%; /* Milk Chocolate Brown */
  --cpa-blue-card-black: 25 35% 8%;
  --cpa-green: 142 60% 45%; /* Verde Meio Termo */
  --cpa-green-shadow: 142 55% 30%;
  --cpa-green-deep: 142 70% 32%;
  --cpa-orange: 45 95% 48%; /* Dourado / Gold Accent */
  --cpa-white: 0 0% 100%;
  --cpa-black: 25 20% 10%;
  --cpa-light: 30 20% 97%; /* Warm Cream / Alabaster */
  --cpa-muted: 25 15% 45%;
  --cpa-subtle: 25 20% 78%;
  --cpa-danger: 0 78% 52%;
  --cpa-accent-light: 45 80% 94%;
  
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', system-ui, sans-serif;
  color: hsl(var(--cpa-black));
  background-color: hsl(var(--cpa-light));
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
}

p {
  color: hsl(var(--cpa-black) / 0.8);
}

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

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

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

/* Common Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Helpers */
.text-green { color: hsl(var(--cpa-green)) !important; }
.text-green-deep { color: hsl(var(--cpa-green-deep)) !important; }
.text-orange { color: hsl(var(--cpa-orange)) !important; }
.text-danger { color: hsl(var(--cpa-danger)) !important; }
.text-white { color: hsl(var(--cpa-white)) !important; }
.text-black { color: #000 !important; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.px-2 { padding-left: 8px; padding-right: 8px; }
.py-1 { padding-top: 4px; padding-bottom: 4px; }
.rounded { border-radius: 6px; }

/* Micro-animations */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@keyframes bounce-down {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}

.pulse-effect {
  animation: pulse 2s infinite ease-in-out;
}

.pulse-effect:hover {
  animation-play-state: paused;
}

.bounce-arrow {
  animation: bounce-down 2s infinite;
}

/* Dynamic Alert Bar */
.top-alert-bar {
  background-color: hsl(var(--cpa-danger));
  color: #fff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-align: center;
  position: relative;
  z-index: 100;
}

.top-alert-bar svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.icon-pulse {
  animation: pulse 1.5s infinite;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  background-color: hsl(var(--cpa-blue-dark));
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 40% 60%;
    gap: 40px;
  }
  .hero-mockup {
    width: 118%;
  }
}

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

@media (min-width: 992px) {
  .hero-content {
    align-items: flex-start;
    text-align: left;
  }
}

.hero-content h1 {
  font-size: clamp(28px, 4vw, 54px);
  color: hsl(var(--cpa-white));
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 900px;
}

.badge-orange {
  display: inline-block;
  background-color: hsl(var(--cpa-orange));
  color: #000;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 800;
  vertical-align: middle;
}

.badge-green {
  display: inline-block;
  background-color: hsl(var(--cpa-green-deep));
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 800;
  vertical-align: middle;
}

.highlight-underline {
  text-decoration: underline;
  text-decoration-color: hsl(var(--cpa-green));
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}

.hero-description {
  font-size: clamp(16px, 2vw, 20px);
  color: hsl(var(--cpa-white) / 0.95);
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 600px;
}

.hero-bullet-list {
  list-style: none;
  margin-bottom: 30px;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  color: hsl(var(--cpa-white) / 0.9);
  font-size: 15px;
  font-weight: 500;
}

.bullet-check {
  width: 22px;
  height: 22px;
  background-color: hsl(var(--cpa-orange));
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.bullet-check svg {
  width: 12px;
  height: 12px;
  stroke-width: 3.5px;
}

/* Call to Action Button */
.cta-button {
  background-color: hsl(var(--cpa-green));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(13px, 1.8vw, 16px);
  letter-spacing: 0.5px;
  padding: 18px 32px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 0 hsl(var(--cpa-green-shadow)), 0 8px 24px hsl(0 0% 0% / 0.3);
  transition: var(--transition);
  text-transform: uppercase;
  width: 100%;
  max-width: 480px;
}

.cta-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.cta-button:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 6px 0 hsl(var(--cpa-green-shadow)), 0 12px 30px hsl(0 0% 0% / 0.4);
}

.cta-button:hover svg {
  transform: translateX(4px);
}

.cta-button:active {
  transform: scale(0.98) translateY(2px);
  box-shadow: 0 1px 0 hsl(var(--cpa-green-shadow)), 0 2px 10px hsl(0 0% 0% / 0.2);
}

/* Delivery info box */
.delivery-badge {
  margin-top: 24px;
  padding: 12px 20px;
  border-radius: 12px;
  background-color: hsl(var(--cpa-blue-dark));
  border: 1px solid hsl(var(--cpa-green) / 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@media (min-width: 992px) {
  .delivery-badge {
    align-items: flex-start;
  }
  .delivery-channels {
    justify-content: flex-start;
  }
}

.delivery-title {
  color: hsl(var(--cpa-white));
  font-size: 13px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.delivery-channels {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.channel {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.icon-whatsapp {
  width: 18px;
  height: 18px;
  fill: #25D366;
}

.icon-email {
  width: 18px;
  height: 18px;
  stroke: #229ED9;
}

.delivery-separator {
  color: hsl(var(--cpa-white) / 0.7);
  font-size: 13px;
  font-weight: 500;
}

.hero-image-mobile {
  display: block;
  margin: 20px 0;
  width: 100%;
  max-width: 420px;
}

.hero-image-desktop {
  display: none;
}

.hero-mockup {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  animation: float 6s infinite ease-in-out;
}

@media (min-width: 992px) {
  .hero-image-mobile {
    display: none;
  }
  .hero-image-desktop {
    display: block;
    width: 100%;
  }
}

/* ==========================================
   CONTINUOUS SCROLL SAMPLES
   ========================================== */
.samples-carousel-section {
  background-color: hsl(var(--cpa-white));
  padding: 40px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.section-header h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  color: hsl(var(--cpa-black));
  margin-bottom: 12px;
}

.carousel-subtitle {
  font-size: clamp(15px, 2vw, 20px);
  color: hsl(var(--cpa-black) / 0.8);
  font-style: italic;
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

@keyframes cpa-continuous-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.carousel-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: cpa-continuous-scroll 45s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes cpa-continuous-scroll-reverse {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.carousel-track-reverse {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: cpa-continuous-scroll-reverse 45s linear infinite;
}

.carousel-track-reverse:hover {
  animation-play-state: paused;
}

.carousel-slide {
  width: 78vw;
  max-width: 480px;
  padding: 0 8px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .carousel-slide {
    width: 40vw;
  }
}

.carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.text-bullets-container {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cow-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .cow-checklist {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.cow-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: hsl(var(--cpa-black) / 0.85);
}

.bullet-check.green-check {
  background-color: hsl(var(--cpa-green-deep));
  color: #fff;
}

.bullet-check.green-check svg {
  color: #fff;
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */
.benefits-section {
  background-color: hsl(var(--cpa-blue-dark));
  padding: 60px 20px;
}

.benefits-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-header h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  color: hsl(var(--cpa-white));
  line-height: 1.25;
  margin-bottom: 16px;
}

.green-underline::after {
  background-color: hsl(var(--cpa-green));
}

.benefits-subhead {
  font-size: clamp(16px, 2vw, 20px);
  color: hsl(var(--cpa-white) / 0.85);
  font-style: italic;
  font-weight: 500;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

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

@media (min-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}

.benefit-card {
  background-color: hsl(var(--cpa-blue-card-dark));
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 250px;
  box-shadow: 0 8px 30px hsl(var(--cpa-blue-card-black) / 0.5);
  border: 1px solid hsl(var(--cpa-green) / 0.15);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: hsl(var(--cpa-green) / 0.4);
  box-shadow: 0 12px 40px hsl(var(--cpa-blue-card-black) / 0.7);
}

.benefit-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: hsl(var(--cpa-green) / 0.15);
  border: 2px solid hsl(var(--cpa-green) / 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon-wrapper svg {
  width: 28px;
  height: 28px;
  color: hsl(var(--cpa-green));
}

.benefit-card h3 {
  color: hsl(var(--cpa-white));
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.benefit-card p {
  color: hsl(var(--cpa-white) / 0.85);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

/* ==========================================
   COMPARISON SECTION
   ========================================== */
.comparison-section {
  background-color: hsl(var(--cpa-white));
  padding: 60px 20px;
}

.comparison-header {
  text-align: center;
  margin-bottom: 30px;
}

.comparison-header h2 {
  font-size: clamp(22px, 3vw, 34px);
  color: hsl(var(--cpa-black));
  line-height: 1.3;
}

.badge-green {
  background-color: hsl(var(--cpa-green-deep));
  padding: 2px 8px;
  border-radius: 6px;
}

.comparison-image-wrapper {
  max-width: 900px;
  margin: 0 auto 40px auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-img {
  width: 100%;
  height: auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.comparison-card {
  border-radius: var(--radius-md);
  padding: 30px;
}

.card-without {
  background-color: #f9f9f9;
  border: 2px solid hsl(var(--cpa-danger) / 0.3);
}

.card-with {
  background-color: hsl(var(--cpa-green) / 0.05);
  border: 2px solid hsl(var(--cpa-green) / 0.5);
  box-shadow: 0 0 20px hsl(var(--cpa-green) / 0.08);
}

.title-without {
  color: hsl(var(--cpa-danger));
  text-align: center;
  font-size: 18px;
  margin-bottom: 24px;
}

.title-with {
  color: hsl(var(--cpa-green-deep));
  text-align: center;
  font-size: 18px;
  margin-bottom: 24px;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-list li {
  display: flex;
  align-items: start;
  gap: 12px;
}

.list-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.icon-red-bg {
  background-color: hsl(var(--cpa-danger) / 0.15);
  color: hsl(var(--cpa-danger));
}

.icon-green-bg {
  background-color: hsl(var(--cpa-green) / 0.2);
  color: hsl(var(--cpa-green-deep));
}

.list-icon svg {
  width: 14px;
  height: 14px;
}

.comparison-list p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: hsl(var(--cpa-black) / 0.9);
}

/* ==========================================
   GLOW BOX SECTION (100% UPDATED)
   ========================================== */
.updated-section {
  background-color: hsl(var(--cpa-blue-dark));
  padding: 50px 20px;
}

.glow-box {
  background: linear-gradient(160deg, hsl(var(--cpa-blue-card-dark)) 0%, hsl(var(--cpa-blue-card-black)) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 25px;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px hsl(var(--cpa-green) / 0.08);
  border: 1.5px solid hsl(var(--cpa-green) / 0.3);
  overflow: hidden;
}

.glow-border-bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background-color: hsl(var(--cpa-green));
  opacity: 0.7;
  border-radius: 10px;
}

.badge-wrapper {
  margin-bottom: 24px;
}

.glow-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: hsl(var(--cpa-orange));
  background-color: hsl(var(--cpa-orange) / 0.15);
  border: 1px solid hsl(var(--cpa-orange) / 0.4);
  padding: 6px 16px;
  border-radius: 50px;
}

.glow-box h2 {
  font-size: clamp(22px, 3vw, 32px);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}

.updated-description {
  font-size: clamp(15px, 1.8vw, 17px);
  color: hsl(var(--cpa-white) / 0.9);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}

.updated-bullets {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.updated-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bullet-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: hsl(var(--cpa-green) / 0.2);
  color: hsl(var(--cpa-green));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bullet-check svg {
  width: 14px;
  height: 14px;
}

.updated-bullets span {
  font-size: 15px;
  font-weight: 500;
  color: hsl(var(--cpa-white) / 0.92);
}

/* ==========================================
   URGENCY BANNER SECTION
   ========================================== */
.urgency-banner-section {
  background-color: hsl(var(--cpa-danger));
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.banner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 900px;
}

.urgency-banner-section h2 {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
}

.urgency-banner-section p {
  color: #fff;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  margin-bottom: 12px;
}

.light-cta-btn {
  background-color: hsl(var(--cpa-green));
  box-shadow: 0 4px 0 hsl(var(--cpa-green-shadow)), 0 8px 24px rgba(0,0,0,0.2);
}

.light-cta-btn:hover {
  background-color: hsl(var(--cpa-green));
}

/* ==========================================
   AUDIENCE SECTION
   ========================================== */
.audience-section {
  background-color: hsl(var(--cpa-blue-dark));
  padding: 60px 20px;
}

.audience-title {
  text-align: center;
  font-size: clamp(24px, 3.5vw, 38px);
  color: #fff;
  margin-bottom: 40px;
}

.text-blue {
  color: hsl(var(--cpa-blue));
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.audience-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 6px 20px hsl(var(--cpa-blue-dark) / 0.06);
  border: 1px solid hsl(var(--cpa-blue) / 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--cpa-orange) / 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Center card 5 on desktop if needed, or normal grid is fine */
@media (min-width: 992px) {
  .audience-card:nth-child(4) {
    grid-column: span 1;
  }
}

.audience-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: hsl(var(--cpa-accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.audience-icon svg {
  width: 24px;
  height: 24px;
  color: hsl(var(--cpa-orange));
}

.audience-card p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: hsl(var(--cpa-black) / 0.85);
}

/* ==========================================
   PACK INCLUSIONS SECTION
   ========================================== */
.pack-inclusions-section {
  background-color: hsl(var(--cpa-blue-dark));
  padding: 60px 20px;
}

.inclusions-header-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.inclusions-badge {
  background-color: hsl(var(--cpa-green));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(13px, 1.8vw, 16px);
  padding: 14px 28px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 10px 30px hsl(var(--cpa-green) / 0.3);
}

.inclusions-badge br {
  display: block;
}

.mobile-only { display: inline; }
.desktop-only { display: none; }

@media (min-width: 992px) {
  .mobile-only { display: none; }
  .desktop-only { display: inline; }
  .inclusions-badge br { display: none; }
}

.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .inclusions-grid {
    grid-template-columns: 50% 50%;
    gap: 40px;
  }
}

.inclusions-mockup-wrapper {
  display: flex;
  justify-content: center;
}

.inclusions-mockup {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
}

.inclusions-card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid hsl(var(--cpa-blue) / 0.1);
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-tag {
  display: inline-block;
  background-color: hsl(var(--cpa-green));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.inclusions-card h3 {
  font-size: clamp(24px, 3vw, 30px);
  color: #000;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.1;
}

.card-subtitle {
  text-align: center;
  font-style: italic;
  font-weight: 600;
  color: hsl(var(--cpa-black) / 0.7);
  font-size: 15px;
  margin-bottom: 24px;
}

.inclusions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 24px;
}

.inclusions-list li {
  display: flex;
  align-items: start;
  gap: 12px;
}

.check-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: hsl(var(--cpa-green-deep) / 0.15);
  color: hsl(var(--cpa-green-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-circle svg {
  width: 12px;
  height: 12px;
}

.inclusions-list span {
  font-size: 15px;
  font-weight: 500;
  color: hsl(var(--cpa-black) / 0.85);
  line-height: 1.4;
}

.bonus-footer-banner {
  text-align: center;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  color: #000;
  margin-top: 10px;
}

/* ==========================================
   EXCLUSIVE BONUS SECTION
   ========================================== */
.bonus-section {
  background-color: hsl(var(--cpa-blue-dark));
  padding: 60px 20px;
}

.bonus-header {
  text-align: center;
  margin-bottom: 40px;
}

.bonus-header h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}

.bonus-badge-wrapper {
  display: flex;
  justify-content: center;
}

.bonus-badge {
  background-color: hsl(var(--cpa-orange));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 10px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px hsl(var(--cpa-orange) / 0.3);
}

.bonus-badge svg {
  width: 20px;
  height: 20px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.bonus-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid hsl(var(--cpa-blue) / 0.15);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.bonus-card:hover {
  transform: translateY(-6px);
}

.bonus-image-container {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  padding: 24px 24px 0 24px;
  display: flex;
  justify-content: center;
}

.bonus-image-container img {
  width: 80%;
  height: auto;
  transition: transform 0.5s ease;
}

.bonus-card:hover .bonus-image-container img {
  transform: scale(1.03);
}

.bonus-card-body {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.bonus-card-tag-wrapper {
  margin-top: -40px;
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
}

.bonus-card-tag {
  display: inline-block;
  background-color: hsl(var(--cpa-orange));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 20px;
  border-radius: 50px;
  box-shadow: 0 6px 15px hsl(var(--cpa-orange) / 0.25);
}

.bonus-card-body h3 {
  font-size: 18px;
  color: #000;
  line-height: 1.25;
  margin-bottom: 12px;
}

.card-divider {
  width: 90%;
  height: 1px;
  background-color: hsl(var(--cpa-blue) / 0.2);
  margin: 10px 0;
}

.bonus-card-body p {
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--cpa-black) / 0.75);
  line-height: 1.55;
}

/* ==========================================
   PRICING TABLE SECTION
   ========================================== */
.pricing-section {
  background-color: hsl(var(--cpa-blue-dark));
  padding: 60px 20px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 25px;
}

.pricing-header h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  color: #fff;
  line-height: 1.15;
}

.pricing-date-notice {
  font-size: clamp(14px, 1.8vw, 16px);
  color: hsl(var(--cpa-danger));
  font-weight: 600;
  margin-top: 10px;
}

.pricing-warning-bar {
  background-color: hsl(var(--cpa-danger));
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(12px, 1.8vw, 16px);
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.retake-warning-box {
  background-color: hsl(var(--cpa-orange) / 0.1);
  border: 2px dashed hsl(var(--cpa-orange) / 0.5);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px auto;
}

.warning-paragraph {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  color: hsl(var(--cpa-black) / 0.85);
  line-height: 1.55;
  margin-bottom: 10px;
}

.warning-highlight {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 700;
  color: #000;
}

/* Plans Card Grid */
.plans-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .plans-grid {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
  }
}

.plan-card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid hsl(var(--cpa-blue) / 0.12);
  transition: var(--transition);
  position: relative;
}

.plan-card:hover {
  transform: translateY(-6px);
}

.plan-card-title {
  font-size: clamp(22px, 2.5vw, 26px);
  color: #000;
  margin-bottom: 18px;
}

.plan-mockup-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
}

.plan-mockup {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: var(--radius-sm);
}

.plan-single-feature {
  display: flex;
  align-items: start;
  gap: 8px;
  margin-bottom: 20px;
  text-align: center;
  max-width: 320px;
}

.plan-single-feature svg {
  width: 18px;
  height: 18px;
  color: hsl(var(--cpa-green-deep));
  flex-shrink: 0;
  margin-top: 3px;
}

.plan-single-feature span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
}

.price-old-text {
  font-size: 18px;
  font-weight: 700;
  color: hsl(var(--cpa-danger)) !important;
  margin-bottom: 4px;
}

.line-through {
  text-decoration: line-through;
}

.price-value-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  color: hsl(var(--cpa-green-deep));
  margin-bottom: 6px;
}

.price-currency {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  margin-top: 8px;
}

.price-integer {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 62px);
  line-height: 1;
}

.installments-text {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  text-align: center;
}

.savings-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  color: hsl(var(--cpa-green-deep));
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 19px);
  margin-bottom: 20px;
}

.savings-alert svg {
  width: 20px;
  height: 20px;
  stroke-width: 3px;
}

/* Plan checkout links */
.plan-checkout-button {
  background-color: hsl(var(--cpa-green));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(13px, 1.8vw, 17px);
  letter-spacing: 0.5px;
  padding: 16px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 0 hsl(var(--cpa-green-shadow)), 0 8px 20px rgba(0,0,0,0.12), 0 0 25px hsl(var(--cpa-green) / 0.3);
  transition: var(--transition);
  text-transform: uppercase;
  width: 90%;
  max-width: 320px;
  text-align: center;
  line-height: 1.2;
}

.plan-checkout-button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.plan-checkout-button:hover {
  transform: scale(1.04);
  box-shadow: 0 5px 0 hsl(var(--cpa-green-shadow)), 0 10px 24px rgba(0,0,0,0.18), 0 0 35px hsl(var(--cpa-green) / 0.45);
}

.basic-warning-notice {
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 2px solid hsl(var(--cpa-danger));
  background-color: hsl(var(--cpa-danger) / 0.08);
  max-width: 340px;
}

.basic-warning-notice p {
  color: hsl(var(--cpa-danger));
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.down-arrows-indicator {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: -6px;
}

.down-arrows-indicator svg {
  width: 24px;
  height: 24px;
  color: hsl(var(--cpa-danger));
  stroke-width: 3px;
  animation: bounce-down 1.5s infinite;
}

.down-arrows-indicator svg:last-child {
  margin-top: -12px;
  animation-delay: 0.2s;
}

/* Complete plan specific styles */
.complete-plan-card {
  border: 2px solid hsl(var(--cpa-green));
  overflow: hidden;
  padding: 0;
  box-shadow: 0 18px 50px hsl(var(--cpa-blue-dark) / 0.18);
}

.plan-card-urgency-header {
  background-color: hsl(var(--cpa-danger));
  color: #fff;
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 11px;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.plan-card-urgency-header svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}

.plan-card-tag-header {
  background-color: hsl(var(--cpa-green));
  width: 100%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
}

.plan-card-inner-body {
  padding: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-row {
  margin-bottom: 14px;
}

.bonus-inclusions-badge {
  background-color: hsl(var(--cpa-green-deep));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bonus-inclusions-badge svg {
  width: 14px;
  height: 14px;
}

.plan-pdf-notice {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  text-align: center;
}

.plan-features-list {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.plan-features-list li {
  display: flex;
  align-items: start;
  gap: 10px;
}

.feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: hsl(var(--cpa-green-deep) / 0.15);
  color: hsl(var(--cpa-green-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-check svg {
  width: 12px;
  height: 12px;
}

.plan-features-list span {
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--cpa-black));
  line-height: 1.45;
  text-align: left;
}

.complete-checkout-btn {
  width: 100%;
  max-width: 360px;
  box-shadow: 0 4px 0 hsl(var(--cpa-green-shadow)), 0 8px 25px rgba(0,0,0,0.15), 0 0 30px hsl(var(--cpa-green) / 0.35);
}

.plan-urgency-notice {
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--cpa-danger));
  text-align: center;
  margin-top: 16px;
  line-height: 1.4;
}

.guarantee-badge-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: hsl(var(--cpa-black) / 0.7);
  font-size: 13px;
  font-weight: 500;
}

.guarantee-badge-inline svg {
  width: 18px;
  height: 18px;
  color: hsl(var(--cpa-green-deep));
}

.payment-logos-wrapper {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.payment-logos-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  opacity: 0.85;
}

/* ==========================================
   WARRANTY SECTION
   ========================================== */
.warranty-section {
  background-color: hsl(var(--cpa-white));
  padding: 50px 20px;
}

.warranty-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 800px;
}

@media (min-width: 768px) {
  .warranty-container {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}

.warranty-seal-wrapper {
  flex-shrink: 0;
}

.warranty-seal {
  width: 130px;
  height: auto;
}

@media (min-width: 768px) {
  .warranty-seal {
    width: 160px;
  }
}

.warranty-content {
  text-align: center;
}

@media (min-width: 768px) {
  .warranty-content {
    text-align: left;
  }
}

.warranty-content h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  color: #000;
  margin-bottom: 12px;
}

.warranty-main-paragraph {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 400;
  line-height: 1.6;
  color: hsl(var(--cpa-black) / 0.85);
  margin-bottom: 12px;
}

.warranty-security-tag {
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--cpa-black) / 0.6);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
  background-color: hsl(var(--cpa-white));
  padding: 40px 20px 60px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 30px;
}

.testimonials-header h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  color: #000;
  line-height: 1.15;
}

.testimonials-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: hsl(var(--cpa-black) / 0.6);
  margin-top: 8px;
}

.testimonial-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 250px;
}

@media (min-width: 768px) {
  .testimonial-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  display: none; /* Controlled by JS paging */
  animation: fadeIn 0.4s ease;
  height: 100%;
}

/* Responsive view overrides helper class */
.testimonial-card.testimonial-active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.card-inner {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 18px hsl(var(--cpa-blue-dark) / 0.04);
  transition: var(--transition);
}

.card-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 22px hsl(var(--cpa-blue-dark) / 0.08);
}

.stars-row {
  margin-bottom: 16px;
}

.star-icon {
  color: hsl(var(--cpa-orange));
  font-size: 20px;
  margin-right: 2px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.65;
  color: hsl(var(--cpa-black) / 0.8);
  font-style: italic;
  margin-bottom: 20px;
}

.author-details {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 12px;
}

.author-name {
  font-weight: 700;
  font-size: 14px;
  color: #000;
}

.author-info {
  font-size: 12px;
  font-weight: 500;
  color: hsl(var(--cpa-black) / 0.5);
  margin-top: 2px;
}

/* Slider Controls */
.slider-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 30px auto 0 auto;
}

.dots-indicators {
  display: flex;
  gap: 8px;
}

.dot-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: hsl(var(--cpa-blue) / 0.25);
  transition: var(--transition);
}

.dot-btn.active-dot {
  background-color: hsl(var(--cpa-blue));
  width: 16px;
  border-radius: 10px;
}

.nav-buttons-container {
  display: flex;
  gap: 12px;
}

.nav-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid hsl(var(--cpa-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: hsl(var(--cpa-blue));
}

.nav-arrow-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 3px;
}

.nav-arrow-btn:hover {
  background-color: hsl(var(--cpa-blue));
  color: #fff;
  transform: scale(1.06);
}

.nav-arrow-btn:active {
  transform: scale(0.96);
}

/* ==========================================
   ROADMAP SECTION (HOW TO ACCESS)
   ========================================== */
.roadmap-section {
  background-color: hsl(var(--cpa-blue-dark));
  padding: 60px 20px;
}

.roadmap-header {
  text-align: center;
  margin-bottom: 45px;
}

.roadmap-header h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.roadmap-subtitle {
  font-size: 15px;
  font-weight: 500;
  color: hsl(var(--cpa-subtle));
}

.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 40px auto;
}

@media (min-width: 576px) {
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .roadmap-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.roadmap-step-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 35px 24px 24px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.roadmap-step-card:hover {
  transform: scale(1.02);
}

.step-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: hsl(var(--cpa-orange));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px hsl(var(--cpa-orange) / 0.5);
}

.step-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: hsl(var(--cpa-blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.step-icon-wrapper svg {
  width: 28px;
  height: 28px;
  color: hsl(var(--cpa-green));
}

.roadmap-step-card h3 {
  font-size: 16px;
  color: #000;
  margin-bottom: 10px;
}

.roadmap-step-card p {
  font-size: 13px;
  line-height: 1.6;
  color: hsl(var(--cpa-black) / 0.7);
}

.roadmap-cta-wrapper {
  display: flex;
  justify-content: center;
}

/* ==========================================
   FAQ ACCORDION SECTION
   ========================================== */
.faq-section {
  background-color: hsl(var(--cpa-light));
  padding: 60px 20px;
}

.faq-container {
  max-width: 800px;
}

.faq-header {
  text-align: center;
  margin-bottom: 35px;
}

.faq-header h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  color: #000;
}

.faq-header p {
  font-size: 14px;
  color: hsl(var(--cpa-muted));
  margin-top: 8px;
}

.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: #fff;
  border: 1px solid hsl(var(--cpa-blue) / 0.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 10px hsl(var(--cpa-blue-dark) / 0.05);
  transition: var(--transition);
}

.faq-item.faq-open {
  box-shadow: 0 8px 25px hsl(var(--cpa-blue-dark) / 0.12);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  text-align: left;
}

.faq-question {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 16px);
  color: #000;
  padding-right: 15px;
}

.faq-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: hsl(var(--cpa-accent-light));
  color: hsl(var(--cpa-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon-circle svg {
  width: 16px;
  height: 16px;
  stroke-width: 3px;
  transition: transform 0.3s ease;
}

/* Opened FAQ state adjustments */
.faq-open .faq-icon-circle {
  background-color: hsl(var(--cpa-blue));
  color: #fff;
}

.faq-open .faq-icon-circle svg {
  transform: rotate(45deg); /* Plus turns into a cross */
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 24px;
}

.faq-open .faq-content {
  max-height: 500px; /* Safe upper limit, prevents text cut-off */
  padding: 10px 24px 20px 24px;
}

.faq-item:hover {
  border-color: hsl(var(--cpa-blue) / 0.3);
  box-shadow: 0 4px 15px hsl(var(--cpa-blue-dark) / 0.08);
}

.faq-content p {
  font-size: 14px;
  line-height: 1.65;
  color: hsl(var(--cpa-muted));
}

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

/* ==========================================
   LEGAL FOOTER
   ========================================== */
.legal-footer {
  background-color: hsl(var(--cpa-blue-dark));
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
}

.footer-disclaimer {
  font-size: 12px;
  margin-top: 8px;
  opacity: 0.8;
}

/* Custom Highlights for transitioned sections */
.badge-marrom-light {
  background-color: hsl(var(--cpa-orange));
  color: hsl(var(--cpa-blue-dark)) !important;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 800;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.badge-marrom-bg {
  background-color: hsl(var(--cpa-blue-dark));
  color: #ffffff !important;
  padding: 2px 10px;
  border-radius: 6px;
  display: inline-block;
  vertical-align: middle;
}

/* Spacing compression overrides */
.hero-section { padding: 25px 0 !important; }
.samples-carousel-section { padding: 25px 0 !important; }
.benefits-section { padding: 35px 20px !important; }
.comparison-section { padding: 35px 20px !important; }
.audience-section { padding: 35px 20px !important; }
.pack-inclusions-section { padding: 35px 20px !important; }
.bonus-section { padding: 35px 20px !important; }
.pricing-section { padding: 35px 20px !important; }
.warranty-section { padding: 35px 20px !important; }
.roadmap-section { padding: 35px 20px !important; }
.testimonials-section { padding: 35px 20px !important; }
.faq-section { padding: 35px 20px !important; }
