* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #2c3e50;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

header h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, #e74c3c, #c0392b);
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #e74c3c, #c0392b);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 30px auto 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid #e74c3c;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 2.8rem;
    color: #e74c3c;
    margin-bottom: 25px;
    display: inline-block;
    height: 80px;
    width: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.1);
}

.benefit-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-card p {
    color: #7f8c8d;
    font-size: 1.05rem;
}

/* How it Works */
.how-it-works {
    background: linear-gradient(to right, #2c3e50, #34495e);
    color: white;
    position: relative;
    overflow: hidden;
}

.how-it-works:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1493238792000-8113da705763?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.how-it-works .section-title h2 {
    color: white;
}

.how-it-works .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.step {
    text-align: center;
    width: 280px;
    margin: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    background: linear-gradient(to right, #e74c3c, #c0392b);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.step p {
    color: white;
    font-size: 1.1rem;
}

/* Proof Section */
.proof-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.proof-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    width: 320px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-8px);
}

.proof-card i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
    display: inline-block;
    height: 80px;
    width: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.1);
}

.proof-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.proof-card p {
    color: #7f8c8d;
}

/* Purchase Section */
.purchase {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    border-radius: 15px;
    padding: 70px 40px;
    margin: 50px auto;
    max-width: 1000px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.purchase h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.price {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    color: #fff;
}

.price span {
    color: #e74c3c;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.features {
    list-style-type: none;
    margin-bottom: 40px;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features li:last-child {
    border-bottom: none;
}

.features li i {
    margin-right: 15px;
    color: #e74c3c;
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0 30px;
    text-align: center;
}

.footer-links {
    margin-top: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #ecf0f1;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e74c3c;
}

.copyright {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        width: 100%;
        max-width: 320px;
    }
    .hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.login-button {
    background: #fff;
    color: #333;
    border: 2px solid #333;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-button:hover {
    background: #333;
    color: #fff;
}

    .purchase {
        padding: 50px 20px;
    }
    
    .purchase h2 {
        font-size: 2.2rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .proof-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .proof-card {
        width: 100%;
        max-width: 320px;
    }
}