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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, #1b1550 0%, #392e9f 50%, #1b1550 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

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

.close-popup:hover {
    color: #ff6b6b;
}

.popup-content h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.timer-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
    backdrop-filter: blur(10px);
}

.timer-item span {
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: #fff;
}

.timer-item label {
    font-size: 0.9em;
    color: #f0f0f0;
}

.promo-text {
    font-size: 1.2em;
    margin: 20px 0 10px;
}

.old-price {
    text-decoration: line-through;
    color: #ff6b6b;
    font-size: 1.1em;
}

.new-price {
    font-size: 2.5em;
    font-weight: bold;
    color: #f78728;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    display: block;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1b1550 0%, #5326e4 50%, #1b1550 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::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 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.header h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.subtitle {
    font-size: 1.3em;
    font-weight: 300;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-text p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #555;
}

.benefits {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 5px solid #1b1550;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits h3 {
    font-size: 1.5em;
    color: #2c3e50;
    margin-bottom: 20px;
}

.benefits ul {
    list-style: none;
}

.benefits li {
    padding: 10px 0;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.benefits li:hover {
    transform: translateX(10px);
}

.benefits li i {
    color: #27ae60;
    font-size: 1.2em;
    background: rgba(39, 174, 96, 0.1);
    padding: 8px;
    border-radius: 50%;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(255, 0, 80, 0.2);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 60px;
}

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

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c92d14, #f78728, #fbb506);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 0, 80, 0.15);
}

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

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.author {
    color: #1b1550;
    font-weight: 600;
}

/* Offer Section */
.offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #1b1550 0%, #1b1550 50%, #1b1550 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer::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 100"><path d="M10,50 Q30,10 50,50 T90,50" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/><path d="M20,30 Q40,70 60,30 T100,30" stroke="rgba(255,255,255,0.1)" stroke-width="1.5" fill="none"/></svg>');
    animation: wave 15s infinite ease-in-out;
}

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

.offer h2 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.urgency {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.price-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 500px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.old-price-section .old-price {
    font-size: 1.5em;
    text-decoration: line-through;
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
}

.new-price-section {
    position: relative;
}

.new-price-section .new-price {
    font-size: 3.5em;
    font-weight: bold;
    color: #f78728;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.discount {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #27ae60;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 1.2em;
    font-weight: bold;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: rotate(15deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

.countdown-timer-main {
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.countdown-timer-main p {
    font-size: 1.3em;
    margin-bottom: 20px;
}

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

.timer-display .timer-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    min-width: 100px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.timer-display .timer-item span {
    font-size: 2.5em;
    font-weight: bold;
    display: block;
}

.cta-button, .cta-button-main {
    background: linear-gradient(45deg, #27ae60, #27ae60);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-button-main {
    font-size: 1.5em;
    padding: 25px 50px;
    margin: 20px 0;
}

.cta-button::before, .cta-button-main::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;
}

.cta-button:hover::before, .cta-button-main:hover::before {
    left: 100%;
}

.cta-button:hover, .cta-button-main:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #27ae60, #27ae60);
}

.guarantees {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-3px);
}

.guarantee-item i {
    font-size: 1.5em;
    color: #fbb506;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }
    
    .subtitle {
        font-size: 1.1em;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h2 {
        font-size: 2em;
    }
    
    .offer h2 {
        font-size: 2em;
    }
    
    .new-price-section .new-price {
        font-size: 2.5em;
    }
    
    .timer-display {
        gap: 10px;
    }
    
    .timer-display .timer-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .timer-display .timer-item span {
        font-size: 2em;
    }
    
    .guarantees {
        gap: 20px;
    }
    
    .guarantee-item {
        flex-direction: column;
        text-align: center;
    }
    
    .popup-content {
        padding: 30px 20px;
    }
    
    .popup-content h2 {
        font-size: 1.8em;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .timer-item {
        min-width: 60px;
        padding: 10px;
    }
    
    .timer-item span {
        font-size: 1.5em;
    }
}

