:root {
    --bg-color: #020205;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-color: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --accent-neon: #00f2fe;
    --accent-purple: #4facfe;
    --gradient-primary: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --shadow-neon: 0 0 20px rgba(0, 242, 254, 0.4);
}

/* Screen Reader Only (SEO Invisible) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.1), transparent 60%);
    animation: pulseBg 10s infinite alternate;
}

@keyframes pulseBg {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Progress Bar */
#progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.1);
}

#progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-neon);
    transition: width 0.1s ease-out;
    position: relative;
}

#progress-milestone {
    position: absolute;
    right: 0;
    top: -5px;
    font-size: 10px;
    background: var(--accent-neon);
    color: #000;
    padding: 2px 4px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    white-space: nowrap;
}

.landing-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

header {
    padding: 0.8rem 1rem;
    display: flex;
    flex-direction: column;
    /* Stack logo and button */
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    background: rgba(2, 2, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-img {
    height: 50px;
    /* Bigger logo */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.3));
    display: block;
}

/* Button stack below logo */
header .btn-floating {
    position: static;
    /* Remove absolute */
    right: auto;
    padding: 0.6rem 2rem;
    font-size: 0.85rem;
    width: auto;
    margin: 0;
}

.header-spacer {
    display: none;
}

.logo {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero-intro {
    padding: 3rem 1.5rem 2rem;
    text-align: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--accent-neon);
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h1 {
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 0.8rem;
    background: linear-gradient(180deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* PDF Pages with Parallax Hint */
.pdf-fusion {
    width: 100%;
    background: transparent;
    padding-bottom: 2rem;
}

.pdf-page {
    width: 100%;
    display: block;
    margin-top: -1px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    border-radius: 8px;
    /* Match image radius */
    overflow: hidden;
    /* Ensure overlay stays within bounds */
}

/* Official Method Badge Overlay */
.pdf-page::after {
    content: 'Método Oficial ©';
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 8px 0 0 0;
    border-bottom: none;
    border-right: none;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--accent-neon);
    font-size: 0.5rem;
    /* Tiny text */
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    /* Minimal padding */
    border-radius: 3px 0 0 0;
    border: 1px solid rgba(0, 242, 254, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
    letter-spacing: 0.5px;
    pointer-events: none;
    /* Let clicks pass through if needed */
}

.pdf-page.visible {
    opacity: 1;
    transform: translateY(0);
}

.pdf-page img {
    width: 100%;
    height: auto;
    display: block;
    /* border-radius moved to parent for overflow hidden */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 4rem 1.5rem 6rem;
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(0, 242, 254, 0.05));
    position: relative;
}

h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

/* Store Badge Pulse Animation */
@keyframes badgePulse {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.03);
        filter: brightness(1.2);
    }

    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

.store-badge {
    width: 220px;
    height: auto;
    transition: transform 0.2s ease, filter 0.2s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.store-badge:hover {
    transform: translateY(-2px);
    filter: brightness(1.1) drop-shadow(0 6px 12px rgba(0, 242, 254, 0.4));
}

.btn-main {
    background: var(--gradient-primary);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-neon);
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    /* Prevent padding overflow */
    max-width: 100%;
    /* Prevent container overflow */
}

.btn-main::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s;
}

.btn-main:active::after {
    transform: translate(-50%, -50%) scale(1);
    transition: 0s;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.6);
}

/* Trust Seals */
.trust-seals {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.seal {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--text-dim);
    opacity: 0.8;
}

.seal svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-neon);
}

/* Social Proof Toast */
/* Social Proof Toast - Premium Redesign */
.social-proof-toast {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: rgba(10, 10, 20, 0.85);
    /* Deep dark background */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--accent-neon);
    /* Neon accent bar */
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 242, 254, 0.1);
    transform: translateX(-150%) scale(0.95);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Elegant bounce */
    z-index: 2000;
    max-width: 360px;
    min-width: 280px;
    pointer-events: none;
    /* Let clicks pass through usually */
}

.social-proof-toast.visible {
    transform: translateX(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.toast-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    flex-shrink: 0;
}

/* Online/Active pulsating dot */
.toast-avatar::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #00ff96;
    border: 2px solid #0a0a14;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff96;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 150, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(0, 255, 150, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 150, 0);
    }
}

.toast-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.toast-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
}

.toast-content p strong {
    color: #fff;
    font-weight: 700;
}

.toast-time {
    font-size: 0.75rem;
    color: var(--accent-neon);
    font-weight: 500;
    margin-top: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Mobile: Slide up from bottom */
@media (max-width: 480px) {
    .social-proof-toast {
        left: 50%;
        bottom: 2rem;
        transform: translate(-50%, 100px);
        width: 90%;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-top: 3px solid var(--accent-neon);
    }

    .social-proof-toast.visible {
        transform: translate(-50%, 0);
    }
}

/* Carousel Testimonials */
.testimonials-section {
    padding: 3rem 1rem;
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--accent-neon);
    /* Neon Border */
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.15), inset 0 0 20px rgba(0, 242, 254, 0.05);
    /* Glow */
    text-align: center;
    position: relative;
    display: none;
    animation: fadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    max-width: 500px;
    margin: 0 auto;
}

.testimonial-card.active {
    display: block;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-neon);
}

.verified-badge {
    font-size: 0.75rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0.8;
}

.verified-badge svg {
    width: 14px;
    height: 14px;
    fill: var(--accent-neon);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Accordion Styles */
.faq-section {
    padding: 3rem 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

details {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

details[open] {
    border-color: var(--accent-neon);
    background: rgba(0, 242, 254, 0.05);
}

summary {
    padding: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    /* Hide default marker */
    position: relative;
    padding-right: 2.5rem;
    color: #fff;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-neon);
    transition: transform 0.3s;
}

details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-content {
    padding: 0 1.2rem 1.2rem;
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

/* Footer */
footer {
    padding: 4rem 1.5rem 2rem;
    text-align: center;
    color: var(--text-dim);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

footer p:first-child {
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Floating Navigation */
.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 1000;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 90%;
    max-width: 350px;
    text-align: center;
}

.floating-cta.visible {
    transform: translateX(-50%) translateY(0);
}

.btn-floating {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid var(--accent-neon);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-floating:active {
    transform: scale(0.98);
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}


/* Interactive Calculator Styles (Mobile First) */
.calculator-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--accent-neon);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    /* Less padding on sides for mobile */
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.1);
    margin: 2rem 0;
}

.calculator-container h3 {
    text-align: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.calc-group {
    margin-bottom: 1.5rem;
}

.calc-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--text-dim);
}

.highlight-val {
    color: var(--accent-neon);
    font-weight: 700;
    font-size: 1.2rem;
    background: rgba(0, 242, 254, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}

/* Custom Range Slider - Mobile Optimized */
input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    /* Standard property */
    width: 100%;
    background: transparent;
    height: 40px;
    /* Even taller touch area */
    cursor: pointer;
    touch-action: none;
    margin: 10px 0;
    /* Add margin for safety */
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 28px;
    /* Bigger thumb */
    width: 28px;
    border-radius: 50%;
    background: var(--accent-neon);
    cursor: pointer;
    margin-top: -12px;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.8);
    border: 2px solid #fff;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    /* Thicker track */
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

input[type=number] {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.8rem;
    border-radius: 12px;
    width: 100%;
    font-family: inherit;
    text-align: center;
    font-size: 1.1rem;
    /* Larger text for mobile input */
    box-sizing: border-box;
    /* Prevent overflow */
    margin-top: 0.2rem;
    /* Ensure space from label */
}

.calc-results {
    display: flex;
    flex-direction: column;
    /* Stack on mobile */
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 480px) {
    .calc-results {
        flex-direction: row;
    }
}

.result-box {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.result-box.premium {
    border-color: var(--accent-purple);
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}

.result-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    display: block;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Exit Intent Modal & Calc Modal Shared */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 1rem;
    /* Prevent edge touching on mobile */
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #0a0a12;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--accent-neon);
    box-shadow: 0 0 50px rgba(0, 242, 254, 0.2), inset 0 0 20px rgba(0, 242, 254, 0.05);
    /* Neon inner glow */
    max-width: 450px;
    width: 100%;
    position: relative;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.visible .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.5;
    padding: 0.5rem;
    /* Larger touch target */
}

.modal-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.modal-timer {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--accent-neon);
    margin: 1.5rem 0;
    font-weight: 700;
    padding: 0.5rem;
    background: rgba(0, 242, 254, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.modal-btn {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 1rem;
    box-sizing: border-box;
    max-width: 100%;
}

/* Responsive Calculator Adjustments */
#calc-trigger-btn {
    width: 100% !important;
    margin-top: 1.5rem !important;
    border: none !important;
    cursor: pointer;
    display: block;
    min-height: 48px;
    font-size: 1rem;
}

@media (max-width: 360px) {
    .calculator-wrapper {
        padding: 1rem 0.5rem;
    }

    .result-value {
        font-size: 1.4rem;
    }

    .calc-group label {
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .highlight-val {
        align-self: flex-start;
        font-size: 1rem;
    }
}

/* High Conversion Hero Elements */
.glass-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    /* slightly higher opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 242, 254, 0.3);
    /* Neon border */
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
    font-weight: 600;
}

.text-gradient-animated {
    background: linear-gradient(270deg, #00f2fe, #4facfe, #fff, #00f2fe);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 4s ease infinite;
    display: block;
    /* Stack on mobile usually */
    font-size: 3.5rem;
    /* Massive */
    line-height: 1;
    margin-top: 0.2rem;
    text-shadow: 0 0 30px rgba(0, 242, 254, 0.3);
}

@media (min-width: 768px) {
    .text-gradient-animated {
        display: inline-block;
        font-size: inherit;
        /* Inherit form h1 but maybe larger */
        font-size: 4rem;
        margin-left: 0.5rem;
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn-mega-pulse {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--accent-neon);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.2),
        inset 0 0 15px rgba(0, 242, 254, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
    text-align: center;
    animation: pulseMega 2s infinite;
    max-width: 100%;
    box-sizing: border-box;
}

.btn-mega-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-primary);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
    z-index: -1;
    opacity: 0.2;
}

.btn-mega-pulse:hover {
    color: #fff;
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 242, 254, 0.5),
        0 0 20px rgba(0, 242, 254, 0.3);
    border-color: #fff;
}

.btn-mega-pulse:hover::before {
    width: 300%;
    height: 300%;
    opacity: 1;
}

.btn-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: none;
    opacity: 0.8;
    margin-top: 0.3rem;
    letter-spacing: 0.5px;
    color: var(--accent-neon);
    transition: color 0.3s;
}

.btn-mega-pulse:hover .btn-subtitle {
    color: #000;
    opacity: 1;
}

@keyframes pulseMega {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
    }

    50% {
        transform: scale(1.02);
        /* Less aggressive pulse */
        box-shadow: 0 0 25px rgba(0, 242, 254, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
    }
}

.btn-mega-pulse:hover {
    animation: none;
    /* Stop pulsing on hover */
    transform: scale(1.04) translateY(-1px);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.8);
}

/* Mobile Adjustments for Hero */
@media (max-width: 480px) {
    .text-gradient-animated {
        font-size: 2.8rem;
        /* Fit screen */
    }

    .hero-intro h1 {
        font-size: 1.8rem;
        /* Base text smaller to fit */
    }

    .btn-mega-pulse {
        width: 100%;
        /* Full width on mobile */
        padding: 0.8rem;
        /* Smaller mobile padding */
    }
}

/* FAQ Neon Accordion */
.faq-section {
    padding: 3rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff, var(--accent-neon));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

details {
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
}

details:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
    transform: translateY(-2px);
}

details[open] {
    background: rgba(10, 10, 15, 0.9);
    border-color: var(--accent-neon);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
}

summary {
    padding: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    list-style: none;
    /* Hide default arrow */
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 1.05rem;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-neon);
    font-weight: 300;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: '-';
    transform: rotate(180deg);
    color: var(--accent-purple);
}

.faq-content {
    padding: 0 1.2rem 1.2rem;
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0rem;
    padding-top: 1rem;
}

/* Comparison Section (Premium Redesign) */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem auto 3rem;
    max-width: 900px;
    align-items: stretch;
    perspective: 1000px;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem auto;
    }
}

.compare-col {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Old Life - Dark, moody red */
.compare-col.old {
    background: rgba(20, 10, 10, 0.4);
    border: 1px solid rgba(255, 50, 50, 0.1);
    transform: scale(0.98);
}

.compare-col.old:hover {
    background: rgba(20, 10, 10, 0.6);
    border-color: rgba(255, 50, 50, 0.3);
    transform: scale(0.99);
}

.compare-col.old .compare-title {
    color: #ff5555;
    border-bottom: 2px solid rgba(255, 85, 85, 0.1);
    text-shadow: 0 0 10px rgba(255, 85, 85, 0.2);
}

/* New Life - Vibrant, Neon Green, Elevated */
.compare-col.new {
    background: linear-gradient(135deg, rgba(0, 255, 150, 0.05) 0%, rgba(0, 242, 254, 0.05) 100%);
    border: 1px solid rgba(0, 255, 150, 0.4);
    box-shadow: 0 0 40px rgba(0, 255, 150, 0.1);
    transform: scale(1.02);
    z-index: 10;
}

.compare-col.new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff96, #00f2fe);
    box-shadow: 0 0 20px rgba(0, 255, 150, 0.8);
}

.compare-col.new:hover {
    transform: scale(1.04) translateY(-5px);
    box-shadow: 0 10px 50px rgba(0, 255, 150, 0.2);
    border-color: rgba(0, 255, 150, 0.8);
}

.compare-col.new .compare-title {
    color: #00ff96;
    border-bottom: 2px solid rgba(0, 255, 150, 0.2);
    text-shadow: 0 0 15px rgba(0, 255, 150, 0.4);
}

.compare-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.compare-list li {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: transform 0.2s;
}

.compare-col.old .compare-list li {
    color: rgba(255, 255, 255, 0.6);
    filter: grayscale(0.2);
}

.compare-col.new .compare-list li {
    color: #fff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.compare-col.new .compare-list li:hover {
    transform: translateX(5px);
}

.compare-list li span {
    font-size: 1.5rem;
    min-width: 32px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* VS Badge in Middle (Optional but cool) */
.comparison-grid::after {
    content: 'VS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    border: 2px solid #333;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-style: italic;
    z-index: 20;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .comparison-grid::after {
        display: none;
        /* Hide VS on mobile */
    }

    .compare-col.new {
        transform: scale(1);
        margin-top: 1rem;
    }

    .compare-col.new:hover {
        transform: scale(1.02);
    }
}

/* Enhanced Footer CTA Buttons & Seals */
.cta-section h2 {
    font-size: 3.5rem;
    /* Massive */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(180deg, #ffffff 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 50px rgba(0, 242, 254, 0.6);
    /* Heavy glow */
    line-height: 1;
    display: block;
    padding: 0 1rem;
}

@media (max-width: 480px) {
    .cta-section h2 {
        font-size: 2.2rem;
        /* Clear size on mobile */
        letter-spacing: 0.5px;
    }
}

.trust-seals-footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-seal-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.trust-seal-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-neon);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.trust-seal-item svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-neon);
}

/* CTA Subtitle & Offer Focus */
.cta-subtitle {
    color: var(--text-dim);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-subtitle strong {
    color: #fff;
    font-weight: 700;
}

.highlight-offer {
    display: inline-block;
    color: var(--accent-neon);
    font-weight: 700;
    position: relative;
    padding: 0 0.2rem;
}

.highlight-offer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-neon);
    box-shadow: 0 0 10px var(--accent-neon);
}

/* Policy Page Content */
.policy-container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    color: var(--text-color);
}

.policy-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.last-update {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.policy-content {
    line-height: 1.8;
}

.policy-content h2 {
    font-size: 1.4rem;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 242, 254, 0.2);
}

.policy-content p {
    margin-bottom: 1rem;
    color: var(--text-dim);
}

.policy-content ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.policy-content li {
    margin-bottom: 0.8rem;
    color: var(--text-dim);
}

.policy-content strong {
    color: var(--accent-neon);
}

.link-contact {
    color: var(--accent-purple);
    text-decoration: underline;
    transition: color 0.3s;
}

.link-contact:hover {
    color: var(--accent-neon);
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-dim);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.8;
}

.footer-link:hover {
    color: var(--accent-neon);
    opacity: 1;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 242, 254, 0.3);
    padding: 1.5rem;
    z-index: 10000;
    transition: bottom 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
}

.cookie-consent.visible {
    bottom: 0;
}

.cookie-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.cookie-content p strong {
    color: #fff;
}

.cookie-content a {
    color: var(--accent-neon);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--gradient-primary);
    color: #000;
    border: none;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.5);
}

.btn-decline {
    background: transparent;
    color: var(--text-dim);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

@media (max-width: 480px) {
    .cookie-actions {
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }
}