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

:root {
    --primary: #FF6B35;
    --dark: #0A0A0A;
    --darker: #000000;
    --light: #FFFFFF;
    --gray: #888888;
    --success: #00D46A;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 20px;
}

.cta-nav {
    background: var(--primary);
    color: var(--light);
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background: #E55A2B;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, #1a1a1a 0%, var(--darker) 50%);
}

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

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.number-highlight {
    color: var(--primary);
    display: inline-block;
    animation: pulse 2s infinite;
}

.guaranteed {
    background: linear-gradient(90deg, var(--primary), #FF8C42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--gray);
    margin-bottom: 48px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-primary {
    background: var(--primary);
    color: var(--light);
    border: none;
    padding: 20px 48px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-primary:hover {
    background: #E55A2B;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-subtext {
    color: var(--gray);
    font-size: 16px;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: var(--dark);
}

.problem h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.problem-item {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.problem-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.problem-item p {
    font-size: 18px;
    color: var(--gray);
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: var(--darker);
}

.solution h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
}

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

.solution-item {
    position: relative;
    padding-left: 80px;
}

.solution-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 72px;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

.solution-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.solution-item p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
}

.stat-item p {
    font-size: 18px;
    font-weight: 600;
}

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

.pricing h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
}

.pricing-box {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.currency {
    font-size: 32px;
    color: var(--gray);
}

.amount {
    font-size: 72px;
    font-weight: 900;
    color: var(--primary);
}

.period {
    font-size: 24px;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 48px;
}

.pricing-features li {
    font-size: 18px;
    margin-bottom: 16px;
    text-align: left;
}

.cta-pricing {
    width: 100%;
    background: var(--primary);
    color: var(--light);
    border: none;
    padding: 20px 48px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.cta-pricing:hover {
    background: #E55A2B;
    transform: translateY(-3px);
}

.spots-left {
    color: var(--primary);
    font-weight: 600;
}

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

.faq h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
}

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

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.faq-item p {
    font-size: 16px;
    color: var(--gray);
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 24px;
    color: var(--gray);
    margin-bottom: 48px;
}

.cta-final {
    background: var(--primary);
    color: var(--light);
    border: none;
    padding: 24px 64px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.cta-final:hover {
    background: #E55A2B;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.guarantee {
    color: var(--success);
    font-size: 18px;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
    color: var(--gray);
}

.footer a {
    color: var(--primary);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* WhatsApp Floating Button */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float {
    display: block;
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-message {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--light);
    color: var(--dark);
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.whatsapp-message.show {
    opacity: 1;
    transform: translateY(0);
    animation: messageWiggle 0.5s ease;
}

.whatsapp-message::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--light);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes messageWiggle {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(-5px) translateY(0);
    }
    75% {
        transform: translateX(5px) translateY(0);
    }
}

/* Notification Popup */
.notification-popup {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: var(--light);
    color: var(--dark);
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 998;
    transform: translateX(-400px);
    transition: transform 0.4s ease;
}

.notification-popup.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 24px;
}

.notification-text {
    font-size: 14px;
}

.notification-text strong {
    color: var(--primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Move notifications to top on mobile like phone notifications */
    .notification-popup {
        top: 80px; /* Below navigation bar */
        bottom: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-100px);
        width: calc(100% - 40px);
        max-width: 400px;
        z-index: 997; /* Below nav (1000) but above other content */
    }
    
    .notification-popup.show {
        transform: translateX(-50%) translateY(0);
    }
    
    .nav-wrapper {
        padding: 0 20px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .cta-primary,
    .cta-pricing,
    .cta-final {
        font-size: 18px;
        padding: 16px 32px;
    }
    
    .solution-item {
        padding-left: 60px;
    }
    
    .solution-number {
        font-size: 48px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .amount {
        font-size: 56px;
    }
    
    .pricing-box {
        padding: 32px 24px;
    }
}