/* ==========================================================================
   Spectrum Availability Report landing page
   Brand: Nunito | Action #1F64FF (interactive only) | Navy #0A115E | Body #555
   One canvas, one card component, one rhythm.
   ========================================================================== */

.sa-report-page {
    font-family: 'Nunito', sans-serif;
    color: #555;
    background: #f5f7fb;            /* one continuous light canvas */
    --sa-section-pad: 76px;
    --sa-title-gap: 14px;
    --sa-lead-gap: 44px;
    --sa-card-gap: 24px;
}

.sa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   SHARED ITEM CARD — one component for hero points, Why, How, Spectrum
   ========================================================================== */
.sa-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
    padding: 28px 26px;
    background: #fff;
    border: 1px solid #e7ebf3;
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(10, 17, 94, 0.06);
}

.sa-item__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #0A115E;            /* navy = decorative badge */
    color: #fff;
}

.sa-item__badge .material-icons { font-size: 26px; line-height: 1; }
.sa-item__badge--num { font-weight: 700; font-size: 22px; }
.sa-item__title { font-weight: 700; font-size: 19px; color: #0A115E; margin: 0; }
.sa-item__text { font-weight: 300; font-size: 15px; line-height: 1.55; color: #555; margin: 0; }

/* badge-less variant (band tiles) — centered label + range */
.sa-item--plain { align-items: center; text-align: center; gap: 8px; padding: 24px 20px; }

/* shared grids so column gaps match everywhere */
.sa-item-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sa-card-gap, 24px); }
.sa-item-grid--3 { grid-template-columns: repeat(3, 1fr); }
.sa-item-grid--4 { grid-template-columns: repeat(4, 1fr); }
.sa-item-grid--1 { grid-template-columns: 1fr; }

/* --------------------------------------------------------------------------
   HERO (split): copy left, form card right, over tower + blue gradient
   -------------------------------------------------------------------------- */
.sa-hero {
    position: relative;
    background-color: #0A115E;
    background-image:
        linear-gradient(95deg, rgba(10, 17, 94, 0.92) 0%, rgba(19, 57, 145, 0.82) 42%, rgba(31, 100, 255, 0.42) 70%, rgba(31, 100, 255, 0.10) 100%),
        url(https://www.selectspectrum.com/assets/images/tower_.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 128px 0 120px;          /* bottom padding = the fade transition zone */
}

/* soften the navy hero -> light canvas seam (navy/canvas fade, never action blue) */
.sa-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;                   /* matches hero bottom padding, so it blends only the empty zone below the cards */
    background: linear-gradient(to bottom, rgba(245, 247, 251, 0) 0%, rgba(245, 247, 251, 0.55) 50%, rgba(245, 247, 251, 1) 100%);
    pointer-events: none;
}

.sa-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: stretch;
    gap: 56px;
}

.sa-hero__copy {
    flex: 1 1 50%;
    color: #fff;
    padding-top: 6px;
    display: flex;
    flex-direction: column;
}

.sa-hero__copy h1 {
    font-weight: 200;
    font-size: 50px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 18px;
}

.sa-hero__sub {
    font-weight: 300;
    font-size: 19px;
    line-height: 1.5;
    color: #fff;
    max-width: 34em;
    margin: 0 0 30px;
}

.sa-hero__credential {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 20px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.sa-hero__credential .material-icons {
    font-size: 18px;
    flex: 0 0 auto;
}

/* auto-top margin pushes the eyebrow + value cards to the bottom of the column
   so the left fills the taller form card — H1/subhead stay pinned at the top
   (no gap above the headline). */
.sa-hero__eyebrow {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin: 40px 0 16px;
}

.sa-hero__points {
    gap: 16px;
}

.sa-item--hero {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.sa-item--hero .sa-item__badge {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.16);
}

.sa-item--hero .sa-item__title {
    color: #fff;
    margin: 0 0 3px;
}

.sa-item--hero .sa-item__text {
    color: rgba(255, 255, 255, 0.85);
}

/* form card */
.sa-hero__form {
    flex: 1 1 50%;
    display: flex;
    justify-content: flex-end;
}

.sa-form-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 18px 50px rgba(10, 17, 94, 0.28);
    padding: 32px 34px 28px;
    width: 100%;
    max-width: 540px;
    text-align: left;
}

.sa-form-card__title {
    font-weight: 700;
    font-size: 26px;
    color: #0A115E;
    margin: 0 0 8px;
}

.sa-form-card__hint {
    font-size: 15px;
    font-weight: 400;
    color: #555;
    margin: 0 0 22px;
}

/* Reserve close to the real HubSpot iframe height to minimize layout shift. */
.request-form-container {
    min-height: 700px;
}

/* Defensive on-brand overrides for the embedded HubSpot form. */
.sa-form-card .hs-form-frame {
    font-family: 'Nunito', sans-serif;
}

.sa-form-card .hs-button,
.sa-form-card input[type="submit"] {
    background-color: #1F64FF !important;
    border-color: #1F64FF !important;
    color: #fff !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
}

.sa-form-card .hs-button:hover,
.sa-form-card input[type="submit"]:hover {
    background-color: #133991 !important;
    border-color: #133991 !important;
}

.sa-form-card .hs-button:focus-visible,
.sa-form-card input[type="submit"]:focus-visible {
    outline: 3px solid #0A115E;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px #fff;
}

/* --------------------------------------------------------------------------
   Content sections — one rhythm on the shared canvas
   -------------------------------------------------------------------------- */
.sa-section {
    padding: var(--sa-section-pad) 0;
     padding-top: 75px;
    
}

.sa-section__title {
    font-weight: 200;
    font-size: 40px;
    color: #0A115E;
    text-align: center;
    margin: 0 0 var(--sa-title-gap);
}

.sa-section__lead {
    text-align: center;
    font-size: 19px;
    font-weight: 300;
    color: #555;
    max-width: 640px;
    margin: 0 auto var(--sa-lead-gap);
    margin-top:50px;
    margin:50px auto;
}

/* "Spectrum across every band" — keep a gap before the secondary CTA button */
.sa-bands .sa-item-grid {
    margin-bottom: 28px;
}

.sa-bands__cta {
    text-align: center;
    margin: 50px auto 75px;
    
}

.sa-bands__cta a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border: 1.5px solid #1F64FF;
    border-radius: 6px;
    color: #1F64FF;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: background-color .15s ease, color .15s ease;
}

.sa-bands__cta a:hover {
    background-color: #1F64FF;
    color: #fff;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

/* Tablet & smaller: stack the hero; collapse the shared grids */
@media only screen and (max-width: 960px) {
    .sa-hero__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 36px;
    }

    .sa-hero__copy {
        padding-top: 0;
        max-width: 640px;
        margin: 0 auto;
        width: 100%;
    }

    .sa-hero__copy h1 {
        font-size: 40px;
    }

    .sa-hero__eyebrow {
        margin-top: 8px;          /* reset auto-top when stacked */
    }

    .sa-hero__form {
        justify-content: center;
    }

    .sa-form-card {
        max-width: 600px;
        margin: 0 auto;
    }

    .sa-item-grid--3 {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .sa-item-grid--4 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 560px;
        margin: 0 auto;
    }
}

/* Phone */
@media only screen and (max-width: 600px) {
    .sa-report-page {
        --sa-section-pad: 52px;
        --sa-lead-gap: 34px;
    }

    .sa-hero {
        padding: 104px 0 48px;
    }

    .sa-hero__copy h1 {
        font-size: 32px;
    }

    .sa-hero__sub {
        font-size: 18px;
    }

    .sa-form-card {
        padding: 28px 22px 24px;
    }

    .sa-section__title {
        font-size: 32px;
    }

    .sa-item-grid--4 {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
}

/* Respect reduced-motion (page-scoped; won't touch shared chrome) */
@media (prefers-reduced-motion: reduce) {
    .sa-report-page .ellipse.one,
    .sa-report-page .ellipse.two,
    .sa-report-page .ellipse.three {
        animation: none !important;
    }

    .sa-report-page img {
        transition: none !important;
    }
}
