﻿:root {
    --bg-100: white;
    --bg-90: #e7ecf8;
    --accent-blue: #1769ff;
    --accent-yellow: #ffd24a;
    --muted: hwb(210 9% 91%);
    --glass: rgba(255, 255, 255, 0.04);
    --radius: 12px;
 /*   --max-width: 1100px;*/
    --gap: 1.1rem;
}



#dv {
    /*padding: clamp(1rem, 3vw, 2.5rem);*/
    display: flex;
    justify-content: center;
}
/*
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}*/

/* HERO */
.hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2rem;
    align-items: center;
   /* margin-bottom: 2rem;*/
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        order: -1;
    }
}

@media (max-width: 600px) {
    .hero {
        gap: 1.5rem;
    }
}

.hero-left,
.hero-right {
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-left {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(6px);
}

.hero-right {
    background: linear-gradient(180deg, rgba(23, 104, 255, 0.32), rgba(171, 209, 239, 0.674));
    color: #366bef;
}

.kicker {
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
    background: linear-gradient(90deg, #0094ff, rgba(31, 154, 236, 0.888));
    color: var(--bg-100);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.2px;
    font-size: 0.82rem;
}

h1 {
    margin: 0.6rem 0 0.3rem 0;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    line-height: 1.1;
    color: #0094ff;
}

p.lead {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.hero-cta {
    margin-top: 1.1rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.btn {
    border: 0;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.bp {
    background: linear-gradient(90deg, var(--accent-blue), #0094ff);
    color: #03102a;
    box-shadow: 0 8px 24px rgba(23, 105, 255, 0.14);
}

.btn-outline {
    background: transparent;
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Stats */
.stat {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 0.6rem;
}

.stat-ico {
    min-width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-yellow));
    font-weight: 800;
    color: white;
    font-size: 1.1rem;
}

.stat p {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.stat small {
    display: block;
    color: white;
    font-weight: 600;
    margin-top: 0.2rem;
    font-size: 0.82rem;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.9rem;
    margin: 1.5rem 0;
}

.feature {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 0.9rem;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.03);
}

    .feature svg {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .feature h4 {
        margin: 0;
        font-size: 1rem;
        color: #0094ff;
    }

    .feature p {
        margin: 0.3rem 0 0;
        color: var(--muted);
        font-size: 0.88rem;
    }

/* Programs */
.prog-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .prog-row {
        flex-direction: row;
        align-items: center;
    }

        .prog-row:nth-child(even) {
            flex-direction: row-reverse;
        }
}

.prog-step,
.prog-body {
    flex: 1;
}

    .prog-step img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .prog-body h3 {
        color: #0094ff;
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .prog-body p {
        font-size: 1rem;
        color: #333;
        text-align: justify;
    }

/* Facts */
.facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.8rem;
    margin-top: 1.25rem;
}

.fact {
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.03);
}

    .fact h4 {
        margin: 0;
        font-size: 1.05rem;
        color: #0094ff;
    }

    .fact p {
        margin: 0.3rem 0 0;
        color: var(--muted);
        font-size: 0.9rem;
    }

/* Toggle Panel */
.details {
    margin-top: 1.5rem;
}

.toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: var(--glass);
    cursor: pointer;
    color: #0094ff;
    font-size: 1.1rem;
    font-weight: 600;
}

    .toggle[aria-expanded="true"] {
        background: linear-gradient(90deg, rgba(23, 105, 255, 0.04), rgba(255, 210, 74, 0.02));
    }

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-top: 0.6rem;
    color: var(--muted);
}

    .panel.open {
        max-height: 800px;
        padding: 1rem;
    }

/* CTA */
.cta {
    margin-top: 1.5rem;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: linear-gradient(90deg, rgba(23, 105, 255, 0.06), rgba(255, 210, 74, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

@media (min-width: 600px) {
    .cta {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

        .cta .right {
            text-align: right;
        }
}

.cta h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #0094ff;
}

.cta p {
    margin: 0.4rem 0 0;
    color: var(--muted);
}

.phone-chip {
    background: #05102a;
    color: var(--accent-yellow);
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin: 3rem 0 2rem;
}

    .section-header h3 {
        font-size: 1.8rem;
        color: #0094ff;
        font-weight: 700;
    }

/* Utilities */
.text-black {
    color: #000 !important;
}

.text-primary {
    color: #0094ff !important;
}

.fw {
    font-weight: bold;
}

.shadow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
