﻿/*==================================
SECTION TITLE
==================================*/

.section-heading {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 50px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

    .section-subtitle::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent);
    }

.section-heading h2 {
    font-size: 48px;
    margin-bottom: 22px;
}

.section-heading p {
    font-size: 18px;
    color: var(--text-light);
}

.feature-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px;
    transition: .35s;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    color: #fff;
    background: linear-gradient( 135deg, var(--primary), var(--secondary));
    margin-bottom: 28px;
}

.feature-card h3 {
    margin-bottom: 16px;
}
.product-card {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: .35s;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .product-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

.product-content {
    padding: 35px;
}

    .product-content span {
        color: var(--primary);
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 1px;
    }

    .product-content h3 {
        margin: 18px 0;
    }

    .product-content a {
        font-weight: 700;
        color: var(--primary);
    }
.counter-box {
    text-align: center;
    padding: 30px;
}

    .counter-box h2 {
        font-size: 64px;
        color: var(--primary);
        margin-bottom: 12px;
    }

    .counter-box span {
        color: var(--text-light);
        font-weight: 600;
    }

.cta-block {
    background: linear-gradient( 135deg, var(--primary), var(--secondary));
    border-radius: 30px;
    padding: 70px;
    color: #fff;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-block h2 {
    color: #fff;
}
.stats-section {
    margin-top: -60px;
    position: relative;
    z-index: 50;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.stat-card {
    background: #fff;
    padding: 45px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: .35s;
}

    .stat-card:hover {
        transform: translateY(-10px);
    }

    .stat-card h2 {
        font-size: 64px;
        color: var(--primary);
        margin-bottom: 10px;
    }

    .stat-card h4 {
        margin-bottom: 10px;
    }