/* ============================================================
   DMC Flask — main.css
   Self-hosted, no CDN. Generate SRI hash after any edit:
     python tools/sri_gen.py static/css/main.css
   ============================================================ */

@font-face {
        font-family: "poppins-extralight";
        src: url("../fonts/Poppins-ExtraLight.ttf") format("truetype");
        font-weight: 200;
        font-style: normal;
        font-display: swap;
}

@font-face {
        font-family: "poppins-semibold";
    src: url("../fonts/Poppins%20SemiBold.ttf") format("truetype");
        font-weight: 600;
        font-style: normal;
        font-display: swap;
}

@font-face {
    font-family: "qejohnwilliams";
    src: url("../fonts/QEJohnWilliams.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ── Custom Properties ──────────────────────────────────────── */
:root {
    --color-navy:       #004C97;
    --color-navy-dark:  #003A75;
    --color-blue:       #3B9BE9;
    --color-bg:         #ffffff;
    --color-bg-light:   #f0f4f9;
    --color-text:       #1a2538;
    --color-text-muted: #5a6880;
    --color-border:     #dde3ec;
    --color-error:      #cc3333;
    --color-success:    #2a9d6e;
    --color-footer:     #2E6DA0;
    --color-highlight:  #e8f3ff;
    --shadow-soft:      0 10px 24px rgba(0, 37, 84, 0.08);
    --shadow-lift:      0 14px 34px rgba(0, 37, 84, 0.14);

    --font-body: Arial, helvetica, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    --radius:    4px;
    --radius-lg: 12px;
    --transition: 200ms ease;
    --max-w:      1200px;
    --max-w-form: 820px;
    --section-heading-size: 40px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--color-navy); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.25; color: var(--color-navy); }
h1, h2 { letter-spacing: -0.01em; }

/* ── Navigation ──────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    border-bottom: 1px solid #e6ebf2;
}

.nav {
    display: flex;
    align-items: center;
    max-width: var(--max-w);
    margin-inline: auto;
    padding: 0.5rem var(--space-md);
    gap: var(--space-md);
}

.nav__logo img { height: 44px; width: auto; }

.nav__links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav__item {
    position: relative;
}

.nav__submenu {
    list-style: none;
    background: #fff;
    margin: 0;
    padding: 0.75rem 0.9rem;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 15rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.16s ease;
}

.nav__submenu--grid {
    min-width: 600px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem 1.1rem;
    padding: 1rem 1.1rem;
    left: 50%;
    transform: translateX(-50%);
}

.nav__submenu--grid .nav__sublink {
    line-height: 1.2;
}

.nav__item--has-submenu:hover .nav__submenu,
.nav__item--has-submenu:focus-within .nav__submenu,
.nav__item--submenu-open .nav__submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav__sublink {
    display: block;
    color: var(--color-text);
    font-size: 0.97rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0.01em;
    padding: 0.2rem 0.3rem;
}

.nav__sublink:hover {
    color: var(--color-navy);
    text-decoration: none;
}

.nav__sublink--active {
    color: var(--color-navy);
}

.nav__link {
    color: var(--color-text);
    font-size: 0.97rem;
    font-weight: 500;
    white-space: nowrap;
}
.nav__link:hover { color: var(--color-navy); text-decoration: none; }
.nav__link--active { color: var(--color-navy); font-weight: 600; }

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__icon { color: var(--color-text-muted); line-height: 1; }
.nav__icon:hover { color: var(--color-navy); }

.nav__cta {
    background: var(--color-navy);
    color: #fff;
    padding: 0.45rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}
.nav__cta:hover { background: #fff; color: var(--color-navy); text-decoration: none; box-shadow: inset 0 0 0 1px var(--color-navy); }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: transform var(--transition);
}

.nav__submenu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    margin-left: 0.35rem;
    padding: 0.2rem;
    align-items: center;
    justify-content: center;
}

.nav__submenu-toggle span {
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform var(--transition);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.6rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid transparent;
    text-align: center;
    text-decoration: none;
}
.btn--primary { background: var(--color-navy); color: #fff; border-color: var(--color-navy); }
.btn--primary:hover { background: #fff; border-color: var(--color-navy); text-decoration: none; color: var(--color-navy); }
.btn--outline { background: transparent; color: var(--color-navy); border-color: var(--color-navy); }
.btn--outline:hover { background: var(--color-navy); color: #fff; text-decoration: none; }
.btn--white { background: white; color: var(--color-navy); border-color: var(--color-navy); }
.btn--white:hover { background: var(--color-navy); color: #fff; text-decoration: none; }


/* ── Flash Messages ──────────────────────────────────────────── */
.flash-container {
    max-width: var(--max-w);
    margin: var(--space-sm) auto;
    padding-inline: var(--space-md);
}
.flash {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.flash--success { background: rgba(42,157,110,0.1); border: 1px solid var(--color-success); color: #1a6645; }
.flash--error   { background: rgba(204,51,51,0.1);  border: 1px solid var(--color-error);   color: var(--color-error); }

/* ── Contact page ────────────────────────────────────────────── */
.contact-section {
    padding-block: var(--space-lg);
}

.contact-section h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--color-navy);
    text-align: center;
    margin-bottom: var(--space-md);
}

.contact-form {
    max-width: var(--max-w-form);
    margin-inline: auto;
    padding-inline: var(--space-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: var(--space-sm);
}

.form-group label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.form-group label .req { color: var(--color-navy); }

.form-group input,
.form-group textarea {
    border: 1px solid var(--color-navy);
    border-radius: var(--radius);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.6rem 0.8rem;
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 2px rgba(59,155,233,0.18);
}

.form-group--error input,
.form-group--error textarea { border-color: var(--color-error); }
.form-error { color: var(--color-error); font-size: 0.82rem; }

.btn--send {
    background: transparent;
    border: 1px solid var(--color-navy);
    color: var(--color-navy);
    padding: 0.55rem 2.5rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
}
.btn--send:hover { background: var(--color-navy); color: #fff; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
    background: var(--color-footer);
    color: rgba(255,255,255,0.9);
    margin-top: 0;
}

.footer__inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding: 2.1rem var(--space-md) 1rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
}

.footer__brand img { height: 52px; width: auto; margin-bottom: 0.8rem; }
.footer__brand p { font-size: 0.84rem; line-height: 1.55; color: rgba(255,255,255,0.82); margin-bottom: 0.2rem; }

.footer__heading {
    color: #fff;
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.62rem; }
.footer__col a { color: rgba(255,255,255,0.88); font-size: 0.93rem; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.footer__col a:hover { color: #fff; text-decoration: underline; }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    padding: 0.8rem var(--space-md);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
}
.footer__bottom a { color: rgba(255,255,255,0.88); text-decoration: underline; }

/* ── Mobile Quick Footer ────────────────────────────────────── */
.mobile-quick-footer {
    display: none;
}

.mobile-quick-footer__item {
    text-decoration: none;
}

/* ── Native Content Pages ───────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--space-md);
}

.hero {
    background: linear-gradient(135deg, #0b529f 0%, #176fbf 45%, #54a8eb 100%);
    color: #fff;
    padding: var(--space-lg) 0 var(--space-md);
}

.hero__inner {
    max-width: 900px;
    margin-inline: auto;
    padding-inline: var(--space-md);
}

.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    font-weight: 700;
    opacity: 0.92;
    margin-bottom: 0.75rem;
}

.hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.hero h2,
.hero h3 {
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 0.7rem;
}

.hero h2 {
    font-size: clamp(1.15rem, 2.2vw, 1.6rem);
    font-weight: 600;
}

.hero h3 {
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    font-weight: 500;
}

.hero--home {
    background: #f2f4f7;
    color: var(--color-text);
}

.hero--support {
    background: linear-gradient(128deg, #0a437e 0%, #075593 42%, #1b7cc4 100%);
}

.hero--careers {
    background: linear-gradient(132deg, #01345f 0%, #0a538f 50%, #2d8fd2 100%);
}

/* ── Careers Page Parity ───────────────────────────────────── */
.careers-page .careers-hero {
    background: #fff;
    padding: 2.35rem 0 2.2rem;
}

.careers-page .careers-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    gap: 2.1rem;
    align-items: start;
}

.careers-page .careers-hero__copy h1 {
    color: #00264c;
    font-size: clamp(2.1rem, 3.7vw, 3.15rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 14ch;
}

.careers-page .careers-hero__copy p {
    color: #213b5a;
    font-size: 1.02rem;
    line-height: 1.5;
    max-width: 34ch;
}

.careers-page .careers-hero__visual {
    position: relative;
    min-height: 446px;
}

.careers-page .careers-hero__shape {
    width: min(416px, 100%);
    position: absolute;
    top: 0;
    right: 10px;
    opacity: 0.88;
}

.careers-page .careers-hero__script {
    position: absolute;
    top: 84px;
    right: 26px;
    color: #2f679c;
    font-size: clamp(1.35rem, 2.1vw, 1.95rem);
    margin: 0;
    z-index: 2;
}

.careers-page .careers-hero__visual a {
    position: absolute;
    top: 138px;
    right: 8px;
    z-index: 3;
}

.careers-page .careers-hero__badge {
    width: min(404px, 100%);
    display: block;
}

.careers-page .careers-hiring-strip,
.careers-page .careers-vacancies-strip {
    background: #c6d8ea;
    text-align: center;
    padding: 1.15rem 0 1.35rem;
}

.careers-page .careers-hiring-strip__inner,
.careers-page .careers-vacancies-strip__inner {
    display: grid;
    justify-items: center;
    gap: 0.45rem;
}

.careers-page .careers-hiring-strip h2,
.careers-page .careers-vacancies-strip h2 {
    color: #0f4f8e;
    margin: 0;
    font-size: clamp(2rem, 2.85vw, 2.75rem);
    line-height: 1.1;
}

.careers-page .careers-hiring-strip p,
.careers-page .careers-vacancies-strip p {
    color: #23486f;
    margin: 0;
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    max-width: 62ch;
}

.careers-page .careers-hiring-strip .btn,
.careers-page .careers-vacancies-strip .btn {
    margin-top: 0.35rem;
    padding: 0.4rem 1.15rem;
    font-size: 0.85rem;
}

.careers-page .careers-values {
    background: #fff;
    padding: 1.45rem 0 2.55rem;
}

.careers-page .careers-values__title {
    text-align: center;
    color: #0f5b8f;
    font-size: clamp(2.05rem, 3vw, 2.8rem);
    margin: 0 0 1.1rem;
}

.careers-page .careers-values__layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.15rem 2.2rem;
    align-items: center;
}

.careers-page .careers-values__wheel-wrap {
    width: min(530px, 45vw);
}

.careers-page .careers-values__wheel-wrap img {
    width: 100%;
    display: block;
}

.careers-page .careers-values__col {
    display: grid;
    gap: 2.1rem;
}

.careers-page .careers-values__col h3 {
    color: #0f4f8e;
    font-size: clamp(1.25rem, 1.8vw, 1.75rem);
    margin-bottom: 0.35rem;
}

.careers-page .careers-values__col p {
    color: #23486f;
    font-size: 1rem;
    line-height: 1.45;
    max-width: 28ch;
}

.careers-page .careers-values__col--left {
    justify-items: end;
    text-align: right;
}

.careers-page .careers-values__col--right {
    justify-items: start;
    text-align: left;
}

.careers-page .careers-learning {
    position: relative;
    overflow: hidden;
    padding: 3.95rem 0 2.55rem;
    background: #fff;
}

.careers-page .careers-learning::before {
    content: "";
    position: absolute;
    left: -12%;
    right: -12%;
    top: 0;
    height: 210px;
    background: radial-gradient(150% 100% at 50% 0%, rgba(207, 223, 239, 0.7) 0%, rgba(207, 223, 239, 0.56) 55%, rgba(207, 223, 239, 0) 100%);
    pointer-events: none;
}

.careers-page .careers-learning__top,
.careers-page .careers-learning__cards {
    position: relative;
    z-index: 1;
}

.careers-page .careers-learning__top {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    row-gap: 1.1rem;
    column-gap: 2.95rem;
    align-items: start;
}

.careers-page .careers-learning__heading h2 {
    color: #0f4f8e;
    font-size: clamp(2.2rem, 3.6vw, 3.45rem);
    line-height: 1.22;
    margin: 0 0 0.85rem;
}

.careers-page .careers-learning__heading .home-script {
    color: #2f679c;
    font-size: clamp(1.65rem, 2.4vw, 2.35rem);
    line-height: 1.1;
    margin: 0;
}

.careers-page .careers-learning__intro p {
    color: #1f3b5b;
    font-size: 1.08rem;
    line-height: 1.65;
    margin: 0;
}

.careers-page .careers-learning__cards {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    max-width: none;
    width: 100%;
    margin: 1.35rem 0 0;
}

.careers-page .careers-learning-card {
    max-width: 360px;
}

.careers-page .careers-learning-card img {
    width: 48px;
    opacity: 0.36;
    margin-bottom: 0.8rem;
}

.careers-page .careers-learning-card p {
    color: #1b3553;
    line-height: 1.44;
    margin-bottom: 0.6rem;
}

.careers-page .careers-learning-card a {
    color: #102d4d;
    font-weight: 500;
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .careers-page .careers-hero__inner {
        grid-template-columns: 1fr;
        gap: 1.45rem;
    }

    .careers-page .careers-hero__copy h1,
    .careers-page .careers-hero__copy p {
        max-width: none;
    }

    .careers-page .careers-hero__visual {
        min-height: 395px;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .careers-page .careers-values__layout {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .careers-page .careers-values__col {
        width: min(720px, 100%);
        grid-template-columns: 1fr;
        gap: 1.2rem;
        justify-items: start;
        text-align: left;
    }

    .careers-page .careers-values__wheel-wrap {
        order: -1;
        width: min(520px, 100%);
        margin-bottom: 0.25rem;
    }

    .careers-page .careers-learning__top {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }

    .careers-page .careers-learning__cards {
        grid-column: 1;
        max-width: none;
        margin-left: 0;
        justify-items: start;
    }
}

@media (max-width: 768px) {
    .careers-page .careers-hero {
        padding: 1.5rem 0 1.75rem;
    }

    .careers-page .careers-hero__inner {
        gap: 1.1rem;
    }

    .careers-page .careers-hero__copy h1 {
        font-size: clamp(1.9rem, 9vw, 2.35rem);
        line-height: 1.18;
        margin-bottom: 0.85rem;
        max-width: 16ch;
    }

    .careers-page .careers-hero__copy p {
        font-size: 0.98rem;
        line-height: 1.48;
    }

    .careers-page .careers-hero__visual {
        min-height: 304px;
    }

    .careers-page .careers-hero__shape {
        width: min(350px, 100%);
        right: 0;
    }

    .careers-page .careers-hero__script {
        top: 68px;
        right: 14px;
        font-size: clamp(1.2rem, 6vw, 1.45rem);
    }

    .careers-page .careers-hero__visual a {
        top: 108px;
        right: 0;
    }

    .careers-page .careers-hero__badge {
        width: min(320px, 100%);
    }

    .careers-page .careers-hiring-strip,
    .careers-page .careers-vacancies-strip {
        padding: 1rem 0 1.15rem;
    }

    .careers-page .careers-hiring-strip h2,
    .careers-page .careers-vacancies-strip h2 {
        line-height: 1.08;
    }

    .careers-page .careers-hiring-strip p,
    .careers-page .careers-vacancies-strip p {
        max-width: 34ch;
    }

    .careers-page .careers-values {
        padding: 1rem 0 2rem;
    }

    .careers-page .careers-values__title {
        margin-bottom: 0.85rem;
    }

    .careers-page .careers-values__col p {
        max-width: none;
    }

    .careers-page .careers-learning {
        padding: 2.45rem 0 2rem;
    }

    .careers-page .careers-learning::before {
        height: 148px;
    }

    .careers-page .careers-learning__heading h2 {
        font-size: clamp(1.95rem, 8.4vw, 2.45rem);
        margin-bottom: 0.65rem;
    }

    .careers-page .careers-learning__heading .home-script {
        font-size: clamp(1.25rem, 6vw, 1.7rem);
    }

    .careers-page .careers-learning__intro p {
        font-size: 1rem;
        line-height: 1.58;
    }

    .careers-page .careers-learning__cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1rem;
    }

    .careers-page .careers-learning-card {
        max-width: none;
    }
}

.hero--home h1 {
    max-width: 22ch;
    margin-bottom: 0.85rem;
    color: var(--color-navy);
}

.hero--home .hero__lead {
    max-width: 82ch;
    color: #22344d;
}

.hero__text-link {
    display: inline-block;
    margin-top: 0.2rem;
    color: var(--color-navy);
    font-weight: 500;
}

.hero__text-link:hover {
    text-decoration: underline;
}

.hero__lead {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.08rem;
}

.hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
}

.hero__actions .btn {
    min-width: 172px;
}

.hero .btn--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
}

.hero .btn--outline:hover {
    background: #fff;
    color: var(--color-navy);
}

.section {
    padding: 3rem 0;
}

.section--alt {
    background: var(--color-bg-light);
}

.grid {
    display: grid;
    gap: var(--space-md);
}

.grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.support-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    box-shadow: var(--shadow-soft);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover,
.support-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lift);
    border-color: #c8d9ee;
}

.feature-card h2,
.support-card h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-card p,
.support-card p {
    color: var(--color-text-muted);
}

.section--metrics {
    background: #f6f8fb;
}

.section h2 {
    font-size: clamp(1.35rem, 2.3vw, 1.9rem);
    margin-bottom: 0.65rem;
}

.section p {
    color: var(--color-text-muted);
}

.metric-card {
    text-align: center;
    padding-block: 1.2rem;
}

.metric-card h2 {
    font-size: clamp(1.4rem, 2.6vw, 2.1rem);
    margin-bottom: 0.25rem;
}

.metric-card p {
    font-size: 0.92rem;
    color: #4f5d74;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.support-grid {
    align-items: stretch;
}

.support-grid .support-card {
    display: grid;
    gap: 0.55rem;
    align-content: start;
}

.support-grid .support-card h3 {
    font-size: 0.96rem;
    color: var(--color-navy-dark);
}

.support-grid .btn {
    width: fit-content;
    margin-top: 0.35rem;
}

.support-grid .support-card:nth-child(5) {
    grid-column: span 2;
}

.split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-md);
    align-items: start;
}

.section__kicker {
    color: var(--color-blue);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.split h2 {
    margin-bottom: 0.7rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.checklist {
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.checklist li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--color-text-muted);
}

.checklist li::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--color-blue);
    position: absolute;
    left: 0;
    top: 0.55rem;
}

.cta-panel {
    text-align: center;
    padding: var(--space-md);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.cta-panel h2 {
    margin-bottom: 0.5rem;
}

.cta-panel p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.contact-quicklinks {
    display: grid;
    gap: 0.7rem;
    align-content: start;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-md);
}

.process-step {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: var(--shadow-soft);
    min-height: 176px;
}

.process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    background: var(--color-highlight);
    color: var(--color-navy);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.trust-pill {
    background: #fff;
    border: 1px solid #d4e2f1;
    border-radius: 999px;
    padding: 0.5rem 0.8rem;
    text-align: center;
    color: #33506f;
    font-size: 0.84rem;
    font-weight: 700;
}

.note-panel {
    background: #f7fbff;
    border: 1px solid #d8e8f6;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    color: #355575;
    font-size: 0.92rem;
}

.bank-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.85rem;
    margin-bottom: 1.2rem;
}

.bank-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.9rem;
    box-shadow: var(--shadow-soft);
}

.bank-card h3 {
    color: var(--color-navy);
    margin-bottom: 0.35rem;
    font-size: 0.98rem;
}

.bank-card p {
    margin-bottom: 0.15rem;
    font-size: 0.88rem;
}

/* ── Customer Support Page Parity ─────────────────────────── */
.support-page {
    background: #fff;
}

.support-page .section {
    padding: 3.2rem 0;
}

.support-hero {
    background: #fff;
    padding: 60px 60px;
    overflow: hidden;
    border-bottom: 1px solid #e3edf8;
}

.support-hero__layout {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.2rem;
    align-items: center;
}

.support-hero__copy h1 {
    color: #0f4f8e;
    max-width: 19ch;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

.support-hero__copy .hero__lead {
    max-width: 52ch;
    color: #425c77;
}

.support-hero__visual {
    position: relative;
    min-height: 260px;
    display: grid;
    justify-items: end;
}

.support-hero__visual::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    right: 4%;
    bottom: 4%;
    background: radial-gradient(circle at center, rgba(225, 239, 252, 0.85) 0%, rgba(225, 239, 252, 0) 72%);
}

.support-hero__visual img {
    width: min(430px, 100%);
    margin-left: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.support-hero__visual .support-hero__dots {
    width: min(205px, 64%);
    margin-top: 0.45rem;
    margin-right: 3.1rem;
    z-index: 1;
}

.support-services h2 {
    text-align: center;
    color: #0b4d8c;
    margin-bottom: 1.55rem;
    font-size: 35px;
    line-height: 49px;
    font-weight: 400;
}

.support-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.05rem 1.15rem;
}

.support-services__card {
    border: 1px solid;
    border-color: rgba(0, 38, 76, 1) rgba(0, 38, 76, 1) rgba(0, 38, 76, 1) rgba(0, 38, 76, 1);
    background: #fff;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0 6px 18px rgba(7, 55, 108, 0.07);
    padding: 1.05rem 1rem 1.1rem;
    min-height: 279px;
    max-width: 226px;
    transition: transform 180ms ease, box-shadow 180ms ease;
    text-align: center;
    margin-bottom: 30px;
}

.support-services__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(7, 55, 108, 0.12);
}

.support-services__icon {
    color: #0f65ab;
    font-size: 1.05rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #f8fbff;
    margin-top: 30px;
    margin-bottom: 30px;
}

.support-services__card h3 {
    font-size: 20px;;
    margin-bottom: 0.45rem;
}

.support-services__card h3 a {
    color: #0f4f8e;
    text-decoration: none;
}

.support-services__card h3 a:hover {
    text-decoration: underline;
}

.support-services__card p {
    color: black;
    margin: 0;
}

.support-payments {
    background: #f6f9fd;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84)),
        url('../images/phonewide.avif');
    background-size: cover;
    background-position: center;
}

.support-payments__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.6rem;
    align-items: stretch;
}

.support-payments__image-wrap {
    border-radius: 14px;
    overflow: hidden;
    min-height: 520px;
}

.support-payments__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.support-payments__content {
    padding: 1.35rem;
    margin: 60px 60px;
}

.support-payments__content h2 {
    color: #0f4f8e;
    margin-bottom: 0.9rem;
    font-size: 30px;
    line-height: 1.18;
    font-weight: 400;
}

.support-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 0.9rem;
    border-bottom: 1px solid #dbe8f4;
}

.support-tabs__btn {
    border: 0;
    border-bottom: 4px solid transparent;
    background: transparent;
    color: #2d4f72;
    border-radius: 0;
    padding: 0 1.05rem;
    min-height: 60px;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
}

.support-tabs__btn.is-active {
    color: #0f4f8e;
    border-bottom-color: #0f61a7;
}

.support-payments .support-tabs {
    gap: 0.5rem;
    border-bottom: 0;
    width: 100%;

}

.support-payments .support-tabs__btn {
    border: 1px solid #c1d7ec;
    border-radius: 8px;
    background: #f3f8fd;
    color: #24517b;
    min-height: 46px;
    padding: 0.45rem 0.9rem;
    line-height: 1.2;
    font-weight: 600;
    flex: 1 1 160px;
    text-align: center;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.support-payments .support-tabs__btn:hover {
    background: #e8f2fb;
    border-color: #9fc2e1;
}

.support-payments .support-tabs__btn.is-active {
    background: #0f4f8e;
    color: #fff;
    border-color: #0f4f8e;
    box-shadow: 0 6px 16px rgba(10, 62, 110, 0.2);
}

.support-tabs__panes {
    margin-bottom: 1rem;
    padding: 1.25rem;
    background: #fff;
}

.support-tabs__pane p {
    margin-bottom: 0.75rem;
    color: #3f5671;
}

.support-tabs__pane ul {
    margin: 0.3rem 0 0.65rem 1.1rem;
}

.support-tabs__pane li {
    color: #35516f;
    margin-bottom: 0.3rem;
}

.support-tabs__pane[hidden] {
    display: none !important;
}

.support-payments__debit-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem 1.4rem;
    align-items: start;
}

.support-payments__debit-copy {
    min-width: 0;
}

.support-payments__logo {
    width: min(178px, 100%);
    margin: 0.2rem 0 0;
    justify-self: end;
    align-self: start;
}

.support-payments__footnote {
    font-size: 0.86rem;
    color: #6f7f90;
}

.support-banner {
    background: #fff;
    border-top: 1px solid #e2edf8;
    border-bottom: 1px solid #e2edf8;
}

.support-banner__inner {
    text-align: center;
    padding: 0.4rem 0;
}

.support-banner__inner h2 {
    color: #0f4f8e;
    margin-bottom: 0.55rem;
    font-size: 40px;
    font-weight: 400;
}

.support-banner__inner img {
    width: min(220px, 100%);
    display: block;
    margin: 0 auto 0.9rem;
}

.support-feature {
    background: #fff;
}

.support-feature--statements {
    overflow: hidden;
}

.support-statements {
    position: relative;
    min-height: 500px;
    padding: 1rem 0;
}

.support-statements__media {
    width: min(760px, 66%);
    min-height: 340px;
    background: url('../images/statementsbg.avif') center/cover no-repeat;
}

.support-statements__overlay {
    position: absolute;
    top: 2.1rem;
    right: 0;
    width: min(760px, 68%);
    min-height: 360px;
    background: rgba(172, 197, 226, 0.74);
    display: grid;
    align-content: center;
    transform: translateY(28px);
    overflow: hidden;
}

.support-statements__overlay::after {
    content: "";
    position: absolute;
    right: 0;
    top: 34px;
    width: 228px;
    height: 214px;
    background: rgba(129, 166, 208, 0.62);
    border-radius: 120px 0 0 120px;
}

.support-statements__copy {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: 1.5rem 2rem 1.35rem 2.35rem;
}

.support-feature--statements .support-feature__copy h2 {
    margin-bottom: 60px;
    color: #0b0b0b;
}

.support-feature--statements .support-feature__copy p {
    margin-bottom: 60px;
    color: #1d3e5c;
}

.support-feature--bureau-composed {
    overflow: hidden;
}

.support-bureau {
    position: relative;
    min-height: 500px;
    padding: 1rem 0;
}

.support-bureau__media {
    margin-left: auto;
    width: min(760px, 66%);
    min-height: 340px;
    background: url('../images/bureau.avif') center/cover no-repeat;
}

.support-bureau__overlay {
    position: absolute;
    top: 2.1rem;
    left: 0;
    width: min(760px, 68%);
    min-height: 360px;
    background: rgba(172, 197, 226, 0.74);
    display: grid;
    align-content: center;
    transform: translateY(28px);
    overflow: hidden;
}

.support-bureau__overlay::after {
    content: "";
    position: absolute;
    left: 0;
    top: 34px;
    width: 228px;
    height: 214px;
    background: rgba(129, 166, 208, 0.62);
    border-radius: 0 120px 120px 0;
}

.support-bureau__copy {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: 1.5rem 2.35rem 1.35rem 2rem;
}

.support-feature--bureau-composed .support-feature__copy h2 {
    color: #0b0b0b;
}

.support-feature--bureau-composed .support-feature__copy p {
    color: #1d3e5c;
}

.support-feature--alt {
    background: #f7fafd;
}

.support-feature__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.8rem;
    align-items: center;
}

.support-feature__image {
    border-radius: 14px;
    overflow: hidden;
    min-height: 320px;
}

.support-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.support-feature__copy h2 {
    color: #0f4f8e;
    margin-bottom: 0.55rem;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.18;
}

.support-feature__copy p {
    color: #425c77;
}

.support-feature__subheading {
    color: #0d4f90;
    font-weight: 700;
    margin-top: 1.2rem;
    margin-bottom: 60px;

}

.support-feature__actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.support-faq {
    border-top: 1px solid #e4edf7;
}

.support-faq h2 {
    color: #0f4f8e;
    margin-bottom: 0.7rem;
    font-size: 40px;
    line-height: 48px;
    font-weight: 400;
}

.support-faq__search-wrap {
    margin-bottom: 0.95rem;
}

.support-faq__search-wrap input {
    width: min(460px, 100%);
    border: 1px solid #c5d8eb;
    border-radius: 999px;
    min-height: 42px;
    padding: 0 1rem;
    font-size: 0.95rem;
    color: #23415f;
}

.support-faq .support-tabs {
    margin-bottom: 1rem;
}

.support-query {
    background: linear-gradient(180deg, #f7fbff 0%, #f2f8ff 100%);
}

.support-query__panel {
    text-align: center;
    background: #fff;
    padding: 1.45rem;
}

.support-query__panel h2 {
    color: #0f4f8e;
    margin-bottom: 0.45rem;
    font-size: 40px;
    font-weight: 400;
}

.support-query__panel > p {
    margin-bottom: 1rem;
}

.support-query__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.72rem 0.82rem;
    text-align: left;
}

.support-query__form label {
    display: grid;
    gap: 0.28rem;
    color: #365474;
    font-size: 0.88rem;
}

.support-query__form span {
    color: inherit;
    font-size: inherit;
    font-weight: 400;
}

.support-query__form input,
.support-query__form textarea {
    border: 1px solid #355c85;
    border-radius: 0;
    min-height: 40px;
    padding: 0.42rem 0.55rem;
    font-size: 0.94rem;
    color: #183656;
    background: #fff;
    font-family: inherit;
}

.support-query__form textarea {
    resize: vertical;
    min-height: 102px;
}

.support-query__full {
    grid-column: 1 / -1;
}

.support-query__form .btn {
    margin-top: 0.9rem;
    padding: 0.45rem 1.7rem;
    border-width: 1px;
}

.portal-steps {
    margin-top: 1.1rem;
}

.portal-cta {
    margin-top: 1rem;
}

.reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 360ms ease, transform 420ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    background: #fff;
    border-bottom: 1px solid black;;
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1rem 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    position: relative;
    padding-right: 2.25rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.15rem;
    color: var(--color-blue);
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    padding: 0 1.1rem 1rem;
}

.section--contact {
    background:
        linear-gradient(180deg, rgba(59,155,233,0.08) 0%, rgba(59,155,233,0) 28%),
        #fff;
}

.contact-layout {
    gap: 2.5rem;
}

.contact-form--panel {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 39, 86, 0.08);
    padding: 1.25rem;
}

.contact-form__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-form--panel .form-group label {
    color: #415068;
    font-weight: 600;
}

.contact-form--panel button[type="submit"] {
    margin-top: 0.25rem;
    min-width: 170px;
}

/* ── Debt & Your Rights Page ──────────────────────────────── */
.debt-rights-page .debt-rights-hero {
    background: #f6f9fd;
    padding: 1.7rem 0 3rem;
    border-top: 1px solid #e6edf5;
}

.debt-rights-page .debt-rights-hero__frame {
    position: relative;
    min-height: 270px;
    overflow: hidden;
}

.debt-rights-page .debt-rights-hero__frame > img {
    width: 60%;
    height: 100%;
    min-height: 270px;
    max-height: 362px;
    object-fit: cover;
    object-position: center 30%;
}

.debt-rights-page .debt-rights-hero__overlay {
    position: absolute;
    right: 0;
    top: 0.55rem;
    width: min(620px, 58%);
    min-height: 220px;
    display: grid;
    align-content: center;
    background: rgba(215, 227, 242, 0.78);
    transform: translateY(26px);
    overflow: hidden;
}

.debt-rights-page .debt-rights-hero__overlay-copy {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 1.05rem 1.9rem 1rem 1.45rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.debt-rights-page .debt-rights-hero__overlay h1 {
    color: #0f4f8e;
    font-size: 56px;
    margin-top: 1.65rem;
    margin-bottom: 1.65rem;
    line-height: 1.1;
}

.debt-rights-page .debt-rights-hero__overlay p {
    color: #264765;
    max-width: 43ch;
    margin-top: 1rem;
    margin-bottom: 1.65rem;
    font-size: 1.04rem;
}

.debt-rights-page .debt-rights-tabs-section {
    background: #fff;
    padding-top: 0.72rem;
}

.debt-rights-page .debt-rights-tabs {
    max-width: 1120px;
}

.debt-rights-page .debt-rights-tabs__list {
    flex-wrap: nowrap;
    gap: 0;
    border-bottom: 1px solid #cad8e8;
    overflow-x: auto;
}

.debt-rights-page .debt-rights-tabs__list .support-tabs__btn {
    white-space: nowrap;
    min-height: 46px;
    padding-inline: 1.05rem;
    font-size: 0.98rem;
}

.debt-rights-page .debt-rights-tabs__panes {
    padding: 1.35rem 1.3rem;
    border: 1px solid #d7e3ef;
    border-top: 0;
    background: #f9fbfe;
}

.debt-rights-page .debt-rights-pane {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
    gap: 1.35rem;
    align-items: start;
}

.debt-rights-page .debt-rights-pane__copy h2 {
    color: #0f4f8e;
    font-size: clamp(1.7rem, 2.3vw, 2.3rem);
    margin-bottom: 0.7rem;
}

.debt-rights-page .debt-rights-pane__copy p,
.debt-rights-page .debt-rights-pane__copy li {
    color: #324e6c;
    line-height: 1.45;
    font-size: 1.08rem;
}

.debt-rights-page .debt-rights-pane__copy p {
    margin-bottom: 0.92rem;
}

.debt-rights-page .debt-rights-pane__copy ul {
    margin: 0.25rem 0 0.65rem 1.1rem;
}

.debt-rights-page .debt-rights-pane__copy a:not(.btn) {
    color: #0f4f8e;
    text-decoration: underline;
}

.debt-rights-page .debt-rights-pane__media img {
    width: 100%;
    max-width: 410px;
    margin-left: auto;
    border-radius: 0;
    display: block;
}

.debt-rights-page .support-query {
    padding-top: 2rem;
}

@media (max-width: 1000px) {
    .debt-rights-page .debt-rights-pane {
        grid-template-columns: 1fr;
    }

    .debt-rights-page .debt-rights-pane__copy {
        text-align: center;
    }

    .debt-rights-page .debt-rights-hero__frame {
        min-height: 270px;
    }

    .debt-rights-page .debt-rights-hero__frame > img {
        min-height: 270px;
    }

    .debt-rights-page .debt-rights-hero__overlay {
        top: 0.55rem;
        width: min(520px, 60%);
        min-height: 205px;
        transform: translateY(22px);
    }

    .debt-rights-page .debt-rights-hero__overlay-copy {
        width: 100%;
        padding: 0.9rem 1.2rem 0.9rem 0.95rem;
    }

    .debt-rights-page .debt-rights-pane__copy ul {
        text-align: left;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .debt-rights-page .debt-rights-pane__media img {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .debt-rights-page .debt-rights-hero {
        padding-top: 0.55rem;
    }

    .debt-rights-page .debt-rights-hero__frame {
        min-height: 220px;
    }

    .debt-rights-page .debt-rights-hero__frame > img {
        min-height: 220px;
        object-position: 62% center;
    }

    .debt-rights-page .debt-rights-hero__overlay {
        inset: auto 0 0 0;
        width: 100%;
        min-height: auto;
        transform: none;
        background: linear-gradient(180deg, rgba(235, 243, 251, 0.2) 0%, rgba(235, 243, 251, 0.58) 65%, rgba(235, 243, 251, 0.74) 100%);
    }

    .debt-rights-page .debt-rights-hero__overlay::after {
        display: none;
    }

    .debt-rights-page .debt-rights-hero__overlay-copy {
        width: 100%;
        padding: 0.8rem 0.8rem 0.75rem;
    }

    .debt-rights-page .debt-rights-hero__overlay h1 {
        font-size: clamp(1.7rem, 8.3vw, 2.35rem);
    }

    .debt-rights-page .debt-rights-hero__overlay p {
        font-size: 0.95rem;
    }

    .debt-rights-page .debt-rights-tabs__panes {
        padding: 0.95rem;
    }

    .debt-rights-page .debt-rights-tabs__list .support-tabs__btn {
        min-height: 44px;
        font-size: 0.95rem;
        padding-inline: 0.7rem;
    }

    .debt-rights-page .debt-rights-pane__copy h2 {
        font-size: clamp(1.4rem, 6.7vw, 1.9rem);
    }
}

/* ── Debicheck Process Page ────────────────────────────────── */
.debicheck-page .debicheck-intro {
    padding-top: 2.35rem;
    padding-bottom: 1.25rem;
}

.debicheck-page .debicheck-intro__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
    gap: 1.5rem;
    align-items: center;
}

.debicheck-page .debicheck-intro__logo-wrap img {
    width: 100%;
    max-width: 560px;
    display: block;
}

.debicheck-page .debicheck-intro__copy h1 {
    color: #0e4e91;
    font-size: clamp(2.35rem, 4.7vw, 3.95rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.debicheck-page .debicheck-intro__copy p {
    color: #102940;
    max-width: 54ch;
    font-size: 1.08rem;
    line-height: 1.56;
    margin-bottom: 1rem;
}

.debicheck-page .debicheck-process-overview {
    padding-top: 0.35rem;
    padding-bottom: 2.9rem;
}

.debicheck-page .debicheck-process-overview__inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
    gap: 1.2rem;
    align-items: start;
}

.debicheck-page .debicheck-process-overview__copy h2 {
    color: #0e4e91;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.04;
    margin: 0 0 1rem;
}

.debicheck-page .debicheck-process-overview__copy p {
    color: #111f31;
    font-size: 1.03rem;
    line-height: 1.62;
    max-width: 30ch;
    margin: 0 0 1.25rem;
}

.debicheck-page .debicheck-process-overview__media img {
    width: 100%;
    max-width: 940px;
    display: block;
}

.debicheck-page .debicheck-authentication {
    padding-top: 1.65rem;
    padding-bottom: 4rem;
}

.debicheck-page .debicheck-authentication__title {
    color: #0e4e91;
    text-align: center;
    font-size: clamp(2.05rem, 4.3vw, 3.35rem);
    margin: 0 0 2.2rem;
}

.debicheck-page .debicheck-bank-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.debicheck-page .debicheck-bank-card {
    position: relative;
    border: 1px solid #c9d7e7;
    background: #fff;
    padding: 1.15rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    min-height: 272px;
    overflow: hidden;
}

.debicheck-page .debicheck-bank-card::after {
    content: "";
    position: absolute;
    right: -18px;
    top: -16px;
    width: 86px;
    height: 86px;
    background: #aac2de;
    border-radius: 0 0 0 48px;
    opacity: 0.5;
}

.debicheck-page .debicheck-bank-card__header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.95rem;
}

.debicheck-page .debicheck-bank-card__header img {
    width: auto;
    height: 44px;
    object-fit: contain;
}

.debicheck-page .debicheck-bank-card__standard-logo {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #0e4e91;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.debicheck-page .debicheck-bank-card h3 {
    color: #0e4e91;
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.15;
}

.debicheck-page .debicheck-bank-card p {
    color: #1b3f63;
    margin: 0 0 0.4rem;
}

.debicheck-page .debicheck-bank-card .btn {
    margin-top: auto;
    align-self: flex-start;
    min-width: 138px;
}

@media (max-width: 1120px) {
    .debicheck-page .debicheck-intro__inner,
    .debicheck-page .debicheck-process-overview__inner {
        grid-template-columns: 1fr;
    }

    .debicheck-page .debicheck-intro__logo-wrap img,
    .debicheck-page .debicheck-process-overview__media img {
        margin: 0 auto;
    }

    .debicheck-page .debicheck-intro__copy,
    .debicheck-page .debicheck-process-overview__copy {
        text-align: center;
    }

    .debicheck-page .debicheck-intro__copy p,
    .debicheck-page .debicheck-process-overview__copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .debicheck-page .debicheck-bank-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .debicheck-page .debicheck-intro {
        padding-top: 1.25rem;
    }

    .debicheck-page .debicheck-intro__copy h1 {
        font-size: clamp(2rem, 9vw, 2.65rem);
    }

    .debicheck-page .debicheck-process-overview__copy h2,
    .debicheck-page .debicheck-authentication__title {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    .debicheck-page .debicheck-bank-grid {
        grid-template-columns: 1fr;
    }

    .debicheck-page .debicheck-bank-card {
        min-height: 235px;
    }
}

/* ── Debicheck Standard Bank Page ──────────────────────────── */
.standard-bank-page .standard-bank-hero {
    padding-top: 1.15rem;
    padding-bottom: 1.4rem;
}

.standard-bank-page .standard-bank-hero__inner {
    max-width: 1060px;
    text-align: center;
}

.standard-bank-page .standard-bank-hero__back {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: #0f4f8e;
    font-size: 1.05rem;
    text-decoration: none;
}

.standard-bank-page .standard-bank-hero h1 {
    color: #0f4f8e;
    font-size: clamp(2.5rem, 4.9vw, 4.1rem);
    margin: 0.15rem 0 0.7rem;
    line-height: 1.05;
}

.standard-bank-page .standard-bank-hero img {
    max-width: 100px;
    display: block;
    margin: 0.2rem auto 1.1rem;
}

.standard-bank-page .standard-bank-hero p {
    color: #1d3350;
    max-width: 78ch;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

.standard-bank-page .standard-bank-videos {
    padding-top: 0.5rem;
    padding-bottom: 2rem;
}

.standard-bank-page .standard-bank-videos h2 {
    color: #0f4f8e;
    text-align: center;
    font-size: clamp(2.4rem, 5.2vw, 4.5rem);
    margin: 0 0 1.4rem;
    line-height: 1.06;
}

.standard-bank-page .standard-bank-videos__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}

.standard-bank-page .standard-bank-video-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.standard-bank-page .standard-bank-video-card h3 {
    margin: 0 0 0.75rem;
    color: #0f4f8e;
    font-size: clamp(1.6rem, 2.7vw, 2.6rem);
}

.standard-bank-page .standard-bank-video-card__frame {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16 / 9;
    border: 1px solid #b8cbe1;
    background: #0f4f8e;
}

.standard-bank-page .standard-bank-video-card__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.standard-bank-page .standard-bank-video-card .btn {
    margin-top: 0.7rem;
}

.standard-bank-page .standard-bank-other-ways {
    padding-top: 0.6rem;
    padding-bottom: 1.2rem;
}

.standard-bank-page .standard-bank-other-ways__inner {
    text-align: center;
}

.standard-bank-page .standard-bank-other-ways h2 {
    color: #0f4f8e;
    margin: 0 0 0.85rem;
    font-size: clamp(2rem, 4.2vw, 3.35rem);
}

.standard-bank-page .standard-bank-other-ways p {
    color: #344e6a;
    max-width: 80ch;
    margin: 0 auto 1.3rem;
    line-height: 1.6;
}

.standard-bank-page .standard-bank-other-ways__media {
    display: flex;
    justify-content: center;
    gap: 1.45rem;
    align-items: flex-start;
}

.standard-bank-page .standard-bank-other-ways__media img {
    width: min(310px, 47%);
    height: auto;
    border: 1px solid #b7c8da;
    background: #fff;
}

.standard-bank-page .standard-bank-query {
    padding-top: 1.45rem;
}

.standard-bank-page .standard-bank-query__form label:nth-child(4) span {
    letter-spacing: 0;
}

@media (max-width: 1024px) {
    .standard-bank-page .standard-bank-videos__grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .standard-bank-page .standard-bank-other-ways__media {
        flex-direction: column;
        align-items: center;
    }

    .standard-bank-page .standard-bank-other-ways__media img {
        width: min(420px, 100%);
    }
}

@media (max-width: 768px) {
    .standard-bank-page .standard-bank-hero {
        padding-top: 0.65rem;
    }

    .standard-bank-page .standard-bank-hero__back {
        margin-bottom: 0.2rem;
    }

    .standard-bank-page .standard-bank-hero p {
        font-size: 0.98rem;
    }

    .standard-bank-page .standard-bank-videos h2 {
        font-size: clamp(1.9rem, 9.4vw, 2.75rem);
    }
}

    /* ── FAQ Page ──────────────────────────────────────────────── */
    .faq-page {
        background: #fff;
    }

    .faq-page .faq-page__content {
        background: #fff;
    }

    .faq-page .support-faq {
        border-top: 0;
        padding-top: 2.35rem;
        padding-bottom: 2.15rem;
    }

    .faq-page .support-faq h2 {
        text-align: center;
        margin-bottom: 0.85rem;
    }

    .faq-page .support-faq__search-wrap {
        display: grid;
        justify-content: center;
    }

    .faq-page .support-faq .support-tabs {
        justify-content: center;
    }

    .faq-page .contact-connect {
        background: #fff;
        padding: 0.85rem 0 2.6rem;
    }

    .faq-page .contact-connect h2 {
        text-align: center;
        color: #0f4f8e;
        font-size: clamp(2rem, 3vw, 2.85rem);
        margin: 0 0 1.3rem;
    }

    .faq-page .contact-connect__grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.1rem;
    }

    .faq-page .contact-connect__item {
        position: relative;
        text-align: center;
        color: #193858;
        padding: 0.6rem 0.4rem;
        isolation: isolate;
    }

    .faq-page .contact-connect__ghost {
        position: absolute;
        left: 0;
        top: 0.65rem;
        width: 78px;
        height: 78px;
        border-radius: 22px;
        background: rgba(233, 236, 241, 0.45);
        z-index: 0;
        pointer-events: none;
    }

    .faq-page .contact-connect__item img,
    .faq-page .contact-connect__item svg {
        height: 52px;
        width: 52px;
        margin: 0 auto 0.6rem;
        color: #0f4f8e;
        position: relative;
        z-index: 2;
    }

    .faq-page .contact-connect__item h3 {
        color: #112f4f;
        font-size: 1.75rem;
        margin-bottom: 0.35rem;
        position: relative;
        z-index: 2;
    }

    .faq-page .contact-connect__item a,
    .faq-page .contact-connect__item p {
        color: #1f3d5d;
        font-size: 1.3rem;
        line-height: 1.2;
        position: relative;
        z-index: 2;
    }

    .faq-page .contact-connect__item a {
        text-decoration: underline;
    }

    .faq-page .contact-connect__item p {
        margin: 0.05rem 0;
    }

    .faq-page .faq-page__query {
        padding-top: 2.15rem;
    }

    @media (max-width: 1100px) {
        .faq-page .contact-connect__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 700px) {
        .faq-page .contact-connect {
            padding-top: 0.4rem;
        }

        .faq-page .contact-connect__grid {
            grid-template-columns: 1fr;
        }

        .faq-page .contact-connect__item h3 {
            font-size: 1.45rem;
        }

        .faq-page .contact-connect__item a,
        .faq-page .contact-connect__item p {
            font-size: 1.05rem;
        }
    }

/* ── About Us Page ─────────────────────────────────────────── */
.about-page .about-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
    padding: 4rem 0 4rem;
}

.about-page .about-hero__inner {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.8rem;
    align-items: center;
}

.about-page .about-hero__copy h1 {
    color: #0f4f8e;
    font-size: clamp(2.35rem, 4.85vw, 4.1rem);
    line-height: 1.1;
    margin: 0 0 1rem;
}

.about-page .about-hero__copy p {
    max-width: 32ch;
    color: #274665;
    margin: 0 0 1rem;
    font-size: 1.12rem;
    line-height: 1.45;
}

.about-page .about-hero__art img {
    width: 100%;
    max-width: 610px;
    margin-left: auto;
    margin-top: 0.55rem;
    display: block;
}

.about-page .about-goals {
    background: linear-gradient(178deg, #ecf2fb 0%, #e8eef8 46%, #ffffff 46%);
    padding: 6rem 0 5rem;
}

.about-page .about-goals h2 {
    color: #0f4f8e;
    text-align: center;
    font-size: clamp(2.35rem, 4vw, 3.75rem);
    margin: 0 0 1.75rem;
}

.about-page .about-goals__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.8rem;
    align-items: center;
}

.about-page .about-goals__image-wrap img {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    display: block;
}

.about-page .about-goals__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}

.about-page .about-goals-card {
    background: #0f4f95;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(13, 54, 96, 0.16);
    padding: 1.1rem 1rem 1.2rem;
    min-height: 260px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-page .about-goals-card__content {
    transition: transform 220ms ease;
}

.about-page .about-goals-card__more {
    position: absolute;
    left: 50%;
    bottom: 1.05rem;
    transform: translate(-50%, 12px);
    opacity: 0;
    pointer-events: none;
    background: #fff;
    color: #0f4f95;
    border-radius: 6px;
    border: 1px solid #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.34rem 0.95rem;
    text-decoration: none;
    transition: opacity 220ms ease, transform 220ms ease, background 160ms ease, color 160ms ease;
}

.about-page .about-goals-card__more:hover {
    background: #eaf2fb;
    color: #0a3f78;
    text-decoration: none;
}

.about-page .about-goals-card--qualify:hover .about-goals-card__content,
.about-page .about-goals-card--qualify:focus-within .about-goals-card__content {
    transform: translateY(-20px);
}

.about-page .about-goals-card--qualify:hover .about-goals-card__more,
.about-page .about-goals-card--qualify:focus-within .about-goals-card__more {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.about-page .about-goals-card h3 {
    color: #fff;
    font-size: 25px;
    line-height: 1.2;
    margin: 0 0 0.9rem;
}

.about-page .about-goals-card p {
    margin: 0;
    color: #e6effa;
    font-size: 1rem;
    line-height: 1.45;
}

.about-page .about-settlement {
    background: linear-gradient(180deg, #edf2fb 0%, #f8fbff 22%, #ffffff 22%);
    padding: 1.45rem 0 2.6rem;
}

.about-page .about-settlement .home-script {
    text-align: center;
    margin: 0 0 0.5rem;
    color: #0f4f8e;
}

.about-page .about-settlement__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.6rem;
    align-items: center;
}

.about-page .about-settlement__copy > p:first-child {
    color: #233d58;
    font-size: 2.1rem;
    margin: 0;
}

.about-page .about-settlement__copy h2 {
    color: #0f4f8e;
    font-size: clamp(3.1rem, 5.2vw, 4.9rem);
    line-height: 1.04;
    margin: 0.15rem 0 0.65rem;
}

.about-page .about-settlement__rule {
    display: inline-block;
    width: 36px;
    border-top: 2px solid #88a7c6;
    margin: 0 0 1rem;
}

.about-page .about-settlement__copy p {
    color: #233f5e;
    max-width: 34ch;
    margin-bottom: 1rem;
}

.about-page .about-settlement__art img {
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    display: block;
}

.about-page .home-trusted {
    padding-top: 6rem;
    background: #fff;
    border-top: 0;
}

.about-page .home-contact-teaser {
    margin-top: 4rem;
    padding-top: 0.9rem;
}

@media (max-width: 1000px) {
    .about-page .about-hero__inner,
    .about-page .about-goals__layout,
    .about-page .about-settlement__inner {
        grid-template-columns: 1fr;
    }

    .about-page .about-hero__copy,
    .about-page .about-settlement__copy {
        text-align: center;
    }

    .about-page .about-hero__copy p,
    .about-page .about-settlement__copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-page .about-settlement__art img,
    .about-page .about-hero__art img {
        margin: 0 auto;
    }

    .about-page .about-goals__cards {
        max-width: 680px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-page .about-hero {
        padding-top: 1rem;
    }

    .about-page .about-goals {
        padding-top: 1.5rem;
    }

    .about-page .about-hero__copy h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .about-page .about-goals h2 {
        font-size: clamp(2rem, 8.7vw, 3rem);
    }

    .about-page .about-goals__cards {
        grid-template-columns: 1fr;
    }
}

/* ── Improve Score Page ────────────────────────────────────── */
.improve-score-page .improve-score-hero {
    background: #fff;
    border-top: 1px solid #e6edf5;
}

.improve-score-page .improve-score-hero img {
    width: 100%;
    height: clamp(240px, 34vw, 360px);
    object-fit: cover;
}

.improve-score-page .improve-score-intro {
    background: linear-gradient(180deg, #ffffff 0%, #edf2f9 100%);
    border-bottom: 1px solid #e6edf5;
}

.improve-score-page .improve-score-intro__inner {
    text-align: center;
    padding: 1.05rem 0 1.3rem;
}

.improve-score-page .improve-score-intro h1 {
    color: #0f4f8e;
    font-size: clamp(2.4rem, 4.3vw, 4rem);
    margin: 0 0 0.55rem;
    line-height: 1.12;
}

.improve-score-page .improve-score-intro p {
    color: #1f3d5d;
    font-size: clamp(1.15rem, 1.8vw, 1.95rem);
    line-height: 1.38;
    max-width: 50ch;
    margin: 0 auto;
}

.improve-score-page .improve-score-steps {
    background: linear-gradient(180deg, #fff 0%, #edf2f9 84%, #e9eef7 100%);
    padding: 3rem 0 3rem;
}

.improve-score-page .improve-score-steps h2 {
    text-align: center;
    color: #0f4f8e;
    font-size: clamp(2.9rem, 4.7vw, 5rem);
    margin-bottom: 3rem;
    line-height: 1.08;
}

.improve-score-page .improve-score-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
    max-width: 980px;
    margin: 0 auto;
}

.improve-score-page .improve-step-card {
    border: 1px solid #7c9fbe;
    background: transparent;
    min-height: 500px;
    padding: 3.8rem 1.5rem 1.45rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.improve-score-page .improve-step-card__num {
    position: absolute;
    left: 50%;
    top: -24px;
    transform: translateX(-50%);
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #2f6fab;
    color: #fff;
    font-size: 2.05rem;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.improve-score-page .improve-step-card h3 {
    color: #13385c;
    font-size: clamp(2rem, 2.7vw, 2.8rem);
    margin-bottom: 0.65rem;
    line-height: 1.2;
}

.improve-score-page .improve-step-card p {
    color: #214464;
    font-size: 1.08rem;
    line-height: 1.55;
    max-width: 35ch;
    margin: 0 auto;
}

.improve-score-page .improve-score-bureau {
    background: linear-gradient(180deg, #edf2f9 0%, #e8eef7 72%, #e6edf7 100%);
    border-top: 0;
    padding: 3rem 0 0.75rem;
}

.improve-score-page .support-faq {
    background: #e6edf7;
    border-top: 0;
    padding: 0.9rem 0 2rem;
}

.improve-score-page .support-faq .container {
    max-width: 760px;
    background: #fff;
    padding: 1.55rem 1.6rem 1.7rem;
}

@media (max-width: 1100px) {
    .improve-score-page .improve-score-steps__grid {
        grid-template-columns: 1fr;
        gap: 1.35rem;
        max-width: 560px;
    }

    .improve-score-page .improve-step-card {
        min-height: 0;
        padding-bottom: 1.3rem;
    }
}

@media (max-width: 768px) {
    .improve-score-page .improve-score-hero img {
        height: clamp(190px, 48vw, 280px);
    }

    .improve-score-page .improve-score-intro__inner {
        padding: 0.75rem 0 1rem;
    }

    .improve-score-page .improve-score-intro h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .improve-score-page .improve-score-intro p {
        font-size: 1rem;
    }

    .improve-score-page .improve-score-steps h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .improve-score-page .improve-step-card h3 {
        font-size: clamp(1.35rem, 7vw, 1.75rem);
    }

    .improve-score-page .improve-step-card p {
        font-size: 1rem;
    }

    .improve-score-page .support-faq .container {
        padding: 1.1rem 1rem 1.2rem;
    }
}

/* ── Contact Page Parity ───────────────────────────────────── */
.contact-page .contact-hero {
    background:
        linear-gradient(176deg, #ffffff 0 78%, #e9eef7 78% 100%);
    border-top: 1px solid #e6edf5;
    padding: 3rem 0 3rem;
}

.contact-page .contact-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.1rem;
    align-items: center;
}

.contact-page .contact-hero__copy h1 {
    color: #0f4f8e;
    font-size: clamp(2.2rem, 3.7vw, 3.65rem);
    line-height: 1.2;
    margin-bottom: 1.55rem;
    max-width: 12.8ch;
}

.contact-page .contact-hero__copy p {
    color: #2b4768;
    font-size: 1.02rem;
    line-height: 1.42;
    max-width: 33ch;
    margin-bottom: 1rem;
}

.contact-page .contact-hero__copy p:last-of-type {
    margin-bottom: 0;
}

.contact-page .contact-hero__visual {
    position: relative;
    min-height: 345px;
    display: grid;
    align-items: center;
    justify-items: center;
}

.contact-page .contact-hero__shape {
    position: absolute;
    width: 210px;
    height: 210px;
    right: 9%;
    top: 0.9rem;
    border-radius: 42% 0 42% 0;
    background: #d6dfeb;
    z-index: 1;
}

.contact-page .contact-hero__visual img {
    width: min(356px, 86%);
    height: auto;
    object-fit: cover;
    position: relative;
    z-index: 2;
    margin-top: 1.45rem;
    margin-right: -0.5rem;
}

.contact-page .contact-main {
    background: #fff;
    padding: 3rem 0 3rem;
}

.contact-page .contact-main__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
    gap: 3.8rem;
    align-items: start;
}

.contact-page .contact-form {
    max-width: none;
    margin: 0;
    padding-inline: 0;
}

.contact-page .contact-form .form-row {
    margin-bottom: 0.55rem;
    gap: 0.8rem 0.9rem;
}

.contact-page .contact-form .form-group {
    margin-bottom: 0.6rem;
}

.contact-page .contact-form .form-group label {
    font-size: 0.9rem;
    color: #3a5778;
    font-weight: 500;
}

.contact-page .contact-form .form-group input,
.contact-page .contact-form .form-group textarea {
    border: 1px solid #355c85;
    border-radius: 0;
    min-height: 28px;
    padding: 0.34rem 0.5rem;
    font-size: 0.95rem;
    background: transparent;
}

.contact-page .contact-form .form-group textarea {
    min-height: 64px;
    resize: vertical;
}

.contact-page .contact-form__options {
    border: 0;
    padding: 0;
    margin: 0.25rem 0 1rem;
}

.contact-page .contact-form__options legend {
    color: #2f4f73;
    font-size: 0.92rem;
    margin-bottom: 0.2rem;
}

.contact-page .contact-form__options label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-right: 2rem;
    color: #2f4f73;
    font-size: 0.92rem;
}

.contact-page .contact-form button[type="submit"] {
    min-width: 84px;
    padding: 0.33rem 1.15rem;
    font-size: 0.98rem;
}

.contact-page .contact-hours {
    position: relative;
    padding-top: 2.75rem;
}

.contact-page .contact-hours h2 {
    color: #0f4f8e;
    font-size: clamp(2rem, 3.2vw, 3rem);
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 2;
}

.contact-page .contact-hours dl {
    display: grid;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.contact-page .contact-hours dl div {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 0.75rem;
}

.contact-page .contact-hours dt {
    color: #1a2538;
    font-weight: 700;
    font-size: 1rem;
}

.contact-page .contact-hours dd {
    color: #2e4e72;
    font-size: 1rem;
}

.contact-page .contact-hours__shape {
    position: absolute;
    right: 0;
    top: auto;
    bottom: -0.8rem;
    width: 210px;
    height: 210px;
    background: #d6dfeb;
    border-radius: 42% 0 42% 0;
    z-index: 1;
}

.contact-page .contact-connect {
    background: #fff;
    padding: 3rem 0 3rem;
}

.contact-page .contact-connect h2 {
    text-align: center;
    color: #0f4f8e;
    font-size: clamp(2rem, 3vw, 2.85rem);
    margin: 0 0 1.3rem;
}

.contact-page .contact-connect__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
}

.contact-page .contact-connect__item {
    position: relative;
    text-align: center;
    color: #193858;
    padding: 0.6rem 0.4rem;
    isolation: isolate;
}

.contact-page .contact-connect__ghost {
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: rgba(233, 236, 241, 0.45);
    z-index: 0;
    pointer-events: none;
}

.contact-page .contact-connect__item img,
.contact-page .contact-connect__item svg {
    height: 52px;
    width: 52px;
    margin: 0 auto 0.6rem;
    color: #0f4f8e;
    position: relative;
    z-index: 2;
}

.contact-page .contact-connect__item h3 {
    color: #112f4f;
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
    position: relative;
    z-index: 2;
}

.contact-page .contact-connect__item a,
.contact-page .contact-connect__item p {
    color: #1f3d5d;
    font-size: 1.3rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.contact-page .contact-connect__item a {
    text-decoration: underline;
}

.contact-page .contact-connect__item p {
    margin: 0.05rem 0;
}

.contact-page .contact-trusted {
    background: #fff;
    padding: 3rem 0 3rem;
}

.contact-page .contact-trusted h2 {
    color: #0f4f8e;
    text-align: center;
    font-size: clamp(2rem, 3.4vw, 3.1rem);
    line-height: 1.2;
    max-width: 20ch;
    margin: 0 auto 1.4rem;
}

.contact-page .contact-trusted__logos {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2.4rem;
    align-items: center;
}

.contact-page .contact-trusted__logos img {
    width: auto;
    max-height: 58px;
    margin: 0 auto;
    object-fit: contain;
}

.contact-page .contact-trusted__logos img:nth-child(3) {
    max-height: 50px;
}

.contact-page .contact-trusted__logos img:nth-child(4) {
    max-height: 64px;
}

@media (max-width: 1100px) {
    .contact-page .contact-hero__inner,
    .contact-page .contact-main__inner {
        grid-template-columns: 1fr;
        gap: 1.55rem;
    }

    .contact-page .contact-hero__copy h1,
    .contact-page .contact-hero__copy p {
        max-width: none;
    }

    .contact-page .contact-hero__visual {
        min-height: 320px;
        max-width: 540px;
        width: 100%;
        margin: 0 auto;
    }

    .contact-page .contact-hours {
        padding-top: 2.1rem;
    }

    .contact-page .contact-hours__shape {
        width: 170px;
        height: 170px;
        top: auto;
        bottom: -0.3rem;
    }

    .contact-page .contact-connect__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.4rem 1rem;
    }

    .contact-page .contact-connect__item h3 {
        font-size: 1.55rem;
    }

    .contact-page .contact-connect__item a,
    .contact-page .contact-connect__item p {
        font-size: 1.18rem;
    }

    .contact-page .contact-trusted__logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-page .contact-hero {
        padding-top: 1.3rem;
    }

    .contact-page .contact-hero__copy h1 {
        font-size: clamp(1.95rem, 8.7vw, 2.7rem);
        margin-bottom: 1.05rem;
    }

    .contact-page .contact-hero__visual {
        min-height: 265px;
    }

    .contact-page .contact-hero__shape {
        width: 170px;
        height: 170px;
        right: 8%;
        top: 0.7rem;
    }

    .contact-page .contact-hero__visual img {
        width: min(302px, 88%);
        margin-top: 1.05rem;
        margin-right: -0.15rem;
    }

    .contact-page .contact-main {
        padding: 1rem 0 1.8rem;
    }

    .contact-page .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-page .contact-form__options label {
        margin-right: 0.9rem;
        margin-bottom: 0.25rem;
    }

    .contact-page .contact-hours h2 {
        margin-bottom: 1.15rem;
    }

    .contact-page .contact-hours dl div {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }

    .contact-page .contact-hours__shape {
        display: none;
    }

    .contact-page .contact-connect {
        padding: 1rem 0 1.7rem;
    }

    .contact-page .contact-connect__grid {
        grid-template-columns: 1fr;
    }

    .contact-page .contact-connect__item {
        padding-inline: 0;
    }

    .contact-page .contact-connect__item h3 {
        font-size: 1.45rem;
    }

    .contact-page .contact-connect__item a,
    .contact-page .contact-connect__item p {
        font-size: 1.08rem;
    }

    .contact-page .contact-connect__ghost {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-page .contact-trusted__logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.4rem;
    }
}

/* ── Homepage Screenshot Parity ────────────────────────────── */
.home-script {
    font-family: "qejohnwilliams", "Segoe Script", "Brush Script MT", cursive;
    font-size: 2rem;
    color: #1a4f88;
}

.home-hero {
    --home-hero-bubble-bg: rgba(184, 206, 232, 0.9);
    background:
        linear-gradient(176deg, #edf2f9 0 44%, #fff 44% 100%);
    border-top: 1px solid #e6edf5;
    padding: 1.3rem 0 1.5rem;
}

.home-hero__inner {
    position: relative;
    min-height: 560px;
    display: grid;
    align-content: start;
}

.home-hero__viewport {
    width: min(920px, 100% - 110px);
    margin: 0 auto;
}

.home-hero__slide {
    display: none;
    grid-template-columns: 350px 1fr;
    align-items: center;
    gap: 0;
    position: relative;
    animation: homeHeroFade 240ms ease;
}

.home-hero__slide.is-active {
    display: grid;
}

.home-hero__slide .home-hero__image-wrap {
    order: 1;
}

.home-hero__slide .home-hero__copy {
    order: 2;
}

.home-hero__slide--reverse .home-hero__image-wrap {
    order: 2;
}

.home-hero__slide--reverse .home-hero__copy {
    order: 1;
    justify-self: end;
}

.home-hero__slide--reverse .home-hero__bubble {
    margin-left: 0;
    margin-right: -30px;
}

@keyframes homeHeroFade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.home-hero__image-wrap {
    position: relative;
    z-index: 1;
}

.home-hero__image-wrap img {
    width: 350px;
    height: 500px;
    object-fit: cover;
    border-radius: 180px 180px 0 0;
}

.home-hero__logo {
    margin-top: 0.7rem;
    margin-inline: auto;
    width: min(270px, 84%);
    height: auto;
}

.home-hero__copy {
    position: relative;
    z-index: 3;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-self: start;
    width: max-content;
    gap: 0.85rem;
}

.home-hero__bubble {
    margin-left: 0;
    background-color: var(--home-hero-bubble-bg);
    color: #173452;
    border-radius: 40px;
    padding: 2.15rem 2.25rem 1.85rem;
    min-height: 280px;
    width: 555px;
    max-width: 555px;
    display: grid;
    align-content: start;
    gap: 0.92rem;
}

.home-hero__bubble {
    max-width: 555px;
    background-color: var(--home-hero-bubble-bg);
}

.home-hero__copy {
    margin-left: 0;
    transform: translateX(-72px);
}

.home-hero__bubble h1,
.home-hero__bubble h2 {
    color: #14355b;
    font-size: 26px;
    line-height: 1.28;
    max-width: none;
    width: 100%;
}

.home-hero__bubble p {
    color: #24496d;
    max-width: none;
    width: 100%;
    font-size: 20px;
    line-height: 1.35;
}

.home-hero__cta {
    min-width: 224px;
    padding-inline: 1.8rem;
    border-radius: 8px;
    margin-top: 0.1rem;
    align-self: center;
}

.home-hero__arrow {
    border: 0;
    background: transparent;
    color: #2e6a9f;
    font-size: 2.2rem;
    line-height: 1;
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    cursor: pointer;
}

.home-hero__arrow:hover { color: #0f5ca5; }

.home-hero__arrow--left { left: 0.25rem; }
.home-hero__arrow--right { right: 0.25rem; }

.home-hero__dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.home-hero__dots button {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8db1d5;
    display: inline-block;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.home-hero__dots .is-active { background: #0f5ca5; }

.home-hero__dots button[aria-current="true"] {
    outline: 1px solid #0f5ca5;
    outline-offset: 3px;
}

.home-journey {
    background:
        linear-gradient(180deg, #edf2f9 0%, #eef3fa 84%, #fff 84%);
    padding: 1.1rem 0 2.4rem;
}

.home-journey__title-row {
    display: flex;
    gap: 1.4rem;
    align-items: end;
    margin-bottom: 1.2rem;
}

.home-journey__title-row h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: #0f4f8e;
    margin: 0;
}

.home-journey .home-script {
    margin-top: 1rem;
    margin-bottom: 0.15rem;
    margin-left: 3rem;
}

.home-journey__grid {
    display: grid;
    grid-template-columns: repeat(3, 337px);
    justify-content: center;
    gap: 0;
    margin: -40px;
}

.home-journey-card {
    background: #0d55a0;
    border-radius: 20px;
    padding: 0.78rem 1rem 0.9rem;
    color: #fff;
    width: 257px;
    min-height: 283px;
    margin: 40px;
    position: relative;
    text-align: center;
    transition: transform 0.4s ease-in-out, visibility 0.4s ease-in-out;
    font-family: poppins-extralight, poppins, sans-serif;
}

@media (hover: hover) and (pointer: fine) {
    .home-journey-card:hover {
        transform: rotate(0.7deg);
    }

    .home-journey-card:nth-child(even):hover {
        transform: rotate(-0.7deg);
    }
}

.home-journey-card__num {
    position: absolute;
    left: 0.6rem;
    top: 0.45rem;
    color: #d7e8f8;
    font-size: 1.12rem;
}

.home-journey-card__icon-svg {
    width: 36px;
    height: 36px;
    color: #fff;
    margin: 0.2rem auto 0.5rem;
    display: block;
}

.home-journey-card p {
    color: #e6f0fb;
    font-size: 0.9rem;
    line-height: 1.34;
    margin-bottom: 42px;
}

.home-reclaim {
    background: #fff;
    padding: 2.7rem 0;
    border-top: 1px solid #e6edf5;
}

.home-reclaim__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.home-reclaim__copy {
    text-align: center;
}

.home-reclaim__copy h2 {
    font-size: clamp(2.6rem, 4.6vw, 4rem);
    line-height: 1.06;
    color: #0f4f8e;
    margin-bottom: 1.15rem;
    text-align: center;
}

.home-reclaim__copy p {
    font-size: 18px;
    margin-bottom: 30px;
    margin-left: 99px;
    margin-right: 99px;
    color: #234663;
}

.home-reclaim__image-wrap {
    position: relative;
}

.home-reclaim__image-wrap::before {
    content: "";
    position: absolute;
    top: -18px;
    right: 24px;
    width: 130px;
    height: 44px;
    background: radial-gradient(circle at 14px 22px, #d6d8dc 14px, transparent 15px) 0 0/44px 44px repeat-x;
}

.home-reclaim__image-wrap img {
    width: 100%;
    max-width: 540px;
    border-radius: 0;
}

.home-numbers {
    padding: 2rem 0 2.2rem;
    border-top: 0;
    background: #fff;
}

.home-numbers .container {
    max-width: var(--max-w);
}

.home-numbers__inner {
    display: grid;
    grid-template-columns: 60% 40%;
    justify-content: space-between;
    gap: 0;
    align-items: start;
    font-family: poppins-semibold, poppins, sans-serif;
}

.home-numbers__stats {
    text-align: center;
}

.home-numbers__stats h2 {
    color: #002549;
    font-size: 35px;
    font-weight: 400;
    line-height: 49px;
    margin-bottom: 2rem;
}

.home-stat--primary {
    margin-bottom: 60px;
}

.home-stat-sub {
    font-size: 25px;
}

.home-stat p {
    color: #002549;
    line-height: 22.4px;
}

.home-stat__currency {
    font-size: 25px;
    flex: 0 0 auto;
}

.home-stat__value {
    font-size: 25px;
    flex: 0 0 auto;
}

.home-stat--primary p {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 1.45rem;
}

.home-stat-grid {
    display: flex;
    justify-content: space-between;    
    max-width: 521px;
    margin-bottom: 1.1rem;
}

.home-stat-main {
    font-size: 38px;
}

.home-stat-grid .home-stat {
    flex: 0 0 auto;
}

.home-stat-grid .home-stat:nth-child(1) { width: 184px; }
.home-stat-grid .home-stat:nth-child(2) { width: 130px; }
.home-stat-grid .home-stat:nth-child(3) { width: 145px; }

.home-stat-grid .home-stat p {
    margin-top: 0.72rem;
}

.home-numbers__visual {
    position: relative;
    isolation: isolate;
    text-align: center;
    overflow: hidden;
}

.home-numbers__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/1809f8_41728c1b7c1747769add631ec92432c4~mv2.png") no-repeat center / contain;
    opacity: 0.33;
    z-index: 0;
    pointer-events: none;
}

.home-numbers__visual .home-script {
    margin: 1.85rem auto 2.15rem;
    max-width: 278px;
    font-size: 30px;
    line-height: 1.04;
    color: #004c97;
    position: relative;
    z-index: 2;
}

.home-numbers__visual-wrap {
    position: relative;
    min-height: 421px;
    z-index: 2;
}

.home-numbers__visual-wrap > img:first-child {
    width: 328px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home-settlement {
    border-top: 2px solid #dde8f5;
    padding: 2.2rem 0;
}

.home-settlement__inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.7rem;
    align-items: center;
}

.home-settlement__art img {
    width: 100%;
    max-width: 380px;
}

.home-settlement__copy > p:first-child {
    color: #233c56;
    font-size: 1.8rem;
}

.home-settlement__copy h2 {
    color: #0d4f90;
    font-size: clamp(2.6rem, 4.4vw, 4.2rem);
    line-height: 0.98;
    margin-bottom: 0.9rem;
}

.home-settlement__rule {
    display: inline-block;
    width: 42px;
    border-top: 2px solid #9fb9d5;
    margin: 0.1rem 0 0.9rem;
}

.home-settlement__copy p {
    color: #294866;
    max-width: 40ch;
    margin-bottom: 1rem;
}

.home-trusted {
    background:
        linear-gradient(180deg, #eaf2fc 0%, #f2f7fd 42%, #ffffff 100%);
    border-top: 2px solid #deebf7;
    padding: 1.8rem 0 2.05rem;
}

.home-trusted h2 {
    color: #0f4f8e;
    text-align: center;
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    margin: 0 auto 1.25rem;
    line-height: 1.16;
}

.home-trusted__logos {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 2.1rem;
}

.home-trusted__logos img {
    max-height: 50px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
    filter: saturate(0.98) contrast(1.02);
}

.home-trusted__logos img:nth-child(3) { max-height: 46px; }
.home-trusted__logos img:nth-child(4) { max-height: 52px; }

.home-contact-teaser {
    background: #fff;
    padding: 1.5rem 0 2.25rem;
    margin-top: 60PX;
}

.home-contact-teaser__inner {
    max-width: 760px;
}

.home-contact-teaser h2 {
    text-align: center;
    color: #0f4f8e;
    font-size: clamp(1.9rem, 2.9vw, 2.6rem);
    margin-bottom: 1.2rem;
}

.section h2,
.split h2,
.cta-panel h2,
.home-journey__title-row h2,
.home-reclaim__copy h2,
.home-settlement__copy h2,
.home-trusted h2,
.home-contact-teaser h2,
.home-portal-banner__modal h2 {
    font-size: var(--section-heading-size);
}

.support-page .support-services h2 {
    font-size: 35px;
    line-height: 49px;
    font-weight: 400;
}

.support-page .support-payments__content h2 {
    font-size: 30px;
    line-height: 1.18;
    font-weight: 400;
}

.support-page .support-feature__copy h2 {
    font-size: 56px;
    line-height: 1.18;
    font-weight: 400;
    margin-bottom: 60px;
}

.support-page .support-faq h2,
.support-page .support-query__panel h2,
.support-page .support-banner__inner h2 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
}

.home-contact-teaser__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.78rem 1rem;
}

.home-contact-teaser__grid label {
    display: grid;
    gap: 0.28rem;
    color: #365474;
    font-size: 0.88rem;
}

.home-contact-teaser__grid input,
.home-contact-teaser__grid textarea {
    border: 1px solid #355c85;
    background: #fff;
    min-height: 40px;
    padding: 0.42rem 0.55rem;
    font-size: 0.94rem;
    color: #183656;
}

.home-contact-teaser__grid textarea {
    min-height: 102px;
    resize: vertical;
}

.home-contact-teaser__full {
    grid-column: span 2;
}

.home-contact-teaser__form .btn {
    margin-top: 0.9rem;
    padding: 0.45rem 1.7rem;
    border-width: 1px;
}

.home-portal-banner {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background:
        linear-gradient(rgba(255,255,255,0.16), rgba(255,255,255,0.16)),
        url("../images/1809f8_8282e07db77e4fb8981b51510f969431~mv2.png") center/cover no-repeat;
    min-height: 100vh;
    display: grid;
    align-items: center;
    overflow-y: auto;
    transition: opacity 240ms ease, visibility 240ms ease;
}

.home-portal-banner.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.has-launch-overlay {
    overflow: hidden;
}

.home-portal-banner__inner {
    display: flex;
    justify-content: center;
}

.home-portal-banner__modal {
    width: min(760px, 92%);
    background: rgba(127, 127, 127, 0.6);
    color: #fff;
    text-align: center;
    padding: 1.35rem 1.9rem 1.5rem;
    position: relative;
}

.home-portal-banner__close {
    position: absolute;
    right: 0.6rem;
    top: 0.28rem;
    color: rgba(255,255,255,0.66);
    background: transparent;
    border: 0;
    font-size: 2.1rem;
    line-height: 1;
    cursor: default;
}

.home-portal-banner__modal h2 {
    color: #fff;
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.1;
    margin-bottom: 0.3rem;
}

.home-portal-banner__modal h3 {
    color: #fff;
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    margin-bottom: 0.85rem;
}

.home-portal-banner__modal p {
    color: rgba(255,255,255,0.92);
    max-width: 44ch;
    margin: 0 auto 0.55rem;
    line-height: 1.33;
}

.home-portal-banner__intro {
    font-size: 1.01rem;
}

.home-portal-banner__steps-title {
    margin-top: 0.45rem;
}

.home-portal-banner__step {
    margin-bottom: 0.46rem;
}

.home-portal-banner__step strong {
    font-size: 1.02rem;
}

.home-portal-banner__modal .btn {
    margin-top: 0.25rem;
    border-radius: 8px;
    padding: 0.52rem 2rem;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .footer__inner { grid-template-columns: 1fr 1fr; }

    .grid--3 { grid-template-columns: 1fr; }
    .grid--2 { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; }
    .contact-layout { gap: var(--space-md); }
    .support-grid .support-card:nth-child(5) { grid-column: auto; }
    .process-steps { grid-template-columns: 1fr; }
    .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bank-grid { grid-template-columns: 1fr; }

    .support-hero__layout,
    .support-payments__grid,
    .support-feature__grid {
        grid-template-columns: 1fr;
    }

    .support-statements {
        min-height: 0;
        padding: 0;
        display: grid;
        gap: 0;
    }

    .support-statements__media,
    .support-statements__overlay {
        width: 100%;
    }

    .support-statements__media {
        min-height: 280px;
    }

    .support-statements__overlay {
        position: static;
        min-height: 0;
        border-radius: 0;
    }

    .support-statements__copy {
        max-width: none;
        padding: 1.1rem 1.1rem 1rem;
    }

    .support-bureau {
        min-height: 0;
        padding: 0;
        display: grid;
        gap: 0;
    }

    .support-bureau__media,
    .support-bureau__overlay {
        width: 100%;
    }

    .support-bureau__media {
        min-height: 280px;
    }

    .support-bureau__overlay {
        position: static;
        min-height: 0;
        transform: none;
    }

    .support-bureau__copy {
        max-width: none;
        padding: 1.1rem 1.1rem 1rem;
    }

    .support-hero__visual {
        min-height: 0;
    }

    .support-hero__visual .support-hero__image {
        margin: 0 auto;
        width: min(370px, 100%);
    }

    .support-hero__visual .support-hero__dots {
        width: min(180px, 55%);
        margin: 0.35rem auto 0;
        margin-right: 0;
    }

    .support-services__grid {
        grid-template-columns: 1fr 1fr;
    }

    .support-payments__image-wrap,
    .support-feature__image {
        min-height: 0;
        height: 360px;
    }

    .support-payments__image-wrap img,
    .support-feature__image img {
        height: 100%;
    }

    .support-query__form {
        grid-template-columns: 1fr;
    }

    .home-hero__inner { min-height: auto; }
    .home-hero__viewport {
        width: 100%;
    }
    .home-hero__slide {
        width: 100%;
        grid-template-columns: 1fr;
        align-items: start;
    }
    .home-hero__image-wrap img {
        width: min(420px, 100%);
        height: auto;
        margin: 0 auto;
    }
    .home-hero__copy {
        margin-bottom: 0;
        align-items: center;
        margin-left: 0;
        width: 100%;
        justify-self: auto;
        transform: none;
    }
    .home-hero__bubble {
        margin-left: 0;
        margin-top: -10px;
        width: min(555px, 100%);
        max-width: 100%;
    }
    .home-hero__slide--reverse .home-hero__image-wrap,
    .home-hero__slide--reverse .home-hero__copy {
        order: initial;
    }
    .home-hero__slide--reverse .home-hero__bubble {
        margin-right: 0;
    }
    .home-hero__arrow { display: none; }

    .home-journey__title-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .home-journey__grid {
        grid-template-columns: 1fr;
        margin: 0;
    }
    .home-journey-card {
        width: min(257px, 100%);
        margin: 0 auto 1rem;
        min-height: 0;
    }

    .home-reclaim__inner,
    .home-numbers__inner,
    .home-settlement__inner {
        grid-template-columns: 1fr;
    }
    .home-reclaim__image-wrap img,
    .home-settlement__art img {
        margin: 0 auto;
    }
    .home-numbers .container {
        max-width: var(--max-w);
    }
    .home-numbers__inner {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .home-stat--primary h3 {
        font-size: clamp(1.9rem, 8vw, 2.4rem);
        line-height: 1.15;
        gap: 0.35rem;
    }
    .home-stat-grid {
        flex-direction: column;
        max-width: 100%;
        gap: 1rem;
    }
    .home-stat-grid .home-stat,
    .home-stat-grid .home-stat:nth-child(1),
    .home-stat-grid .home-stat:nth-child(2),
    .home-stat-grid .home-stat:nth-child(3) {
        width: auto;
    }
    .home-numbers__visual .home-script {
        margin: 0 auto 1rem;
    }
    .home-numbers__visual-wrap {
        min-height: 0;
    }
    .home-numbers__visual::before {
        background-size: contain;
        opacity: 0.28;
    }

    .home-trusted__logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
    .home-contact-teaser__grid { grid-template-columns: 1fr; }
    .home-contact-teaser__full { grid-column: span 1; }
    .home-portal-banner__modal {
        padding: 1.15rem 0.9rem 1.1rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 78px;
    }

    .nav__toggle { display: flex; }

    .nav__item--has-submenu {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .nav__item--has-submenu > .nav__link {
        flex: 1;
    }

    .nav__submenu-toggle {
        display: inline-flex;
    }

    .nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: var(--space-md);
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 4px 12px rgba(0,0,0,0.10);
        gap: var(--space-sm);
    }

    .nav__submenu {
        position: static;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        padding: 0.6rem 0 0.2rem 0.95rem;
        min-width: 0;
        display: none;
        width: 100%;
    }

    .nav__submenu--grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem 0.95rem;
        padding: 0.6rem 0 0.2rem 0.95rem;
        left: auto;
        transform: none;
    }

    .nav__item--has-submenu.nav__item--submenu-open > .nav__submenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: grid;
    }

    .nav__item--has-submenu.nav__item--submenu-open > .nav__submenu:not(.nav__submenu--grid) {
        display: block;
    }

    .nav__item--has-submenu.nav__item--submenu-open > .nav__submenu-toggle span {
        transform: rotate(-135deg) translateY(-1px);
    }

    .nav__sublink {
        font-size: 1rem;
        line-height: 1.2;
        max-width: none;
    }

    .nav__actions { 
        display: none;
     }

    .nav__links.is-open { display: flex; }
    .form-row { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; }
    .hero { padding-top: var(--space-lg); }
    .hero__inner { padding-inline: 1.1rem; }
    .hero h1 { font-size: clamp(1.75rem, 8vw, 2.35rem); }
    .hero h2 { font-size: clamp(1.05rem, 5vw, 1.35rem); }
    .hero__lead { font-size: 1rem; }
    .hero__actions { gap: 0.55rem; }
    .hero__actions .btn {
        min-width: 0;
        width: 100%;
    }
    .section { padding: 3rem 0; }
    .metric-card { padding-block: 1.3rem; }
    .metric-card h2 { font-size: clamp(1.25rem, 6.3vw, 1.8rem); }
    .support-grid .support-card { padding: 1.15rem; }
    .support-grid .support-card h2 { font-size: 1.06rem; }

    .support-page .section {
        padding: 2.55rem 0;
    }

    .support-services__grid {
        grid-template-columns: 1fr;
    }

    .support-hero__copy h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    .support-payments__content,
    .support-query__panel {
        padding: 1rem;
    }

    .support-tabs {
        gap: 0;
    }

    .support-tabs__btn {
        font-size: 15px;
        padding: 0 0.7rem;
        min-height: 60px;
    }

    .support-payments .support-tabs {
        gap: 0.4rem;
    }

    .support-payments .support-tabs__btn {
        min-height: 44px;
        padding: 0.4rem 0.65rem;
        font-size: 0.9rem;
    }

    .support-payments__debit-layout {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .support-payments__debicheck-logo {
        justify-self: start;
    }

    .support-query__form button {
        width: 100%;
    }
    .contact-form--panel {
        padding: 1rem;
        border-radius: 12px;
    }
    .contact-form__title { font-size: 1.15rem; }
    .faq-item summary { font-size: 0.98rem; }
    .reveal {
        opacity: 1;
        transform: none;
    }

    .woot-widget-bubble {
        display: none;
    }

    .mobile-quick-footer {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 320;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        background: #fff;
        border-top: 1px solid #dbe3ec;
        box-shadow: 0 -6px 16px rgba(0, 32, 70, 0.12);
    }

    .mobile-quick-footer__item {
        min-height: 63px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.24rem;
        color: var(--color-text);
        border-left: 1px solid #e5ebf2;
        font-size: 1.58rem;
    }

    .mobile-quick-footer__item:first-child {
        border-left: 0;
    }

    .mobile-quick-footer__item span {
        font-size: 0.55rem;
        line-height: 1;
        font-weight: 500;
        letter-spacing: 0.01em;
        color: var(--color-text);
    }

    .mobile-quick-footer__item svg,
    .mobile-quick-footer__item img {
        width: 1em;
        height: 1em;
        display: block;
    }

    .mobile-quick-footer__item img {
        object-fit: contain;
    }

    .mobile-quick-footer__item:nth-child(1) {
        color: #2ea84a;
    }

    .mobile-quick-footer__item:nth-child(2) {
        color: #20b85a;
    }

    .mobile-quick-footer__item:nth-child(3),
    .mobile-quick-footer__item:nth-child(4) {
        color: var(--color-navy);
    }
}

/* ── Cookie Notice ─────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 300;
    margin-inline: auto;
    max-width: 1120px;
    background: rgba(0, 50, 93, 0.96);
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(0, 20, 42, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.95rem 1rem;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.8rem 1rem;
    align-items: center;
}

.cookie-banner__text {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.95);
}

.cookie-banner__text a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__actions {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.cookie-banner__btn {
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.86rem;
    line-height: 1;
    padding: 0.52rem 0.9rem;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.cookie-banner__btn--primary {
    background: #fff;
    border-color: #fff;
    color: #003b70;
}

.cookie-banner__btn--primary:hover {
    background: #edf4fb;
}

.cookie-banner__btn--ghost,
.cookie-banner__btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.46);
}

.cookie-banner__btn--ghost:hover,
.cookie-banner__btn--outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

.cookie-banner__close {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.1rem 0.35rem;
}

.cookie-banner__close:hover {
    color: #d8e9f7;
}

.cookie-banner__panel {
    margin-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.7rem;
    display: grid;
    gap: 0.55rem;
}

.cookie-banner__panel-title {
    font-weight: 600;
    margin: 0;
    font-size: 0.9rem;
}

.cookie-banner__option {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.88rem;
}

.cookie-banner__option input {
    accent-color: #3b9be9;
}

@media (max-width: 720px) {
    .cookie-banner {
        left: 0.55rem;
        right: 0.55rem;
        bottom: 0.55rem;
        padding: 0.8rem;
    }

    .cookie-banner__body {
        grid-template-columns: 1fr;
    }

    .cookie-banner__actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .cookie-banner__close {
        margin-left: auto;
    }
}
