/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    --brand-primary: #e11d48;       /* Vibrant rose/pink red */
    --brand-primary-hover: #f43f5e;
    --brand-accent: #facc15;        /* Radiant gold yellow */
    --brand-accent-light: #fef9c3;
    --brand-dark: #0f172a;          /* Slate 900 */
    --brand-slate-800: #1e293b;
    --brand-slate-700: #334155;
    --brand-slate-500: #64748b;
    --brand-slate-400: #94a3b8;
    --brand-slate-200: #e2e8f0;
    --brand-slate-100: #f1f5f9;
    --brand-slate-50: #f8fafc;
    --brand-emerald-50: #ecfdf5;
    --brand-emerald-100: #d1fae5;
    --brand-emerald-700: #047857;

    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --shadow-cta: 0 12px 28px -6px rgba(225, 29, 72, 0.45), 0 6px 12px -4px rgba(225, 29, 72, 0.25);
    --shadow-premium: 0 25px 50px -12px rgba(225, 29, 72, 0.22);
    --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    --shadow-popup: 0 20px 35px -5px rgba(15, 23, 42, 0.18);
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-main);
    color: var(--brand-dark);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

body {
    line-height: 1.5;
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    display: block;
}

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

/* Utilities & Layout */
.container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

.bg-white { background-color: #ffffff; }
.bg-slate-50 { background-color: var(--brand-slate-50); }

.desktop-only {
    display: none;
}
@media (min-width: 768px) {
    .desktop-only { display: inline; }
}

/* ==========================================================================
   SOCIAL PROOF FLOATING POPUP (Bottom Left)
   ========================================================================== */
.social-proof-popup {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 100;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 0.85rem 1.5rem 0.85rem 1.15rem;
    border-radius: 1.25rem;
    border: 2px solid var(--brand-primary);
    box-shadow: var(--shadow-popup);
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-proof-popup.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 640px) {
    .social-proof-popup {
        display: none; /* Hidden on small mobile screens as per Tailwind standard */
    }
}

.popup-content {
    display: flex;
    flex-direction: column;
}

.popup-name {
    font-size: 0.875rem;
    font-weight: 900;
    color: var(--brand-dark);
}

.popup-action {
    font-size: 0.75rem;
    color: var(--brand-slate-500);
    font-weight: 600;
}

.popup-action .highlight {
    color: var(--brand-primary);
    font-weight: 800;
}

.popup-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
    font-size: 0.625rem;
    font-weight: 800;
    color: var(--brand-slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
    background-color: var(--brand-primary);
    color: #ffffff;
    padding: 0.65rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.2);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    background-color: #ffffff;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 5rem;
        padding-bottom: 6rem;
    }
}

/* Price Tag Badge */
.badge-price {
    display: inline-block;
    background-color: var(--brand-accent);
    color: var(--brand-dark);
    padding: 0.4rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.35);
}

/* Hero Title */
.hero-title {
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 900;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-title .text-primary {
    color: var(--brand-primary);
}

.hero-title .text-accent {
    color: var(--brand-dark);
}

.hero-title .underline-highlight {
    background: linear-gradient(120deg, var(--brand-accent) 0%, var(--brand-accent) 100%);
    background-repeat: no-repeat;
    background-size: 100% 35%;
    background-position: 0 88%;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1rem;
    color: var(--brand-slate-500);
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.25rem;
    line-height: 1.6;
    font-weight: 500;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* Phone Mockup & Video Container */
.hero-video-container {
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.phone-mockup {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background-color: #ffffff;
    border: 8px solid var(--brand-dark);
    aspect-ratio: 9 / 16;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Micro Text & Comparison Box */
.hero-subtext {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
}

.comparison-box {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    border-radius: 0.85rem;
    background-color: var(--brand-emerald-50);
    border: 1px solid var(--brand-emerald-100);
    padding: 1rem 1.25rem;
    text-align: center;
}

.comparison-text-slate {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-slate-800);
}

.comparison-text-highlight {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-top: 0.25rem;
}
/* Performance Image & Rendering Optimization */
img {
    max-width: 100%;
    display: block;
    decoding: async;
}

/* CTA Button & Security */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, filter 0.2s ease;
    border: none;
    text-decoration: none;
    box-sizing: border-box;
}

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

.btn-primary {
    background-color: var(--brand-primary);
    color: #ffffff;
    box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
    filter: brightness(110%);
    transform: translateY(-3px) scale(1.02);
}

.btn-cta.w-full, .btn-full-width {
    width: 100%;
}

.cta-wrapper .btn-cta {
    padding: 1.35rem 2.5rem;
    font-size: 1.2rem;
    width: 100%;
    max-width: 28rem;
}

@media (min-width: 768px) {
    .cta-wrapper .btn-cta {
        font-size: 1.35rem;
        padding: 1.5rem 3rem;
    }
}

.btn-medium {
    padding: 1.15rem 2.25rem;
    font-size: 1.05rem;
}

@media (min-width: 768px) {
    .btn-medium {
        font-size: 1.2rem;
        padding: 1.25rem 2.5rem;
    }
}

/* Basic Purchase Button (Enlarged) */
.btn-outline {
    background-color: #ffffff;
    color: var(--brand-primary);
    border: 3px solid var(--brand-primary);
    padding: 1.25rem 1.75rem;
    font-size: 1.15rem;
    font-weight: 900;
    width: 100%;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.12);
}

@media (min-width: 768px) {
    .btn-outline {
        padding: 1.35rem 2.25rem;
        font-size: 1.25rem;
    }
}

.btn-outline:hover {
    background-color: var(--brand-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-cta);
}

/* Premium Purchase Button (Extra Large & Highlighted) */
.card-premium .btn-primary {
    padding: 1.45rem 1.75rem;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    box-shadow: 0 14px 32px -4px rgba(225, 29, 72, 0.5);
}

@media (min-width: 768px) {
    .card-premium .btn-primary {
        padding: 1.65rem 2.5rem;
        font-size: 1.35rem;
    }
}

.cta-access-info {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.security-badges {
    display: flex;
    flex-direction: flex-row;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--brand-slate-400);
    font-weight: 600;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Pulse Glow Animation for Primary Purchase Button */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(225, 29, 72, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
    }
}

.pulse-anim {
    animation: pulseGlow 1.8s infinite;
}

/* ==========================================================================
   SECTIONS & TITLES
   ========================================================================== */
.section-carousel, .how-it-works-section, .themes-section, .bonus-section, .pricing-section, .guarantee-section, .faq-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-carousel, .how-it-works-section, .themes-section, .bonus-section, .pricing-section, .guarantee-section, .faq-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 1.875rem;
    }
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--brand-slate-500);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   INFINITE CAROUSEL TRACK (Marquee)
   ========================================================================== */
.infinite-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    margin-bottom: 1rem;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    will-change: transform;
}

.marquee-track {
    animation: marqueeScroll 35s linear infinite;
}

.marquee-track-slow {
    animation: marqueeScroll 45s linear infinite;
}

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

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Cards inside Carousel */
.carousel-card {
    width: 280px;
    flex-shrink: 0;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--brand-slate-200);
    background-color: #ffffff;
}

@media (min-width: 768px) {
    .carousel-card {
        width: 320px;
    }
}

.carousel-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.testimonial-card {
    width: 280px;
    flex-shrink: 0;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--brand-slate-200);
    background-color: #ffffff;
    box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
    .testimonial-card {
        width: 320px;
    }
}

.testimonial-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.theme-card {
    width: 240px;
    flex-shrink: 0;
    border-radius: 0.85rem;
    overflow: hidden;
    border: 1px solid var(--brand-slate-100);
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .theme-card {
        width: 280px;
    }
}

.theme-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

/* ==========================================================================
   SECTION 3: HOW IT WORKS (Grid Steps)
   ========================================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.step-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--brand-slate-200);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.step-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(225, 29, 72, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem auto;
}

.step-number {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
    display: block;
    letter-spacing: 0.05em;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.875rem;
    color: var(--brand-slate-500);
    line-height: 1.6;
}

/* ==========================================================================
   THEME TAGS GRID
   ========================================================================== */
.theme-tags-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.tag {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.tag-red { background: #fef2f2; color: #dc2626; }
.tag-blue { background: #eff6ff; color: #2563eb; }
.tag-pink { background: #fdf2f8; color: #db2777; }
.tag-yellow { background: #fefce8; color: #a16207; }
.tag-green { background: #f0fdf4; color: #16a34a; }
.tag-orange { background: #fff7ed; color: #ea580c; }
.tag-purple { background: #faf5ff; color: #9333ea; }
.tag-cyan { background: #ecfeff; color: #0891b2; }
.tag-rose { background: #fff1f2; color: #be123c; }
.tag-emerald { background: #ecfdf5; color: #059669; }

.more-themes-text {
    margin-top: 2rem;
    color: var(--brand-primary);
    font-weight: 800;
    font-size: 1rem;
}

/* ==========================================================================
   BONUS SECTION
   ========================================================================== */
.bonus-section {
    background-color: #ffffff;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bonus-item {
    background-color: var(--brand-slate-50);
    padding: 1rem 1.25rem;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    border: 1px solid var(--brand-slate-100);
}

.bonus-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.bonus-text {
    font-weight: 800;
    color: var(--brand-slate-800);
    font-size: 1rem;
}

.bonus-price-callout {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.125rem;
}

.strike-price {
    color: var(--brand-slate-400);
    text-decoration: line-through;
}

.free-badge {
    color: var(--brand-primary);
    font-weight: 900;
}

/* ==========================================================================
   PRICING SECTION (ESCOLHA SEU PACOTE)
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

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

.pricing-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid var(--brand-slate-200);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.card-basic {
    margin-top: 1rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
}

.price-value {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
    color: var(--brand-dark);
}

.price-sub {
    color: var(--brand-slate-400);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.feature-active {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-slate-800);
}

.feature-disabled {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-slate-400);
    opacity: 0.6;
}

.check-icon {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--brand-primary);
    flex-shrink: 0;
}

.cross-icon {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--brand-slate-400);
    flex-shrink: 0;
}

/* Premium Card Container & Highlight */
.pricing-card-wrapper {
    position: relative;
    margin-top: 1.5rem;
}

@media (min-width: 1024px) {
    .pricing-card-wrapper {
        margin-top: 0;
    }
}

.ribbon-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--brand-primary);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 900;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: var(--shadow-cta);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.card-premium {
    padding: 2.5rem 2rem;
    border-radius: 2rem;
    border: 4px solid var(--brand-primary);
    box-shadow: var(--shadow-premium);
}

@media (min-width: 768px) {
    .card-premium {
        transform: scale(1.05);
    }
}

.card-title-premium {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1.2;
    color: var(--brand-dark);
}

.price-strikethrough {
    color: var(--brand-slate-400);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.price-strikethrough .line-through {
    text-decoration: line-through;
    font-weight: 700;
}

.price-value-large {
    font-size: 3rem;
    font-weight: 900;
    color: var(--brand-primary);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.savings-tag {
    display: inline-block;
    background-color: var(--brand-emerald-50);
    color: var(--brand-emerald-700);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid var(--brand-emerald-100);
}

.social-proof-rating {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--brand-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    opacity: 0.9;
}

.card-footer-sub {
    font-size: 0.625rem;
    font-weight: 800;
    color: var(--brand-slate-400);
    text-transform: uppercase;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   SECTION 8: GUARANTEE SECTION
   ========================================================================== */
.guarantee-icon-wrapper {
    width: 6rem;
    height: 6rem;
    background-color: #ffffff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.08);
}

.guarantee-svg {
    color: var(--brand-primary);
}

.guarantee-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--brand-dark);
}

.guarantee-text {
    color: var(--brand-slate-500);
    line-height: 1.7;
    font-size: 1rem;
}

/* ==========================================================================
   SECTION 9: FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    border: 1px solid var(--brand-slate-200);
    border-radius: 0.85rem;
    overflow: hidden;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.5rem;
    text-align: left;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--brand-slate-800);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: var(--brand-slate-50);
}

.faq-chevron {
    color: var(--brand-slate-400);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--brand-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    background-color: var(--brand-slate-50);
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.3s cubic-bezier(0.5, 0, 0.1, 1), padding 0.3s ease;
    padding: 1rem 1.5rem 1.25rem 1.5rem;
    border-top: 1px solid var(--brand-slate-100);
}

.faq-answer p {
    font-size: 0.875rem;
    color: var(--brand-slate-500);
    line-height: 1.65;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    padding: 2rem 1rem;
    font-size: 0.625rem;
    color: var(--brand-slate-400);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background-color: #ffffff;
    border-top: 1px solid var(--brand-slate-100);
}

/* Below-the-fold content rendering speed optimization */
.how-it-works-section,
.themes-section,
.bonus-section,
.pricing-section,
.guarantee-section,
.faq-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 600px;
}
