:root {
    --bg: #eef4fb;
    --surface: #ffffff;
    --surface-strong: #e8f0fb;
    --ink: #112b59;
    --muted: #526482;
    --line: #cfdbef;
    --brand: #2a84ee;
    --brand-dark: #1f5fb7;
    --brand-deep: #16376f;
    --brand-soft: #3490f3;
    --gradient-blue: linear-gradient(135deg, #1b5aa8 0%, #246ecc 54%, #3490f3 100%);
    --gradient-blue-wide: linear-gradient(120deg, #1b5aa8 0%, #246ecc 52%, #3490f3 100%);
    --accent: #112b59;
    --shadow: 0 18px 40px rgba(17, 43, 89, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', ui-sans-serif, system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 100;
    padding: 0.75rem 1rem;
    background: var(--ink);
    color: #fff;
}

.skip-link:focus {
    top: 1rem;
}

.shell {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(13, 27, 62, 0.08);
    box-shadow: 0 1px 12px rgba(13, 27, 62, 0.07);
}

.site-header__inner,
.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.site-kicker,
.section-tag,
.landing-card__label {
    margin: 0 0 0.4rem;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    height: 52px;
    width: auto;
    display: block;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.site-nav a {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    transition: background 0.15s, color 0.15s;
}

.site-nav a:hover {
    background: rgba(26, 120, 228, 0.08);
    color: var(--brand);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.15s;
}

.nav-toggle:hover {
    background: rgba(26, 120, 228, 0.08);
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
    transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.content-section,
.news-section {
    padding: 4.5rem 0;
}

.contact-section {
    padding: 5rem 0 4.5rem;
}

.content-section {
    background: var(--surface);
}

section#content {
    padding: 0;
    padding-top: 20px;
}

/* ── LANDING HERO ── */
.landing-section {
    padding: 0;
}

.landing-hero-wrap {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, #f8fbff 0%, #edf4fd 52%, #e4eefb 100%);
    overflow: hidden;
}

.landing-photo-wrap {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 58%;
    z-index: 1;
}

.landing-photo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #eef4fb 0%, rgba(238, 244, 251, 0.62) 34%, transparent 68%);
    z-index: 2;
}

.landing-a11y-badge {
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(180deg, #246ecc 0%, var(--brand-soft) 100%);
    border-radius: 0 0 0 12px;
    color: #fff;
    box-shadow: 0 4px 16px rgba(26, 110, 199, 0.4);
}

.landing-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 85%;
    display: block;
}

.landing-copy {
    position: relative;
    z-index: 3;
    padding: 4rem 0 7rem;
    max-width: 46%;
}

.landing-heading {
    margin: 0 0 1.5rem;
    line-height: 1.1;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
}

.landing-heading__dark {
    display: block;
    color: var(--ink);
}

.landing-heading__blue {
    display: block;
    color: var(--brand);
}

.landing-lead,
.section-heading p,
.content-html-block p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.landing-lead {
    margin: 0 0 2rem;
    max-width: 38ch;
}

.landing-cta {
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 999px;
}

/* ── FEATURES BAR ── */
.landing-features-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 1.25rem 0;
    background: transparent;
}

.landing-features-inner {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.landing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
}

.landing-feature__icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: 2px solid var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brand);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.55fr);
    gap: 3.25rem;
    align-items: start;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.8rem 1.3rem;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    font: inherit;
}

.button--primary {
    background: var(--gradient-blue);
    color: #fff;
    box-shadow: 0 14px 28px rgba(31, 95, 183, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: linear-gradient(135deg, #184d90 0%, #1f5fb7 52%, #2a84ee 100%);
}

.button--ghost {
    border-color: var(--brand);
    color: var(--brand);
    background: transparent;
}

.button--ghost:hover,
.button--ghost:focus-visible {
    background: rgba(26, 120, 228, 0.08);
}

.content-surface,
.form-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
}


.section-heading {
    max-width: 42rem;
    margin-bottom: 1.5rem;
}

.content-surface {
    padding: 2rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.news-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 1.4rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    box-shadow: var(--shadow);
}

.news-card__media {
    display: block;
    margin: -1.4rem -1.4rem 1.15rem;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #dfe9f7 0%, #eef4fb 100%);
}

.news-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.news-card:hover .news-card__image {
    transform: scale(1.03);
}

.news-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.news-card p {
    color: var(--muted);
    line-height: 1.6;
}

.news-card__meta,
.post-meta {
    margin-bottom: 0.8rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.news-card--empty {
    grid-column: 1 / -1;
}

.news-pagination {
    margin-top: 2rem;
}

.content-html-block h2 {
    margin-top: 0;
    font-size: 2rem;
}

.content-html-block {
    max-width: 52rem;
}

.contact-section {
    scroll-margin-top: 110px;
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 28%),
        linear-gradient(180deg, #edf4fd 0%, #dce9fa 100%);
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0 32%, transparent 32% 100%);
    pointer-events: none;
}

.contact-section .shell {
    position: relative;
    z-index: 1;
    width: min(1280px, calc(100% - 6rem));
}

.contact-section .section-heading {
    margin-bottom: 0;
}

.contact-section .section-tag {
    margin-bottom: 1rem;
}

.contact-section .section-heading h2 {
    margin: 0 0 1.5rem;
    max-width: 12ch;
    font-size: clamp(2.6rem, 3vw, 5rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.contact-section .section-heading p {
    max-width: 28rem;
    font-size: 1.15rem;
}

.form-panel {
    padding: 2.25rem;
    border-radius: 2rem;
    border: none;
    box-shadow: 0 30px 60px rgba(13, 27, 62, 0.12);
    overflow: hidden;
}

.form-notice {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    background: rgba(26, 120, 228, 0.10);
    color: var(--brand-dark);
}

.field {
    display: block;
    margin-bottom: 1.5rem;
}

.field span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.field input,
.field textarea {
    width: 100%;
    padding: 1.2rem 1.25rem;
    border: 1px solid #e8edf5;
    border-radius: 0;
    background: #fff;
    color: var(--ink);
    font: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.field input::placeholder,
.field textarea::placeholder {
    color: #6d7893;
}

.field input:focus,
.field textarea:focus,
.site-nav a:focus,
.button:focus {
    outline: 3px solid rgba(26, 120, 228, 0.35);
    outline-offset: 2px;
}

.field small {
    display: block;
    margin-top: 0.35rem;
    color: #9f2f2f;
}

.field textarea {
    min-height: 13rem;
    resize: vertical;
}

.field--honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.field__question-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
}

.field__question-label em {
    color: #c0392b;
    font-style: normal;
    margin-left: 0.15rem;
}

.button--full {
    width: 100%;
    min-height: 4.2rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer {
    position: relative;
    padding: 2.5rem 0 2rem;
    background:
        radial-gradient(circle at top right, rgba(54, 92, 148, 0.22), transparent 28%),
        linear-gradient(180deg, #11161f 0%, #080b10 100%);
    color: rgba(255, 255, 255, 0.88);
    overflow: hidden;
}

.site-footer::before,
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 260px;
    pointer-events: none;
    opacity: 0.45;
}

.site-footer::before {
    left: 0;
    background:
        radial-gradient(circle at left center, rgba(50, 118, 214, 0.12), transparent 56%),
        linear-gradient(90deg, rgba(29, 79, 150, 0.08), transparent 72%);
}

.site-footer::after {
    right: 0;
    background:
        radial-gradient(circle at right center, rgba(50, 118, 214, 0.12), transparent 56%),
        linear-gradient(270deg, rgba(29, 79, 150, 0.08), transparent 72%);
}

.site-footer .shell {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
}

.footer-tagline__heading {
    margin: 0 0 0.5rem;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 700;
    color: #fff;
    max-width: 36ch;
}

.footer-tagline__sub {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
}

.footer-contact-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.96);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.15s;
}

.footer-contact-item:hover {
    color: #fff;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 0 0 1.75rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-a11y {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-a11y__icon {
    color: #fff;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.footer-a11y__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(180deg, #246ecc 0%, var(--brand-soft) 100%);
    border-radius: 10px;
    color: #fff;
    flex-shrink: 0;
}

.footer-a11y__title {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.footer-a11y__desc {
    margin: 0;
    color: #fff;
    font-size: 0.82rem;
    line-height: 1.6;
}

.footer-logo-link {
    display: inline-flex;
    text-decoration: none;
    flex-shrink: 0;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 28px rgba(9, 23, 47, 0.16);
}

.footer-logo {
    height: 58px;
    width: auto;
    display: block;
    filter: none;
}

.post-page {
    padding: 4rem 0;
}

.content-page {
    padding-bottom: 4rem;
}

.content-page-hero {
    position: relative;
    overflow: hidden;
    background: var(--gradient-blue);
    color: #fff;
}

.content-page-hero__backdrop {
    position: absolute;
    inset: 0;
}

.content-page-hero__backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 43, 89, 0.76) 0%, rgba(27, 90, 168, 0.48) 46%, rgba(52, 144, 243, 0.16) 100%),
        linear-gradient(180deg, rgba(17, 43, 89, 0.08), rgba(17, 43, 89, 0.24));
}

.content-page-hero:has(.content-page-hero__image) .content-page-hero__backdrop::after {
    background:
        linear-gradient(90deg, rgba(9, 22, 46, 0.42) 0%, rgba(16, 52, 102, 0.18) 42%, rgba(52, 144, 243, 0.04) 100%),
        linear-gradient(180deg, rgba(9, 22, 46, 0.02), rgba(9, 22, 46, 0.12));
}

.content-page-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-page-hero__inner {
    position: relative;
    z-index: 1;
    min-height: 18rem;
    display: flex;
    align-items: flex-end;
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.content-page-hero__copy {
    max-width: 48rem;
}

.content-page-hero .section-tag,
.content-page-hero .post-excerpt {
    color: rgba(255, 255, 255, 0.8);
}

.content-page-hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.98;
}

.content-page-body {
    margin-top: -2.25rem;
    position: relative;
    z-index: 2;
}

.content-page-surface {
    padding: 2.5rem;
    border-radius: 1.75rem;
}

.content-page-surface .content-html-block {
    max-width: none;
}

.content-page-surface .content-html-block h2,
.content-page-surface .content-html-block ol,
.content-page-surface .content-html-block ul {
    width: 100%;
    max-width: none;
}

.post-article h1 {
    margin: 0 0 0.8rem;
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.post-excerpt {
    max-width: 50rem;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-cover {
    margin: 1.5rem 0 2rem;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.post-cover__image {
    width: 100%;
    max-height: 34rem;
    display: block;
    object-fit: cover;
}

@media (max-width: 860px) {
    .site-footer__inner,
    .contact-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .site-header__inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0.5rem 0 0.75rem;
        border-top: 1px solid var(--line);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        border-radius: 8px;
        padding: 0.65rem 0.85rem;
    }

    .landing-hero-wrap {
        min-height: 0;
        flex-direction: column;
    }

    .landing-photo-wrap {
        position: relative;
        width: 100%;
        height: 280px;
        flex-shrink: 0;
    }

    .landing-photo-wrap::before {
        background: linear-gradient(to bottom, #f0f4f9 0%, transparent 40%);
    }

    .landing-copy {
        max-width: 100%;
        padding: 2.5rem 0 1.5rem;
    }

    .landing-features-bar {
        position: static;
        padding: 0 0 2rem;
    }

    .landing-features-inner {
        gap: 1.25rem;
    }

    .contact-section .shell {
        width: min(100%, calc(100% - 1.5rem));
    }

    .contact-section::before {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0 16%, transparent 16% 100%);
    }

    .contact-section .section-heading h2 {
        max-width: none;
        font-size: clamp(2.2rem, 10vw, 3.6rem);
    }

    .content-page-hero__inner {
        min-height: 14rem;
        padding-top: 3rem;
        padding-bottom: 2.25rem;
    }

    .content-page-body {
        margin-top: -1.25rem;
    }

    .content-page-surface {
        padding: 1.5rem;
    }

    .form-panel {
        padding: 1.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* ── SNIPPET CLASSES (content HTML from CMS) ── */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    box-shadow: var(--shadow);
}

.card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    background: rgba(26, 120, 228, 0.08);
    color: var(--brand);
    flex-shrink: 0;
}

.card__icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
}

.two-col__left blockquote.quote {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-strong);
    border-left: 4px solid var(--accent);
    padding-left: 1.25rem;
    margin: 0;
    line-height: 1.5;
}

.two-col__right .eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.two-col__right h2 {
    margin-bottom: 1rem;
}

blockquote.quote {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-strong);
    border-left: 4px solid var(--accent);
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
    background: var(--surface-strong);
    border-radius: 0 0.5rem 0.5rem 0;
}

.image-text-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
}

.image-text-box__img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    object-fit: cover;
    display: block;
}

.image-text-box__content .eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand);
    margin-bottom: 0.5rem;
}

.image-text-box__content h2 {
    margin-bottom: 1rem;
}

.image-text-box__content p {
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.image-text-box__content ul {
    color: var(--muted);
    padding-left: 1.25rem;
    margin: 0.5rem 0 0.75rem;
}

.image-text-box__content li {
    margin-bottom: 0.4rem;
}

.image-text-box__content a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
}

.image-text-box__content a:hover {
    text-decoration: underline;
}

.image-text-box--reverse .image-text-box__img {
    order: 2;
}

.homepage-content-html > .cards-grid {
    margin-top: 3rem;
}

.section-tinted {
    background: var(--surface-strong);
    padding: 2.5rem 2.5rem;
    border-radius: 1.25rem;
}

.full-bleed-band {
    width: auto;
    margin: 2.5rem calc(50% - 50vw) 0;
    padding-bottom: 25px;
    background: linear-gradient(180deg, #dfe8f5 0%, #eef4fb 42%, #f8fbff 100%);
    color: var(--ink);
    border-top: 1px solid rgba(13, 27, 62, 0.06);
    border-bottom: 1px solid rgba(13, 27, 62, 0.06);
}

.full-bleed-band__inner {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.full-bleed-band .section-heading {
    max-width: 52rem;
    margin: 0 auto 2rem;
    text-align: center;
}

.full-bleed-band .section-heading .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.9rem;
    margin: 0 0 0.85rem;
    border-radius: 999px;
    background: rgba(26, 120, 228, 0.14);
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.full-bleed-band .section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4.3vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #111827;
}

.full-bleed-band .eyebrow,
.full-bleed-band h2,
.full-bleed-band p,
.full-bleed-band .partners-section__label,
.full-bleed-band .partner-card__name,
.full-bleed-band .partner-card__desc {
    color: inherit;
}

.full-bleed-band .quote {
    background: rgba(26, 120, 228, 0.08);
    border-color: rgba(13, 27, 62, 0.08);
    color: var(--ink);
}

.full-bleed-band hr {
    border-color: rgba(13, 27, 62, 0.18);
}

.full-bleed-band .partners-section {
    margin: 3rem 0 0;
    padding: 2rem 2rem 2.25rem;
    background: #fff;
    border: 1px solid rgba(13, 27, 62, 0.08);
    border-radius: 1.5rem;
    box-shadow: 0 18px 40px rgba(13, 27, 62, 0.06);
}

.full-bleed-band .partner-card {
    width: 220px;
    flex: 0 0 220px;
    padding: 1.5rem 2rem;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.full-bleed-band .partner-card:hover {
    box-shadow: 0 24px 48px rgba(13, 27, 62, 0.14);
}

.speedtest-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient-blue);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    color: #fff;
    text-align: center;
    min-height: 220px;
}

.speedtest-visual__number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.speedtest-visual__unit {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.75;
    margin-top: -0.25rem;
}

.speedtest-visual__label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 0.75rem;
}

.content-html-block h2 {
    margin-bottom: 1rem;
}

.content-html-block p,
.content-html-block ul,
.content-html-block ol {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.content-html-block ul,
.content-html-block ol {
    padding-left: 1.5rem;
}

.content-html-block li {
    margin-bottom: 0.35rem;
}

@media (max-width: 800px) {
    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .image-text-box {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .site-logo {
        height: 38px;
    }
}

/* ── PARTNERS SECTION ── */

.partners-section {
    margin: 3rem 0 1rem;
    text-align: center;
}

.partners-section__label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.partners-section__grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    width: 220px;
    flex: 0 0 220px;
    transition: box-shadow 0.15s;
}

.partner-card:hover {
    box-shadow: 0 24px 48px rgba(13, 27, 62, 0.14);
}

.partner-card__logo {
    height: 2.5rem;
    width: auto;
    max-width: 9rem;
    object-fit: contain;
    margin-bottom: 0.25rem;
}

.partner-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(26, 120, 228, 0.08);
    color: var(--brand);
}

.partner-card__icon svg {
    width: 1.4rem;
    height: 1.4rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.partner-card__name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
}

.partner-card__desc {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ── CENNIK SECTION ── */

.cennik-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    background: var(--gradient-blue-wide);
    border-radius: 1.5rem;
    padding: 2.5rem 3rem;
    margin: 2.5rem 0;
    color: #fff;
}

.cennik-section__copy {
    flex: 1 1 300px;
}

.cennik-section__eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    margin: 0 0 0.5rem;
}

.cennik-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #fff;
    line-height: 1.15;
}

.cennik-section__desc {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.cennik-section__action {
    flex-shrink: 0;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    background: #fff;
    color: var(--ink);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
    white-space: nowrap;
}

.btn-download:hover {
    background: #ebf3fe;
    transform: translateY(-1px);
}

.btn-download svg {
    width: 1.1rem;
    height: 1.1rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}
