:root {
    --ls-blue: #0867c8;
    --ls-blue-dark: #082b55;
    --ls-blue-deep: #043874;
    --ls-blue-soft: #edf7ff;
    --ls-cyan: #19aee8;
    --ls-green: #1d9d72;
    --ls-text: #11233f;
    --ls-muted: #53647a;
    --ls-line: #d8e6f2;
    --ls-white: #ffffff;
    --ls-shadow: 0 18px 45px rgba(7, 60, 116, 0.11);
}

html {
    scroll-behavior: smooth;
}

body.site-page {
    display: block;
    min-height: 100vh;
    padding: 0;
    overflow-x: hidden;
    background: var(--ls-white);
    color: var(--ls-text);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body.site-page *,
body.site-page *::before,
body.site-page *::after {
    box-sizing: border-box;
}

body.site-page a {
    color: inherit;
    text-decoration: none;
}

.ls-shell {
    width: calc(100% - 72px);
    max-width: 1400px;
    margin: 0 auto;
}

.ls-topbar {
    background: linear-gradient(90deg, #075cb4 0%, #0872d9 58%, #0450a4 100%);
    color: var(--ls-white);
    font-size: 14px;
    font-weight: 700;
}

.ls-topbar__inner {
    min-height: 38px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.ls-topbar__left,
.ls-topbar__right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ls-topbar i {
    margin-right: 8px;
}

.ls-divider {
    width: 1px;
    height: 17px;
    background: rgba(255, 255, 255, 0.55);
}

.ls-social {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.92);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ls-social:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 0 2px #ffffff, 0 8px 18px rgba(2, 34, 76, 0.18);
}

.ls-social img {
    display: block;
    width: 100%;
    height: 100%;
}

.ls-navbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--ls-line);
    box-shadow: 0 8px 28px rgba(7, 60, 116, 0.08);
    backdrop-filter: blur(10px);
}

.ls-navbar__inner {
    min-height: 106px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.ls-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
    min-width: 260px;
}

.ls-brand img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.ls-brand__text {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.ls-brand__text strong {
    color: var(--ls-blue);
    font-size: 36px;
    letter-spacing: 0;
    line-height: 0.95;
    font-weight: 900;
    word-break: break-word;
}

.ls-brand__text small {
    color: #1c2d45;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
}

.ls-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex: 1 1 auto;
    color: #1b2638;
    font-size: 15px;
    font-weight: 700;
}

.ls-nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.ls-nav a:hover,
.ls-nav a.active {
    color: var(--ls-blue);
    border-bottom-color: var(--ls-blue);
}

.ls-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(8, 103, 200, 0.28);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--ls-blue);
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(7, 60, 116, 0.09);
}

.ls-menu-toggle:hover {
    background: var(--ls-blue-soft);
}

.ls-contact-button,
.ls-btn {
    min-height: 52px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;
}

.ls-contact-button {
    flex: 0 0 auto;
    padding: 0 22px;
    background: var(--ls-blue);
    color: var(--ls-white);
    box-shadow: 0 12px 24px rgba(8, 103, 200, 0.22);
    white-space: nowrap;
}

body.site-page .ls-contact-button {
    color: var(--ls-white);
}

.ls-hero {
    position: relative;
    --ls-hero-edge: max(36px, calc((100vw - 1400px) / 2));
    overflow: hidden;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.ls-hero__inner {
    min-height: 590px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 34px;
    align-items: center;
}

.ls-hero__content {
    position: relative;
    z-index: 2;
    padding: 64px 0;
}

.ls-pill,
.ls-section__eyebrow {
    display: inline-flex;
    align-items: center;
    color: var(--ls-blue);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.ls-pill {
    min-height: 32px;
    padding: 0 16px;
    border: 1px solid rgba(8, 103, 200, 0.45);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
}

.ls-hero h1 {
    margin-top: 20px;
    color: var(--ls-blue);
    font-size: clamp(56px, 7.2vw, 112px);
    line-height: 0.9;
    font-weight: 950;
    letter-spacing: 0;
}

.ls-hero h2 {
    max-width: 680px;
    margin-top: 16px;
    color: #122747;
    font-size: clamp(28px, 2.8vw, 40px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: 0;
}

.ls-hero__signature {
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin-top: 16px;
    padding: 0 10px 12px 0;
    color: var(--ls-blue);
    font-family: "Segoe Script", "Lucida Handwriting", "Brush Script MT", "Comic Sans MS", cursive;
    font-size: 2.35rem;
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82);
    transform: rotate(-1deg);
}

.ls-hero__signature::after {
    content: "";
    position: absolute;
    left: 34%;
    right: 7%;
    bottom: 0;
    height: 12px;
    border-bottom: 3px solid currentColor;
    border-radius: 999px;
    background: transparent;
    transform: rotate(-3deg) skewX(-12deg);
    opacity: 0.95;
}

.ls-hero__text {
    max-width: 640px;
    margin-top: 28px;
    color: #2d405c;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 500;
}

.ls-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.ls-btn {
    padding: 0 24px;
}

.ls-btn-primary {
    background: var(--ls-blue);
    color: var(--ls-white);
    box-shadow: 0 14px 28px rgba(8, 103, 200, 0.2);
}

body.site-page .ls-btn-primary {
    color: var(--ls-white);
}

.ls-btn-secondary {
    border: 1px solid rgba(8, 103, 200, 0.62);
    color: var(--ls-blue);
    background: rgba(255, 255, 255, 0.92);
}

body.site-page .ls-btn-secondary {
    color: var(--ls-blue);
}

.ls-hero__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 38px;
}

.ls-hero__features div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
    min-width: 0;
    padding-right: 12px;
}

.ls-hero__features div + div {
    border-left: 1px solid #cbdcec;
    padding-left: 18px;
}

.ls-hero__features i {
    color: var(--ls-blue);
    font-size: 32px;
}

.ls-hero__features span {
    color: #20334d;
    font-size: 14px;
    line-height: 1.35;
}

.ls-hero__features strong {
    display: block;
    color: #10243f;
    margin-bottom: 3px;
    font-size: 15px;
}

.ls-hero__image {
    min-height: 520px;
    align-self: stretch;
    position: relative;
    width: calc(100% + var(--ls-hero-edge));
    overflow: hidden;
}

.ls-hero__image::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 1;
    width: 34%;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.ls-hero__image::after {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    z-index: 1;
    width: 18%;
    background: linear-gradient(90deg, rgba(248, 252, 255, 0) 0%, #f8fcff 100%);
    pointer-events: none;
}

.ls-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
}

.ls-section,
.ls-results,
.ls-cta {
    padding: 78px 0;
}

.ls-section--soft {
    background: #f6fbff;
}

.ls-section-heading {
    max-width: 820px;
    margin-bottom: 34px;
}

.ls-section-heading h2,
.ls-results h2,
.ls-quality__inner h2,
.ls-cta h2 {
    margin-top: 12px;
    color: var(--ls-blue-dark);
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.14;
    letter-spacing: 0;
    font-weight: 900;
}

.ls-section-heading p,
.ls-results p,
.ls-quality__list p,
.ls-cta p {
    max-width: 760px;
    margin-top: 14px;
    color: var(--ls-muted);
    font-size: 17px;
    line-height: 1.7;
}

.ls-analysis__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ls-analysis-card {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 26px;
    border: 1px solid var(--ls-line);
    border-radius: 8px;
    background: var(--ls-white);
    box-shadow: 0 14px 30px rgba(8, 62, 118, 0.06);
}

.ls-analysis-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: var(--ls-blue-soft);
    color: var(--ls-blue);
    font-size: 28px;
}

.ls-analysis-card h3 {
    color: var(--ls-blue);
    font-size: 20px;
    line-height: 1.25;
    margin: 0;
}

.ls-analysis-card p {
    color: #33455f;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.ls-analysis-card__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-top: auto;
    color: var(--ls-blue);
    font-size: 15px;
    font-weight: 900;
}

body.site-page .ls-analysis-card__link {
    color: var(--ls-blue);
}

.ls-analysis-card__link i {
    font-size: 13px;
}

.ls-visit {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    gap: 56px;
    align-items: start;
}

.ls-visit .ls-section-heading {
    margin-bottom: 0;
}

.ls-visit__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ls-visit__grid article {
    padding: 24px;
    border: 1px solid var(--ls-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(8, 62, 118, 0.05);
}

.ls-visit__grid span {
    color: var(--ls-cyan);
    font-size: 14px;
    font-weight: 900;
}

.ls-visit__grid h3 {
    margin-top: 10px;
    color: var(--ls-blue-dark);
    font-size: 20px;
    line-height: 1.25;
}

.ls-visit__grid p {
    margin-top: 10px;
    color: var(--ls-muted);
    font-size: 15px;
    line-height: 1.65;
}

.ls-results {
    background: linear-gradient(120deg, #063a76 0%, #0867c8 58%, #19aee8 100%);
    color: var(--ls-white);
}

.ls-results__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1fr);
    gap: 54px;
    align-items: center;
}

.ls-results .ls-section__eyebrow,
.ls-results h2,
.ls-results p {
    color: var(--ls-white);
}

.ls-results p {
    opacity: 0.9;
}

.ls-results__panel {
    display: grid;
    gap: 14px;
}

.ls-results__panel > div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    align-items: start;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
}

.ls-results__panel i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: var(--ls-blue);
    font-size: 20px;
}

.ls-results__panel strong {
    display: block;
    margin-bottom: 5px;
    font-size: 17px;
    min-width: 0;
}

.ls-results__panel span {
    grid-column: 2;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.55;
    min-width: 0;
}

.ls-quality__inner,
.ls-cta__inner {
    display: grid;
    grid-template-columns: minmax(260px, 470px) 1fr;
    gap: 60px;
    align-items: start;
}

.ls-quality__list ul {
    display: grid;
    gap: 13px;
    margin-top: 24px;
    list-style: none;
}

.ls-quality__list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
    color: #263a56;
    font-size: 16px;
    line-height: 1.55;
}

.ls-quality__list i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(29, 157, 114, 0.12);
    color: var(--ls-green);
    font-size: 13px;
}

.ls-cta {
    background: #ffffff;
}

.ls-cta__inner {
    align-items: center;
    padding: 36px;
    border: 1px solid var(--ls-line);
    border-radius: 16px;
    background: linear-gradient(90deg, #f8fcff 0%, #edf7ff 100%);
    box-shadow: var(--ls-shadow);
}

.ls-cta__actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.ls-cta__inner--solo {
    grid-template-columns: minmax(0, 760px);
}

.ls-footer {
    background:
        linear-gradient(140deg, rgba(8, 103, 200, 0.22) 0%, rgba(25, 174, 232, 0.1) 45%, rgba(255, 255, 255, 0) 100%),
        #062744;
    color: #dceeff;
}

.ls-footer__grid {
    display: grid;
    grid-template-columns: minmax(300px, 1.28fr) minmax(135px, 0.65fr) minmax(175px, 0.82fr) minmax(185px, 0.85fr) minmax(170px, 0.78fr);
    gap: 28px;
    padding: 54px 0 34px;
}

.ls-brand--footer {
    align-items: flex-start;
    min-width: 0;
}

.ls-brand--footer img {
    width: 58px;
    height: 58px;
    background: #ffffff;
    border-radius: 8px;
    padding: 4px;
}

.ls-brand--footer .ls-brand__text strong {
    color: #ffffff;
    font-size: 28px;
    white-space: nowrap;
    word-break: normal;
}

.ls-brand--footer .ls-brand__text small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    line-height: 1.3;
    max-width: 230px;
    overflow-wrap: normal;
    word-break: normal;
}

.ls-footer__brand p {
    max-width: 430px;
    margin-top: 18px;
    color: rgba(220, 238, 255, 0.82);
    font-size: 15px;
    line-height: 1.65;
}

.ls-footer h3 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.2;
}

.ls-footer a,
.ls-footer span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 11px;
    color: rgba(220, 238, 255, 0.86);
    font-size: 15px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.ls-footer .ls-brand--footer {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
}

.ls-footer .ls-brand--footer .ls-brand__text {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 3px;
    margin-bottom: 0;
}

.ls-footer a:hover {
    color: #ffffff;
}

.ls-footer i {
    width: 18px;
    margin-top: 3px;
    color: #7bd5ff;
    text-align: center;
}

.ls-footer__login {
    margin-top: 16px;
    font-weight: 800;
}

.ls-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 20px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(220, 238, 255, 0.72);
    font-size: 14px;
}

.ls-footer__bottom .ls-footer__credit {
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 400;
}

body.site-page .ls-footer__bottom .ls-footer__credit {
    color: #ffffff;
}

@media (max-width: 1240px) {
    .ls-shell {
        width: calc(100% - 48px);
        max-width: 1120px;
    }

    .ls-hero {
        --ls-hero-edge: 24px;
    }

    .ls-navbar__inner {
        gap: 20px;
    }

    .ls-brand {
        min-width: 230px;
    }

    .ls-brand__text strong {
        font-size: 31px;
    }

    .ls-nav {
        gap: 16px;
        font-size: 14px;
    }

    .ls-hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    }

    .ls-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1020px) {
    .ls-topbar__inner,
    .ls-navbar__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .ls-navbar__inner {
        min-height: 0;
        padding: 20px 0;
    }

    .ls-nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px 18px;
    }

    .ls-contact-button {
        width: auto;
    }

    .ls-hero__inner {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ls-hero__content {
        padding: 52px 0 24px;
    }

    .ls-hero__image {
        width: 100vw;
        min-height: 340px;
        margin-left: calc(50% - 50vw);
        margin-bottom: 36px;
        border-radius: 0;
        box-shadow: none;
    }

    .ls-hero__image::before {
        inset: 0;
        width: 100%;
        height: 30%;
        background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    }

    .ls-visit,
    .ls-results__inner,
    .ls-quality__inner,
    .ls-cta__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ls-cta__actions {
        justify-content: flex-start;
    }

    .ls-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .ls-shell {
        width: calc(100% - 28px);
        max-width: 620px;
    }

    .ls-topbar__inner {
        min-height: 0;
        padding: 10px 0;
        gap: 10px;
    }

    .ls-topbar__left,
    .ls-topbar__right {
        gap: 10px 14px;
        font-size: 13px;
    }

    .ls-divider,
    .ls-social {
        display: none;
    }

    .ls-navbar__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 14px;
        padding: 16px 0;
    }

    .ls-brand {
        min-width: 0;
        width: auto;
    }

    .ls-brand img {
        width: 56px;
        height: 56px;
    }

    .ls-brand__text strong {
        font-size: 28px;
    }

    .ls-brand__text small {
        font-size: 11px;
    }

    .ls-menu-toggle {
        display: inline-flex;
    }

    .ls-nav {
        display: none;
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 4px;
    }

    .ls-nav a {
        min-height: 40px;
        justify-content: flex-start;
        padding: 0 10px;
        border: 1px solid var(--ls-line);
        border-radius: 8px;
        background: #ffffff;
        font-size: 14px;
        text-align: left;
        white-space: normal;
    }

    .ls-navbar__inner.is-open .ls-nav {
        display: grid;
    }

    .ls-nav a:hover,
    .ls-nav a.active {
        border-color: rgba(8, 103, 200, 0.45);
        background: var(--ls-blue-soft);
    }

    .ls-contact-button {
        display: none;
    }

    .ls-navbar__inner.is-open .ls-contact-button {
        display: inline-flex;
        grid-column: 1 / -1;
        width: 100%;
        justify-content: flex-start;
        padding-left: 18px;
    }

    .ls-btn {
        width: 100%;
    }

    .ls-hero h1 {
        font-size: clamp(46px, 14vw, 76px);
    }

    .ls-hero h2 {
        font-size: 27px;
    }

    .ls-hero__signature {
        padding-bottom: 11px;
        font-size: 2rem;
    }

    .ls-hero__signature::after {
        left: 29%;
        right: 6%;
    }

    .ls-hero__text,
    .ls-section-heading p,
    .ls-results p,
    .ls-quality__list p,
    .ls-cta p {
        font-size: 16px;
    }

    .ls-hero__features,
    .ls-analysis__grid,
    .ls-visit__grid,
    .ls-footer__grid {
        grid-template-columns: 1fr;
    }

    .ls-hero__features div + div {
        border-left: 0;
        border-top: 1px solid #cdddea;
        padding-left: 0;
    }

    .ls-hero__features div {
        padding: 16px 0;
    }

    .ls-hero__features div:first-child {
        padding-top: 0;
    }

    .ls-hero__image {
        min-height: 260px;
        border-radius: 0;
        box-shadow: none;
    }

    .ls-section,
    .ls-results,
    .ls-cta {
        padding: 56px 0;
    }

    .ls-analysis-card,
    .ls-visit__grid article {
        padding: 22px;
    }

    .ls-results__panel > div {
        grid-template-columns: 1fr;
    }

    .ls-results__panel span {
        grid-column: auto;
    }

    .ls-cta__inner {
        padding: 26px 20px;
        border-radius: 12px;
    }

    .ls-footer__grid {
        padding-top: 42px;
    }

    .ls-footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .ls-shell {
        width: calc(100% - 24px);
        max-width: 362px;
    }

    .ls-topbar__left {
        display: none;
    }

    .ls-navbar__inner {
        padding: 18px 0;
    }

    .ls-hero__content {
        padding-top: 46px;
    }

    .ls-hero h1 {
        font-size: 50px;
    }

    .ls-hero h2 {
        font-size: 24px;
        overflow-wrap: break-word;
    }

    .ls-actions {
        margin-top: 24px;
    }
}

@media (max-width: 420px) {
    .ls-shell {
        width: calc(100% - 22px);
        max-width: 350px;
    }

    .ls-footer .ls-brand--footer {
        align-items: flex-start;
        gap: 12px;
    }

    .ls-footer .ls-brand--footer .ls-brand__text {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .ls-brand__text strong {
        font-size: 24px;
    }

    .ls-hero h2 {
        font-size: 24px;
    }

    .ls-section-heading h2,
    .ls-results h2,
    .ls-quality__inner h2,
    .ls-cta h2 {
        font-size: 27px;
    }
}
