:root {
    color-scheme: light;
    --ja-blue: #0a2b73;
    --ja-navy: #061a3d;
    --ja-ink: #10213d;
    --ja-gold: #ed9d00;
    --ja-gold-text: #815400;
    --ja-yellow: #ffc21a;
    --ja-white: #ffffff;
    --ja-paper: #f5f8fc;
    --ja-soft: #eaf1fa;
    --ja-muted: #52627a;
    --ja-line: #d9e2ef;
    --ja-danger: #9f2424;
    --ja-shadow: 0 22px 56px rgba(16, 33, 61, 0.14);
    --ja-radius: 8px;
    --ja-font-sans: "Segoe UI Variable", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    max-width: 100%;
}

body.ja-site {
    color: var(--ja-ink);
    font-family: var(--ja-font-sans);
    letter-spacing: 0;
    background: var(--ja-white);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(255, 194, 26, 0.58);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    color: var(--ja-white);
    background: var(--ja-navy);
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    width: 100%;
    border-bottom: 1px solid rgba(10, 43, 115, 0.1);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 28px rgba(16, 33, 61, 0.06);
    backdrop-filter: blur(14px);
}

.site-header-inner {
    display: grid;
    grid-template-columns: minmax(230px, 324px) 1fr auto;
    align-items: center;
    gap: 34px;
    width: min(1180px, calc(100% - 48px));
    min-height: 86px;
    margin: 0 auto;
}

.brand-image-link {
    display: inline-flex;
    align-items: center;
    width: min(324px, 100%);
}

.brand-logo {
    display: block;
    width: 100%;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.site-nav a {
    position: relative;
    padding: 12px 0;
    color: var(--ja-ink);
    font-size: 14px;
    font-weight: 700;
}

.site-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 2px;
    background: var(--ja-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid transparent;
    border-radius: var(--ja-radius);
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn-primary {
    color: var(--ja-navy);
    background: var(--ja-yellow);
    box-shadow: 0 14px 30px rgba(237, 157, 0, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    color: var(--ja-white);
    background: var(--ja-blue);
    box-shadow: 0 16px 34px rgba(10, 43, 115, 0.22);
}

.btn-secondary {
    color: var(--ja-blue);
    border-color: rgba(10, 43, 115, 0.28);
    background: rgba(255, 255, 255, 0.84);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: var(--ja-blue);
    background: var(--ja-white);
}

.btn-header {
    min-width: 132px;
    color: var(--ja-white);
    background: var(--ja-blue);
}

.btn-header:hover,
.btn-header:focus-visible {
    color: var(--ja-navy);
    background: var(--ja-yellow);
}

.hero-section {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: calc(100svh - 132px);
    border-bottom: 1px solid var(--ja-line);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 46%, rgba(255, 255, 255, 0.36) 72%, rgba(255, 255, 255, 0.05) 100%),
        url("/ge_web_portal/static/src/img/bg-electric-main-2200.webp") center center / cover no-repeat,
        var(--ja-paper);
}

.hero-inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 72px 0 82px;
}

.hero-copy {
    width: min(690px, 64%);
}

.eyebrow,
.form-kicker {
    margin: 0 0 14px;
    color: var(--ja-gold-text);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 680px;
    margin: 0;
    color: var(--ja-navy);
    font-size: 58px;
    font-weight: 780;
    line-height: 1.04;
    letter-spacing: 0;
    overflow-wrap: break-word;
}

.hero-lead {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--ja-muted);
    font-size: 19px;
    line-height: 1.58;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 34px;
    color: var(--ja-blue);
    font-size: 13px;
    font-weight: 700;
}

.hero-points span {
    position: relative;
    padding-left: 16px;
}

.hero-points span::before {
    content: "";
    position: absolute;
    top: 0.52em;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--ja-gold);
    transform: rotate(45deg);
}

.capability-strip {
    position: relative;
    z-index: 3;
    color: var(--ja-white);
    background: var(--ja-navy);
}

.capability-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.capability-strip span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 750;
    text-align: center;
}

.capability-strip span:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.content-section,
.contact-section {
    width: 100%;
    padding: 96px 24px;
}

.section-heading {
    width: min(760px, 100%);
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading h2,
.contact-copy h2 {
    margin: 0;
    color: var(--ja-navy);
    font-size: 40px;
    font-weight: 760;
    line-height: 1.12;
    letter-spacing: 0;
}

.section-heading > p:last-child,
.contact-copy > p {
    margin: 18px 0 0;
    color: var(--ja-muted);
    font-size: 17px;
    line-height: 1.65;
}

.services-section {
    background: var(--ja-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-rows: 112px auto;
    min-width: 0;
    min-height: 260px;
    border: 1px solid var(--ja-line);
    border-radius: var(--ja-radius);
    padding: 22px;
    background: var(--ja-white);
    box-shadow: 0 12px 34px rgba(16, 33, 61, 0.06);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-item:hover {
    border-color: rgba(237, 157, 0, 0.48);
    box-shadow: 0 18px 40px rgba(16, 33, 61, 0.1);
    transform: translateY(-2px);
}

.service-item img {
    display: block;
    width: 106px;
    height: 106px;
    object-fit: contain;
}

.service-item h3 {
    margin: 12px 0 8px;
    color: var(--ja-blue);
    font-size: 17px;
    font-weight: 780;
    line-height: 1.25;
}

.service-item p {
    margin: 0;
    color: var(--ja-muted);
    font-size: 14px;
    line-height: 1.55;
}

.process-section {
    width: 100%;
    padding: 96px 24px;
    color: var(--ja-white);
    background: var(--ja-navy);
}

.process-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.section-heading-light h2,
.section-heading-light > p:last-child {
    color: var(--ja-white);
}

.section-heading-light .eyebrow {
    color: var(--ja-yellow);
}

.section-heading-light > p:last-child {
    opacity: 0.72;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    min-width: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    padding: 26px 28px 0;
}

.process-list li:first-child {
    padding-left: 0;
}

.process-list li:last-child {
    border-right: 0;
    padding-right: 0;
}

.process-list span {
    color: var(--ja-yellow);
    font-size: 13px;
    font-weight: 800;
}

.process-list h3 {
    margin: 14px 0 10px;
    color: var(--ja-white);
    font-size: 18px;
    line-height: 1.25;
}

.process-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.55;
}

.contact-section {
    background:
        linear-gradient(90deg, rgba(245, 248, 252, 0.98), rgba(234, 241, 250, 0.92)),
        var(--ja-soft);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1fr);
    gap: 72px;
    align-items: center;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.contact-copy {
    max-width: 480px;
}

.contact-methods {
    display: grid;
    gap: 12px;
    margin: 30px 0 0;
    font-style: normal;
}

.contact-methods a {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    align-items: baseline;
    gap: 14px;
    border-bottom: 1px solid rgba(10, 43, 115, 0.15);
    padding: 0 0 12px;
}

.contact-methods span {
    color: var(--ja-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-methods strong {
    min-width: 0;
    color: var(--ja-blue);
    font-size: 18px;
    overflow-wrap: anywhere;
}

.contact-note {
    font-size: 13px !important;
}

.form-card {
    position: relative;
    width: 100%;
    border: 1px solid var(--ja-line);
    border-top: 4px solid var(--ja-gold);
    border-radius: var(--ja-radius);
    padding: 34px;
    color: var(--ja-ink);
    background: var(--ja-white);
    box-shadow: var(--ja-shadow);
}

.form-card h2 {
    margin: 0 0 24px;
    color: var(--ja-navy);
    font-size: 28px;
    font-weight: 760;
    line-height: 1.15;
}

.form-kicker {
    margin-bottom: 8px;
}

.budget-form {
    display: grid;
    gap: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.budget-form label {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.budget-form label > span {
    color: var(--ja-ink);
    font-size: 12px;
    font-weight: 700;
}

.budget-form input,
.budget-form select,
.budget-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #bcc9db;
    border-radius: 6px;
    padding: 12px 13px;
    color: var(--ja-ink);
    background: var(--ja-white);
    outline: 0;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.budget-form input:focus,
.budget-form select:focus,
.budget-form textarea:focus {
    border-color: var(--ja-blue);
    box-shadow: 0 0 0 4px rgba(10, 43, 115, 0.1);
}

.budget-form textarea {
    min-height: 128px;
    resize: vertical;
    line-height: 1.5;
}

.field-full {
    grid-column: 1 / -1;
}

.consent {
    display: flex !important;
    grid-template-columns: none;
    align-items: flex-start;
    gap: 10px !important;
    color: var(--ja-muted);
    font-size: 12px;
    line-height: 1.45;
}

.consent input {
    width: 17px;
    height: 17px;
    margin: 2px 0 0;
    flex: 0 0 auto;
    accent-color: var(--ja-blue);
}

.consent a {
    color: var(--ja-blue);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-submit {
    width: 100%;
    min-height: 50px;
}

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-errors {
    margin-bottom: 18px;
    border: 1px solid rgba(159, 36, 36, 0.26);
    border-radius: var(--ja-radius);
    padding: 13px 15px;
    color: var(--ja-danger);
    background: #fff2f2;
}

.form-errors p {
    margin: 0 0 8px;
    font-weight: 750;
}

.form-errors ul {
    margin: 0;
    padding-left: 18px;
}

.site-footer {
    padding: 58px 24px 22px;
    color: rgba(255, 255, 255, 0.74);
    background: #04132f;
}

.site-footer-inner {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) 220px 180px;
    gap: 56px;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.footer-brand img {
    display: block;
    width: min(290px, 100%);
    border-radius: 4px;
    padding: 8px;
    background: var(--ja-white);
}

.footer-brand p {
    max-width: 440px;
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact,
.footer-legal {
    display: grid;
    align-content: start;
    gap: 11px;
    font-size: 14px;
}

.footer-contact strong,
.footer-legal strong {
    margin-bottom: 4px;
    color: var(--ja-white);
    font-size: 13px;
    text-transform: uppercase;
}

.footer-contact a:hover,
.footer-legal a:hover {
    color: var(--ja-yellow);
}

.footer-copy {
    width: min(1180px, 100%);
    margin: 44px auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 20px;
    font-size: 12px;
}

.thanks-page {
    min-height: 100vh;
    color: var(--ja-ink);
    background:
        linear-gradient(90deg, rgba(245, 248, 252, 0.96), rgba(255, 255, 255, 0.78)),
        url("/ge_web_portal/static/src/img/bg-electric-main-2200.webp") center / cover fixed,
        var(--ja-paper);
}

.thanks-shell,
.legal-shell {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 42px 24px;
}

.thanks-card,
.legal-card {
    width: min(760px, 100%);
    border: 1px solid var(--ja-line);
    border-radius: var(--ja-radius);
    padding: 42px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--ja-shadow);
}

.legal-card {
    width: min(920px, 100%);
}

.thanks-card .brand-image-link,
.legal-card .brand-image-link {
    width: min(300px, 100%);
    margin-bottom: 28px;
}

.thanks-card h1,
.legal-card h1 {
    margin: 0;
    color: var(--ja-navy);
    font-size: 36px;
    line-height: 1.16;
}

.thanks-card > p,
.legal-card > p {
    color: var(--ja-muted);
    line-height: 1.65;
}

.legal-updated {
    font-size: 13px;
    font-weight: 700;
}

.legal-intro {
    font-size: 17px;
}

.legal-content {
    display: grid;
    gap: 28px;
    margin-top: 34px;
}

.legal-section {
    border-top: 1px solid var(--ja-line);
    padding-top: 24px;
}

.legal-section h2 {
    margin: 0 0 12px;
    color: var(--ja-blue);
    font-size: 21px;
}

.legal-section p {
    margin: 0;
    color: var(--ja-muted);
    line-height: 1.68;
}

.legal-section p + p {
    margin-top: 12px;
}

.legal-section ul {
    margin: 12px 0 0;
    padding-left: 22px;
    color: var(--ja-muted);
    line-height: 1.65;
}

.legal-section li::marker {
    color: var(--ja-gold);
}

.legal-actions,
.landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.cookie-preferences-panel {
    margin-top: 28px;
    border: 1px solid var(--ja-line);
    border-radius: var(--ja-radius);
    padding: 20px;
    background: var(--ja-paper);
}

.cookie-preferences-panel p {
    margin: 0 0 14px;
    color: var(--ja-muted);
}

.cookie-banner {
    position: fixed;
    z-index: 200;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    width: min(980px, 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--ja-radius);
    padding: 18px 20px;
    color: var(--ja-white);
    background: rgba(4, 19, 47, 0.98);
    box-shadow: 0 22px 58px rgba(3, 14, 36, 0.34);
    pointer-events: auto;
}

.cookie-banner-copy {
    min-width: 0;
}

.cookie-banner-title {
    margin: 0 0 5px;
    color: var(--ja-white);
    font-weight: 800;
}

.cookie-banner-copy p:not(.cookie-banner-title) {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.cookie-banner-actions .btn {
    min-height: 40px;
    padding: 9px 13px;
    font-size: 12px;
}

.cookie-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 4px;
    color: var(--ja-yellow);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 1020px) {
    .site-header-inner {
        grid-template-columns: minmax(220px, 286px) 1fr auto;
        gap: 22px;
    }

    .site-nav {
        gap: 18px;
    }

    .hero-copy h1 {
        font-size: 48px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-item {
        grid-template-columns: 112px minmax(0, 1fr);
        grid-template-rows: auto;
        align-items: center;
        min-height: 178px;
    }

    .process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 0;
    }

    .process-list li:nth-child(2) {
        border-right: 0;
        padding-right: 0;
    }

    .process-list li:nth-child(3) {
        padding-left: 0;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 0.72fr) minmax(440px, 1fr);
        gap: 42px;
    }
}

@media (max-width: 780px) {
    html {
        scroll-padding-top: 78px;
    }

    .site-header-inner {
        grid-template-columns: minmax(180px, 250px) auto;
        gap: 16px;
        width: min(1180px, calc(100% - 28px));
        min-height: 74px;
    }

    .site-nav {
        display: none;
    }

    .btn-header {
        justify-self: end;
        min-width: 116px;
        min-height: 42px;
        padding: 10px 12px;
        font-size: 13px;
    }

    .hero-section {
        min-height: calc(100svh - 108px);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 66%, rgba(255, 255, 255, 0.52) 100%),
            url("/ge_web_portal/static/src/img/bg-electric-mobile.webp") center bottom / cover no-repeat,
            var(--ja-paper);
    }

    .hero-inner {
        width: min(1180px, calc(100% - 32px));
        padding: 46px 0 54px;
    }

    .hero-copy {
        width: 100%;
    }

    .hero-copy h1 {
        font-size: 40px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-points {
        display: grid;
        gap: 9px;
        margin-top: 26px;
    }

    .capability-strip-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .capability-strip span,
    .capability-strip span:first-child {
        min-height: 50px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 12px;
    }

    .content-section,
    .process-section,
    .contact-section {
        padding: 72px 18px;
    }

    .section-heading {
        margin-bottom: 34px;
        text-align: left;
    }

    .section-heading h2,
    .contact-copy h2 {
        font-size: 34px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        grid-template-columns: 100px minmax(0, 1fr);
        min-height: 154px;
        padding: 18px;
    }

    .service-item img {
        width: 92px;
        height: 92px;
    }

    .process-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-list li,
    .process-list li:first-child,
    .process-list li:nth-child(2),
    .process-list li:nth-child(3),
    .process-list li:last-child {
        border-right: 0;
        padding: 20px 0 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .contact-copy {
        max-width: 620px;
    }

    .site-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .cookie-banner-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cookie-banner-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 540px) {
    .site-header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .brand-image-link {
        width: min(224px, 100%);
    }

    .btn-header {
        min-width: 108px;
        font-size: 12px;
    }

    .hero-section {
        min-height: calc(100svh - 96px);
    }

    .hero-inner {
        padding: 38px 0 46px;
    }

    .hero-copy h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .hero-lead {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section-heading h2,
    .contact-copy h2 {
        font-size: 30px;
    }

    .section-heading > p:last-child,
    .contact-copy > p {
        font-size: 16px;
    }

    .service-item {
        grid-template-columns: 84px minmax(0, 1fr);
        min-height: 140px;
        padding: 16px;
    }

    .service-item img {
        width: 78px;
        height: 78px;
    }

    .form-card,
    .thanks-card,
    .legal-card {
        padding: 24px 18px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .field-full {
        grid-column: auto;
    }

    .contact-methods a {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 10px;
    }

    .contact-methods strong {
        font-size: 16px;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .cookie-banner {
        right: 8px;
        bottom: 8px;
        left: 8px;
    }

    .cookie-banner-card {
        max-height: calc(100svh - 16px);
        padding: 15px;
        overflow-y: auto;
    }

    .cookie-banner-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cookie-link {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .site-header-inner {
        width: min(1180px, calc(100% - 20px));
        gap: 10px;
    }

    .brand-image-link {
        width: min(190px, 100%);
    }

    .btn-header {
        min-width: 98px;
        padding: 9px 8px;
        font-size: 11px;
    }

    .hero-copy h1 {
        font-size: 31px;
    }

    .service-item {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .service-item img {
        width: 66px;
        height: 66px;
    }
}

@media (max-width: 380px) and (max-height: 650px) {
    .hero-section {
        min-height: calc(100svh - 100px);
    }

    .hero-inner {
        padding: 24px 0 30px;
    }

    .hero-copy .eyebrow {
        margin-bottom: 8px;
        font-size: 11px;
    }

    .hero-copy h1 {
        font-size: 28px;
    }

    .hero-lead {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.42;
    }

    .hero-actions {
        margin-top: 16px;
    }

    .hero-actions .btn-secondary,
    .hero-points {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
