.why {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--soft-aqua) 0%, var(--cream) 100%);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}

.benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(0, 79, 95, 0.08);
    transition: transform .18s ease, box-shadow .18s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px -24px rgba(0, 79, 95, 0.28);
}

.benefit-card img {
    margin-bottom: 16px;
}

.monitor-tags-ctas {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 39px;
    justify-content: center;
}

.benefit-card h3 {
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 13.8px;
    color: #516774;
}

.monitor-panel {
    background: var(--navy);
    border-radius: 28px;
    padding: 52px 48px;
    color: #fff;
}

.monitor-panel .mp-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.monitor-panel h3 {
    font-family: 'Oxygen', sans-serif;
    color: #fff;
    font-size: 24px;
    margin-bottom: 8px;
}

.monitor-panel .mp-head p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14.5px;
    max-width: 420px;
}

.monitor-panel .sensor-strip {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 20px;
}

.monitor-panel .sensor-strip img {
    border-radius: 10px;
    height: auto;
    width: 100%;
}

.monitor-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.monitor-tags span {
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 8px 14px;
    border-radius: 100px;
}

@media (max-width:900px) {
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .monitor-panel {
        padding: 34px 24px;
    }

    .why {
        padding: 50px 0;
    }
}

@media (max-width:575px) {
    .benefit-grid {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }

    .monitor-panel .mp-head {
        margin-bottom: 20px;
    }

    .monitor-tags span {
        padding: 8px;
    }

    .monitor-panel {
        padding: 15px;
        border-radius: 10px;
    }

    .benefit-card {
        padding: 15px;
        border-radius: 10px;
    }

    .monitor-panel .sensor-strip {
        padding: 10px;
        border-radius: 10px;
    }
}

.gc-brochure-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.gc-brochure-modal.is-open {
    display: block;
}

.gc-brochure-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 25, 33, 0.55);
    backdrop-filter: blur(2px);
}

.gc-brochure-modal__panel {
    position: relative;
    z-index: 1;
    max-width: 480px;
    width: calc(100% - 32px);
    margin: 60px auto;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 30px 60px -20px rgba(0, 25, 33, 0.4);
}

.gc-brochure-modal__panel h3 {
    font-family: 'Oxygen', sans-serif;
    color: var(--navy);
    font-size: 22px;
    margin-bottom: 8px;
}

.gc-brochure-modal__panel>p {
    font-size: 14px;
    color: #516774;
    margin-bottom: 20px;
}

.gc-brochure-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 79, 95, 0.08);
    color: var(--navy);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.gc-brochure-modal__close:hover {
    background: rgba(0, 79, 95, 0.16);
}

/* CF7 field spacing inside the modal */
.gc-brochure-modal__panel .wpcf7-form p {
    margin-bottom: 14px;
}

.gc-brochure-modal__panel .wpcf7-form input[type="text"],
.gc-brochure-modal__panel .wpcf7-form input[type="email"],
.gc-brochure-modal__panel .wpcf7-form input[type="tel"],
.gc-brochure-modal__panel .wpcf7-form select {
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0, 79, 95, 0.18);
    font-size: 14px;
}

.gc-brochure-modal__panel .wpcf7-form .wpcf7-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #516774;
}

.gc-brochure-modal__panel .wpcf7-form input[type="submit"] {
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 12px 28px;
    font-weight: 700;
    cursor: pointer;
    transition: 400ms;
    font-size: 20px;
    font-family: 'Oxygen', sans-serif;
    line-height: normal;
}
.gc-brochure-modal__panel .wpcf7-form input[type="submit"]:hover{background-color: var(--aqua);}

body.gc-modal-open {
    overflow: hidden;
}

.gc-brochure-modal__panel .wpcf7-form .wpcf7-checkbox span.wpcf7-list-item.first.last {
    margin: 10px 0 20px 0;
    font-size: 16px;
    display: flex;
    align-items: start;
}

.gc-brochure-modal__panel .wpcf7-form .wpcf7-checkbox input[type="checkbox"] {
    margin: 2px 0 0 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.gc-brochure-modal__panel span.wpcf7-form-control-wrap span.wpcf7-list-item.first.last span.wpcf7-list-item-label {
    width: calc(100% - 20px);
    padding: 0 0 0 10px;
}

.gc-brochure-modal__panel .wpcf7-form p > a {
    color: var(--navy);
    font-weight: 700;
}

.gc-brochure-modal__panel .wpcf7-form p > a:hover {
    color: var(--aqua);
}

@media (max-width: 575px) {
    .gc-brochure-modal__panel {
        padding: 24px 20px;
        margin: 30px auto;
    }
}