/* =====================================================
   PROGRAMS & KITTING PAGE
===================================================== */

.prog-hero,
.prog-programs,
.prog-features,
.prog-advantage,
.prog-cta {
    --primary: #2453ff;
    --primary-dark: #123de3;
    --navy: #071b63;
    --text: #475467;
    --muted: #6b7b9c;
    --border: #e6eefb;
    --bg: #f6faff;
    --chip: #eef4ff;
}

/* check-mark bullets (shared) */
.prog-highlights,
.prog-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .prog-highlights li,
    .prog-bullets li {
        position: relative;
        padding-left: 28px;
        color: var(--text);
        line-height: 1.5;
    }

        .prog-highlights li::before,
        .prog-bullets li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 2px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--chip) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232453ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
        }

/* shared buttons */
.prog-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.prog-btn-primary,
.prog-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .25s ease;
}

.prog-btn-primary {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}

    .prog-btn-primary:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
        color: #fff;
    }

.prog-btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

    .prog-btn-outline:hover {
        background: var(--primary);
        color: #fff;
    }

/* =====================================================
   SECTION HEAD
===================================================== */
.prog-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

    .prog-section-head h2 {
        font-size: 32px;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 12px;
    }

    .prog-section-head p {
        font-size: 16px;
        color: var(--text);
        line-height: 1.6;
        margin: 0;
    }

/* =====================================================
   SECTION 1 — HERO
===================================================== */
.prog-hero {
    padding: 48px 0 56px;
}

.prog-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
}

.prog-tag {
    display: inline-block;
    background: var(--chip);
    color: var(--primary);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: 18px;
}

.prog-hero-content h1 {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.5px;
    margin-bottom: 20px;
}

    .prog-hero-content h1 span {
        color: var(--primary);
    }

.prog-hero-lead {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 14px;
}

.prog-hero-sub {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

.prog-highlights {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

    .prog-highlights li {
        font-size: 15px;
        font-weight: 500;
        color: var(--navy);
    }

.prog-hero-media img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(7, 27, 99, .12);
    display: block;
}

/* =====================================================
   SECTION 2 — PROGRAM CARDS
===================================================== */
.prog-programs {
    padding: 56px 0;
    background: var(--bg);
}

.prog-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.prog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .prog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 44px rgba(7, 27, 99, .12);
    }

.prog-card-media {
    aspect-ratio: 5 / 3;
    overflow: hidden;
    background: var(--chip);
}

    .prog-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.prog-card-body {
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
}

.prog-card-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.prog-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 10px;
}

.prog-card-body > p {
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 16px;
}

.prog-card .prog-bullets {
    display: grid;
    gap: 9px;
}

    .prog-card .prog-bullets li {
        font-size: 13px;
    }

/* =====================================================
   SECTION 3 — FEATURES
===================================================== */
.prog-features {
    padding: 60px 0;
}

.prog-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 48px;
}

    .prog-feature-row:last-child {
        margin-bottom: 0;
    }

    .prog-feature-row.reverse .prog-feature-media {
        order: 2;
    }

.prog-feature-media img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(7, 27, 99, .10);
    display: block;
}

.prog-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--chip);
    color: var(--primary);
    margin-bottom: 16px;
}

    .prog-feature-icon svg {
        width: 26px;
        height: 26px;
    }

.prog-feature-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 12px;
}

.prog-feature-text > p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 18px;
}

.prog-feature-text .prog-bullets {
    display: grid;
    gap: 11px;
}

    .prog-feature-text .prog-bullets li {
        font-size: 14.5px;
    }

/* =====================================================
   SECTION 4 — FINAL CTA
===================================================== */
.prog-cta {
    padding: 20px 0 60px;
}

.prog-cta-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, #eef4ff 0%, #e3ecff 100%);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 48px 52px;
}

.prog-cta-content h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 540px;
}

.prog-cta-content > p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 14px;
    max-width: 560px;
}

.prog-cta-close {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 26px !important;
}

.prog-cta-media {
    display: flex;
    justify-content: center;
}

    .prog-cta-media img {
        width: 100%;
        max-width: 320px;
        height: auto;
        display: block;
    }

/* =====================================================
   SECTION — THE WATERVERIFY ADVANTAGE
===================================================== */
.prog-advantage {
    padding: 10px 0 60px;
}

.prog-advantage-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.prog-advantage-item {
    text-align: center;
    padding: 10px 22px;
    border-left: 1px solid var(--border);
}

    .prog-advantage-item:first-child {
        border-left: none;
    }

.prog-advantage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--chip);
    color: var(--primary);
    margin-bottom: 16px;
}

    .prog-advantage-icon svg {
        width: 28px;
        height: 28px;
    }

.prog-advantage-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 8px;
}

.prog-advantage-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1100px) {

    .prog-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

        .prog-hero-media {
            order: -1;
        }

    .prog-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prog-advantage-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 0;
    }

        .prog-advantage-item {
            border-left: none;
        }

    .prog-feature-row,
    .prog-feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }

        .prog-feature-row.reverse .prog-feature-media {
            order: -1;
        }

        .prog-feature-row .prog-feature-media {
            order: -1;
        }

    .prog-cta-wrapper {
        grid-template-columns: 1fr;
    }

        .prog-cta-media {
            order: -1;
        }

        .prog-cta-media img {
            max-width: 220px;
        }
}

@media (max-width: 700px) {

    .prog-hero-content h1 {
        font-size: 34px;
    }

    .prog-section-head h2 {
        font-size: 26px;
    }

    .prog-card-grid {
        grid-template-columns: 1fr;
    }

    .prog-advantage-grid {
        grid-template-columns: 1fr;
    }

    .prog-feature-text h3 {
        font-size: 21px;
    }

    .prog-cta-wrapper {
        padding: 32px 24px;
    }

        .prog-cta-content h2 {
            font-size: 25px;
        }

    .prog-btn-group {
        flex-direction: column;
    }

        .prog-btn-primary,
        .prog-btn-outline {
            width: 100%;
        }
}
