/* Hero Section */
.hero-premium {
    /* background: linear-gradient(135deg, var(--premium-color), #E65100); */
    background: linear-gradient(135deg, var(--premium-color), var(--special-blue), var(--special-green));
    color: white;
    padding: 50px 0;
    text-align: center;
}

.hero-premium h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
}

.hero-premium p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.btn {
    display: inline-block;
    background-color: white;
    color: var(--premium-color);
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.btn:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 20px;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h3 {
    font-size: 36px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-header {
    background-color: var(--premium-color);
    color: white;
    padding: 20px;
    text-align: center;
}

.product-header h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-content {
    padding: 30px;
}

.product-feature {
    display: flex;
    margin-bottom: 20px;
}

.product-icon {
    background-color: rgba(98, 0, 234, 0.1);
    color: var(--premium-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.product-icon i {
    font-size: 24px;
}

.product-text h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.product-text p {
    color: var(--text-secondary);
}

.product-cta {
    text-align: center;
    padding: 0 30px 30px;
}

/* How It Works */
.how-it-works {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    position: relative;
    padding: 0 15px;
    margin-bottom: 30px;
}

.step-number {
    background-color: var(--premium-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    left: calc(50% + 25px);
    width: calc(100% - 50px);
    height: 2px;
    background-color: var(--medium-gray);
    z-index: 1;
}

.step h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background-color: white;
}

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

.benefit-card {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    background-color: var(--premium-color);
    color: white;
    transform: translateY(-5px);
}

.benefit-card:hover h5,
.benefit-card:hover p {
    color: white;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--premium-color);
}

.benefit-card:hover .benefit-icon {
    color: white;
}

.benefit-card h5 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-primary);
    transition: color 0.3s;
}

.benefit-card p {
    color: var(--text-secondary);
    transition: color 0.3s;
}

/* CTA Section */
.cta-premium {
    /* background: linear-gradient(135deg, var(--premium-color), #E65100); */
    background: linear-gradient(135deg, var(--premium-color), var(--special-blue), var(--special-green));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-premium h3 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
}

.cta-premium p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Responsive */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        justify-content: center;
    }

    .step {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    .hero-premium {
        padding: 80px 0;
    }

    .hero-premium h2 {
        font-size: 32px;
    }

    .hero-premium p {
        font-size: 18px;
    }

    .btn {
        display: block;
        margin: 0 auto 15px;
        max-width: 250px;
    }

    .btn-outline {
        margin-left: auto;
    }

    .section-title h3 {
        font-size: 30px;
    }
}