﻿.ssl-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 70px;
}

.ssl-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ssl-hero .subtitle {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    background: #fa8c16;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(250, 140, 22, 0.3);
}

    .hero-btn:hover {
        background: #e67d0e;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(250, 140, 22, 0.4);
        color: white;
        text-decoration: none;
    }

    .hero-btn.secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

        .hero-btn.secondary:hover {
            background: white;
            color: #fa8c16;
        }

/* Certificate Types Section */
.cert-types-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.cert-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.cert-type-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

    .cert-type-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        border-color: #fa8c16;
    }

.cert-type-icon {
    width: 90px;
    height: 90px;
    background: #fa8c16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.5rem;
}

.cert-type-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.cert-type-description {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Popular Certificates Section */
.popular-certificates {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf9 100%);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.certificate-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

    .certificate-card.featured::before {
        content: "Recommended";
        position: absolute;
        top: 20px;
        right: -30px;
        background: #fa8c16;
        color: white;
        padding: 5px 30px;
        font-size: 0.8rem;
        font-weight: 600;
        transform: rotate(45deg);
    }

    .certificate-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    }

.certificate-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.certificate-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.certificate-price {
    font-size: 2rem;
    font-weight: 800;
    color: #fa8c16;
}

.certificate-period {
    font-size: 0.9rem;
    color: #666;
}

.certificate-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

    .certificate-features li {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
        color: #666;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

        .certificate-features li:last-child {
            border-bottom: none;
        }

.feature-check {
    color: #52c41a;
    min-width: 20px;
}

.buy-btn {
    width: 100%;
    background: #fa8c16;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .buy-btn:hover {
        background: #e67d0e;
        transform: translateY(-2px);
    }

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

    .benefit-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(250, 140, 22, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fa8c16;
    font-size: 1.8rem;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.benefit-description {
    color: #666;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fa8c16;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Brands Section */
.brands-section {
    padding: 100px 0;
    background: white;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.brand-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

    .brand-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        border-color: #fa8c16;
    }

.brand-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.el-collapse {
    border: none;
    background: transparent;
}

.el-collapse-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.el-collapse-item__header {
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    background: #fff;
    border: none;
    border-radius: 16px;
}

.el-collapse-item__content {
    padding: 0 30px 25px;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fa8c16 0%, #ff6b35 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: "";
        position: absolute;
        top: -50px;
        left: -50px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
    }

    .cta-section::after {
        content: "";
        position: absolute;
        bottom: -80px;
        right: -60px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
    }

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .ssl-hero h1 {
        font-size: 2.8rem;
    }

    .ssl-hero .subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .ssl-hero {
        padding: 80px 0 40px;
        margin-top: 70px;
    }

        .ssl-hero h1 {
            font-size: 2.3rem;
        }

        .ssl-hero .subtitle {
            font-size: 1.1rem;
        }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .certificate-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .cta-title {
        font-size: 2.3rem;
    }

    .cta-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .ssl-hero {
        padding: 60px 0 30px;
    }

        .ssl-hero h1 {
            font-size: 2rem;
        }

    .cert-type-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}
