/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #f0f2f5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - CORRIGIDO PARA MOBILE */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 3px solid #ff4d4d;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

/* Logo - SEMPRE VISÍVEL */
.logo {
    z-index: 1002;
    position: relative;
}

.logo h2 {
    color: #ff4d4d;
    font-weight: 900;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
    margin: 0;
    white-space: nowrap;
}

.logo:hover h2 {
    transform: scale(1.05);
}

.logo a {
    text-decoration: none;
    color: inherit;
}

/* Navigation Links - CORRIGIDO PARA MOBILE */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    z-index: 1001;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff4d4d, #ff8c00);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #ff4d4d;
    transform: translateY(-2px);
}

.cta-nav {
    background: linear-gradient(45deg, #ff4d4d, #ff8c00) !important;
    color: white !important;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 77, 77, 0.4);
    animation: pulse-glow 2s infinite;
    border: none;
    text-decoration: none;
}

.cta-nav:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 77, 77, 0.6);
}

/* Mobile Menu Toggle - SEMPRE VISÍVEL EM MOBILE */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1003;
    position: relative;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
    background: #ff4d4d;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
    background: #ff4d4d;
}

/* MEDIA QUERIES PARA MOBILE - CORRIGIDO */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        height: 70px;
    }
    
    .logo h2 {
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        gap: 1.5rem;
        z-index: 1000;
        border-top: 1px solid #e2e8f0;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 10px 0;
        border-bottom: 1px solid #f1f5f9;
        width: 100%;
        text-align: center;
    }
    
    .cta-nav {
        margin-top: 10px;
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
        height: 65px;
    }
    
    .logo h2 {
        font-size: 1rem;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #673de6 100%, #673de6 100%, #673de6 100%);
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 77, 77, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, #ff4d4d, #ff8c00);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 77, 77, 0.4);
    animation: bounce-glow 3s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: white;
    animation: fire-flicker 1.5s infinite alternate;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: slide-up 1s ease-out;
}

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ffa500, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: slide-up 1s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: slide-up 1s ease-out 0.4s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, #ff4d4d, #ff8c00);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(255, 77, 77, 0.4);
    border: none;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 77, 77, 0.6);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.pulse-animation {
    animation: pulse-glow 2s infinite;
}

/* Countdown Timer Styles */
.countdown-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.countdown-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(45deg, #ff4d4d, #ff8c00);
    padding: 1rem;
    border-radius: 15px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 77, 77, 0.3);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 77, 77, 0.5);
}

.countdown-number {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    color: white;
    display: block;
}

.countdown-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

/* Animations */
@keyframes pulse-glow {
    0% { 
        transform: scale(1); 
        box-shadow: 0 12px 30px rgba(255, 77, 77, 0.4); 
    }
    50% { 
        transform: scale(1.02); 
        box-shadow: 0 20px 50px rgba(255, 77, 77, 0.6); 
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 12px 30px rgba(255, 77, 77, 0.4); 
    }
}

@keyframes bounce-glow {
    0%, 100% { transform: translateY(0) scale(1); }
    25% { transform: translateY(-8px) scale(1.02); }
    50% { transform: translateY(0) scale(1); }
    75% { transform: translateY(-4px) scale(1.01); }
}

@keyframes fire-flicker {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(2deg); }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-features {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #aaffaa;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-item i {
    color: #10b981;
    font-size: 1.3rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.floating-card {
    position: absolute;
    background: white;
    color: #333;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    animation: float-enhanced 4s ease-in-out infinite;
    border: 1px solid #eee;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.floating-card i {
    font-size: 2rem;
    color: #ff4d4d;
}

.card-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: 5%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 15%;
    left: 25%;
    animation-delay: 3s;
}

@keyframes float-enhanced {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-1deg); }
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(45deg, #ff4d4d, #ff8c00);
    padding: 25px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.urgency-content {
    color: white;
    font-weight: 800;
    font-size: 1.3rem;
    animation: urgent-pulse 2s infinite;
}

@keyframes urgent-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

/* Problem Solution Section */
.problem-solution {
    padding: 100px 0;
    background: #f0f2f5;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff4d4d, #ff8c00);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.3rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.problem-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff4d4d, #ff8c00);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.problem-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff4d4d, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(255, 77, 77, 0.3);
    transition: all 0.3s ease;
}

.problem-card:hover .problem-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 77, 77, 0.5);
}

.problem-icon i {
    font-size: 2.8rem;
    color: white;
}

.problem-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.2rem;
}

.problem-card p {
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.solution {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e6ffed, #f0fff4);
    border-radius: 15px;
    color: #2f855a;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #a7f3d0;
    transition: all 0.3s ease;
}

.solution:hover {
    background: linear-gradient(135deg, #dcfce7, #ecfdf5);
    transform: scale(1.02);
}

.solution i {
    color: #10b981;
    font-size: 1.4rem;
}

.solution-cta {
    text-align: center;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: #f8fafc;
    padding: 3.5rem;
    border-radius: 25px;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #4a90e2, #50e3c2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    background: white;
}

.benefit-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #4a90e2, #50e3c2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.5);
}

.benefit-icon i {
    font-size: 2.8rem;
    color: white;
}

.benefit-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.benefit-card ul {
    list-style: none;
}

.benefit-card li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.benefit-card li:hover {
    color: #2d3748;
    transform: translateX(5px);
}

.benefit-card li i {
    color: #10b981;
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.benefits-cta {
    text-align: center;
}

/* Comparison Section */
.comparison {
    padding: 100px 0;
    background: #f0f2f5;
}

.comparison-table {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 4rem;
    border: 1px solid #e2e8f0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 2rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: #f8fafc;
}

.comparison-table th {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    font-weight: 800;
    font-size: 1.1rem;
    color: #1a202c;
}

.hostinger-col {
    background: linear-gradient(135deg, #fff5f5, #fef2f2) !important;
    border-left: 4px solid #ff4d4d;
    font-weight: 700;
    color: #1a202c;
}

.hostinger-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff4d4d;
    font-size: 1.2rem;
}

.hostinger-header i {
    color: #ffd700;
    animation: crown-glow 2s infinite;
}

@keyframes crown-glow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.comparison-table i.fa-check {
    color: #10b981;
    font-size: 1.2rem;
}

.comparison-table i.fa-times {
    color: #ef4444;
    font-size: 1.2rem;
}

.comparison-table i.fa-minus {
    color: #f59e0b;
    font-size: 1.2rem;
}

.comparison-cta {
    text-align: center;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #ff4d4d;
    font-weight: 900;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
}

.author {
    font-weight: 600;
    color: #1a202c;
    font-size: 1rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: #f8fafc;
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: #1a202c;
}

.faq-question:hover {
    background: #f1f5f9;
    color: #ff4d4d;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #ff4d4d;
}

.faq-answer {
    padding: 2rem;
    background: white;
    display: none;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    border-top: 1px solid #e2e8f0;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #673de6 0%, #34495e 50%, #673de6 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 77, 77, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
}

.final-cta h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.final-cta p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 30px;
}

.footer h3 {
    margin-bottom: 1.5rem;
    color: #ff4d4d;
    font-size: 1.3rem;
    font-weight: 800;
}

.footer h4 {
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer ul li a:hover {
    color: #ff4d4d;
    transform: translateX(5px);
}

.footer p {
    color: #a0aec0;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer a {
    color: #ff4d4d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ff8c00;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .countdown-timer {
        gap: 0.8rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn-primary {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .problem-card,
    .benefit-card {
        padding: 2.5rem;
    }
    
    .floating-card {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
    
    .feature-item {
        font-size: 1rem;
    }
    
    .final-cta h2 {
        font-size: 2.8rem;
    }
    
    .final-cta p {
        font-size: 1.2rem;
    }
    
    .countdown-container {
        padding: 1.5rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.8rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    iframe {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-primary {
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .problem-card,
    .benefit-card {
        padding: 2rem;
    }
    
    .problem-icon,
    .benefit-icon {
        width: 80px;
        height: 80px;
    }
    
    .problem-icon i,
    .benefit-icon i {
        font-size: 2.2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .final-cta h2 {
        font-size: 2.2rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
    }
    
    .countdown-timer {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .faq-question {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    
    iframe {
        height: 200px;
    }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn-primary,
    .floating-card {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid currentColor;
    }
    
    .problem-card,
    .benefit-card {
        border: 2px solid currentColor;
    }
}

