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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header & Navigation */
header {
    background-color: #1a1a2e;
    color: #fff;
    padding: 1em 2em;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #e94560;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

header nav ul li {
    display: inline-block;
}

header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #e94560;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 8em 2em 5em;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 2em;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

/* Buttons */
.cta {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: #fff;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.3em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    animation: fadeInUp 1s ease 0.4s both;
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.6);
}

.cta:active {
    transform: translateY(-1px);
}

.pulse {
    animation: pulse 2s infinite;
}

/* Benefits Section */
.benefits {
    padding: 5em 2em;
    text-align: center;
    background: #fff;
}

.benefits h2 {
    font-size: 2.5em;
    margin-bottom: 1.5em;
    color: #1a1a2e;
}

.benefits ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.benefits li {
    margin-bottom: 20px;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.benefits i {
    color: #4CAF50;
    font-size: 1.2em;
}

/* Testimonials */
.testimonials {
    background-color: #f8f9fa;
    padding: 5em 2em;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 1.5em;
    color: #1a1a2e;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background-color: #fff;
    padding: 2em;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial p {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 1em;
    color: #555;
}

.testimonial cite {
    font-weight: bold;
    color: #e94560;
    font-style: normal;
}

/* Scarcity Section */
.scarcity {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: #fff;
    padding: 4em 2em;
    text-align: center;
}

.scarcity h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.scarcity p {
    font-size: 1.3em;
    margin-bottom: 1.5em;
}

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

.time-box {
    background: rgba(255,255,255,0.2);
    padding: 20px 30px;
    border-radius: 10px;
    min-width: 100px;
}

.time-box span {
    display: block;
    font-size: 3em;
    font-weight: bold;
    line-height: 1;
}

.time-box label {
    font-size: 0.9em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Guarantee Section */
.guarantee {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #fff;
    padding: 4em 2em;
    text-align: center;
}

.guarantee h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.guarantee i {
    margin-right: 10px;
}

.guarantee p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Call to Action Section */
.call-to-action {
    text-align: center;
    padding: 5em 2em;
    background: #fff;
}

.call-to-action h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    color: #1a1a2e;
}

.call-to-action p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 2em;
}

.small-text {
    font-size: 0.9em !important;
    color: #999 !important;
    margin-top: 1em;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: #fff;
    text-align: center;
    padding: 2em;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    }
    50% {
        box-shadow: 0 10px 50px rgba(233, 69, 96, 0.7);
    }
    100% {
        box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2em;
    }
    
    .hero p {
        font-size: 1.1em;
    }
    
    .cta {
        padding: 15px 35px;
        font-size: 1.1em;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .time-box {
        padding: 15px 20px;
        min-width: 70px;
    }
    
    .time-box span {
        font-size: 2em;
    }
    
    header nav ul {
        gap: 15px;
        font-size: 0.9em;
    }
}
