/* =====================================================
   WHY WATERVERIFY PAGE
===================================================== */

.wv-hero,
.wv-why,
.wv-industries,
.wv-program,
.wv-advantage,
.wv-cta {
    --primary: #2453ff;
    --primary-dark: #123de3;
    --navy: #071b63;
    --text: #475467;
    --muted: #6b7b9c;
    --border: #e6eefb;
    --bg: #f6faff;
    --chip: #eef4ff;
}

.wv-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.wv-eyebrow {
    display: inline-block;
    background: var(--chip);
    color: var(--primary);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.wv-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px;
}

    .wv-section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: var(--navy);
        letter-spacing: -0.5px;
        margin: 0 0 12px;
    }

    .wv-section-head p {
        font-size: 16px;
        color: var(--muted);
        line-height: 1.7;
        margin: 0;
    }

/* shared check/icon badge */
.wv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eaf1ff, #dbe7ff);
    color: var(--primary);
    margin-bottom: 16px;
}

    .wv-icon svg {
        width: 26px;
        height: 26px;
    }

/* buttons */
.wv-btn-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.wv-btn-primary,
.wv-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.wv-btn-primary {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}

    .wv-btn-primary:hover {
        background: var(--primary-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 12px 26px rgba(36,83,255,.28);
    }

.wv-btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

    .wv-btn-outline:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-2px);
    }

/* =====================================================
   HERO
===================================================== */
.wv-hero {
    padding: 40px 0 56px;
    background: linear-gradient(180deg, #eef4ff 0%, #f8fbff 100%);
}

.wv-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
}

.wv-hero-content h1 {
    font-size: 46px;
    line-height: 1.12;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
    margin: 0 0 18px;
}

    .wv-hero-content h1 span {
        color: var(--primary);
        display: block;
    }

.wv-hero-content p {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--text);
    margin: 0 0 28px;
    max-width: 520px;
}

.wv-hero-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 14px 26px;
    box-shadow: 0 20px 50px rgba(7,27,99,.08);
}

.wv-vp-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

    .wv-vp-item:last-child {
        border-bottom: none;
    }

.wv-vp-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eaf1ff, #dbe7ff);
    color: var(--primary);
}

    .wv-vp-icon svg {
        width: 22px;
        height: 22px;
    }

.wv-vp-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin: 2px 0 5px;
}

.wv-vp-text p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0;
    max-width: none;
}

/* =====================================================
   WHY ORGANIZATIONS CHOOSE
===================================================== */
.wv-why {
    padding: 70px 0;
}

.wv-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.wv-why-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .wv-why-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(7,27,99,.10);
        border-color: #d4e1fb;
    }

    .wv-why-card h3 {
        font-size: 17px;
        font-weight: 700;
        color: var(--navy);
        margin: 0 0 10px;
    }

    .wv-why-card p {
        font-size: 13.5px;
        line-height: 1.6;
        color: var(--muted);
        margin: 0;
    }

/* =====================================================
   BUILT FOR EVERY INDUSTRY
===================================================== */
.wv-industries {
    padding: 70px 0;
    background: var(--bg);
}

.wv-ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wv-ind-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .wv-ind-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(7,27,99,.10);
    }

.wv-ind-media {
    aspect-ratio: 5 / 3;
    overflow: hidden;
    background: #eaf1ff;
}

    .wv-ind-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.wv-ind-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .wv-ind-body h3 {
        font-size: 17px;
        font-weight: 700;
        color: var(--navy);
        margin: 0 0 14px;
    }

.wv-ind-list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}

    .wv-ind-list li {
        position: relative;
        padding-left: 24px;
        margin-bottom: 9px;
        font-size: 13.5px;
        line-height: 1.5;
        color: var(--text);
    }

        .wv-ind-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 6px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--chip);
            box-shadow: inset 0 0 0 2px var(--primary);
        }

        .wv-ind-list li::after {
            content: "";
            position: absolute;
            left: 4.5px;
            top: 9.5px;
            width: 5px;
            height: 2.5px;
            border-left: 2px solid var(--primary);
            border-bottom: 2px solid var(--primary);
            transform: rotate(-45deg);
        }

.wv-learn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

    .wv-learn svg {
        width: 16px;
        height: 16px;
        transition: transform .25s ease;
    }

    .wv-learn:hover svg {
        transform: translateX(4px);
    }

/* =====================================================
   BUILT FOR THE PROGRAM YOU NEED TO RUN
===================================================== */
.wv-program {
    padding: 70px 0;
}

    .wv-program > .wv-container {
        background: linear-gradient(135deg, #071b63, #16307d);
        border-radius: 28px;
        padding: 56px;
        color: #fff;
    }

.wv-program-head {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

    .wv-program-head h2 {
        font-size: 32px;
        font-weight: 800;
        letter-spacing: -0.5px;
        margin: 0 0 16px;
    }

    .wv-program-head p {
        font-size: 15.5px;
        line-height: 1.75;
        color: rgba(255,255,255,.82);
        margin: 0;
    }

.wv-program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 44px;
}

.wv-program-item {
    text-align: left;
}

.wv-program-item .wv-icon {
    background: rgba(255,255,255,.12);
    color: #9fc0ff;
}

.wv-program-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.wv-program-item p {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255,255,255,.74);
    margin: 0;
}

.wv-program-cta {
    text-align: center;
}

    .wv-program-cta .wv-btn-primary {
        background: #fff;
        color: var(--navy);
        border-color: #fff;
    }

        .wv-program-cta .wv-btn-primary:hover {
            background: #eaf1ff;
            color: var(--navy);
        }

/* =====================================================
   THE WATERVERIFY ADVANTAGE
===================================================== */
.wv-advantage {
    padding: 20px 0 70px;
}

.wv-advantage-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.wv-advantage-item {
    text-align: center;
    padding: 10px 22px;
    border-left: 1px solid var(--border);
}

    .wv-advantage-item:first-child {
        border-left: none;
    }

.wv-advantage-item .wv-icon {
    margin-bottom: 16px;
}

.wv-advantage-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin: 0 0 8px;
}

.wv-advantage-item p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0;
}

/* =====================================================
   CLOSING CTA BAND
===================================================== */
.wv-cta {
    padding: 0 0 70px;
}

.wv-cta-wrapper {
    background: #071a52;
    border-radius: 28px;
    padding: 50px 48px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.wv-cta-left h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 0 12px;
}

.wv-cta-left p {
    color: rgba(255,255,255,.85);
    font-size: 15px;
    margin: 0 0 26px;
}

.wv-cta-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.wv-trust-item {
    text-align: center;
    padding: 0 16px;
    border-left: 1px solid rgba(255,255,255,.15);
}

    .wv-trust-item:first-child {
        border-left: none;
    }

.wv-trust-item .wv-trust-icon {
    display: inline-flex;
    color: #fff;
    margin-bottom: 12px;
}

    .wv-trust-item .wv-trust-icon svg {
        width: 32px;
        height: 32px;
    }

.wv-trust-item h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
}

.wv-trust-item p {
    color: rgba(255,255,255,.7);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.wv-cta-left .wv-btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,.5);
}

    .wv-cta-left .wv-btn-outline:hover {
        background: #fff;
        color: var(--navy);
        border-color: #fff;
    }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1100px) {
    .wv-hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .wv-why-grid { grid-template-columns: repeat(2, 1fr); }
    .wv-ind-grid { grid-template-columns: repeat(2, 1fr); }
    .wv-program-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .wv-advantage-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 0; }
    .wv-advantage-item { border-left: none; }
    .wv-cta-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .wv-hero-content h1 { font-size: 34px; }
    .wv-section-head h2,
    .wv-program-head h2 { font-size: 26px; }
    .wv-why-grid,
    .wv-ind-grid,
    .wv-program-grid,
    .wv-advantage-grid,
    .wv-cta-right { grid-template-columns: 1fr; }
    .wv-program > .wv-container { padding: 36px 24px; }
    .wv-btn-group { flex-direction: column; }
    .wv-btn-primary,
    .wv-btn-outline { justify-content: center; }
}
