* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, #ff4757, #ff3838);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    z-index: 1000;
    position: relative;
    animation: urgencyPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

@keyframes urgencyPulse {
    0%, 100% { 
        background: linear-gradient(90deg, #ff4757, #ff3838);
        transform: scale(1);
    }
    50% { 
        background: linear-gradient(90deg, #ff3838, #ff2f2f);
        transform: scale(1.02);
    }
}

.blink {
    animation: textBlink 1s infinite;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

@keyframes textBlink {
    0%, 50% { opacity: 1; transform: scale(1); }
    25% { opacity: 0.8; transform: scale(1.1); }
}

.countdown-timer {
    font-size: 0.9rem;
    margin-top: 5px;
    font-weight: 600;
}

#countdown {
    background: rgba(255,255,255,0.2);
    padding: 3px 8px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-weight: 800;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="10" cy="10" r="10" fill="url(%23a)"><animate attributeName="cx" values="10;90;10" dur="20s" repeatCount="indefinite"/></circle><circle cx="80" cy="5" r="5" fill="url(%23a)"><animate attributeName="cx" values="80;20;80" dur="15s" repeatCount="indefinite"/></circle></svg>');
    animation: floatingBg 30s linear infinite;
    pointer-events: none;
}

@keyframes floatingBg {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.trust-badge {
    background: rgba(255,255,255,0.2);
    padding: 15px 30px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-weight: 600;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    animation: trustBadgePulse 3s ease-in-out infinite;
}

@keyframes trustBadgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
    50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(0,0,0,0.3); }
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    font-weight: 900;
    text-shadow: 0 6px 12px rgba(0,0,0,0.4);
    background: linear-gradient(45deg, #fff, #f1c40f, #fff);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 500;
    opacity: 0.95;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits List */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 30px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 15px;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Platform Logos */
.platform-banner {
    position: absolute;
    top: 20%;
    right: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 5;
}

.platform-logo {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    animation: float 3s ease-in-out infinite;
}

.platform-logo.facebook { background: linear-gradient(135deg, #1877f2, #42a5f5); animation-delay: 0s; }
.platform-logo.google { background: linear-gradient(135deg, #4285f4, #34a853); animation-delay: 0.5s; }
.platform-logo.instagram { background: linear-gradient(135deg, #e4405f, #833ab4); animation-delay: 1s; }
.platform-logo.youtube { background: linear-gradient(135deg, #ff0000, #cc0000); animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* CTA Buttons */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E, #0fc5a6);
    color: white;
    padding: 28px 55px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
    transition: all 0.4s ease;
    margin: 25px 15px;
    min-width: 350px;
    justify-content: center;
    animation: whatsappPulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

@keyframes whatsappPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
    }
    50% { 
        transform: scale(1.08); 
        box-shadow: 0 25px 60px rgba(37, 211, 102, 0.7);
    }
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 30px 70px rgba(37, 211, 102, 0.8);
    color: white;
}

.whatsapp-btn i {
    font-size: 1.8rem;
    animation: whatsappBlink 1.2s infinite;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.6));
}

@keyframes whatsappBlink {
    0%, 60% { opacity: 1; transform: scale(1) rotate(0deg); }
    30% { opacity: 0.8; transform: scale(1.3) rotate(15deg); }
}

.urgency-text {
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    margin-top: 20px;
    animation: textBlink 1.5s infinite;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Proven Track Record Section */
.proven-track-record {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 0;
    border-bottom: 3px solid #6c757d;
}

.proven-track-record h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
}

.proven-track-record h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

.click-indicator {
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    font-weight: 500;
}

.stat-card:hover .click-indicator {
    opacity: 1;
    animation: clickPulse 1s infinite;
}

@keyframes clickPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 800;
    background: linear-gradient(45deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.service-price {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 15px 0;
}

.features {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.cta-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Compact Success Stories */
.success-stories-compact {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.success-stories-compact h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.quote {
    font-style: italic;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px;
}

.client {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

/* Team & Why Us Combined */
.team-why-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.team-brief, .why-us-brief {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
}

.team-brief h3, .why-us-brief h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.team-brief p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #495057;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    font-size: 0.9rem;
}

.features-grid span {
    color: #495057;
    font-weight: 500;
}

/* Main CTA Section */
.main-cta-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    margin-top: 50px;
}

.main-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.main-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.mega-whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 30px 60px;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: megaPulse 2s infinite;
}

@keyframes megaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.mega-whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 30px 70px rgba(37, 211, 102, 0.6);
    color: white;
}

.btn-subtitle {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.guarantee {
    margin-top: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #f39c12;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    animation: floatingPulse 2s infinite, attentionShake 0.8s ease-in-out 4s infinite;
    transition: all 0.3s ease;
}

@keyframes floatingPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 15px 50px rgba(37, 211, 102, 0.8); }
}

@keyframes attentionShake {
    0%, 50%, 100% { transform: scale(1) rotate(0deg); }
    10%, 30% { transform: scale(1.1) rotate(-5deg); }
    20%, 40% { transform: scale(1.1) rotate(5deg); }
}

.floating-whatsapp::before {
    content: '!';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    animation: notificationBlink 1s infinite;
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.8);
}

@keyframes notificationBlink {
    0%, 50% { opacity: 1; transform: scale(1); }
    25% { opacity: 0.7; transform: scale(1.1); }
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero .subtitle { font-size: 1.2rem; }
    .hero p { font-size: 1rem; }
    
    .whatsapp-btn {
        padding: 20px 35px;
        font-size: 1.2rem;
        min-width: 280px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .platform-banner {
        display: none;
    }
    
    .floating-whatsapp {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        bottom: 20px;
        right: 20px;
    }

    .main-cta-section h2 {
        font-size: 2rem;
    }

    .mega-whatsapp-btn {
        padding: 25px 40px;
        font-size: 1.3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .proven-track-record h2 {
        font-size: 1.8rem;
    }

    .team-why-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
        min-width: auto;
        padding: 18px 25px;
        font-size: 1.1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2rem;
    }
}
