/* --- Reset & Base Variables --- */
:root {
    --bg-dark: #07070a;
    --bg-surface: rgba(255, 255, 255, 0.03);
    --bg-surface-hover: rgba(255, 255, 255, 0.06);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.4);
    --secondary: #3b82f6;
    --accent: #f43f5e;
    --green: #10b981;
    --yellow: #f59e0b;
    --gradient-brand: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --shadow-glow: 0 0 20px var(--primary-glow);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('fundo-filmes.jpg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

.gradient-text {
    background: var(--gradient-brand);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Helpers & Backgrounds --- */
.text-primary { color: var(--primary); }
.text-green { color: var(--green); }

.glow-orb {
    position: absolute;
    width: 40vh;
    height: 40vh;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
    animation: orbFloat 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.orb-1 {
    top: -10vh;
    left: -10vw;
    background: var(--primary);
}

.orb-2 {
    top: 30vh;
    right: -10vw;
    background: var(--secondary);
    animation-delay: -5s;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    color: var(--text-primary);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.125rem; }
.btn-full { width: 100%; }

.btn-primary {
    background: var(--gradient-brand);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* --- Navbar --- */
.navbar {
    display: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
}

.logo i {
    color: var(--primary);
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 20px;
    background: #0d0d14;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a {
    padding: 15px 0;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav .btn {
    margin-top: 15px;
    border: none;
}

.mobile-nav.active {
    display: flex;
}

/* --- Hero Section --- */
.hero {
    min-height: auto; /* Changed from 100vh to remove big gap */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 20px; /* Reduced bottom padding */
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.video-wrapper {
    position: relative;
    max-width: 320px; /* Mais estreito para vídeo vertical */
    aspect-ratio: 9 / 16; /* Formato retrato/celular */
    margin: 0 auto 40px;
    border-radius: var(--radius-md);
    padding: 3px; /* Espaço para a borda animada */
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 300% 300%;
    animation: gradientBorderRotate 4s ease infinite;
    box-shadow: 0 0 40px var(--primary-glow);
    overflow: hidden;
}

@keyframes gradientBorderRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#vslPlayer {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-md) - 3px);
    background-color: #000;
    position: relative;
    z-index: 1;
}

.vsl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.unmute-button {
    background: #10b981; /* Green color from image */
    color: white;
    border: none;
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    animation: pulseButton 2s infinite;
    z-index: 11;
}

.unmute-text-top {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.unmute-button i {
    font-size: 3.5rem;
}

.unmute-text-bottom {
    font-size: 1rem;
    font-weight: 600;
}

@keyframes pulseButton {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.vsl-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.hero-cta {
    margin-bottom: 24px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- Context Section --- */
.context-section .container {
    padding: 40px 20px;
}

.glass-card {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    padding: 40px;
}

.context-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.context-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.context-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.context-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.context-card p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* --- Contents Cards --- */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.content-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    background: var(--bg-surface-hover);
}

.card-img-wrapper {
    overflow: hidden;
    width: 100%;
}

.card-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card:hover .card-image {
    transform: scale(1.1);
}

.card-info {
    padding: 24px;
}

.card-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Pricing grid --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, rgba(0,0,0,0) 100%);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
     left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-brand);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--shadow-glow);
}

.plan-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.plan-name {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 5px;
    margin-right: 4px;
    color: var(--text-secondary);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.plan-features li i {
    color: var(--green);
}

.pricing-card.popular .plan-features li {
    color: var(--text-primary);
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.wpp-header {
    background: rgba(37, 211, 102, 0.1);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(37, 211, 102, 0.2);
    font-weight: 600;
    font-size: 0.9rem;
}

.wpp-message {
    padding: 24px 20px;
    background: var(--bg-surface);
    position: relative;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.wpp-message p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 10px;
}

.wpp-time {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.client-info {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    padding: 8px 0;
    text-align: center;
    font-size: 0.75rem;
    background: rgba(0,0,0,0.5);
    color: #cbd5e1;
}

/* --- Apps Support Section --- */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.app-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.app-card:hover {
    background: var(--bg-surface-hover);
    transform: translateY(-3px);
}

.app-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.gradient-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.app-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.apps-footer {
    text-align: center;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- FAQ Section --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question i {
    transition: var(--transition);
}

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

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

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

.faq-answer p {
    color: var(--text-secondary);
}

/* --- Footer --- */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
    background: #040406;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

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

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 15px;
    max-width: 500px;
}

.footer-metrics {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.metric {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.metric i {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* --- Animations & Utilities --- */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes orbFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-30px) scale(1.1); }
}

.pulse-hover {
    position: relative;
    overflow: hidden;
    animation: pulseButtonContinuous 2s infinite ease-in-out;
}

@keyframes pulseButtonContinuous {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(139, 92, 246, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 0 25px rgba(139, 92, 246, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(139, 92, 246, 0.4); }
}

.pulse-hover:hover {
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(139, 92, 246, 1);
}

.pulse-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.pulse-hover:active {
    transform: scale(0.95);
    transition: transform 0.1s;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

/* Scroll observation classes */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}
.fade-in.is-visible {
    opacity: 1;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: var(--delay, 0s);
}
.slide-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media(max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .pricing-card.popular {
        transform: none;
    }
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

@media(max-width: 768px) {
    .nav-container {
        padding: 0 10px;
        justify-content: space-between;
        width: 100%;
    }
    .logo {
        flex-shrink: 0;
    }
    .logo span {
        display: block;
        font-size: 1rem;
    }
    .nav-links {
        display: flex !important;
        align-items: center;
        margin-left: auto;
        flex-shrink: 1;
        overflow: hidden;
    }
    .nav-links .btn {
        display: inline-flex !important;
        font-size: 0.8rem;
        padding: 8px 12px !important;
        white-space: nowrap;
        margin-left: 5px;
        flex-shrink: 0;
    }
    
    @media (max-width: 420px) {
        .logo span {
            display: none; /* Hide logo text for more room */
        }
        .nav-links .btn {
            padding: 8px 14px !important; /* Slightly more touch area since text is gone */
            font-size: 0.85rem;
        }
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    .hero {
        padding-top: 40px;
        padding-bottom: 35px; 
    }
    .video-wrapper {
        max-width: 290px;
        margin-bottom: 10px;
    }
    section {
        padding: 60px 0;
    }
    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular {
        margin: 20px 0;
    }
}

/* --- Streaming Carousel --- */
.streaming-carousel-section {
    padding: 20px 0; /* Reduced from 40px */
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    z-index: 2;
    margin: 10px 0; /* Reduced from 40px */
}

.carousel-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    position: relative;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 15%,
        black 85%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 15%,
        black 85%,
        transparent
    );
}

.carousel-track {
    display: flex;
    gap: 80px;
    padding-right: 80px; /* Match gap for seamless loop */
    width: max-content;
    animation: scroll 40s linear infinite;
}

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

.carousel-item {
    flex: 0 0 auto;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0.8;
}

.carousel-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

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

/* Responsive adjustment */
@media (max-width: 768px) {
    .carousel-track {
        gap: 50px;
    }
    .carousel-item {
        width: 100px;
        height: 60px;
    }
    .streaming-carousel-section {
        padding: 30px 0;
        margin: 20px 0;
    }
}

/* --- Comparison Section --- */
.comparison-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.comparison-content h3 {
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--primary); /* Use site's primary color instead of hardcoded pink if possible, or just keep it pink but without the odd bg */
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.comparison-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.text-pink-glow {
    color: #f43f5e; /* Matching site's accent color */
    font-weight: 700;
}

.text-cyan-glow {
    color: var(--secondary); /* Matching site's secondary blue */
    font-weight: 800;
}

.comparison-card {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-glass);
}

.problem-card {
    border-left: 4px solid #f43f5e;
}

.solution-card {
    border: 1px solid var(--secondary);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.05) 0%, rgba(0,0,0,0) 100%);
}

.expense-list {
    list-style: none;
    margin-top: 25px;
}

.expense-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.expense-item span:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.expense-item i {
    color: #f43f5e;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-list {
    list-style: none;
    margin-top: 25px;
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-size: 1rem;
}

.solution-list li i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.final-price {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.price-vsl {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

@media (max-width: 992px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}




