:root {
    --yellow: #fec900;
    --red: #d12427;
    --blue: #373272;
    --light-bg: #f9fafb;
}

.subtitle {
    max-width: 720px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
}

/* ================= HERO ================= */
.hero-section {
    background:
        radial-gradient(circle at top, #ffe77a 0%, transparent 60%),
        linear-gradient(180deg, #ffd633, #ffcf40);
    padding: 90px 0;
}

.hero-section .hero-badge {
    background: rgba(209, 36, 39, 0.1);
    color: var(--red);
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.hero-section h1 {
    color: var(--red);
    font-weight: 800;
    margin: 25px 0 15px;
}

.hero-section .hero-subtitle {
    /* max-width: 760px; */
    margin: 0 auto 40px;
}

.hero-section .hero-stats h3 {
    font-weight: 800;
    color: var(--red);
}

.hero-section .hero-stats p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* ================= NETWORK ================= */
.network-section {
    padding: 50px 0;
    background: #fff;
}

.network-section h2 {
    font-weight: 800;
    color: var(--blue);
}

.network-section .network-highlight {
    background: #fff7d6;
    border-left: 4px solid var(--yellow);
    padding: 16px 18px;
    border-radius: 6px;
    margin-top: 25px;
    font-size: 0.95rem;
}

.network-section .network-card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 100%;
}

.network-section .network-card p {
    margin-bottom: 0;
}

.network-section .network-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.network-section .network-card .card-body {
    padding: 28px;
}

.network-section .network-card .icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto 12px;
}

.icon.yellow {
    background: linear-gradient(135deg, #ffd633, #ffb703);
}

.icon.red {
    background: linear-gradient(135deg, #e63946, #d12427);
}

.icon.blue {
    background: linear-gradient(135deg, #4f46e5, #373272);
}

/* ================= PARTNERS ================= */
.partners-section {
    background: var(--light-bg);
    padding: 50px 0;
}

.partners-section h2 {
    font-weight: 800;
    color: var(--blue);
}

.partners-section .partner-row {
    display: flex;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

/* .partners-section .partner-row.reverse {
    flex-direction: row-reverse;
} */

.partners-section .partner-content {
    padding: 45px;
    flex: 1;
}

.partners-section .partner-content h3 {
    font-weight: 800;
    color: var(--blue);
    margin-top: 10px;
}

.partners-section .partner-content ul {
    padding-left: 18px;
    margin-top: 15px;
}

.partners-section .partner-content li {
    margin-bottom: 8px;
}

.partners-section .partner-content .note {
    background: #fff7d6;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 20px;
}

.partners-section .partner-visual {
    flex: 1;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.partner-visual i {
    font-size: 46px;
    margin-bottom: 12px;
}

.partner-visual.blue {
    background: linear-gradient(135deg, #4338ca, #373272);
}

.partner-visual.red {
    background: linear-gradient(135deg, #e63946, #d12427);
}

/* ================= VALUES ================= */
.values-section {
    padding: 110px 0;
}

.values-section h2 {
    font-weight: 800;
}

.values-section .value-card {
    padding: 40px 30px;
    border-radius: 22px;
    text-align: center;
    transition: all 0.3s ease;
}

.values-section .value-card:hover {
    transform: translateY(-6px);
}

.value-card.blue {
    background: #eef2ff;
}

.value-card.green {
    background: #ecfdf5;
}

.value-card.orange {
    background: #fff7ed;
}

.value-card i {
    font-size: 34px;
    margin-bottom: 14px;
}

/* ================= AFTERSALES ================= */
.aftersales-section {
    background: linear-gradient(135deg, #312e81, #373272);
    color: #fff;
    padding: 110px 0;
}

.aftersales-section h2 {
    font-weight: 800;
}

.aftersales-section .cta-note {
    background: rgba(255, 255, 255, 0.12);
    padding: 16px 18px;
    border-radius: 10px;
    margin-top: 25px;
    font-weight: 600;
}

.aftersales-section .metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.aftersales-section .metric {
    background: rgba(255, 255, 255, 0.9);
    color: var(--blue);
    padding: 26px;
    border-radius: 18px;
    text-align: center;
    font-weight: 700;
}

/* ================= FINAL CTA ================= */
.final-cta {
    padding: 100px 0;
}

.final-cta h2 {
    font-weight: 800;
    color: var(--blue);
}

.final-cta .btn {
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .partner-row,
    .partner-row.reverse {
        flex-direction: column;
    }

    section {
        padding: 45px 0 !important;
    }
}