/* ====== Solutions page — single-screen hero with two equal panels ====== */
.sol-hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(var(--nav-height) + 12px) 0 44px;
    display: flex;
    background: var(--dark-band);
}

.sol-hero-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
}

.sol-header {
    flex: 0 0 auto;
    margin-bottom: 18px;
}

.sol-eyebrow-top {
    color: var(--accent-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.sol-page-title {
    font-family: 'Archivo', 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(23px, 2.4vw, 33px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 9px 0 0;
    max-width: 22ch;
}

/* two equal-height rows fill the remaining hero space */
.sol-stack {
    flex: 1 1 auto;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 48px;
    min-height: 0;
}

/* one row = wide panel + narrow side-note */
.sol-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 50px;
    align-items: stretch;
    min-height: 0;
}

.sol-block-reverse {
    grid-template-columns: 280px minmax(0, 1fr);
}

/* the coloured panel — both identical via equal rows/cols */
.sol-panel {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    min-height: 0;
}

.sol-panel-blue {
    background: var(--accent);
}

.sol-panel-navy {
    background: var(--secondary);
}

.sol-media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 0;
}

.sol-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sol-tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--secondary);
    padding: 7px 15px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
}

.sol-content {
    align-self: center;
    padding: 12px 26px;
    min-height: 0;
}

.sol-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.sol-eyebrow::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 2px;
    background: currentColor;
    margin-right: 11px;
}

.sol-heading {
    font-family: 'Archivo', 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(19px, 1.75vw, 26px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 9px 0 10px;
}

.sol-text {
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
    max-width: 46ch;
    color: rgba(255, 255, 255, 0.85);
}

.sol-text em {
    font-style: normal;
    font-weight: 600;
}

.sol-panel-blue .sol-eyebrow {
    color: rgba(255, 255, 255, 0.92);
}

.sol-panel-blue .sol-text em {
    color: #fff;
    font-weight: 700;
}

.sol-panel-navy .sol-eyebrow {
    color: var(--accent-light);
}

.sol-panel-navy .sol-text em {
    color: var(--accent-light);
}

/* side-note column */
.sol-aside {
    align-self: center;
    text-align: center;
}

.sol-aside p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
    margin: 0 0 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.sol-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sol-btn:visited {
    color: #fff;
}

.sol-btn:hover {
    background: #fff;
    border-color: #fff;
    color: var(--secondary);
    transform: translateY(-2px);
}

.sol-btn i,
.sol-btn svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.2;
    transition: transform 0.2s ease;
}

.sol-btn:hover i,
.sol-btn:hover svg {
    transform: translateX(3px);
}

/* ---- tablet / mobile: revert to natural scrolling flow ---- */
@media (max-width: 1024px) {
    .sol-hero {
        min-height: 0;
        display: block;
        padding: calc(var(--nav-height) + 44px) 0 64px;
    }

    .sol-hero-inner {
        display: block;
    }

    .sol-header {
        margin-bottom: 36px;
    }

    .sol-page-title {
        font-size: clamp(28px, 5vw, 40px);
        max-width: 16ch;
    }

    .sol-stack {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .sol-block,
    .sol-block-reverse {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .sol-block-reverse .sol-aside {
        order: -1;
    }

    .sol-media {
        min-height: 280px;
    }

    .sol-content {
        align-self: stretch;
    }

    .sol-aside {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 14px;
        text-align: left;
    }

    .sol-aside p {
        border-bottom: none;
        padding-bottom: 0;
        margin: 0;
        max-width: 60%;
    }
}

@media (max-width: 760px) {
    .sol-panel {
        grid-template-columns: 1fr;
    }

    .sol-panel-navy .sol-content {
        order: 2;
    }

    .sol-media {
        min-height: 210px;
    }

    .sol-content {
        padding: 20px 18px 22px;
    }

    .sol-aside {
        flex-direction: column;
        align-items: flex-start;
    }

    .sol-aside p {
        max-width: none;
    }
}
