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

:root {
    --bg-dark: #07030c;
    --bg-card: rgba(20, 11, 33, 0.65);
    --bg-card-popular: rgba(36, 18, 59, 0.8);
    --accent-purple: #a855f7;
    --accent-glow: #d8b4fe;
    --text-white: #ffffff;
    --text-muted: #b5a9c0;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(168, 85, 247, 0.3);
    --font-main: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

/* Background Glow Effects */
.glow-bg {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.25;
}

.glow-1 {
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.glow-2 {
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    bottom: -200px;
    right: -100px;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.headline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: var(--text-white);
    text-transform: uppercase;
}

.highlight-purple {
    color: var(--accent-glow);
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-glowing {
    color: var(--text-white);
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.8);
    position: relative;
    display: inline-block;
}

.highlight-glowing::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
    box-shadow: 0 0 10px var(--accent-purple);
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* VSL (Video Sales Letter) Player — VERTICAL */
.vsl-section {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vsl-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8),
                0 0 30px rgba(168, 85, 247, 0.15);
    border: 1px solid var(--border-color);
    background-color: #000;
}

.vsl-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Interactive Unmute Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 3, 12, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.video-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.overlay-content {
    text-align: center;
    padding: 30px;
    max-width: 350px;
}

.play-btn-pulse {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-purple), #7c3aed);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--text-white);
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7);
    animation: pulse 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
    transition: transform 0.3s ease;
}

.play-icon {
    width: 32px;
    height: 32px;
}

.overlay-content h2 {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

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

.video-overlay:hover .play-btn-pulse {
    transform: scale(1.1);
}

/* Custom Sleek Loader Bar */
.video-loader-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 5;
}

.video-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-purple), #ec4899);
    transition: width 0.1s linear;
}

/* Delayed CTA Container & Button */
.delayed-cta-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.delayed-cta-container.hide {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    height: 0;
    margin-top: 0;
    overflow: hidden;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, #7c3aed 100%);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    padding: 20px 50px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn-cta:active {
    transform: translateY(1px);
}

/* Offer Section */
.offers-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.offers-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

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

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* Offer Card */
.offer-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.offer-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 25px 45px rgba(168, 85, 247, 0.12),
                0 0 20px rgba(168, 85, 247, 0.05);
}

/* Popular Card Override */
.offer-card.popular {
    background: var(--bg-card-popular);
    border: 2px solid var(--accent-purple);
    box-shadow: 0 20px 45px rgba(168, 85, 247, 0.25);
    transform: scale(1.02);
}

.offer-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 30px 60px rgba(168, 85, 247, 0.35);
}

/* Image styling — VERTICAL PHOTOS */
.card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offer-card:hover .card-image {
    transform: scale(1.06);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.popular-badge {
    background: linear-gradient(135deg, var(--accent-purple) 0%, #ec4899 100%);
    border: none;
}

.vip-badge {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    border: none;
}

/* Card Body */
.card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-plan-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.card-duration {
    font-size: 0.95rem;
    color: var(--accent-glow);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Features List */
.card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-features li {
    padding: 8px 0;
    font-size: 0.92rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.card-features li:last-child {
    border-bottom: none;
}

.feature-positive {
    color: var(--text-white);
}

.feature-locked {
    color: #f87171;
    opacity: 0.8;
}

.card-price-container {
    margin-top: auto;
    margin-bottom: 24px;
}

.price-val {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-white);
}

.btn-card-checkout {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.offer-card:hover .btn-card-checkout {
    background: var(--text-white);
    color: #000;
    border-color: var(--text-white);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Middle/Popular Button Styling default active */
.offer-card.popular .btn-card-checkout {
    background: linear-gradient(135deg, var(--accent-purple) 0%, #7c3aed 100%);
    border: none;
}

.offer-card.popular:hover .btn-card-checkout {
    background: var(--text-white);
    color: #000;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

/* ==========================================
   PREVIEW SECTION (VEJA O QUE VAI TER ACESSO)
   ========================================== */
.preview-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-header {
    text-align: center;
    margin-bottom: 60px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.preview-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.preview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(168, 85, 247, 0.15);
}

.preview-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.preview-card:hover .preview-image {
    transform: scale(1.06);
}

.preview-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(7, 3, 12, 0.9) 0%, transparent 100%);
    pointer-events: none;
}

.preview-title {
    padding: 24px 24px 28px;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: var(--text-white);
    text-align: center;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    color: var(--accent-glow);
    margin-bottom: 16px;
}

.trust-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.trust-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
    margin: 0 auto;
}

/* Footer Section */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0 20px;
    text-align: center;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    max-width: 800px;
    margin: 0 auto 24px;
    line-height: 1.7;
    opacity: 0.5;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 0.85rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-glow);
}

/* Pulses & Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(168, 85, 247, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0);
    }
}

.pulse-effect {
    animation: cta-pulse 2s infinite;
}

@keyframes cta-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

/* Scroll Animation Classes (Blur Reveal + Fade-in/out) */
.scroll-reveal {
    opacity: 0;
    filter: blur(16px);
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.reveal-active {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .container {
        padding: 15px 16px;
    }

    .hero-section {
        padding-top: 20px;
    }

    .headline {
        margin-bottom: 12px;
    }

    .vsl-wrapper {
        max-width: 100%;
    }

    .vsl-section {
        margin-bottom: 50px;
    }

    .btn-cta {
        width: 100%;
        padding: 16px 30px;
        font-size: 1.1rem;
    }

    .cards-grid,
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offer-card.popular {
        transform: none;
    }

    .offer-card.popular:hover {
        transform: translateY(-8px);
    }
}

/* ==========================================
   LIVES PRIVADAS CARD
   ========================================== */
.lives-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.lives-preview-wrapper {
    background: linear-gradient(135deg, #1a0533 0%, #0d0118 50%, #1a0533 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.lives-icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 24px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.live-badge-animated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
    animation: live-glow 2s ease-in-out infinite;
}

@keyframes live-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.5); }
    50% { box-shadow: 0 0 35px rgba(239, 68, 68, 0.8), 0 0 60px rgba(239, 68, 68, 0.3); }
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    animation: live-dot-blink 1.2s ease-in-out infinite;
}

@keyframes live-dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.lives-icon {
    color: var(--accent-glow);
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
}

.lives-card-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lives-card-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 280px;
    line-height: 1.6;
}

/* ==========================================
   SECOND VSL SECTION
   ========================================== */
.second-vsl-section {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.second-vsl-section .preview-header {
    margin-bottom: 40px;
}

/* ==========================================
   ANONYMITY CARD SECTION
   ========================================== */
.anonymity-section {
    padding: 60px 0;
}

.anonymity-card {
    background: linear-gradient(135deg, rgba(20, 11, 33, 0.8) 0%, rgba(15, 8, 28, 0.9) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(168, 85, 247, 0.08);
    position: relative;
    overflow: hidden;
}

.anonymity-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.anonymity-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    color: var(--accent-glow);
    margin-bottom: 24px;
}

.anonymity-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 30%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.anonymity-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto 24px;
}

.anonymity-text strong {
    color: var(--text-white);
}

.anonymity-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.anon-badge {
    background-color: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-glow);
}

/* ==========================================
   7-DAY GUARANTEE SECTION
   ========================================== */
.guarantee-section {
    padding: 60px 0;
}

.guarantee-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(20, 11, 33, 0.8) 50%, rgba(16, 185, 129, 0.06) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(16, 185, 129, 0.08);
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.guarantee-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    color: #34d399;
    margin-bottom: 24px;
    animation: guarantee-pulse 3s ease-in-out infinite;
}

@keyframes guarantee-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
}

.guarantee-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 30%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guarantee-subtitle {
    font-size: 1.1rem;
    color: #34d399;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guarantee-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto 24px;
}

.guarantee-text strong {
    color: var(--text-white);
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.guarantee-badge span {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #34d399;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.faq-container {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-glow);
}

.faq-item.active {
    border-color: var(--accent-purple);
    box-shadow: 0 5px 25px rgba(168, 85, 247, 0.1);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-glow);
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Responsive additions */
@media (max-width: 768px) {
    .anonymity-card,
    .guarantee-card {
        padding: 40px 24px;
    }

    .anonymity-badges {
        flex-direction: column;
        align-items: center;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .lives-card-title {
        font-size: 1.3rem;
    }
}

/* ==========================================
   SOCIAL PROOF SECTION
   ========================================== */
.social-proof-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-proof-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.social-proof-card {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-proof-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.15);
    border-color: var(--border-glow);
}

.social-proof-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* ==========================================
   STRATEGIC CTA BUTTONS
   ========================================== */
.strategic-cta {
    display: flex;
    justify-content: center;
    padding: 40px 0 60px;
}

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

    .strategic-cta {
        padding: 30px 16px 40px;
    }

    .strategic-cta .btn-cta {
        width: 100%;
        font-size: 1rem;
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .social-proof-card {
        border-radius: 12px;
    }
}
