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

:root {
    --primary: #667eea;
    --primary-dark: #764ba2;
    --secondary: #f093fb;
    --accent: #10b981;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #f1f5f9;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Performance optimizations */
* {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

/* GPU acceleration for animated elements */
.slider-track,
.slider-item,
.feature-card:hover,
.pricing-card:hover,
.benefit-item:hover {
    transform: translate3d(0, 0, 0);
}

/* Content-visibility for better rendering performance - REMOVIDO PARA CORRIGIR SCROLL */
section {
    /* content-visibility: auto; */
    /* contain-intrinsic-size: auto 500px; */
}

.trust-badge,
.benefits,
.companies-section,
.pricing,
.process,
.faq {
    /* content-visibility: auto; */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 50%, var(--secondary) 100%);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: 240px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
    padding: 80px 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .highlight {
    color: var(--secondary);
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--gray-light);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    display: block;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Mobile Hero Adjustments */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        max-width: 100%;
    }
}

/* Market Leaders Section */
.market-leaders-section {
    background: #000000;
    padding: 80px 0 40px 0;
    position: relative;
}

.market-leaders-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.market-leaders-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.market-leaders-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.market-leaders-subtitle strong {
    color: #10b981;
    font-weight: 700;
}

.market-leaders-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.highlight-text {
    color: #10b981;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255,255,255,0.05);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.1);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    line-height: 1.4;
}

/* Image Slider Section */
.image-slider-section {
    background: #000000;
    padding: 40px 0 60px 0;
    overflow: hidden;
}

.slider-disclaimer {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 30px;
    font-style: italic;
}

.value-proposition {
    max-width: 80%;
    margin: 60px auto 0;
    padding: 0 40px;
}

.value-card-new {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

.value-header-new h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.value-header-new p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.comparison-table-scroll {
    overflow-x: auto;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
}

.comparison-table-full {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
    table-layout: fixed;
}

.comparison-table-full thead {
    background: rgba(16, 185, 129, 0.2);
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table-full th,
.comparison-table-full td {
    padding: 14px 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-col {
    text-align: left !important;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    width: 30%;
}

.platform-col {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    width: 11.67%;
}

.platform-col small {
    font-size: 10px;
    opacity: 0.7;
    display: block;
}

.highlight-col {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%) !important;
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary-dark);
    font-weight: 700;
}

.comparison-table-full tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.check {
    color: #10b981;
    font-size: 20px;
    font-weight: 900;
}

.check::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.cross {
    color: #ef4444;
    font-size: 20px;
    font-weight: 900;
    opacity: 0.6;
}

.cross::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.price-row {
    background: rgba(16, 185, 129, 0.15);
    font-size: 16px;
}

.price-row:hover {
    background: rgba(16, 185, 129, 0.15);
}

.price-highlight {
    color: #10b981;
}

.price-highlight strong {
    font-size: 24px;
}

.price-danger {
    color: #ef4444;
    text-decoration: line-through;
    opacity: 0.8;
}

.price-danger strong {
    font-size: 20px;
}

.savings-banner {
    margin-top: 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    border: 2px solid rgba(102, 126, 234, 0.4);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.savings-icon {
    font-size: 48px;
    flex-shrink: 0;
    color: var(--primary);
}

.savings-content h4 {
    font-size: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-weight: 700;
}

.savings-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.savings-content p:last-child {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .comparison-table-scroll {
        overflow-x: visible;
    }

    .comparison-table-full {
        table-layout: fixed;
    }

    .feature-col {
        width: 28%;
    }

    .platform-col {
        width: 12%;
    }
}

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

.slider-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

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

.slider-item {
    flex: 0 0 280px;
    text-align: center;
}

.slider-item img {
    width: 280px;
    height: 200px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
    transform: scale(0.5) translate3d(0, 0, 0);
    will-change: transform;
}

.slider-item img:hover {
    transform: scale(0.5) translate3d(0, -10px, 0);
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

/* Mobile slider fixes */
@media (max-width: 768px) {
    .slider-track {
        gap: 15px;
    }
    
    .slider-item {
        flex: 0 0 200px;
    }
    
    .slider-item img {
        width: 200px;
        height: 140px;
        transform: scale(0.7) translate3d(0, 0, 0);
    }
    
    .slider-item img:hover {
        transform: scale(0.7) translate3d(0, -5px, 0);
    }
}

@media (max-width: 480px) {
    .slider-track {
        gap: 10px;
    }
    
    .slider-item {
        flex: 0 0 150px;
    }
    
    .slider-item img {
        width: 150px;
        height: 105px;
        transform: scale(0.8) translate3d(0, 0, 0);
    }
    
    .slider-item img:hover {
        transform: scale(0.8) translate3d(0, -3px, 0);
    }
}

.slider-item h4 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.slider-price {
    font-size: 14px;
    color: #ff6b6b;
    font-weight: 600;
    margin: 0;
    background: rgba(255, 107, 107, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

@keyframes scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(calc(-280px * 5 - 30px * 5), 0, 0);
    }
}

@media (max-width: 768px) {
    .slider-item {
        flex: 0 0 220px;
    }

    .slider-item img {
        width: 220px;
        height: 160px;
        transform: scale(0.5);
    }

    .slider-item img:hover {
        transform: scale(0.5) translateY(-10px);
    }

    .slider-item h4 {
        font-size: 16px;
    }

    .slider-price {
        font-size: 12px;
        padding: 4px 8px;
    }

    @keyframes scroll {
        0% {
            transform: translate3d(0, 0, 0);
        }
        100% {
            transform: translate3d(calc(-220px * 5 - 30px * 5), 0, 0);
        }
    }

    .image-slider-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .slider-item {
        flex: 0 0 180px;
    }

    .slider-item img {
        width: 180px;
        height: 130px;
        transform: scale(0.5);
    }

    .slider-item img:hover {
        transform: scale(0.5) translateY(-10px);
    }

    .slider-item h4 {
        font-size: 14px;
    }

    .slider-price {
        font-size: 11px;
        padding: 3px 6px;
    }

    .slider-track {
        gap: 20px;
    }

    @keyframes scroll {
        0% {
            transform: translate3d(0, 0, 0);
        }
        100% {
            transform: translate3d(calc(-180px * 5 - 20px * 5), 0, 0);
        }
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Trust Badge */
.trust-badge {
    background: var(--gray-light);
    padding: 60px 0;
    text-align: center;
}

.trust-badge h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    perspective: 1000px;
}

.feature-card {
    background: transparent;
    perspective: 1000px;
    height: 280px;
    cursor: pointer;
}

.feature-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.feature-card:hover .feature-card-inner,
.feature-card.flipped .feature-card-inner {
    transform: rotateY(180deg);
}

.feature-card-front,
.feature-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.feature-card-front {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.feature-card-back {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    transform: rotateY(180deg);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card-front h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: white;
    font-weight: 700;
}

.feature-card-front p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.feature-card-back h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.feature-card-back p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
}

/* Companies Section */
.companies-section {
    background: var(--white);
    padding: 80px 0;
}

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

.company-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.company-logo-container {
    margin-bottom: 20px;
}

.company-logo-placeholder {
    height: 100px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.company-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.company-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.company-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.companies-trusted {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--gray-light);
}

.companies-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.company-logo-small {
    background: var(--gray-light);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--gray);
    font-size: 14px;
    transition: all 0.3s;
}

.company-logo-small:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--dark);
}

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

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.benefit-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}

.benefit-content p {
    color: var(--gray);
}

/* Pricing Section */
.pricing {
    background: var(--gray-light);
    padding: 80px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
}

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

.pricing-card.featured {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.badge {
    background: var(--secondary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--dark);
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin: 20px 0;
}

.price span {
    font-size: 20px;
    color: var(--gray);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    color: var(--dark);
}

.pricing-features li:before {
    content: "✓";
    color: var(--secondary);
    font-weight: bold;
    margin-right: 10px;
}

/* Process Section */
.process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}

.process-step p {
    color: var(--gray);
}

/* FAQ Section */
.faq {
    background: var(--gray-light);
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-answer {
    padding: 0 25px 25px;
    color: var(--gray);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

footer p {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .nav-links {
        display: none;
    }

    .logo img {
        height: 50px;
        width: 180px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .btn-primary, .btn-secondary {
        padding: 14px 30px;
        font-size: 16px;
    }

    .feature-card {
        height: 260px;
    }

    .feature-card:hover .feature-card-inner {
        transform: none;
    }
    
    .feature-card.flipped .feature-card-inner {
        transform: rotateY(180deg);
    }

    .feature-card-front h4,
    .feature-card-back h4 {
        font-size: 18px;
    }

    .feature-card-front p,
    .feature-card-back p {
        font-size: 13px;
    }

    .feature-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .value-proposition {
        max-width: 95%;
        padding: 0 15px;
    }

    .market-leaders-section {
        padding: 50px 0 30px 0;
    }

    .market-leaders-title {
        font-size: 28px;
    }

    .market-leaders-subtitle {
        font-size: 17px;
    }

    .market-leaders-description {
        font-size: 16px;
    }

    .market-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .stat-item {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .market-leaders-title {
        font-size: 24px;
    }

    .market-leaders-subtitle {
        font-size: 15px;
    }

    .market-leaders-description {
        font-size: 14px;
    }

    .stat-number {
        font-size: 28px;
    }

    .value-card-new {
        padding: 25px 15px;
    }

    .value-header-new h3 {
        font-size: 22px;
    }

    .value-header-new p {
        font-size: 14px;
    }

    .value-proposition {
        padding: 0 20px;
    }

    .comparison-table-full {
        min-width: 800px;
        table-layout: auto;
    }

    .comparison-table-full th,
    .comparison-table-full td {
        padding: 12px 8px;
    }

    .feature-col {
        font-size: 12px;
        width: auto;
        min-width: 160px;
    }

    .platform-col {
        font-size: 12px;
        width: auto;
        min-width: 95px;
    }

    .platform-col small {
        font-size: 9px;
    }

    .check, .cross {
        font-size: 20px;
    }

    .price-highlight strong {
        font-size: 20px;
    }

    .price-danger strong {
        font-size: 18px;
    }

    .savings-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .savings-icon {
        font-size: 40px;
    }

    .savings-content h4 {
        font-size: 18px;
    }

    .savings-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .value-proposition {
        padding: 0 15px;
    }

    .value-card-new {
        padding: 20px 12px;
    }

    .value-header-new h3 {
        font-size: 20px;
    }

    .comparison-table-full {
        min-width: 700px;
        table-layout: auto;
    }

    .comparison-table-full th,
    .comparison-table-full td {
        padding: 10px 6px;
    }

    .feature-col {
        font-size: 11px;
        width: auto;
        min-width: 140px;
    }

    .platform-col {
        font-size: 11px;
        width: auto;
        min-width: 80px;
    }

    .platform-col small {
        font-size: 8px;
    }

    .check, .cross {
        font-size: 18px;
    }

    .price-highlight strong {
        font-size: 18px;
    }

    .price-danger strong {
        font-size: 16px;
    }

    .savings-content h4 {
        font-size: 16px;
    }

    .savings-content p {
        font-size: 12px;
    }
}

