/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.highlight {
    color: white;
    background: linear-gradient(120deg, #ffd700 0%, #ffd700 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.2em;
    background-position: 0 88%;
    padding: 0 8px;
    border-radius: 4px;
}

.pulse-text {
    animation: pulse 2s infinite;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
    color: #1a1a2e;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.3rem;
}

.btn-order {
    padding: 25px 50px;
    font-size: 1.4rem;
    animation: pulse 2s infinite;
}

.btn-final {
    padding: 20px 40px;
    font-size: 1.2rem;
    background: linear-gradient(45deg, #ff0000, #ff6b35, #ffd700);
}

.pulse {
    animation: pulse 2s infinite;
}

/* Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 2px solid #ffd700;
}

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

.logo h2 {
    color: #ffd700;
    margin: 0;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.urgency-banner {
    background: linear-gradient(45deg, #ff0000, #ff4444);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 30px;
    animation: shake 3s infinite;
    font-weight: 700;
}

.hero-title {
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.hero-image {
    margin: 40px 0;
}

.hero-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

/* Countdown */
.countdown-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    max-width: 500px;
    border: 2px solid #ffd700;
}

.countdown-container h3 {
    color: #ff0000;
    font-size: 1.5rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.time-unit {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 15px;
    padding: 15px;
    min-width: 80px;
    color: white;
}

.time-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 900;
}

.time-unit label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-text {
    color: #ffd700;
    font-weight: 700;
    margin: 0;
}

/* Social Proof */
.social-proof {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffd700;
    font-weight: 600;
}

.proof-item i {
    font-size: 1.2rem;
}

.guarantee {
    color: #4ade80;
    font-weight: 600;
    margin-top: 15px;
}

/* Sections */
section {
    padding: 80px 0;
}

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

/* Problem Section */
.problem {
    background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
    color: white;
}

.problem h2 {
    color: #ffd700;
    margin-bottom: 50px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.problem-item i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.problem-conclusion {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

/* Solution Section */
.solution {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.solution-text h3 {
    color: #ffd700;
    margin-bottom: 20px;
}

.science-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border-left: 5px solid #ffd700;
}

.science-box h4 {
    color: #ffd700;
    margin-bottom: 15px;
}

.science-box ul {
    list-style: none;
    padding: 0;
}

.science-box li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.science-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.highlight-text {
    background: rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    border-left: 5px solid #ffd700;
    font-weight: 600;
    font-size: 1.2rem;
}

.solution-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Authority Section */
.authority {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.authority-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.authority-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.authority-text h2 {
    color: #ffd700;
}

.authority-text h3 {
    color: #e0e0e0;
    font-weight: 500;
    margin-bottom: 30px;
}

.credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.credential i {
    color: #ffd700;
    font-size: 1.2rem;
}

blockquote {
    background: rgba(255, 215, 0, 0.1);
    border-left: 5px solid #ffd700;
    padding: 25px;
    border-radius: 10px;
    font-style: italic;
    font-size: 1.1rem;
}

cite {
    display: block;
    text-align: right;
    margin-top: 15px;
    color: #ffd700;
    font-weight: 600;
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, #8360c3 0%, #2ebf91 100%);
    color: white;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: #1a1a2e;
}

.lifestyle-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
}

.lifestyle-image {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lifestyle-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.lifestyle-item {
    background: rgba(255, 215, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial cite {
    color: #ffd700;
    font-weight: 600;
    text-align: right;
    display: block;
    margin-top: 15px;
}

/* Urgency Section */
.urgency {
    background: linear-gradient(135deg, #ff0000 0%, #ff6b35 100%);
    color: white;
    text-align: center;
}

.urgency h2 {
    animation: pulse 2s infinite;
    margin-bottom: 50px;
}

.urgency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.urgency-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.urgency-item i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.spots-remaining {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    max-width: 300px;
    border: 3px solid #ffd700;
}

.spots-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spots-number {
    font-size: 4rem;
    font-weight: 900;
    color: #ffd700;
    animation: pulse 2s infinite;
}

.spots-text {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.urgency-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
}

/* Order Section */
.order {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
}

.offer-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px;
    max-width: 600px;
    margin: 0 auto;
    border: 3px solid #ffd700;
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.3);
}

.offer-header h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #999;
    margin-right: 15px;
}

.new-price {
    font-size: 3rem;
    font-weight: 900;
    color: #ffd700;
    margin-right: 15px;
}

.savings {
    background: #ff0000;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
}

.offer-includes {
    text-align: left;
    margin-bottom: 40px;
}

.offer-includes h4 {
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

.offer-includes ul {
    list-style: none;
    padding: 0;
}

.offer-includes li {
    padding: 10px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.secure-order {
    color: #4ade80;
    font-weight: 600;
    margin-top: 15px;
}

.guarantee-text {
    color: #ffd700;
    font-weight: 600;
    margin-top: 10px;
}

.payment-options {
    margin-top: 40px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.payment-icons i {
    font-size: 2rem;
    color: #ffd700;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
    color: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    text-align: left;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.faq-item h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #ff0000 0%, #ff6b35 50%, #ffd700 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.final-countdown {
    margin: 40px 0;
}

.countdown-mini {
    display: inline-flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: 900;
    margin-top: 10px;
}

.final-warning {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 30px;
    animation: pulse 2s infinite;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #999;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-text p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Exit Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.popup-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    position: relative;
    border: 3px solid #ffd700;
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: white;
}

.popup-price {
    color: #ffd700;
    font-size: 2rem;
    font-weight: 900;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 10px;
    }
    
    .time-unit span {
        font-size: 1.5rem;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 20px;
    }
    
    .solution-grid,
    .authority-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .credentials {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .testimonials-grid,
    .urgency-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-box {
        padding: 30px 20px;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .btn-large {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .btn-order {
        padding: 20px 30px;
        font-size: 1.2rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .popup-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .lifestyle-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        line-height: 1.3;
    }
    
    .countdown-container {
        padding: 20px;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 8px;
    }
    
    .time-unit span {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .spots-number {
        font-size: 3rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

