:root {
    --navy: #0b4d75;
    --navy-deep: #073451;
    --blue: #10a7b5;
    --blue-dark: #087d8a;
    --blue-soft: #eaf8fa;
    --green: #55b92e;
    --green-dark: #3c8f24;
    --yellow: #f4c619;
    --ink: #24323a;
    --muted: #657179;
    --line: #dbe4e7;
    --surface: #f5f7f8;
    --white: #ffffff;
    --shadow: 0 16px 42px rgba(7, 52, 81, .12);
    --radius: 8px;
    --container: 1190px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.68;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--blue-dark);
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

a:hover {
    color: var(--blue-dark);
}

button,
input,
select,
textarea {
    font: inherit;
}

h1,
h2,
h3 {
    margin: 0 0 .7em;
    color: var(--navy-deep);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -.025em;
}

h1 {
    font-size: clamp(2.35rem, 4.5vw, 4.35rem);
}

h2 {
    font-size: clamp(1.85rem, 3vw, 2.65rem);
}

h3 {
    font-size: clamp(1.18rem, 2vw, 1.45rem);
}

p,
ul,
ol {
    margin: 0 0 1.25rem;
}

address {
    font-style: normal;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: clamp(64px, 7vw, 100px) 0;
}

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

.section--blue {
    background: var(--navy);
    color: rgba(255, 255, 255, .82);
}

.section--blue h2,
.section--blue h3 {
    color: var(--white);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 42px;
}

.section-heading p {
    max-width: 700px;
    color: var(--muted);
    font-size: 1.08rem;
}

.section--blue .section-heading p {
    color: rgba(255, 255, 255, .75);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--blue-dark);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 30px;
    height: 3px;
    background: var(--blue);
    content: "";
}

.section--blue .eyebrow {
    color: #72e0e8;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 999;
    padding: 10px 16px;
    color: var(--navy-deep);
    background: var(--yellow);
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

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

.topbar {
    color: #7b858b;
    background: #f1f2f2;
    border-bottom: 1px solid #e7e9ea;
    font-size: .88rem;
}

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

.topbar__tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #758087;
    font-size: .79rem;
    font-weight: 750;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.topbar__tagline::before {
    width: 24px;
    height: 3px;
    background: var(--blue);
    content: "";
}

.topbar__contacts {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar a {
    color: #7b858b;
    text-decoration: none;
}

.topbar a strong {
    color: var(--blue-dark);
}

.topbar a:hover {
    color: var(--blue-dark);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid rgba(7, 52, 81, .09);
    box-shadow: 0 4px 15px rgba(7, 52, 81, .055);
}

.site-header__inner {
    display: flex;
    min-height: 112px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    width: 225px;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 21px;
}

.primary-nav > a:not(.button) {
    position: relative;
    color: var(--navy-deep);
    font-size: .88rem;
    font-weight: 760;
    text-decoration: none;
    white-space: nowrap;
}

.primary-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: -12px;
    left: 0;
    height: 3px;
    background: var(--blue);
    border-radius: 3px;
    content: "";
    transform: scaleX(0);
    transition: transform .2s ease;
}

.primary-nav > a:not(.button):hover,
.primary-nav > a.is-active {
    color: var(--blue-dark);
}

.primary-nav > a:hover::after,
.primary-nav > a.is-active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 4px;
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--navy-deep);
    transition: opacity .2s ease, transform .2s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 24px;
    color: var(--white);
    background: var(--blue-dark);
    border: 0;
    border-radius: 4px;
    box-shadow: 0 9px 22px rgba(16, 167, 181, .2);
    cursor: pointer;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
    color: var(--white);
    background: #056570;
    box-shadow: 0 12px 26px rgba(8, 125, 138, .24);
    transform: translateY(-2px);
}

.button--secondary {
    color: var(--navy-deep);
    background: var(--yellow);
    box-shadow: 0 10px 24px rgba(244, 198, 25, .2);
}

.button--secondary:hover {
    color: var(--navy-deep);
    background: #dfb208;
}

.button--outline {
    color: var(--blue-dark);
    background: var(--white);
    border: 2px solid var(--blue);
    box-shadow: none;
}

.button--outline:hover {
    color: var(--white);
    background: var(--blue-dark);
}

.button--small {
    min-height: 42px;
    padding: 10px 17px;
    font-size: .88rem;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 750px;
    display: flex;
    align-items: center;
    color: var(--white);
    background: var(--navy-deep) url('/assets/images/hero.webp') center top / cover no-repeat;
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(7, 52, 81, .12) 0%, rgba(7, 52, 81, .07) 42%, rgba(7, 52, 81, 0) 72%);
    content: "";
}

.hero__content {
    max-width: 560px;
    padding: 95px 0 105px;
}

.hero h1 {
    max-width: 535px;
    color: var(--white);
    font-size: clamp(3rem, 4.2vw, 3.95rem);
    line-height: 1.15;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .14);
    text-wrap: wrap;
}

.hero h1::after {
    display: block;
    width: 50px;
    height: 4px;
    margin-top: 22px;
    background: var(--blue);
    content: "";
}

.hero .eyebrow {
    display: none;
}

.hero__lead {
    max-width: 545px;
    color: rgba(255, 255, 255, .96);
    font-size: clamp(1.05rem, 1.6vw, 1.18rem);
    line-height: 1.72;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .15);
}

.hero__actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 31px;
}

.hero .button {
    color: var(--navy-deep);
    background: var(--yellow);
    box-shadow: 0 9px 22px rgba(0, 0, 0, .13);
}

.hero .button:hover {
    color: var(--navy-deep);
    background: #dfb208;
}

.hero .button--secondary {
    color: var(--white);
    background: rgba(7, 52, 81, .18);
    border: 2px solid var(--blue);
    box-shadow: none;
}

.hero .button--secondary:hover {
    color: var(--white);
    background: var(--blue-dark);
}

.hero__points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    font-size: .9rem;
    font-weight: 750;
}

.hero__points li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__points li::before {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 50%;
    content: "✓";
    font-size: .76rem;
    font-weight: 900;
}

.inner-hero {
    color: var(--white);
    background: linear-gradient(120deg, var(--navy-deep), var(--navy) 62%, var(--blue-dark));
    padding: clamp(70px, 9vw, 125px) 0;
}

.inner-hero h1 {
    max-width: 880px;
    color: var(--white);
    font-size: clamp(2.35rem, 5vw, 4.25rem);
}

.inner-hero h1::after {
    display: block;
    width: 50px;
    height: 4px;
    margin-top: 22px;
    background: var(--blue);
    content: "";
}

.inner-hero p {
    max-width: 780px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.16rem;
}

.breadcrumbs {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .66);
    font-size: .9rem;
}

.breadcrumbs a {
    color: var(--white);
}

.breadcrumbs span {
    margin: 0 8px;
}

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

.card {
    position: relative;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 4px solid var(--blue);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(6, 28, 45, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
    box-shadow: 0 16px 38px rgba(7, 52, 81, .11);
    transform: translateY(-4px);
}

.card p:last-child {
    margin-bottom: 0;
}

.card__icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    place-items: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 4px;
    font-size: 1.45rem;
    font-weight: 900;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-card a:last-child {
    margin-top: auto;
    font-weight: 800;
}

.card--feature {
    overflow: hidden;
    padding: 0;
    border-top: 0;
}

.card--feature img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.card--feature .card__body {
    padding: 28px;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
    align-items: center;
    gap: clamp(42px, 7vw, 90px);
}

.split--reverse > :first-child {
    order: 2;
}

.split__media {
    position: relative;
}

.split__media::before {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: -1;
    width: 48%;
    height: 48%;
    background: var(--yellow);
    border-radius: var(--radius);
    content: "";
}

.split__media img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.check-list {
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 31px;
}

.check-list li::before {
    position: absolute;
    top: .12em;
    left: 0;
    color: var(--blue);
    content: "✓";
    font-size: 1.18rem;
    font-weight: 900;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    counter-reset: steps;
}

.step {
    position: relative;
    padding: 30px 25px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    counter-increment: steps;
}

.step::before {
    display: grid;
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
    place-items: center;
    color: var(--navy-deep);
    background: var(--yellow);
    border-radius: 4px;
    content: counter(steps);
    font-weight: 900;
}

.step p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .72);
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: clamp(40px, 7vw, 85px);
}

.prose h2 {
    margin-top: 1.5em;
}

.prose h3 {
    margin-top: 1.4em;
}

.prose > :first-child {
    margin-top: 0;
}

.prose li {
    margin-bottom: .5rem;
}

.sidebar-card {
    position: sticky;
    top: 120px;
    padding: 28px;
    color: rgba(255, 255, 255, .82);
    background: var(--navy);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.sidebar-card h2,
.sidebar-card h3 {
    color: var(--white);
}

.sidebar-card a:not(.button) {
    color: var(--white);
}

.sidebar-card .button {
    width: 100%;
    margin-top: 8px;
}

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

.fact {
    padding: 25px;
    background: var(--blue-soft);
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.fact strong {
    display: block;
    margin-bottom: 7px;
    color: var(--navy-deep);
    font-size: 1.06rem;
}

.faq-list {
    display: grid;
    gap: 13px;
    max-width: 900px;
}

.faq-list details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.faq-list summary {
    position: relative;
    padding: 20px 58px 20px 22px;
    color: var(--navy-deep);
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 22px;
    content: "+";
    color: var(--blue);
    font-size: 1.5rem;
    line-height: 1;
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    padding: 0 22px 20px;
    margin: 0;
    color: var(--muted);
}

.cta-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: clamp(35px, 5vw, 60px);
    color: rgba(255, 255, 255, .82);
    background: linear-gradient(125deg, var(--navy-deep), var(--blue));
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.cta-panel h2 {
    color: var(--white);
}

.cta-panel p {
    max-width: 700px;
    margin-bottom: 0;
}

.error-page {
    max-width: 780px;
    text-align: center;
}

.error-page .cta-actions {
    justify-content: center;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: clamp(35px, 6vw, 75px);
    align-items: start;
}

.contact-details {
    padding: 32px;
    color: rgba(255, 255, 255, .8);
    background: var(--navy);
    border-radius: var(--radius);
}

.contact-details .eyebrow {
    color: var(--white);
}

.contact-details .eyebrow::before {
    background: var(--yellow);
}

.contact-details h2,
.contact-details h3 {
    color: var(--white);
}

.contact-details a {
    color: var(--white);
    font-weight: 750;
}

.contact-details__item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.contact-details__item:last-child {
    border-bottom: 0;
}

.contact-details__item strong {
    display: block;
    color: var(--yellow);
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-form {
    padding: clamp(25px, 4vw, 42px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 40px rgba(6, 28, 45, .08);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form label {
    display: block;
    margin-bottom: 18px;
}

.contact-form label > span {
    display: block;
    margin-bottom: 7px;
    color: var(--navy-deep);
    font-size: .91rem;
    font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid #bdcad1;
    border-radius: 4px;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(16, 167, 181, .14);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .checkbox-label {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
}

.contact-form .checkbox-label input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.contact-form .checkbox-label span {
    color: var(--muted);
    font-size: .86rem;
    font-weight: 500;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-notice {
    margin-bottom: 20px;
    padding: 15px 18px;
    border-radius: 10px;
    font-weight: 700;
}

.form-notice--success {
    color: #155d20;
    background: #e6f7e8;
    border: 1px solid #a4d8aa;
}

.form-notice--error {
    color: #861d26;
    background: #fff0f1;
    border: 1px solid #f0b2b7;
}

.site-footer {
    padding: 65px 0 0;
    color: rgba(255, 255, 255, .68);
    background: var(--navy-deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .9fr .8fr 1fr;
    gap: 50px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
    color: var(--white);
    line-height: 1;
    text-decoration: none;
}

.footer-brand:hover {
    color: var(--white);
}

.footer-brand__mark {
    width: 68px;
    height: 72px;
    flex: 0 0 68px;
    overflow: hidden;
}

.footer-brand__mark img {
    width: 226px;
    max-width: none;
    height: auto;
}

.footer-brand__copy strong {
    display: block;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: .025em;
}

.footer-brand__copy span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .82);
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .025em;
    line-height: 1.22;
}

.site-footer h2 {
    color: var(--white);
    font-size: 1rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li {
    margin-bottom: 8px;
}

.site-footer a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--yellow);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 55px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .83rem;
}

@media (max-width: 1120px) {
    .primary-nav {
        gap: 14px;
    }

    .primary-nav > a:not(.button) {
        font-size: .84rem;
    }

    .brand img {
        width: 190px;
    }

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

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

@media (max-width: 1180px) {
    .topbar__inner {
        justify-content: center;
    }

    .topbar__tagline {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100vh - 112px);
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 22px max(20px, calc((100vw - var(--container)) / 2));
        background: var(--white);
        border-top: 1px solid var(--line);
        box-shadow: 0 18px 28px rgba(7, 52, 81, .13);
    }

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

    .primary-nav > a:not(.button) {
        padding: 14px 5px;
        border-bottom: 1px solid var(--line);
        font-size: 1rem;
    }

    .primary-nav > a:not(.button)::after {
        display: none;
    }

    .primary-nav .button {
        margin-top: 22px;
    }

    .split,
    .content-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .split--reverse > :first-child {
        order: initial;
    }

    .split__media {
        max-width: 680px;
    }

    .sidebar-card {
        position: static;
    }

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

    .footer-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 16px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .topbar__inner {
        min-height: 42px;
        gap: 0;
    }

    .topbar__contacts {
        width: 100%;
        justify-content: center;
        gap: 0;
    }

    .topbar__contacts a:not(:first-child),
    .topbar__hours {
        display: none;
    }

    .site-header__inner {
        min-height: 76px;
    }

    .brand img {
        width: 175px;
    }

    .primary-nav {
        max-height: calc(100vh - 76px);
        padding-inline: 20px;
    }

    .hero {
        min-height: 700px;
        background-position: 66% top;
    }

    .hero::before {
        background: linear-gradient(90deg, rgba(7, 52, 81, .58), rgba(7, 52, 81, .34));
    }

    .hero__content {
        max-width: 100%;
        padding: 64px 0 70px;
    }

    .hero h1 {
        max-width: 380px;
        font-size: clamp(2.45rem, 12vw, 3.15rem);
    }

    .hero__lead {
        max-width: 390px;
        line-height: 1.62;
    }

    .hero__actions .button,
    .cta-actions .button {
        width: 100%;
    }

    .hero__points {
        display: grid;
    }

    .cards,
    .steps,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        grid-template-columns: 1fr;
    }

    .cta-panel .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 420px) {
    .hero {
        min-height: 680px;
        background-position: 65% top;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .hero__points {
        gap: 8px;
        font-size: .86rem;
    }

    .inner-hero h1 {
        font-size: 2.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
