/*
 * Galaxy Movers Calgary
 * Shared header, navigation, and footer styles.
 */

:root {
    --color-white: #ffffff;
    --color-soft: #f7f8fb;
    --color-navy: #071b4d;
    --color-navy-deep: #041337;
    --color-red: #c71111;
    --color-red-bright: #da0032;
    --color-pink: #da0059;
    --color-text: #111827;
    --color-muted: #65708a;
    --color-border: #e5e9f1;
    --shadow-dropdown: 0 18px 45px rgba(7, 27, 77, 0.14);
    --shadow-panel: -12px 0 35px rgba(7, 27, 77, 0.14);
    --container-width: 1240px;
    --transition-fast: 180ms ease;
    --transition-standard: 240ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

body.is-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(218, 0, 50, 0.35);
    outline-offset: 3px;
}

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

.site-header__container {
    width: min(100% - 48px, var(--container-width));
    margin-inline: auto;
}

/* Header top row */

.site-header {
    position: relative;
    z-index: 100;
    background: var(--color-white);
}

.site-header__top {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.site-header__top-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 176px minmax(0, 1fr);
    align-items: center;
    min-height: 108px;
}

.header-contact,
.header-top__right {
    display: flex;
    align-items: center;
}

.header-contact {
    gap: 12px;
}

.header-contact__label {
    color: var(--color-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.header-contact__number {
    color: var(--color-navy);
    font-size: 0.95rem;
    font-weight: 750;
    transition: color var(--transition-fast);
}

.header-contact__number:hover {
    color: var(--color-red);
}

.site-brand {
    display: inline-flex;
    width: 148px;
    justify-self: center;
}

.site-brand img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.header-top__right {
    justify-content: flex-end;
    gap: 22px;
}

.header-status,
.footer-hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-navy);
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
}

.header-status__dot,
.footer-hours__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22a66f;
    box-shadow: 0 0 0 4px rgba(34, 166, 111, 0.12);
}

.social-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--color-navy);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.social-link:hover {
    color: var(--color-white);
    background: var(--color-red);
    border-color: var(--color-red);
    transform: translateY(-2px);
}

.social-link svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.social-link svg rect,
.social-link svg circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.social-link svg .social-icon__dot {
    fill: currentColor;
    stroke: none;
}

/* Desktop navigation */

.main-navigation {
    position: relative;
    z-index: 20;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.main-navigation__inner {
    display: flex;
    align-items: center;
}

.desktop-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 64px;
    gap: 28px;
}

.nav-list {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: stretch;
}

.nav-link,
.nav-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 64px;
    padding: 0 10px;
    color: var(--color-navy);
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.nav-link::after {
    position: absolute;
    right: 14px;
    bottom: 0;
    left: 14px;
    height: 3px;
    background: var(--color-red);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition-fast);
}

.nav-link:hover,
.nav-link.is-active,
.nav-item.is-active > .nav-trigger,
.nav-item:focus-within > .nav-trigger {
    color: var(--color-red);
}

.nav-link.is-active::after,
.nav-item.is-active > .nav-trigger::after {
    transform: scaleX(1);
}

.nav-trigger__chevron,
.mobile-nav-link svg,
.dropdown-link svg,
.quote-button svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform var(--transition-fast);
}

.nav-item--has-dropdown:hover > .nav-trigger .nav-trigger__chevron,
.nav-item--has-dropdown:focus-within > .nav-trigger .nav-trigger__chevron,
.nav-item--has-dropdown[data-open] > .nav-trigger .nav-trigger__chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 286px;
    padding: 19px;
    visibility: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 0 0 14px 14px;
    box-shadow: var(--shadow-dropdown);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity var(--transition-standard), transform var(--transition-standard), visibility var(--transition-standard);
}

.dropdown-menu--mega {
    width: 620px;
}

.dropdown-menu--long-distance {
    width: 360px;
}

.nav-item--has-dropdown:hover > .dropdown-menu,
.nav-item--has-dropdown:focus-within > .dropdown-menu,
.nav-item--has-dropdown[data-open] > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu__eyebrow {
    margin-bottom: 12px;
    color: var(--color-muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 8px;
}

.dropdown-menu--about .dropdown-grid,
.dropdown-menu--long-distance .dropdown-grid {
    grid-template-columns: 1fr;
}

.dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 38px;
    padding: 8px 10px;
    color: var(--color-text);
    border-radius: 8px;
    font-size: 0.79rem;
    font-weight: 650;
    line-height: 1.25;
    transition: color var(--transition-fast), background-color var(--transition-fast);
}

.dropdown-link:hover,
.dropdown-link:focus-visible {
    color: var(--color-red);
    background: var(--color-soft);
}

.dropdown-link svg {
    flex: 0 0 auto;
    width: 13px;
    height: 13px;
    opacity: 0;
    transform: translateX(-4px);
}

.dropdown-link:hover svg,
.dropdown-link:focus-visible svg {
    opacity: 1;
    transform: translateX(0);
}

.quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 18px;
    color: var(--color-white);
    background: var(--color-red);
    border-radius: 7px;
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(199, 17, 17, 0.15);
    transition: background-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.quote-button:hover,
.quote-button:focus-visible {
    color: var(--color-white);
    background: var(--color-red-bright);
    box-shadow: 0 10px 22px rgba(218, 0, 50, 0.22);
    transform: translateY(-2px);
}

/* Mobile menu */

.site-header__mobile {
    display: none;
}

.mobile-menu-backdrop,
.mobile-menu {
    display: none;
}

/* Footer */

.site-footer {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.78);
    background:
        radial-gradient(circle at 88% 12%, rgba(35, 93, 177, 0.24), transparent 27%),
        radial-gradient(circle at 10% 84%, rgba(218, 0, 89, 0.12), transparent 24%),
        linear-gradient(135deg, var(--color-navy-deep) 0%, var(--color-navy) 58%, #09235d 100%);
}

.site-footer::before,
.site-footer::after {
    position: absolute;
    z-index: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.site-footer::before {
    top: -160px;
    right: -85px;
    width: 390px;
    height: 390px;
}

.site-footer::after {
    bottom: -205px;
    left: -125px;
    width: 420px;
    height: 420px;
    border-color: rgba(218, 0, 89, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(0, 1fr));
    gap: 30px;
    padding: 42px 0 28px;
}

.footer-contact-strip {
    display: grid;
    grid-template-columns: minmax(145px, 0.9fr) minmax(125px, 0.7fr) minmax(250px, 1.45fr) minmax(210px, 1.05fr);
    gap: 22px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-contact-strip__item {
    display: grid;
    align-content: start;
    gap: 5px;
    min-width: 0;
}

.footer-contact-strip__label {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.footer-contact-strip__values {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.footer-contact-strip__values a,
.footer-contact-strip__values span,
.footer-contact-strip__value {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.7rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.footer-contact-strip__values a:hover,
.footer-contact-strip__values a:focus-visible {
    color: var(--color-white);
}

.footer-contact-strip__value {
    white-space: nowrap;
}

.footer-contact-strip .footer-hours__dot {
    display: inline-block;
    margin-right: 4px;
    vertical-align: 1px;
}

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

.footer-brand {
    display: inline-flex;
    width: 154px;
    margin-bottom: 12px;
    padding: 7px 10px;
    background: var(--color-white);
    border-radius: 10px;
}

.footer-brand img {
    width: 100%;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.12));
}

.footer-description {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.77rem;
    line-height: 1.58;
}

.footer-contact {
    display: grid;
    gap: 9px;
    margin-top: 18px;
}

.footer-contact__phone {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    width: fit-content;
    color: var(--color-white);
    font-size: 0.92rem;
    font-weight: 750;
}

.footer-contact__phone:hover {
    color: #ffccd6;
}

.footer-contact__phone svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.footer-contact__phone span {
    display: grid;
    gap: 1px;
}

.footer-contact__phone small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-hours {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    font-weight: 650;
}

.footer-hours__dot {
    box-shadow: 0 0 0 4px rgba(34, 166, 111, 0.14);
}

.footer-column h2 {
    margin: 3px 0 12px;
    color: var(--color-white);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.footer-links {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.75rem;
    line-height: 1.4;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--color-white);
}

.footer-social-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-social-row__label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.social-links--footer .social-link {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.22);
}

.social-links--footer .social-link:hover {
    color: var(--color-navy);
    background: var(--color-white);
    border-color: var(--color-white);
}

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

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.5);
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.74);
    font-weight: 700;
    transition: color var(--transition-fast);
}

.footer-credit a:hover,
.footer-credit a:focus-visible,
.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
    color: var(--color-white);
}

/* Contact inquiry form */

.contact-page-title {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background:
        radial-gradient(circle at 84% 18%, rgba(79, 158, 214, 0.35), transparent 28%),
        linear-gradient(122deg, var(--color-navy-deep) 0%, var(--color-navy) 60%, #123d76 100%);
}

.contact-page-title::after {
    position: absolute;
    right: -90px;
    bottom: -190px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.contact-page-title__inner {
    position: relative;
    z-index: 1;
    padding-top: 76px;
    padding-bottom: 80px;
}

.contact-page-title__kicker {
    margin: 0 0 13px;
    color: #ffb8c5;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-page-title h1 {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 820;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.contact-page-title__inner > p:last-child {
    max-width: 560px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
    line-height: 1.7;
}

.contact-page {
    width: min(100% - 48px, 1120px);
    margin: 0 auto;
    padding: 78px 0 92px;
}

.contact-page__intro {
    max-width: 600px;
    margin-bottom: 34px;
}

.page-kicker {
    display: block;
    color: var(--color-red);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-page__intro h1,
.contact-page__intro h2,
.contact-page__details h2 {
    margin: 8px 0 10px;
    color: var(--color-navy);
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.contact-page__intro p,
.contact-page__details p {
    margin: 0;
    color: var(--color-muted);
}

/* Locations directory */

.locations-directory {
    background: var(--color-white);
}

.locations-directory__list {
    padding: 82px 0 96px;
}

.locations-directory__heading {
    max-width: 680px;
    margin: 0 auto 38px;
    text-align: center;
}

.locations-directory__heading h2 {
    margin: 8px 0 0;
    color: var(--color-navy);
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.06em;
    line-height: 1.05;
}

.locations-directory__heading h2 span {
    color: var(--color-red);
}

.locations-directory__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.locations-directory__card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 64px;
    padding: 17px 42px 17px 18px;
    color: var(--color-navy);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 7px;
    box-shadow: 0 5px 16px rgba(7, 27, 77, 0.035);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.locations-directory__card:hover,
.locations-directory__card:focus-visible {
    border-color: rgba(199, 17, 17, 0.38);
    box-shadow: 0 12px 24px rgba(7, 27, 77, 0.09);
    transform: translateY(-2px);
}

.locations-directory__name {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.25;
}

.locations-directory__region {
    margin-left: 5px;
    color: #a4a9b5;
    font-size: 0.82rem;
    font-weight: 400;
}

.locations-directory__arrow {
    position: absolute;
    right: 16px;
    color: var(--color-red);
    font-size: 1rem;
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.locations-directory__card:hover .locations-directory__arrow,
.locations-directory__card:focus-visible .locations-directory__arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.locations-directory__cta {
    color: var(--color-white);
    background: var(--color-navy-deep);
}

.locations-directory__cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 250px;
}

.locations-directory__cta h2 {
    max-width: 620px;
    margin: 8px 0 10px;
    color: var(--color-white);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.06em;
    line-height: 1.05;
}

.locations-directory__cta p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.locations-directory__cta .eyebrow {
    color: #ffb8c5;
}

/* Thank-you page */

.thank-you-page {
    background: linear-gradient(180deg, #fbfcff 0%, #ffffff 100%);
}

.thank-you-page__content {
    display: grid;
    min-height: 620px;
    padding: 82px 0 96px;
    place-items: center;
}

.thank-you-page__card {
    width: min(100%, 680px);
    padding: 64px 56px;
    text-align: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(7, 27, 77, 0.08);
}

.thank-you-page__icon {
    display: grid;
    width: 68px;
    height: 68px;
    margin: 0 auto 24px;
    place-items: center;
    color: var(--color-white);
    background: var(--color-red);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 0 0 10px rgba(199, 17, 17, 0.1);
}

.thank-you-page__card h1 {
    margin: 8px 0 14px;
    color: var(--color-navy);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    letter-spacing: -0.07em;
    line-height: 1;
}

.thank-you-page__message {
    max-width: 510px;
    margin: 0 auto;
    color: var(--color-muted);
    line-height: 1.75;
}

.thank-you-page__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.contact-page__card {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    gap: 54px;
    padding: 36px;
    background: var(--color-soft);
    border: 1px solid var(--color-border);
    border-radius: 18px;
}

.contact-page__details {
    padding: 18px 0;
}

.contact-page__details h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.contact-page--expanded {
    max-width: 1240px;
}

.contact-detail-list {
    display: grid;
    gap: 22px;
    margin-top: 29px;
}

.contact-detail {
    display: grid;
    gap: 7px;
}

.contact-detail__label {
    color: var(--color-navy);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-detail__links {
    display: grid;
    gap: 5px;
}

.contact-detail__links a {
    width: fit-content;
    color: var(--color-muted);
    font-size: 0.88rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
    transition: color var(--transition-fast);
}

.contact-detail__links a:hover,
.contact-detail__links a:focus-visible {
    color: var(--color-red);
}

.contact-page__phone,
.contact-page__hours {
    display: flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-top: 24px;
    color: var(--color-navy);
    font-weight: 750;
}

.contact-page__phone:hover {
    color: var(--color-red);
}

.contact-page__hours {
    margin-top: 24px;
    color: var(--color-muted);
    font-size: 0.85rem;
}

.contact-page__hours span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22a66f;
    box-shadow: 0 0 0 4px rgba(34, 166, 111, 0.12);
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 26px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(7, 27, 77, 0.06);
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--color-navy);
    font-size: 0.76rem;
    font-weight: 750;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 13px;
    color: var(--color-text);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font: inherit;
    outline: 0;
    resize: vertical;
}

.contact-form input {
    min-height: 46px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(199, 17, 17, 0.45);
    box-shadow: 0 0 0 3px rgba(199, 17, 17, 0.08);
}

.contact-form .quote-button {
    justify-self: start;
    border: 0;
    cursor: pointer;
}

.contact-form-alert {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
}

.contact-form-alert--success {
    color: #176944;
    background: #e7f8ee;
}

.contact-form-alert--error {
    color: #9b253a;
    background: #fff0f3;
}

.contact-page__map {
    display: grid;
    grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1.48fr);
    align-items: center;
    gap: 32px;
    margin-top: 34px;
    padding: 30px;
    background: var(--color-soft);
    border: 1px solid var(--color-border);
    border-radius: 18px;
}

.contact-page__map-heading h2 {
    margin: 8px 0 10px;
    color: var(--color-navy);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.contact-page__map-heading p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.7;
}

.contact-page__map-frame {
    display: block;
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 12px;
}

@media (max-width: 760px) {
    .contact-page {
        width: min(100% - 32px, 1120px);
        padding: 52px 0 66px;
    }

    .contact-page-title__inner {
        padding-top: 58px;
        padding-bottom: 62px;
    }

    .contact-page__card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 22px;
    }

    .contact-form {
        padding: 18px;
    }

    .contact-page__map {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .contact-page__map-frame {
        min-height: 320px;
    }
}

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

/* Homepage */

.homepage {
    overflow: hidden;
}

.home-container {
    width: min(100% - 48px, 1240px);
    margin-inline: auto;
}

.home-section {
    position: relative;
    padding: 112px 0;
}

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

.eyebrow {
    margin: 0 0 14px;
    color: var(--color-red);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-hero {
    position: relative;
    background:
        radial-gradient(circle at 78% 40%, rgba(218, 0, 50, 0.06), transparent 24%),
        linear-gradient(135deg, #fff 0%, #fbfcff 66%, #f4f6fb 100%);
}

.home-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.91fr) minmax(480px, 1.09fr);
    align-items: center;
    min-height: 620px;
    padding: 68px 0 80px;
}

.home-hero__content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.home-hero h1,
.home-section h2,
.home-cta h2 {
    margin: 0;
    color: var(--color-navy);
    font-size: clamp(2.55rem, 5vw, 4.8rem);
    font-weight: 820;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.home-hero h1 span,
.home-section h2 span,
.home-cta h2 span {
    color: var(--color-red);
}

.home-hero__lead {
    max-width: 550px;
    margin: 24px 0 0;
    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.home-button:hover {
    transform: translateY(-2px);
}

.home-button span {
    font-size: 1rem;
    line-height: 1;
}

.home-button--primary {
    color: var(--color-white);
    background: var(--color-red);
    box-shadow: 0 10px 22px rgba(199, 17, 17, 0.18);
}

.home-button--primary:hover,
.home-button--primary:focus-visible {
    color: var(--color-white);
    background: var(--color-red-bright);
    box-shadow: 0 13px 26px rgba(199, 17, 17, 0.25);
}

.home-button--secondary {
    color: var(--color-navy);
    background: var(--color-white);
    border-color: var(--color-navy);
}

.home-button--secondary:hover,
.home-button--secondary:focus-visible {
    color: var(--color-white);
    background: var(--color-navy);
}

.home-button--light {
    min-height: 44px;
    padding-inline: 16px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
    font-size: 0.69rem;
}

.home-button--light:hover,
.home-button--light:focus-visible {
    color: var(--color-navy);
    background: var(--color-white);
    border-color: var(--color-white);
}

.home-button--outline-light {
    color: var(--color-white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
}

.home-button--outline-light:hover,
.home-button--outline-light:focus-visible {
    color: var(--color-navy);
    background: var(--color-white);
    border-color: var(--color-white);
}

.home-hero__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 23px;
    color: var(--color-navy);
    font-weight: 800;
}

.home-hero__phone:hover {
    color: var(--color-red);
}

.home-hero__phone-icon {
    display: inline-grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--color-white);
    background: var(--color-navy);
    border-radius: 50%;
    font-size: 0.9rem;
    transform: rotate(-45deg);
}

.home-hero__phone span:last-child {
    display: grid;
    gap: 0;
}

.home-hero__phone small {
    color: var(--color-muted);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 28px;
    color: var(--color-muted);
    font-size: 0.72rem;
    font-weight: 700;
}

.home-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.home-hero__trust i {
    display: inline-grid;
    width: 17px;
    height: 17px;
    place-items: center;
    color: var(--color-white);
    background: var(--color-red);
    border-radius: 50%;
    font-size: 0.61rem;
    font-style: normal;
}

.home-hero__visual {
    position: relative;
    min-height: 515px;
}

.home-hero__visual img {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: -68px;
    width: min(680px, 112%);
    max-width: none;
    transform: translateY(-50%);
    filter: drop-shadow(0 22px 25px rgba(7, 27, 77, 0.15));
}

.home-hero__visual-glow {
    position: absolute;
    top: 50%;
    right: 4%;
    width: 450px;
    height: 450px;
    background: rgba(218, 0, 50, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.08);
    border-radius: 50%;
    transform: translateY(-50%);
}

.home-hero__visual-glow::before,
.home-hero__visual-glow::after {
    position: absolute;
    border: 1px solid rgba(199, 17, 17, 0.14);
    border-radius: 50%;
    content: "";
}

.home-hero__visual-glow::before {
    inset: 35px;
}

.home-hero__visual-glow::after {
    inset: -35px;
}

.home-hero__visual-tag {
    position: absolute;
    z-index: 2;
    top: 70px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    color: var(--color-navy);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 5px;
    box-shadow: 0 12px 30px rgba(7, 27, 77, 0.1);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.home-hero__visual-tag strong {
    color: var(--color-red);
    font-size: 0.8rem;
}

.home-hero__visual-note {
    position: absolute;
    z-index: 2;
    right: 52px;
    bottom: 66px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: var(--color-white);
    background: var(--color-navy);
    border-radius: 7px;
    box-shadow: 0 15px 25px rgba(7, 27, 77, 0.18);
}

.home-hero__visual-note-icon {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    color: var(--color-white);
    background: var(--color-red);
    border-radius: 50%;
}

.home-hero__visual-note span:last-child {
    display: grid;
    gap: 1px;
}

.home-hero__visual-note strong {
    font-size: 0.75rem;
}

.home-hero__visual-note small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.64rem;
}

.home-hero__line {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-red) 0 26%, var(--color-navy) 26% 100%);
}

.trust-strip {
    position: relative;
    z-index: 2;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 102px;
    padding: 17px 24px;
    border-right: 1px solid var(--color-border);
}

.trust-item:first-child {
    padding-left: 0;
}

.trust-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.trust-item__icon {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--color-red);
    background: #fff3f4;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 800;
}

.trust-item span:last-child {
    display: grid;
    gap: 2px;
}

.trust-item strong {
    color: var(--color-navy);
    font-size: 0.77rem;
}

.trust-item small {
    color: var(--color-muted);
    font-size: 0.69rem;
    line-height: 1.35;
}

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

.section-heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading h2,
.home-about h2,
.home-why h2,
.specialty-section h2,
.long-distance-section h2,
.locations-section h2,
.faq-section h2 {
    font-size: clamp(2.05rem, 4vw, 3.55rem);
}

.section-heading > p:last-child,
.home-about__content > p,
.home-why__intro > p,
.specialty-section__content > p,
.long-distance-section__content > p,
.locations-section__content > p,
.faq-section__intro > p {
    color: var(--color-muted);
    line-height: 1.75;
}

.section-heading > p:last-child {
    max-width: 650px;
    margin: 19px auto 0;
}

.home-about__grid,
.home-why__grid,
.specialty-section__grid,
.long-distance-section__grid,
.locations-section__grid,
.faq-section__grid {
    display: grid;
    align-items: center;
    gap: 84px;
}

.home-about__grid {
    grid-template-columns: minmax(0, 0.93fr) minmax(0, 1fr);
}

.home-about__visual {
    position: relative;
    min-height: 450px;
}

.home-image-frame {
    position: absolute;
    overflow: hidden;
    border-radius: 11px;
    box-shadow: 0 22px 40px rgba(7, 27, 77, 0.14);
}

.home-image-frame--about {
    top: 0;
    left: 34px;
    width: calc(100% - 75px);
    height: 360px;
    background: var(--color-navy);
}

.home-image-frame--about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-about__floating-card {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 7px;
    display: flex;
    align-items: center;
    width: 205px;
    min-height: 104px;
    padding: 12px 10px 12px 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 9px;
    box-shadow: 0 17px 32px rgba(7, 27, 77, 0.12);
}

.home-about__floating-card img {
    width: 74px;
    height: 90px;
    object-fit: contain;
}

.home-about__floating-card span {
    display: grid;
    gap: 4px;
}

.home-about__floating-card strong {
    color: var(--color-navy);
    font-size: 0.72rem;
}

.home-about__floating-card small {
    color: var(--color-muted);
    font-size: 0.63rem;
    line-height: 1.4;
}

.home-about__circle {
    position: absolute;
    bottom: 38px;
    left: 0;
    width: 104px;
    height: 104px;
    border: 10px solid rgba(199, 17, 17, 0.12);
    border-radius: 50%;
}

.home-about__content {
    max-width: 525px;
}

.home-about__content h2 {
    margin-bottom: 22px;
}

.home-about__content p {
    margin: 0 0 14px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    color: var(--color-navy);
    font-size: 0.79rem;
    font-weight: 850;
    transition: color var(--transition-fast), gap var(--transition-fast);
}

.text-link:hover {
    color: var(--color-red);
    gap: 13px;
}

.text-link span {
    color: var(--color-red);
    font-size: 1.15rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
}

.service-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 9px;
    box-shadow: 0 6px 20px rgba(7, 27, 77, 0.03);
    transition: transform var(--transition-standard), box-shadow var(--transition-standard), border-color var(--transition-standard);
}

.service-card:hover {
    border-color: rgba(199, 17, 17, 0.22);
    box-shadow: 0 18px 32px rgba(7, 27, 77, 0.11);
    transform: translateY(-5px);
}

.service-card__image {
    display: grid;
    height: 154px;
    place-items: center;
    padding: 13px;
    background: #f6f8fc;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-standard);
}

.service-card:hover .service-card__image img {
    transform: scale(1.05);
}

.service-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 17px 18px 18px;
}

.service-card h3 {
    margin: 0;
    color: var(--color-navy);
    font-size: 0.97rem;
    line-height: 1.25;
}

.service-card p {
    min-height: 44px;
    margin: 8px 0 15px;
    color: var(--color-muted);
    font-size: 0.74rem;
    line-height: 1.55;
}

.service-card__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 11px;
    color: var(--color-red);
    border-top: 1px solid var(--color-border);
    font-size: 0.72rem;
    font-weight: 800;
}

.service-card__link span {
    font-size: 1.1rem;
}

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

.move-type-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 440px;
    overflow: hidden;
    border-radius: 10px;
    background: var(--color-navy);
}

.move-type-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.move-type-card--business > img {
    object-position: center;
}

.move-type-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 27, 77, 0.05) 25%, rgba(7, 27, 77, 0.93) 100%);
}

.move-type-card__content {
    position: relative;
    z-index: 1;
    max-width: 420px;
    padding: 32px;
    color: var(--color-white);
}

.move-type-card .eyebrow {
    color: #ff9dab;
}

.move-type-card h3 {
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.move-type-card p:not(.eyebrow) {
    max-width: 360px;
    margin: 13px 0 23px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
    line-height: 1.6;
}

.home-why__grid {
    grid-template-columns: minmax(0, 0.77fr) minmax(0, 1.23fr);
    align-items: start;
}

.home-why__intro {
    position: relative;
    min-height: 405px;
}

.home-why__intro h2 {
    max-width: 470px;
}

.home-why__intro > p {
    max-width: 425px;
}

.home-why__intro > img {
    position: absolute;
    right: -20px;
    bottom: -35px;
    width: 205px;
    height: 250px;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 12px 18px rgba(7, 27, 77, 0.12));
}

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

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 164px;
    padding: 22px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 9px;
}

.benefit-card img {
    width: 62px;
    height: 62px;
    flex: 0 0 auto;
    object-fit: contain;
}

.benefit-card h3 {
    margin: 4px 0 7px;
    color: var(--color-navy);
    font-size: 0.87rem;
    line-height: 1.25;
}

.benefit-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.73rem;
    line-height: 1.55;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.process-grid::before {
    position: absolute;
    top: 27px;
    right: 9%;
    left: 9%;
    border-top: 1px dashed rgba(199, 17, 17, 0.35);
    content: "";
}

.process-step {
    position: relative;
    z-index: 1;
}

.process-step > span {
    display: grid;
    width: 55px;
    height: 55px;
    margin-bottom: 22px;
    place-items: center;
    color: var(--color-white);
    background: var(--color-navy);
    border: 5px solid var(--color-white);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--color-border);
    font-size: 0.75rem;
    font-weight: 850;
}

.process-step:nth-child(even) > span {
    color: var(--color-white);
    background: var(--color-red);
}

.process-step h3 {
    margin: 0 0 8px;
    color: var(--color-navy);
    font-size: 0.9rem;
}

.process-step p {
    max-width: 210px;
    margin: 0;
    color: var(--color-muted);
    font-size: 0.75rem;
    line-height: 1.55;
}

.specialty-section {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background: var(--color-navy);
}

.specialty-section__grid {
    grid-template-columns: minmax(0, 0.91fr) minmax(0, 1fr);
    min-height: 590px;
}

.specialty-section__visual {
    position: relative;
    align-self: stretch;
    min-height: 500px;
}

.specialty-section__circle {
    position: absolute;
    top: 50%;
    left: 3%;
    width: 430px;
    height: 430px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    transform: translateY(-50%);
}

.specialty-section__circle::before {
    position: absolute;
    inset: 27px;
    border: 1px solid rgba(218, 0, 50, 0.5);
    border-radius: 50%;
    content: "";
}

.specialty-section__visual img {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    width: 480px;
    max-width: 100%;
    transform: translateY(-50%);
    filter: drop-shadow(0 20px 19px rgba(0, 0, 0, 0.22));
}

.specialty-section__content {
    max-width: 520px;
    padding: 80px 0;
}

.specialty-section h2 {
    color: var(--color-white);
}

.specialty-section h2 span {
    color: #ff8c9b;
}

.specialty-section__content > p {
    color: rgba(255, 255, 255, 0.67);
}

.specialty-links {
    display: grid;
    margin-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.specialty-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    color: rgba(255, 255, 255, 0.87);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.84rem;
    font-weight: 700;
    transition: color var(--transition-fast), padding var(--transition-fast);
}

.specialty-links a:hover {
    padding-inline: 7px;
    color: #ff8c9b;
}

.specialty-links b {
    color: #ff8c9b;
    font-size: 1.1rem;
}

.long-distance-section__grid {
    grid-template-columns: minmax(0, 0.93fr) minmax(0, 1fr);
}

.long-distance-section__content {
    max-width: 530px;
}

.long-distance-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 23px 0 26px;
}

.long-distance-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 13px;
    color: var(--color-navy);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 750;
    transition: color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.long-distance-links a:hover {
    color: var(--color-red);
    border-color: rgba(199, 17, 17, 0.3);
    transform: translateY(-2px);
}

.long-distance-links span {
    color: var(--color-red);
    font-size: 1rem;
}

.long-distance-section__visual {
    display: grid;
    place-items: center;
}

.long-distance-section__visual img {
    width: min(100%, 550px);
    filter: drop-shadow(0 15px 20px rgba(7, 27, 77, 0.1));
}

.locations-section__grid {
    grid-template-columns: minmax(0, 0.91fr) minmax(0, 1fr);
}

.locations-section__visual {
    display: grid;
    min-height: 420px;
    place-items: center;
}

.locations-section__visual img {
    width: min(100%, 520px);
}

.locations-section__content {
    max-width: 540px;
}

.location-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
    margin-top: 24px;
}

.location-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-navy);
    font-size: 0.8rem;
    font-weight: 750;
}

.location-list i {
    color: var(--color-red);
    font-size: 1.1rem;
    font-style: normal;
}

.reviews-section .section-heading > p:last-child {
    max-width: 620px;
}

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

.review-card {
    min-height: 240px;
    padding: 23px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 9px;
}

.review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 19px;
}

.review-card__google,
.reviews-empty__icon {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    color: #4285f4;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 850;
}

.review-card__stars {
    color: #efaa1d;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

.review-card h3 {
    margin: 0 0 9px;
    color: var(--color-navy);
    font-size: 0.87rem;
}

.review-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.77rem;
    line-height: 1.65;
}

.review-card time {
    display: block;
    margin-top: 17px;
    color: #9aa3b5;
    font-size: 0.66rem;
}

.reviews-section__link {
    display: flex;
    justify-content: center;
}

.reviews-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 700px;
    min-height: 125px;
    margin: 0 auto;
    padding: 22px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 9px;
}

.reviews-empty__icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
}

.reviews-empty h3 {
    margin: 0 0 4px;
    color: var(--color-navy);
    font-size: 0.9rem;
}

.reviews-empty p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.76rem;
}

.faq-section__grid {
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
}

.faq-section__intro {
    max-width: 420px;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
}

.faq-item {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 65px;
    color: var(--color-navy);
    font-size: 0.86rem;
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary b {
    display: grid;
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--color-red);
    background: #fff2f3;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 400;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.faq-item[open] summary b {
    color: var(--color-white);
    background: var(--color-red);
    transform: rotate(45deg);
}

.faq-item p {
    max-width: 700px;
    margin: -5px 42px 20px 0;
    color: var(--color-muted);
    font-size: 0.78rem;
    line-height: 1.65;
}

.home-cta {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background: var(--color-navy);
}

.home-cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(350px, 0.75fr);
    align-items: center;
    min-height: 390px;
}

.home-cta__content {
    position: relative;
    z-index: 1;
    padding: 75px 0;
}

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

.home-cta h2 span {
    color: #ff8c9b;
}

.home-cta__content > p:not(.eyebrow) {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.home-cta__visual {
    position: relative;
    align-self: stretch;
}

.home-cta__visual img {
    position: absolute;
    right: -130px;
    bottom: -74px;
    width: 570px;
    max-width: none;
    filter: drop-shadow(0 20px 18px rgba(0, 0, 0, 0.22));
}

.reveal {
    animation: home-fade-up 700ms ease both;
}

.reveal--delay {
    animation-delay: 120ms;
}

@keyframes home-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .home-hero__inner {
        grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    }

    .home-hero__visual img {
        right: -90px;
        width: 650px;
    }

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

    .home-about__grid,
    .home-why__grid,
    .specialty-section__grid,
    .long-distance-section__grid,
    .locations-section__grid,
    .faq-section__grid {
        gap: 54px;
    }
}

@media (max-width: 820px) {
    .home-container {
        width: min(100% - 36px, 1240px);
    }

    .home-section {
        padding: 80px 0;
    }

    .home-hero__inner {
        display: block;
        min-height: 0;
        padding: 72px 0 45px;
    }

    .home-hero__content {
        max-width: 680px;
    }

    .home-hero__visual {
        min-height: 420px;
        margin-top: 20px;
    }

    .home-hero__visual img {
        right: 50%;
        width: min(600px, 100%);
        transform: translate(50%, -50%);
    }

    .home-hero__visual-glow {
        right: 50%;
        width: 350px;
        height: 350px;
        transform: translate(50%, -50%);
    }

    .home-hero__visual-tag {
        top: 42px;
        right: 3%;
    }

    .home-hero__visual-note {
        right: 6%;
        bottom: 28px;
    }

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

    .trust-item,
    .trust-item:first-child {
        padding: 17px 15px;
        border-bottom: 1px solid var(--color-border);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .home-about__grid,
    .home-why__grid,
    .specialty-section__grid,
    .long-distance-section__grid,
    .locations-section__grid,
    .faq-section__grid {
        grid-template-columns: 1fr;
    }

    .home-about__visual {
        max-width: 610px;
        width: 100%;
        margin: 0 auto;
    }

    .home-about__content,
    .home-why__intro,
    .specialty-section__content,
    .long-distance-section__content,
    .locations-section__content,
    .faq-section__intro {
        max-width: 680px;
    }

    .home-why__intro {
        min-height: 285px;
    }

    .home-why__intro > img {
        right: 10%;
        bottom: -100px;
    }

    .specialty-section__grid {
        gap: 0;
    }

    .specialty-section__visual {
        min-height: 390px;
    }

    .specialty-section__content {
        padding: 0 0 80px;
    }

    .long-distance-section__visual {
        order: -1;
    }

    .locations-section__visual {
        min-height: 330px;
    }

    .faq-section__grid {
        gap: 35px;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }

    .home-cta__inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .home-cta__content {
        padding: 70px 0 35px;
    }

    .home-cta__visual {
        min-height: 235px;
    }

    .home-cta__visual img {
        right: 50%;
        bottom: -130px;
        width: 500px;
        transform: translateX(50%);
    }
}

@media (max-width: 620px) {
    .home-container {
        width: min(100% - 32px, 1240px);
    }

    .home-section {
        padding: 65px 0;
    }

    .home-hero__inner {
        padding: 55px 0 25px;
    }

    .home-hero h1 {
        font-size: clamp(2.45rem, 12vw, 3.75rem);
    }

    .home-hero__lead {
        font-size: 0.94rem;
    }

    .home-hero__actions {
        align-items: stretch;
        flex-direction: column;
        max-width: 270px;
    }

    .home-button {
        width: 100%;
    }

    .home-hero__trust {
        display: grid;
        gap: 9px;
    }

    .home-hero__visual {
        min-height: 310px;
        margin-top: 12px;
    }

    .home-hero__visual img {
        width: 125%;
    }

    .home-hero__visual-glow {
        width: 265px;
        height: 265px;
    }

    .home-hero__visual-tag {
        top: 14px;
        right: -3px;
        font-size: 0.58rem;
    }

    .home-hero__visual-note {
        right: 0;
        bottom: 9px;
        padding: 9px 10px;
    }

    .home-hero__visual-note strong {
        font-size: 0.66rem;
    }

    .home-hero__visual-note small {
        font-size: 0.56rem;
    }

    .trust-item {
        min-height: 91px;
        padding: 13px 9px !important;
    }

    .trust-item__icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .trust-item strong {
        font-size: 0.67rem;
    }

    .trust-item small {
        font-size: 0.6rem;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2,
    .home-about h2,
    .home-why h2,
    .specialty-section h2,
    .long-distance-section h2,
    .locations-section h2,
    .faq-section h2 {
        font-size: 2.1rem;
    }

    .home-about__visual {
        min-height: 315px;
    }

    .home-image-frame--about {
        left: 15px;
        width: calc(100% - 35px);
        height: 250px;
    }

    .home-about__floating-card {
        right: 0;
        bottom: 0;
        width: 182px;
        min-height: 84px;
        padding: 7px 6px 7px 0;
    }

    .home-about__floating-card img {
        width: 59px;
        height: 75px;
    }

    .home-about__floating-card strong {
        font-size: 0.65rem;
    }

    .home-about__floating-card small {
        font-size: 0.56rem;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .service-card__image {
        height: 113px;
        padding: 7px;
    }

    .service-card__body {
        padding: 12px 11px 13px;
    }

    .service-card h3 {
        font-size: 0.78rem;
    }

    .service-card p {
        min-height: 54px;
        margin: 6px 0 10px;
        font-size: 0.65rem;
    }

    .service-card__link {
        padding-top: 8px;
        font-size: 0.62rem;
    }

    .move-type-grid {
        grid-template-columns: 1fr;
    }

    .move-type-card {
        min-height: 370px;
    }

    .move-type-card__content {
        padding: 25px 22px;
    }

    .move-type-card h3 {
        font-size: 1.7rem;
    }

    .benefit-grid,
    .long-distance-links {
        grid-template-columns: 1fr;
    }

    .home-why__intro {
        min-height: 330px;
    }

    .home-why__intro > img {
        right: 0;
        bottom: -122px;
        width: 170px;
        height: 220px;
    }

    .benefit-card {
        min-height: 125px;
        padding: 16px;
    }

    .benefit-card img {
        width: 48px;
        height: 48px;
    }

    .benefit-card h3 {
        margin-top: 1px;
        font-size: 0.78rem;
    }

    .benefit-card p {
        font-size: 0.67rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-left: 12px;
    }

    .process-grid::before {
        top: 29px;
        right: auto;
        bottom: 29px;
        left: 38px;
        border-top: 0;
        border-left: 1px dashed rgba(199, 17, 17, 0.35);
    }

    .process-step {
        display: grid;
        grid-template-columns: 55px 1fr;
        column-gap: 17px;
    }

    .process-step > span {
        grid-row: span 2;
        margin: 0;
    }

    .process-step h3 {
        align-self: end;
        margin: 0 0 5px;
    }

    .process-step p {
        max-width: none;
    }

    .specialty-section__visual {
        min-height: 300px;
    }

    .specialty-section__circle {
        left: 50%;
        width: 285px;
        height: 285px;
        transform: translate(-50%, -50%);
    }

    .specialty-section__visual img {
        left: 50%;
        width: 350px;
        transform: translate(-50%, -50%);
    }

    .specialty-section__content {
        padding-bottom: 65px;
    }

    .locations-section__visual {
        min-height: 270px;
    }

    .location-list {
        gap: 9px 12px;
    }

    .location-list span {
        font-size: 0.73rem;
    }

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

    .reviews-empty {
        align-items: flex-start;
    }

    .reviews-empty h3 {
        font-size: 0.78rem;
    }

    .reviews-empty p {
        font-size: 0.68rem;
    }

    .faq-item summary {
        min-height: 60px;
        font-size: 0.77rem;
    }

    .faq-item p {
        margin-right: 0;
        font-size: 0.7rem;
    }

    .home-cta__content {
        padding: 58px 0 27px;
    }

    .home-cta h2 {
        font-size: 2.35rem;
    }

    .home-cta__visual {
        min-height: 190px;
    }

    .home-cta__visual img {
        bottom: -135px;
        width: 420px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        animation: none;
    }
}

/* Customer testimonials */
.testimonials-section {
    background: #f5f7fb;
}

.testimonials-section > .home-container {
    display: block;
}

.testimonials-section .section-heading {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-section .section-heading > p:last-child {
    margin: 18px auto 0;
}

.testimonial-carousel {
    max-width: 1120px;
    margin: 42px auto 0;
}

.testimonial-carousel__viewport {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonial-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.testimonial-carousel__track {
    display: flex;
    gap: 18px;
    padding: 2px 1px 14px;
}

.testimonial-carousel__slide {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
    scroll-snap-align: start;
}

.testimonial-card {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    padding: 26px;
    border: 1px solid #e7eaf0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(7, 27, 77, 0.06);
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
}

.testimonial-card__avatar {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #d51f31, #a61020);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
}

.testimonial-card__identity h2,
.testimonial-card__identity h3 {
    margin: 0 0 5px;
    color: var(--color-navy);
    font-size: 0.95rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.testimonial-card__stars {
    color: #e6a51a;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
}

.testimonial-card blockquote {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

.testimonial-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.testimonial-carousel__status {
    color: var(--color-muted);
    font-size: 0.84rem;
    font-weight: 650;
}

.testimonial-carousel__buttons {
    display: flex;
    gap: 10px;
}

.testimonial-carousel__button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid #dce1e9;
    border-radius: 50%;
    background: #fff;
    color: var(--color-navy);
    cursor: pointer;
    font: inherit;
    font-size: 1.25rem;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.testimonial-carousel__button:hover:not(:disabled),
.testimonial-carousel__button:focus-visible {
    border-color: var(--color-red);
    background: var(--color-red);
    color: #fff;
}

.testimonial-carousel__button:focus-visible {
    outline: 3px solid rgba(213, 31, 49, 0.25);
    outline-offset: 3px;
}

.testimonial-carousel__button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.testimonial-section__link {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin: 27px auto 0;
    color: var(--color-navy);
    font-weight: 750;
    text-decoration: none;
}

.testimonial-section__link:hover,
.testimonial-section__link:focus-visible {
    color: var(--color-red);
}

.testimonials-page__section {
    padding-top: 90px;
}

.testimonials-page__section .section-heading h1 {
    margin: 0;
    color: var(--color-navy);
    font-size: clamp(2.2rem, 4.2vw, 3.8rem);
    font-weight: 850;
    letter-spacing: -0.055em;
    line-height: 1.06;
}

.testimonials-page__section .section-heading h1 span {
    color: var(--color-red);
}

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

@media (max-width: 900px) {
    .testimonial-carousel__slide {
        flex-basis: calc((100% - 18px) / 2);
    }

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

@media (max-width: 620px) {
    .testimonial-carousel {
        margin-top: 30px;
    }

    .testimonial-carousel__slide {
        flex-basis: 100%;
    }

    .testimonial-card {
        min-height: 0;
        padding: 22px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 32px;
    }

    .testimonials-page__section {
        padding-top: 64px;
    }
}

/* Homepage redesign: editorial logistics brand system */

.homepage {
    color: #17213b;
    font-family: "Inter", ui-sans-serif, sans-serif;
}

.homepage h1,
.homepage h2,
.homepage h3 {
    font-family: "Plus Jakarta Sans", ui-sans-serif, sans-serif;
}

.home-hero {
    min-height: 655px;
    color: var(--color-white);
    background:
        linear-gradient(105deg, rgba(4, 19, 55, 0.98) 0%, rgba(7, 27, 77, 0.96) 46%, rgba(7, 27, 77, 0.73) 100%),
        radial-gradient(circle at 84% 50%, rgba(36, 103, 192, 0.28), transparent 33%),
        var(--color-navy);
}

.home-hero__inner {
    min-height: 655px;
    padding: 74px 0 92px;
}

.home-hero h1 {
    max-width: 650px;
    color: var(--color-white);
    font-size: clamp(3.25rem, 5.9vw, 5.35rem);
    letter-spacing: -0.075em;
    line-height: 0.98;
}

.home-hero h1 span {
    color: var(--color-red);
}

.home-hero .eyebrow {
    color: var(--color-red);
}

.home-hero__lead {
    max-width: 535px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.03rem;
}

.home-hero__visual {
    min-height: 550px;
}

.home-hero__visual img {
    top: 51%;
    right: -106px;
    width: min(730px, 120%);
    filter: drop-shadow(0 28px 26px rgba(0, 0, 0, 0.36));
    animation: hero-float 7s ease-in-out infinite;
}

.home-hero__visual-glow {
    right: 1%;
    width: 500px;
    height: 500px;
    background: rgba(39, 108, 194, 0.14);
    border-color: rgba(255, 255, 255, 0.1);
}

.home-hero__visual-glow::before {
    border-color: rgba(255, 255, 255, 0.08);
}

.home-hero__visual-glow::after {
    border-color: rgba(218, 0, 50, 0.3);
}

.home-hero__visual-tag {
    top: 82px;
    right: 4px;
    color: var(--color-white);
    background: rgba(7, 27, 77, 0.86);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.home-hero__visual-note {
    right: 30px;
    bottom: 54px;
    background: var(--color-red);
}

.home-hero__visual-note-icon {
    background: rgba(7, 27, 77, 0.44);
}

.home-hero__phone,
.home-hero__phone:hover {
    color: var(--color-white);
}

.home-hero__phone small,
.home-hero__trust {
    color: rgba(255, 255, 255, 0.58);
}

.home-hero__phone-icon {
    color: var(--color-navy);
    background: var(--color-white);
}

.home-hero__line {
    height: 5px;
    background: linear-gradient(90deg, var(--color-red) 0 36%, #2868b5 36% 100%);
}

.trust-strip {
    z-index: 4;
    width: min(100% - 80px, 1160px);
    margin: -48px auto 0;
    border: 1px solid #e3e8f2;
    border-radius: 8px;
    box-shadow: 0 22px 40px rgba(7, 27, 77, 0.12);
}

.trust-strip__grid {
    width: 100%;
}

.trust-item,
.trust-item:first-child {
    min-height: 96px;
    padding: 17px 21px;
}

.trust-item:last-child {
    border-right: 0;
}

.home-about {
    padding-top: 140px;
    padding-bottom: 125px;
}

.home-about__visual {
    min-height: 470px;
}

.home-image-frame--about {
    top: 20px;
    left: 16px;
    width: calc(100% - 42px);
    height: 390px;
    border-radius: 2px 36px 2px 36px;
}

.home-image-frame--about::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 35%, rgba(7, 27, 77, 0.24));
    content: "";
}

.home-about__floating-card {
    right: 0;
    bottom: 9px;
    border-radius: 2px;
}

.home-about__mini-block {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    display: grid;
    gap: 3px;
    padding: 16px 18px;
    color: var(--color-white);
    background: var(--color-red);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.78rem;
}

.home-about__mini-block span {
    color: rgba(255, 255, 255, 0.68);
    font-family: "Inter", sans-serif;
    font-size: 0.66rem;
}

.home-about__circle {
    right: 0;
    bottom: 45px;
    left: auto;
    width: 115px;
    height: 115px;
    border-color: rgba(7, 27, 77, 0.1);
}

.home-about__content {
    max-width: 555px;
    padding-bottom: 18px;
}

.home-about__content h2,
.section-heading h2,
.home-about h2,
.business-feature h2,
.home-why h2,
.specialty-section h2,
.long-distance-section h2,
.locations-section h2,
.faq-section h2 {
    font-weight: 700;
    letter-spacing: -0.065em;
}

.home-about__content h2 {
    max-width: 520px;
    font-size: clamp(2.5rem, 4.4vw, 4rem);
    line-height: 1.03;
}

.home-about__content > p {
    font-size: 0.97rem;
}

.home-about__callout {
    display: inline-block;
    padding: 13px 17px;
    color: var(--color-navy);
    background: #fff2f3;
    border-left: 3px solid var(--color-red);
    font-weight: 700;
}

.home-about__callout strong {
    color: var(--color-red);
}

.home-services--dark {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background:
        radial-gradient(circle at 88% 16%, rgba(38, 106, 191, 0.23), transparent 24%),
        var(--color-navy);
}

.home-services--dark::after {
    position: absolute;
    right: -90px;
    bottom: -160px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: "";
}

.home-services--dark .home-container {
    position: relative;
    z-index: 1;
}

.home-services__heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.55fr);
    align-items: end;
    gap: 50px;
    margin-bottom: 52px;
}

.home-services__heading h2 {
    grid-column: 1;
    grid-row: 1 / span 2;
    max-width: 560px;
    color: var(--color-white);
    font-size: clamp(2.5rem, 4.6vw, 4.35rem);
    line-height: 1;
}

.home-services__heading h2 span {
    color: var(--color-red);
}

.home-services__heading .eyebrow {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
}

.home-services__heading > p:last-child {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
    line-height: 1.75;
}

.home-services__editorial {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
    gap: 60px;
    align-items: stretch;
}

.service-feature {
    position: relative;
    display: grid;
    grid-template-columns: 0.94fr 1fr;
    min-height: 370px;
    overflow: hidden;
    color: var(--color-white);
    background: #0c2a61;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.service-feature__image {
    display: grid;
    min-height: 370px;
    place-items: center;
    overflow: hidden;
    background: #102f69;
}

.service-feature__image img {
    width: 115%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-standard);
}

.service-feature:hover .service-feature__image img {
    transform: scale(1.06);
}

.service-feature__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px;
}

.service-index {
    margin-bottom: 28px;
    color: var(--color-red);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.service-feature h3 {
    margin: 0;
    font-size: clamp(1.45rem, 2.7vw, 2.4rem);
    line-height: 1.08;
}

.service-feature p {
    margin: 16px 0 24px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    line-height: 1.65;
}

.service-feature__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    color: var(--color-red);
    font-size: 0.73rem;
    font-weight: 800;
}

.service-feature__link b {
    font-size: 1.1rem;
}

.service-links {
    display: grid;
    align-content: stretch;
}

.service-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.service-links a:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.service-links a:hover {
    color: var(--color-red);
}

.service-links a > span {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 12px;
    align-items: center;
}

.service-links small {
    grid-row: span 2;
    color: var(--color-red);
    font-size: 0.68rem;
}

.service-links strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.95rem;
}

.service-links em {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.68rem;
    font-style: normal;
}

.service-links b {
    color: var(--color-red);
    font-size: 1.1rem;
}

.residential-feature {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: var(--color-white);
}

.residential-feature__image,
.residential-feature__overlay {
    position: absolute;
    inset: 0;
}

.residential-feature__image {
    background: url("/images/services/residential-home-move.jpg") center 55% / cover no-repeat;
    transform: scale(1.02);
}

.residential-feature__overlay {
    background: linear-gradient(90deg, rgba(4, 19, 55, 0.94) 0%, rgba(7, 27, 77, 0.76) 39%, rgba(7, 27, 77, 0.16) 78%), linear-gradient(0deg, rgba(7, 27, 77, 0.25), transparent 55%);
}

.residential-feature__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 620px;
}

.residential-feature__content {
    max-width: 570px;
}

.residential-feature__content h2 {
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    letter-spacing: -0.075em;
    line-height: 1;
}

.residential-feature__content h2 span {
    color: var(--color-red);
}

.residential-feature__content > p:not(.eyebrow) {
    max-width: 500px;
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.98rem;
    line-height: 1.7;
}

.residential-feature__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    max-width: 520px;
    margin-bottom: 28px;
}

.residential-feature__tags span {
    padding: 7px 10px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(7, 27, 77, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    font-size: 0.66rem;
}

.business-feature {
    padding: 130px 0;
    background: var(--color-white);
}

.business-feature__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
    gap: 100px;
    align-items: center;
}

.business-feature__visual {
    position: relative;
    min-height: 480px;
}

.business-feature__visual::before {
    position: absolute;
    top: -26px;
    right: 36px;
    width: 78%;
    height: 100%;
    border: 1px solid rgba(199, 17, 17, 0.25);
    content: "";
}

.business-feature__visual img {
    position: absolute;
    z-index: 1;
    top: 28px;
    left: 0;
    width: 90%;
    height: 410px;
    object-fit: cover;
    box-shadow: 20px 22px 0 var(--color-navy);
}

.business-feature__stamp {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 30px;
    display: grid;
    width: 112px;
    height: 112px;
    place-items: center;
    color: var(--color-white);
    background: var(--color-red);
    border-radius: 50%;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
}

.business-feature__content {
    max-width: 520px;
}

.business-feature__content h2 {
    margin: 0;
    font-size: clamp(2.4rem, 4.2vw, 4rem);
    line-height: 1.03;
}

.business-feature__content h2 span {
    color: var(--color-red);
}

.business-feature__content > p:not(.eyebrow) {
    margin: 22px 0;
    color: var(--color-muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

.business-feature__list {
    display: grid;
    margin-bottom: 27px;
    border-top: 1px solid var(--color-border);
}

.business-feature__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    color: var(--color-navy);
    border-bottom: 1px solid var(--color-border);
    font-size: 0.75rem;
    font-weight: 700;
}

.business-feature__list a:hover {
    color: var(--color-red);
    padding-inline: 6px;
}

.business-feature__list span {
    color: var(--color-red);
    font-size: 1rem;
}

.home-why {
    display: grid;
    grid-template-columns: minmax(330px, 0.84fr) minmax(0, 1.16fr);
}

.home-why__intro {
    min-height: 520px;
    color: var(--color-white);
    background: var(--color-navy);
}

.home-why__intro-inner {
    position: relative;
    height: 100%;
    padding-top: 100px;
}

.home-why__intro .eyebrow {
    color: var(--color-red);
}

.home-why__intro h2 {
    max-width: 430px;
    color: var(--color-white);
    font-size: clamp(2.5rem, 4.3vw, 4.1rem);
    line-height: 1.02;
}

.home-why__intro h2 span {
    color: var(--color-red);
}

.home-why__intro-inner > p:not(.eyebrow) {
    max-width: 400px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 0.88rem;
    line-height: 1.75;
}

.home-why__intro img {
    position: absolute;
    right: -6px;
    bottom: -40px;
    width: 230px;
    height: 275px;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 18px 16px rgba(0, 0, 0, 0.22));
}

.home-why__benefits {
    display: flex;
    align-items: center;
    background: #f5f7fb;
}

.home-why__benefits .benefit-grid {
    width: min(100% - 80px, 680px);
    margin: 0 auto;
}

.benefit-grid {
    gap: 0;
}

.benefit-card {
    min-height: 190px;
    padding: 27px 22px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #dce2ec;
    border-radius: 0;
}

.benefit-card:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.benefit-card img {
    width: 55px;
    height: 55px;
}

.benefit-card h3 {
    font-size: 0.93rem;
}

.process-grid {
    gap: 45px;
}

.process-grid::before {
    top: 29px;
    right: 7%;
    left: 7%;
    border-color: rgba(7, 27, 77, 0.25);
}

.process-step > span {
    color: var(--color-navy);
    background: var(--color-white);
    border-color: var(--color-red);
    box-shadow: 0 0 0 5px var(--color-white);
}

.process-step:nth-child(even) > span {
    color: var(--color-white);
    background: var(--color-red);
}

.process-step h3 {
    font-size: 1rem;
}

.process-step p {
    font-size: 0.78rem;
}

.specialty-section {
    background:
        radial-gradient(circle at 12% 80%, rgba(218, 0, 89, 0.16), transparent 24%),
        var(--color-navy);
}

.specialty-section__grid {
    min-height: 610px;
}

.specialty-section__circle {
    background: rgba(38, 106, 191, 0.12);
}

.specialty-section__visual img {
    width: 520px;
}

.long-distance-section {
    padding-top: 130px;
    padding-bottom: 130px;
}

.long-distance-section__grid {
    gap: 45px;
}

.long-distance-section__content {
    position: relative;
    z-index: 2;
    max-width: 590px;
    margin-right: -110px;
    padding: 58px 65px 62px;
    color: var(--color-white);
    background: var(--color-navy);
    box-shadow: 22px 22px 0 rgba(199, 17, 17, 0.13);
}

.long-distance-section__content h2 {
    color: var(--color-white);
    font-size: clamp(2.5rem, 4vw, 3.9rem);
}

.long-distance-section__content h2 span {
    color: var(--color-red);
}

.long-distance-section__content > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.66);
}

.long-distance-links {
    gap: 0;
}

.long-distance-links a {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
}

.long-distance-links a:hover {
    color: var(--color-red);
    transform: none;
}

.long-distance-section__visual {
    min-height: 520px;
    padding-left: 75px;
    background: rgba(7, 27, 77, 0.035);
}

.long-distance-section__visual img {
    width: min(100%, 600px);
}

.locations-section {
    padding-top: 115px;
    padding-bottom: 115px;
}

.locations-section__grid {
    gap: 90px;
}

.locations-section__visual img {
    width: min(100%, 470px);
}

.reviews-section {
    background: #f5f7fb;
}

.reviews-section > .home-container {
    display: grid;
    grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
    gap: 65px;
    align-items: center;
}

.reviews-section .section-heading {
    margin: 0;
    text-align: left;
}

.reviews-section .section-heading > p:last-child {
    margin: 19px 0 0;
}

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

.review-card {
    min-height: 220px;
    padding: 20px;
    border-radius: 2px;
    box-shadow: 0 10px 24px rgba(7, 27, 77, 0.05);
}

.reviews-empty {
    grid-column: 2;
    justify-content: flex-start;
    width: 100%;
    max-width: none;
    min-height: 120px;
    margin: 0;
    border-radius: 2px;
}

.reviews-section__link {
    grid-column: 2;
    justify-content: flex-start;
    margin-top: -40px;
}

.faq-section {
    padding-top: 125px;
    padding-bottom: 125px;
}

.faq-section__grid {
    gap: 100px;
}

.faq-item summary {
    min-height: 74px;
    font-size: 0.9rem;
}

.faq-item p {
    font-size: 0.82rem;
}

.home-cta {
    background:
        radial-gradient(circle at 86% 70%, rgba(41, 105, 190, 0.28), transparent 29%),
        var(--color-navy);
}

.home-cta__inner {
    min-height: 440px;
}

.home-cta h2 {
    font-size: clamp(3rem, 5vw, 5rem);
    letter-spacing: -0.075em;
}

.home-cta h2 span {
    color: var(--color-red);
}

.home-cta__visual img {
    right: -80px;
    bottom: -70px;
    width: 620px;
    filter: drop-shadow(0 23px 20px rgba(0, 0, 0, 0.3));
}

@keyframes hero-float {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(calc(-50% - 8px));
    }
}

@media (max-width: 900px) {
    .home-hero,
    .home-hero__inner {
        min-height: 690px;
    }

    .home-hero__inner {
        padding-top: 62px;
    }

    .home-hero__visual {
        min-height: 390px;
    }

    .home-hero__visual img {
        top: 52%;
        right: 50%;
        width: min(640px, 110%);
        transform: translate(50%, -50%);
    }

    .home-hero__visual-glow {
        right: 50%;
        width: 370px;
        height: 370px;
        transform: translate(50%, -50%);
    }

    .trust-strip {
        width: min(100% - 36px, 700px);
    }

    .home-about {
        padding-top: 105px;
    }

    .home-services__heading,
    .home-services__editorial,
    .business-feature__grid,
    .reviews-section > .home-container {
        grid-template-columns: 1fr;
    }

    .home-services__heading {
        gap: 16px;
    }

    .home-services__heading h2,
    .home-services__heading .eyebrow,
    .home-services__heading > p:last-child {
        grid-column: 1;
        grid-row: auto;
    }

    .home-services__heading > p:last-child {
        max-width: 550px;
    }

    .home-services__editorial {
        gap: 38px;
    }

    .service-feature {
        min-height: 335px;
    }

    .business-feature__grid {
        gap: 58px;
    }

    .business-feature__visual {
        max-width: 650px;
        width: 100%;
    }

    .home-why {
        grid-template-columns: 1fr;
    }

    .home-why__intro {
        min-height: 430px;
    }

    .home-why__intro-inner {
        padding-top: 75px;
    }

    .home-why__benefits .benefit-grid {
        width: min(100% - 72px, 700px);
        padding: 25px 0;
    }

    .long-distance-section__content {
        margin-right: 0;
    }

    .long-distance-section__visual {
        min-height: 390px;
        padding-left: 0;
    }

    .reviews-section > .home-container {
        gap: 35px;
    }

    .reviews-section .section-heading {
        max-width: 600px;
    }

    .reviews-section .section-heading > p:last-child {
        margin-left: 0;
    }

    .reviews-empty,
    .reviews-section__link {
        grid-column: 1;
    }
}

@media (max-width: 620px) {
    .home-hero,
    .home-hero__inner {
        min-height: 710px;
    }

    .home-hero__inner {
        padding-top: 52px;
    }

    .home-hero h1 {
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .home-hero__visual {
        min-height: 305px;
    }

    .home-hero__visual img {
        top: 50%;
        width: 132%;
    }

    .home-hero__visual-glow {
        width: 280px;
        height: 280px;
    }

    .home-hero__visual-tag {
        top: 20px;
    }

    .home-hero__visual-note {
        right: 0;
        bottom: 5px;
    }

    .trust-strip {
        width: calc(100% - 24px);
        margin-top: -34px;
    }

    .trust-item,
    .trust-item:first-child {
        min-height: 84px;
        padding: 12px 8px !important;
    }

    .home-about {
        padding-top: 78px;
    }

    .home-about__visual {
        min-height: 330px;
    }

    .home-image-frame--about {
        top: 23px;
        left: 0;
        width: calc(100% - 24px);
        height: 270px;
        border-radius: 2px 24px 2px 24px;
    }

    .home-about__mini-block {
        top: 0;
        padding: 12px 14px;
        font-size: 0.68rem;
    }

    .home-about__floating-card {
        right: 0;
        bottom: 0;
    }

    .home-services__heading h2,
    .residential-feature__content h2,
    .business-feature__content h2,
    .home-why__intro h2,
    .specialty-section h2,
    .long-distance-section__content h2,
    .home-cta h2 {
        font-size: 2.5rem;
    }

    .service-feature {
        grid-template-columns: 1fr;
    }

    .service-feature__image {
        min-height: 190px;
    }

    .service-feature__copy {
        min-height: 250px;
        padding: 24px;
    }

    .service-index {
        margin-bottom: 15px;
    }

    .residential-feature,
    .residential-feature__inner {
        min-height: 650px;
    }

    .residential-feature__image {
        background-position: 63% center;
    }

    .residential-feature__overlay {
        background: linear-gradient(90deg, rgba(4, 19, 55, 0.96), rgba(7, 27, 77, 0.64)), linear-gradient(0deg, rgba(7, 27, 77, 0.2), transparent);
    }

    .residential-feature__content > p:not(.eyebrow) {
        font-size: 0.88rem;
    }

    .residential-feature__tags {
        gap: 6px;
    }

    .residential-feature__tags span {
        font-size: 0.6rem;
    }

    .business-feature {
        padding: 82px 0;
    }

    .business-feature__visual {
        min-height: 300px;
    }

    .business-feature__visual::before {
        top: -13px;
        right: 12px;
    }

    .business-feature__visual img {
        top: 14px;
        width: calc(100% - 22px);
        height: 260px;
        box-shadow: 12px 13px 0 var(--color-navy);
    }

    .business-feature__stamp {
        right: 0;
        bottom: 10px;
        width: 85px;
        height: 85px;
        font-size: 0.58rem;
    }

    .home-why__intro {
        min-height: 460px;
    }

    .home-why__intro-inner {
        padding-top: 62px;
    }

    .home-why__intro img {
        right: -10px;
        bottom: -36px;
        width: 185px;
        height: 225px;
    }

    .home-why__benefits .benefit-grid {
        width: calc(100% - 32px);
        padding: 15px 0;
    }

    .benefit-card {
        min-height: 120px;
        padding: 18px 8px;
    }

    .benefit-card:nth-last-child(2) {
        border-bottom: 1px solid #dce2ec;
    }

    .specialty-section__visual {
        min-height: 315px;
    }

    .long-distance-section {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .long-distance-section__content {
        padding: 36px 24px 40px;
        box-shadow: 12px 12px 0 rgba(199, 17, 17, 0.13);
    }

    .long-distance-section__visual {
        min-height: 285px;
    }

    .locations-section {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .locations-section__visual {
        min-height: 245px;
    }

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

    .reviews-empty {
        align-items: flex-start;
        padding: 18px;
    }

    .faq-section {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .faq-section__grid {
        gap: 28px;
    }

    .home-cta__inner {
        min-height: 460px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__visual img {
        animation: none;
    }
}

/* Homepage typography correction */

.homepage h1,
.homepage h2,
.homepage h3,
.homepage .service-links strong,
.homepage .business-feature__stamp,
.homepage .home-about__mini-block {
    font-family: "Manrope", ui-sans-serif, sans-serif;
}

.homepage h1,
.homepage h2,
.homepage h3,
.homepage .service-links strong {
    font-weight: 600;
}

.home-hero h1 {
    max-width: 760px;
    font-size: clamp(2.55rem, 3.8vw, 3.65rem);
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.home-hero__content {
    max-width: 760px;
}

.home-hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(440px, 0.9fr);
    gap: 54px;
}

.home-hero h1 span {
    color: transparent;
    background: linear-gradient(90deg, #ff3c65, #ffc857, #63d7ff, #ff3c65);
    background-size: 280% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: home-heading-colors 7s ease-in-out infinite;
}

.home-process .section-heading {
    max-width: 1000px;
}

.faq-section__grid {
    display: block;
}

.faq-section__intro {
    max-width: 900px;
    margin: 0 auto 52px;
    text-align: center;
}

.faq-section__intro > p:last-of-type {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
}

.faq-section__intro .text-link {
    justify-content: center;
}

.faq-list {
    width: 100%;
}

@keyframes home-heading-colors {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero h1 span {
        animation: none;
    }
}

.home-about__content h2 {
    font-size: clamp(2.15rem, 3.45vw, 3.3rem);
    line-height: 1.06;
}

.home-services__heading h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.65rem);
    line-height: 1.06;
}

.service-feature h3 {
    font-size: clamp(1.3rem, 2.15vw, 1.9rem);
    line-height: 1.12;
}

.residential-feature__content h2 {
    font-size: clamp(2.3rem, 4.1vw, 4rem);
    line-height: 1.04;
}

.business-feature__content h2 {
    font-size: clamp(2.15rem, 3.55vw, 3.4rem);
    line-height: 1.06;
}

.home-why__intro h2 {
    font-size: clamp(2.2rem, 3.7vw, 3.5rem);
    line-height: 1.06;
}

.long-distance-section__content h2 {
    font-size: clamp(2.2rem, 3.5vw, 3.35rem);
    line-height: 1.06;
}

.home-cta h2 {
    font-size: clamp(2.5rem, 4vw, 4.1rem);
    line-height: 1.04;
}

@media (max-width: 620px) {
    .home-hero h1 {
        max-width: 390px;
        font-size: clamp(2.4rem, 10.8vw, 3.25rem);
    }

    .home-services__heading h2,
    .home-about__content h2,
    .residential-feature__content h2,
    .business-feature__content h2,
    .home-why__intro h2,
    .long-distance-section__content h2,
    .home-cta h2 {
        font-size: 2.05rem;
        line-height: 1.08;
    }

    .service-feature h3 {
        font-size: 1.38rem;
    }
}

/* Homepage refinements */
.homepage .specialty-section__content h2 {
    margin: 0 0 18px;
    line-height: 1.02;
}

.homepage .specialty-section__content > p:not(.eyebrow) {
    margin: 0;
}

.homepage .faq-item summary {
    min-height: 80px;
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.45;
}

.homepage .faq-item p {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* About page */

.about-page {
    overflow: hidden;
    color: #17213b;
}

.about-page h1,
.about-page h2,
.about-page h3 {
    font-family: "Manrope", ui-sans-serif, sans-serif;
}

.about-hero {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background:
        radial-gradient(circle at 75% 20%, rgba(45, 108, 190, 0.28), transparent 28%),
        var(--color-navy);
}

.about-hero::after {
    position: absolute;
    right: -120px;
    bottom: -220px;
    width: 490px;
    height: 490px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.about-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
    align-items: center;
    gap: 50px;
    min-height: 610px;
    padding-top: 66px;
    padding-bottom: 66px;
}

.about-hero__content {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.about-hero__content .eyebrow,
.about-details .eyebrow,
.about-cta .eyebrow {
    color: var(--color-red);
}

.about-hero h1 {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(2.7rem, 4.5vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 1.02;
}

.about-hero h1 span,
.about-introduction h2 span,
.about-details h2 span,
.about-values h2 span,
.about-faq h2 span,
.about-cta h2 span {
    color: var(--color-red);
}

.about-hero h1 span {
    color: var(--color-white);
}

.about-hero__content > p:not(.eyebrow) {
    max-width: 455px;
    margin: 23px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.75;
}

.about-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 30px;
}

.about-hero__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 700;
}

.about-hero__phone:hover {
    color: var(--color-red);
}

.about-hero__visual {
    position: relative;
    min-height: 460px;
}

.about-hero__image {
    position: absolute;
    overflow: hidden;
    border: 8px solid var(--color-white);
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.22);
}

.about-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero__image--back {
    top: 9px;
    right: 0;
    width: 78%;
    height: 390px;
    transform: rotate(2.5deg);
}

.about-hero__image--front {
    bottom: 0;
    left: 0;
    width: 62%;
    height: 325px;
    transform: rotate(-3deg);
}

.about-hero__badge {
    position: absolute;
    z-index: 2;
    right: 12%;
    bottom: 10px;
    display: grid;
    min-width: 147px;
    padding: 15px 17px;
    color: var(--color-white);
    background: var(--color-red);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    transform: rotate(3deg);
}

.about-hero__badge strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.65rem;
    line-height: 1;
}

.about-hero__badge small {
    max-width: 100px;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.62rem;
    line-height: 1.35;
}

.about-introduction {
    padding-top: 132px;
    padding-bottom: 132px;
}

.about-introduction__grid,
.about-details__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 92px;
    align-items: center;
}

.about-introduction__visual {
    position: relative;
    min-height: 465px;
}

.about-introduction__image {
    position: absolute;
    top: 20px;
    left: 15px;
    width: calc(100% - 25px);
    height: 390px;
    overflow: hidden;
    border-radius: 2px 40px 2px 40px;
}

.about-introduction__image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, transparent 40%, rgba(7, 27, 77, 0.28));
    content: "";
}

.about-introduction__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-introduction__caption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 200px;
    padding: 15px;
    color: var(--color-white);
    background: var(--color-navy);
}

.about-introduction__caption > span:first-child {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    color: var(--color-white);
    background: var(--color-red);
    border-radius: 50%;
}

.about-introduction__caption > span:last-child {
    display: grid;
    gap: 2px;
}

.about-introduction__caption strong {
    font-size: 0.72rem;
}

.about-introduction__caption small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.62rem;
}

.about-introduction__content {
    max-width: 585px;
}

.about-introduction h2,
.about-details h2,
.about-values h2,
.about-faq h2 {
    margin: 0;
    color: var(--color-navy);
    font-size: clamp(2.25rem, 3.6vw, 3.45rem);
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 1.06;
}

.about-introduction__content > p:not(.eyebrow),
.about-details__content > p:not(.eyebrow) {
    color: var(--color-muted);
    font-size: 0.92rem;
    line-height: 1.8;
}

.about-introduction__content > p:not(.eyebrow):first-of-type {
    margin-top: 23px;
}

.about-introduction__content > p:not(.eyebrow):last-child {
    margin-bottom: 0;
}

.about-details {
    position: relative;
    overflow: hidden;
    padding: 118px 0;
    color: var(--color-white);
    background:
        radial-gradient(circle at 90% 10%, rgba(44, 109, 192, 0.22), transparent 28%),
        var(--color-navy);
}

.about-details::before {
    position: absolute;
    top: -190px;
    left: -110px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    content: "";
}

.about-details__grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 110px;
}

.about-details__content {
    max-width: 510px;
}

.about-details h2 {
    color: var(--color-white);
}

.about-details h2 span {
    color: var(--color-red);
}

.about-details__content > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.66);
}

.about-details__content > p:not(.eyebrow):first-of-type {
    margin-top: 22px;
}

.about-details__content .home-button {
    margin-top: 16px;
}

.about-details__services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 30px;
}

.about-details__services article {
    display: grid;
    grid-template-columns: 33px 1fr;
    gap: 13px;
    min-height: 155px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.about-details__services article > span {
    color: var(--color-red);
    font-size: 0.67rem;
    font-weight: 700;
}

.about-details__services h3 {
    margin: 0;
    color: var(--color-white);
    font-size: 0.94rem;
    font-weight: 600;
}

.about-details__services p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    line-height: 1.55;
}

.about-values {
    background: #f5f7fb;
}

.about-values .section-heading {
    margin-bottom: 48px;
}

.about-values .section-heading h2 {
    max-width: 560px;
    margin-inline: auto;
}

.about-values .section-heading > p:last-child {
    max-width: 500px;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #dce2ec;
    border-bottom: 1px solid #dce2ec;
}

.about-value {
    min-height: 205px;
    padding: 27px 25px;
    border-right: 1px solid #dce2ec;
}

.about-value:first-child {
    padding-left: 0;
}

.about-value:last-child {
    padding-right: 0;
    border-right: 0;
}

.about-value > span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    margin-bottom: 22px;
    color: var(--color-red);
    background: #fff1f2;
    border-radius: 50%;
    font-size: 0.93rem;
}

.about-value h3 {
    margin: 0;
    color: var(--color-navy);
    font-size: 0.95rem;
    font-weight: 600;
}

.about-value p {
    max-width: 180px;
    margin: 10px 0 0;
    color: var(--color-muted);
    font-size: 0.74rem;
    line-height: 1.6;
}

.about-faq {
    background: var(--color-white);
}

.about-faq__heading {
    max-width: 600px;
    margin-bottom: 48px;
}

.about-faq__heading > p:last-child {
    max-width: 510px;
    margin: 19px 0 0;
}

.about-faq__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px;
}

.about-faq__column {
    border-top: 1px solid var(--color-border);
}

.about-faq__item {
    border-bottom: 1px solid var(--color-border);
}

.about-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 72px;
    color: var(--color-navy);
    font-size: 0.83rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.about-faq__item summary::-webkit-details-marker {
    display: none;
}

.about-faq__item summary b {
    display: grid;
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--color-red);
    background: #fff1f2;
    border-radius: 50%;
    font-size: 1.05rem;
    font-weight: 400;
    transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.about-faq__item[open] summary b {
    color: var(--color-white);
    background: var(--color-red);
    transform: rotate(45deg);
}

.about-faq__item p {
    margin: -2px 40px 20px 0;
    color: var(--color-muted);
    font-size: 0.76rem;
    line-height: 1.7;
}

.about-cta {
    color: var(--color-white);
    background:
        radial-gradient(circle at 85% 30%, rgba(41, 105, 190, 0.29), transparent 29%),
        var(--color-navy);
}

.about-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    min-height: 330px;
}

.about-cta h2 {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 1.05;
}

.about-cta h2 span {
    color: var(--color-red);
}

.about-cta p:not(.eyebrow) {
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.86rem;
}

@media (max-width: 900px) {
    .about-hero__grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 70px;
        padding-bottom: 76px;
    }

    .about-hero__content {
        max-width: 620px;
    }

    .about-hero__visual {
        min-height: 440px;
        max-width: 650px;
        width: 100%;
    }

    .about-introduction__grid,
    .about-details__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-introduction__content,
    .about-details__content {
        max-width: 650px;
    }

    .about-details__grid {
        gap: 45px;
    }

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

    .about-value,
    .about-value:first-child,
    .about-value:last-child {
        padding: 25px 20px;
        border-right: 1px solid #dce2ec;
        border-bottom: 1px solid #dce2ec;
    }

    .about-value:nth-child(2n) {
        border-right: 0;
    }

    .about-value:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .about-faq__columns {
        gap: 35px;
    }
}

@media (max-width: 620px) {
    .about-hero__grid {
        padding-top: 52px;
        padding-bottom: 54px;
    }

    .about-hero h1 {
        font-size: clamp(2.35rem, 10vw, 3.15rem);
    }

    .about-hero__visual {
        min-height: 320px;
    }

    .about-hero__image {
        border-width: 5px;
    }

    .about-hero__image--back {
        width: 82%;
        height: 270px;
    }

    .about-hero__image--front {
        width: 67%;
        height: 220px;
    }

    .about-hero__badge {
        right: 3%;
        bottom: 0;
        min-width: 125px;
        padding: 11px 13px;
    }

    .about-hero__badge strong {
        font-size: 1.3rem;
    }

    .about-introduction,
    .about-details,
    .about-values,
    .about-faq {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .about-introduction__visual {
        min-height: 320px;
    }

    .about-introduction__image {
        top: 15px;
        left: 0;
        width: calc(100% - 18px);
        height: 265px;
        border-radius: 2px 25px 2px 25px;
    }

    .about-introduction__caption {
        right: 0;
        bottom: 0;
        min-width: 175px;
        padding: 11px;
    }

    .about-introduction h2,
    .about-details h2,
    .about-values h2,
    .about-faq h2,
    .about-cta h2 {
        font-size: 2.1rem;
    }

    .about-introduction__content > p:not(.eyebrow),
    .about-details__content > p:not(.eyebrow) {
        font-size: 0.86rem;
    }

    .about-details__services {
        grid-template-columns: 1fr;
    }

    .about-details__services article {
        min-height: 110px;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .about-value,
    .about-value:first-child,
    .about-value:last-child,
    .about-value:nth-child(2n) {
        min-height: 155px;
        padding: 21px 0;
        border-right: 0;
        border-bottom: 1px solid #dce2ec;
    }

    .about-value:last-child {
        border-bottom: 0;
    }

    .about-faq__heading {
        margin-bottom: 30px;
    }

    .about-faq__columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-faq__column + .about-faq__column {
        margin-top: 0;
    }

    .about-faq__item summary {
        min-height: 65px;
        font-size: 0.78rem;
    }

    .about-faq__item p {
        margin-right: 34px;
        font-size: 0.72rem;
    }

    .about-cta__inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        min-height: 380px;
        gap: 25px;
    }
}

/* Business license page */

.license-page {
    overflow: hidden;
    color: #17213b;
}

.license-page h1,
.license-page h2,
.license-page h3 {
    font-family: "Manrope", ui-sans-serif, sans-serif;
}

.license-hero {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background:
        radial-gradient(circle at 86% 15%, rgba(46, 108, 191, 0.28), transparent 28%),
        var(--color-navy);
}

.license-hero::after {
    position: absolute;
    right: -145px;
    bottom: -250px;
    width: 530px;
    height: 530px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: "";
}

.license-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.9fr);
    align-items: center;
    gap: 70px;
    min-height: 575px;
    padding-top: 62px;
    padding-bottom: 62px;
}

.license-hero__content {
    max-width: 550px;
}

.license-hero__content .eyebrow,
.license-requirements .eyebrow,
.license-contact .eyebrow {
    color: var(--color-red);
}

.license-hero h1 {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(2.7rem, 4.5vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 1.04;
}

.license-hero h1 span,
.license-intro h2 span,
.license-requirements h2 span,
.license-values h2 span,
.license-gallery h2 span,
.license-contact h2 span {
    color: var(--color-red);
}

.license-hero__content > p:not(.eyebrow) {
    max-width: 480px;
    margin: 23px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.75;
}

.license-hero__content .home-button {
    margin-top: 30px;
}

.license-hero__visual {
    position: relative;
    min-height: 415px;
}

.license-hero__visual::before {
    position: absolute;
    top: 20px;
    right: 8%;
    width: 78%;
    height: 86%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    content: "";
    transform: rotate(4deg);
}

.license-hero__visual img {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 83%;
    height: 390px;
    object-fit: cover;
    box-shadow: -18px 18px 0 rgba(199, 17, 17, 0.62);
    transform: rotate(3deg);
}

.license-hero__mark {
    position: absolute;
    z-index: 2;
    bottom: 8px;
    left: 3%;
    display: grid;
    width: 105px;
    height: 105px;
    place-content: center;
    color: var(--color-white);
    background: var(--color-red);
    font-family: "Manrope", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 0.95;
    text-align: center;
    transform: rotate(-6deg);
}

.license-hero__mark small {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.74);
    font-family: Inter, sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
}

.license-intro {
    padding-top: 115px;
    padding-bottom: 115px;
}

.license-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 100px;
    align-items: start;
}

.license-intro__heading {
    max-width: 520px;
}

.license-intro h2,
.license-requirements h2,
.license-values h2,
.license-gallery h2 {
    margin: 0;
    color: var(--color-navy);
    font-size: clamp(2.25rem, 3.65vw, 3.55rem);
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 1.06;
}

.license-intro__copy {
    max-width: 610px;
    padding-top: 37px;
}

.license-intro__copy p {
    margin: 0 0 19px;
    color: var(--color-muted);
    font-size: 0.93rem;
    line-height: 1.85;
}

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

.license-requirements {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    color: var(--color-white);
    background: var(--color-navy);
}

.license-requirements::before {
    position: absolute;
    top: -190px;
    left: -120px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    content: "";
}

.license-requirements__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 105px;
    align-items: center;
}

.license-requirements__visual {
    position: relative;
    min-height: 430px;
}

.license-requirements__visual img {
    width: 86%;
    height: 385px;
    object-fit: cover;
    box-shadow: 20px 20px 0 rgba(255, 255, 255, 0.1);
}

.license-requirements__stamp {
    position: absolute;
    right: 0;
    bottom: 8px;
    display: grid;
    width: 130px;
    padding: 18px;
    color: var(--color-white);
    background: var(--color-red);
}

.license-requirements__stamp strong {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1;
}

.license-requirements__stamp span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.64rem;
    line-height: 1.3;
}

.license-requirements__content {
    max-width: 560px;
}

.license-requirements h2 {
    color: var(--color-white);
}

.license-requirements h2 span {
    color: #ffccd2;
}

.license-requirements__content > p:not(.eyebrow) {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
}

.license-requirements__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.license-requirements__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 0;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.73rem;
    line-height: 1.45;
}

.license-requirements__list li span {
    display: inline-grid;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--color-white);
    background: var(--color-red);
    border-radius: 50%;
    font-size: 0.6rem;
}

.license-values {
    background: #f5f7fb;
}

.license-values .section-heading {
    margin-bottom: 48px;
}

.license-values .section-heading > p:last-child {
    max-width: 530px;
}

.license-values__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #dce2ec;
    border-bottom: 1px solid #dce2ec;
}

.license-value {
    min-height: 220px;
    padding: 28px 32px;
    border-right: 1px solid #dce2ec;
}

.license-value:first-child {
    padding-left: 0;
}

.license-value:last-child {
    padding-right: 0;
    border-right: 0;
}

.license-value > span {
    color: var(--color-red);
    font-size: 0.69rem;
    font-weight: 700;
}

.license-value h3 {
    margin: 30px 0 0;
    color: var(--color-navy);
    font-size: 1rem;
    font-weight: 600;
}

.license-value p {
    max-width: 235px;
    margin: 11px 0 0;
    color: var(--color-muted);
    font-size: 0.75rem;
    line-height: 1.65;
}

.license-gallery {
    padding-top: 122px;
    padding-bottom: 130px;
}

.license-gallery__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 46px;
}

.license-gallery__heading h2 {
    max-width: 630px;
}

.license-gallery__heading > p {
    max-width: 325px;
    margin: 0 0 4px;
    color: var(--color-muted);
    font-size: 0.82rem;
    line-height: 1.7;
}

.license-gallery__grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr 0.88fr;
    grid-template-rows: 245px 245px;
    gap: 14px;
}

.license-gallery__item {
    position: relative;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    background: #dfe5ee;
}

.license-gallery__item--1 {
    grid-row: 1 / span 2;
}

.license-gallery__item--4 {
    grid-column: 2 / span 2;
}

.license-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-standard);
}

.license-gallery__item:hover img {
    transform: scale(1.05);
}

.license-gallery__item::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 19, 55, 0.65), transparent 55%);
    content: "";
    pointer-events: none;
}

.license-gallery__item figcaption {
    position: absolute;
    z-index: 1;
    right: 15px;
    bottom: 14px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 600;
}

.license-gallery__item figcaption span {
    color: #ffccd2;
    font-size: 0.62rem;
}

.license-contact {
    color: var(--color-white);
    background:
        radial-gradient(circle at 82% 30%, rgba(44, 108, 190, 0.28), transparent 29%),
        var(--color-navy);
}

.license-contact__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    min-height: 340px;
}

.license-contact h2 {
    max-width: 700px;
    margin: 0;
    color: var(--color-white);
    font-size: clamp(2.35rem, 4vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 1.05;
}

.license-contact h2 span {
    color: #ffccd2;
}

.license-contact p:not(.eyebrow) {
    max-width: 650px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.87rem;
    line-height: 1.7;
}

.license-contact p a {
    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 900px) {
    .license-hero__grid,
    .license-intro__grid,
    .license-requirements__grid {
        grid-template-columns: 1fr;
    }

    .license-hero__grid {
        gap: 30px;
        padding-top: 70px;
        padding-bottom: 75px;
    }

    .license-hero__content {
        max-width: 650px;
    }

    .license-hero__visual {
        min-height: 420px;
        max-width: 620px;
        width: 100%;
    }

    .license-intro__grid {
        gap: 20px;
    }

    .license-intro__copy {
        padding-top: 0;
        max-width: 680px;
    }

    .license-requirements__grid {
        gap: 50px;
    }

    .license-requirements__visual {
        max-width: 620px;
        width: 100%;
    }

    .license-gallery__heading {
        align-items: start;
        flex-direction: column;
        gap: 18px;
    }

    .license-gallery__heading > p {
        max-width: 540px;
    }
}

@media (max-width: 620px) {
    .license-hero__grid {
        padding-top: 52px;
        padding-bottom: 58px;
    }

    .license-hero h1 {
        font-size: 2.45rem;
    }

    .license-hero__visual {
        min-height: 300px;
    }

    .license-hero__visual img {
        width: 84%;
        height: 285px;
    }

    .license-hero__mark {
        bottom: 0;
        width: 82px;
        height: 82px;
        font-size: 1rem;
    }

    .license-intro,
    .license-requirements,
    .license-values,
    .license-gallery {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .license-intro h2,
    .license-requirements h2,
    .license-values h2,
    .license-gallery h2,
    .license-contact h2 {
        font-size: 2.1rem;
    }

    .license-intro__copy p {
        font-size: 0.86rem;
    }

    .license-requirements__visual {
        min-height: 300px;
    }

    .license-requirements__visual img {
        width: calc(100% - 28px);
        height: 285px;
    }

    .license-requirements__stamp {
        width: 105px;
        padding: 13px;
    }

    .license-requirements__list {
        grid-template-columns: 1fr;
    }

    .license-values__grid {
        grid-template-columns: 1fr;
    }

    .license-value,
    .license-value:first-child,
    .license-value:last-child {
        min-height: 165px;
        padding: 23px 0;
        border-right: 0;
        border-bottom: 1px solid #dce2ec;
    }

    .license-value:last-child {
        border-bottom: 0;
    }

    .license-value h3 {
        margin-top: 20px;
    }

    .license-gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 190px 190px 190px;
    }

    .license-gallery__item--1 {
        grid-row: 1 / span 2;
    }

    .license-gallery__item--2 {
        grid-column: 2;
    }

    .license-gallery__item--3 {
        grid-column: 2;
    }

    .license-gallery__item--4 {
        grid-column: 1 / span 2;
        grid-row: 3;
    }

    .license-gallery__item--5 {
        display: none;
    }

    .license-contact__inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        min-height: 390px;
        gap: 25px;
    }
}

/* Business license refinements: softer brand palette and photo carousel */

.license-page {
    --license-ink: #10284f;
    --license-navy: #08204d;
    --license-blue: #1d5a9d;
    --license-sky: #edf5fc;
    --license-red: #DA0032;
    --license-red-light: #f3dfdd;
    --license-ivory: #f3ece2;
    --license-muted: #657792;
    background: #fbfdff;
}

.license-hero {
    background:
        radial-gradient(circle at 77% 18%, rgba(79, 158, 214, 0.32), transparent 25%),
        radial-gradient(circle at 12% 90%, rgba(218, 0, 50, 0.17), transparent 30%),
        linear-gradient(125deg, #071b43 0%, var(--license-navy) 56%, #123d76 100%);
}

.license-hero::after {
    border-color: rgba(135, 194, 230, 0.25);
}

.license-page .eyebrow,
.license-hero__content .eyebrow,
.license-requirements .eyebrow,
.license-contact .eyebrow {
    color: var(--license-red);
}

.license-hero h1 span,
.license-intro h2 span,
.license-requirements h2 span,
.license-values h2 span,
.license-gallery h2 span,
.license-contact h2 span {
    color: var(--license-red);
}

.license-hero__visual::before {
    border-color: rgba(135, 194, 230, 0.34);
}

.license-hero__visual img {
    box-shadow: -18px 18px 0 rgba(218, 0, 50, 0.68);
}

.license-hero h1 {
    max-width: 680px;
    font-size: clamp(2.8rem, 5vw, 4.75rem);
    letter-spacing: -0.06em;
    line-height: 0.99;
}

.license-hero h1 span {
    display: inline-block;
    margin-top: 5px;
}

.license-page .license-hero .home-button--primary,
.license-page .license-contact .home-button--primary {
    color: var(--color-white);
    background: var(--license-red);
    box-shadow: 0 12px 24px rgba(218, 0, 50, 0.22);
}

.license-page .license-hero .home-button--primary:hover,
.license-page .license-hero .home-button--primary:focus-visible,
.license-page .license-contact .home-button--primary:hover,
.license-page .license-contact .home-button--primary:focus-visible {
    background: #b9002b;
    box-shadow: 0 15px 28px rgba(218, 0, 50, 0.3);
}

.license-hero__mark,
.license-requirements__stamp {
    background: var(--license-red);
}

.license-hero__mark small,
.license-requirements__stamp span {
    color: rgba(255, 255, 255, 0.8);
}

.license-intro {
    background:
        radial-gradient(circle at 92% 8%, rgba(79, 158, 214, 0.1), transparent 23%),
        #fbfdff;
}

.license-intro__copy p,
.license-gallery__heading > p,
.license-value p,
.license-requirements__content > p:not(.eyebrow) {
    color: var(--license-muted);
}

.license-requirements {
    background:
        radial-gradient(circle at 86% 22%, rgba(57, 128, 193, 0.34), transparent 28%),
        linear-gradient(135deg, #081f4b 0%, #123d76 100%);
}

.license-requirements::before {
    border-color: rgba(138, 198, 232, 0.22);
}

.license-requirements__visual img {
    box-shadow: 20px 20px 0 rgba(106, 178, 221, 0.22);
}

.license-requirements__list {
    border-color: rgba(178, 215, 237, 0.23);
}

.license-requirements__list li {
    color: rgba(255, 255, 255, 0.86);
    border-color: rgba(178, 215, 237, 0.23);
}

.license-requirements__list li span {
    color: var(--license-ink);
    background: var(--license-ivory);
    border: 1px solid rgba(199, 17, 17, 0.25);
}

.license-values {
    background:
        linear-gradient(135deg, #eff6fc 0%, #f9fbfd 100%);
}

.license-values__grid {
    border-color: #d4e2ef;
}

.license-value {
    border-color: #d4e2ef;
}

.license-value > span {
    color: var(--license-red);
}

.license-value h3 {
    color: var(--license-ink);
}

.license-gallery {
    background:
        radial-gradient(circle at 8% 42%, rgba(232, 180, 93, 0.08), transparent 19%),
        #fbfdff;
}

.license-gallery__carousel {
    position: relative;
}

.license-gallery__viewport {
    overflow: hidden;
    padding: 5px 0 10px;
}

.license-gallery__grid {
    display: flex;
    gap: 16px;
    grid-template-columns: none;
    grid-template-rows: none;
    transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.license-gallery__item {
    flex: 0 0 calc((100% - 32px) / 3);
    height: 330px;
    min-height: 0;
    border: 1px solid #dce8f2;
    border-radius: 18px;
    box-shadow: 0 16px 35px rgba(16, 40, 79, 0.08);
    transform: translateZ(0);
}

.license-gallery__item--1,
.license-gallery__item--4 {
    grid-column: auto;
    grid-row: auto;
}

.license-gallery__item::after {
    background: linear-gradient(0deg, rgba(8, 32, 77, 0.72), transparent 60%);
}

.license-gallery__item img {
    transition: transform 420ms ease, filter 420ms ease;
}

.license-gallery__trigger {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    cursor: zoom-in;
    background: transparent;
    border: 0;
}

.license-gallery__item:hover {
    box-shadow: 0 20px 42px rgba(16, 40, 79, 0.15);
}

.license-gallery__item:hover img {
    filter: saturate(1.08);
    transform: scale(1.06);
}

.license-gallery__item figcaption {
    z-index: 3;
    pointer-events: none;
}

.license-gallery__item figcaption span {
    color: var(--license-ivory);
}

.license-gallery__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 26px;
}

.license-gallery__controls p {
    margin: 0;
    color: var(--license-muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.license-gallery__controls p span {
    color: var(--license-red);
}

.license-gallery__controls > div {
    display: flex;
    gap: 8px;
}

.license-gallery__controls button,
.license-lightbox__arrow,
.license-lightbox__close {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--license-ink);
    background: var(--color-white);
    border: 1px solid #cbdceb;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.license-gallery__controls button:hover:not(:disabled),
.license-gallery__controls button:focus-visible {
    color: var(--color-white);
    background: var(--license-red);
    border-color: var(--license-red);
    transform: translateY(-2px);
}

.license-gallery__controls button:disabled {
    cursor: not-allowed;
    opacity: 0.38;
}

.license-contact {
    background:
        radial-gradient(circle at 82% 22%, rgba(79, 158, 214, 0.34), transparent 28%),
        linear-gradient(125deg, #071b43 0%, #123d76 100%);
}

.license-lightbox {
    position: fixed;
    z-index: 300;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 30px;
}

.license-lightbox[hidden] {
    display: none;
}

.license-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 13, 34, 0.91);
    cursor: zoom-out;
}

.license-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(1180px, 100%);
    min-height: 260px;
    padding: 24px 78px 20px;
    background: #f8fbff;
    border: 1px solid rgba(168, 203, 228, 0.6);
    border-radius: 20px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.license-lightbox__dialog figure {
    display: grid;
    justify-items: center;
    gap: 14px;
    width: 100%;
    margin: 0;
}

.license-lightbox__dialog img {
    width: 100%;
    max-height: min(75vh, 700px);
    object-fit: contain;
    border-radius: 10px;
}

.license-lightbox__dialog figcaption {
    color: var(--license-ink);
    font-size: 0.78rem;
    font-weight: 700;
}

.license-lightbox__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    color: var(--license-ink);
    font-size: 1.6rem;
    line-height: 1;
}

.license-lightbox__arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    color: var(--color-white);
    background: var(--license-blue);
    border-color: var(--license-blue);
    transform: translateY(-50%);
}

.license-lightbox__arrow:hover,
.license-lightbox__arrow:focus-visible,
.license-lightbox__close:hover,
.license-lightbox__close:focus-visible {
    color: var(--color-white);
    background: var(--license-red);
    border-color: var(--license-red);
}

.license-lightbox__arrow--prev {
    left: 18px;
}

.license-lightbox__arrow--next {
    right: 18px;
}

body.is-lightbox-open {
    overflow: hidden;
}

/* Photo gallery page */

.photo-gallery-page {
    background: #f7f9fc;
}

.photo-gallery-hero {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background:
        radial-gradient(circle at 86% 16%, rgba(218, 0, 89, 0.24), transparent 26%),
        radial-gradient(circle at 12% 115%, rgba(36, 91, 176, 0.42), transparent 35%),
        linear-gradient(126deg, #041337 0%, #09285d 58%, #0b3971 100%);
}

.photo-gallery-hero::after {
    position: absolute;
    right: -90px;
    bottom: -145px;
    width: 410px;
    height: 410px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    box-shadow: 0 0 0 32px rgba(255, 255, 255, 0.025), 0 0 0 66px rgba(255, 255, 255, 0.02);
    content: "";
    pointer-events: none;
}

.photo-gallery-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 48px;
    min-height: 390px;
    padding-top: 78px;
    padding-bottom: 74px;
}

.photo-gallery-hero .eyebrow {
    color: #ffb4c2;
}

.photo-gallery-hero h1 {
    max-width: 780px;
    margin: 14px 0 0;
    color: var(--color-white);
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.9rem);
    font-weight: 700;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.photo-gallery-hero h1 span {
    color: #f4b860;
}

.photo-gallery-hero__intro {
    max-width: 510px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.7;
}

.photo-gallery-hero__count {
    display: grid;
    justify-items: start;
    gap: 6px;
    min-width: 145px;
    padding: 12px 0 2px 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.photo-gallery-hero__count strong {
    color: #f4b860;
    font-family: Manrope, Inter, sans-serif;
    font-size: 3.8rem;
    font-weight: 600;
    letter-spacing: -0.08em;
    line-height: 0.9;
}

.photo-gallery-hero__count span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.6;
    text-transform: uppercase;
}

.photo-gallery-section {
    padding: 102px 0 126px;
}

.photo-gallery-section__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;
}

.photo-gallery-section__heading h2 {
    margin: 14px 0 0;
    color: var(--color-navy);
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(2rem, 4vw, 3.7rem);
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.photo-gallery-section__heading h2 span {
    color: var(--color-red);
}

.photo-gallery-section__heading > p {
    max-width: 430px;
    margin: 0 0 3px;
    color: var(--color-muted);
    font-size: 0.91rem;
    line-height: 1.8;
}

.photo-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.photo-gallery__item {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid #e4e9f2;
    border-radius: 8px;
    box-shadow: 0 14px 35px rgba(7, 27, 77, 0.06);
    transition: border-color var(--transition-standard), box-shadow var(--transition-standard), transform var(--transition-standard);
}

.photo-gallery__item:nth-child(8n + 1),
.photo-gallery__item:nth-child(8n + 6) {
    grid-column: span 2;
}

.photo-gallery__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #dfe5ee;
}

.photo-gallery__item:nth-child(8n + 1) .photo-gallery__media,
.photo-gallery__item:nth-child(8n + 6) .photo-gallery__media {
    aspect-ratio: 16 / 9;
}

.photo-gallery__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease, filter 500ms ease;
}

.photo-gallery__trigger {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 17px;
    cursor: zoom-in;
    background: linear-gradient(135deg, rgba(4, 19, 55, 0.16), transparent 45%);
    border: 0;
    opacity: 0;
    transition: opacity var(--transition-standard);
}

.photo-gallery__zoom {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--color-navy);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(4, 19, 55, 0.2);
    font-size: 1.15rem;
    line-height: 1;
}

.photo-gallery__item:hover,
.photo-gallery__item:focus-within {
    border-color: rgba(199, 17, 17, 0.3);
    box-shadow: 0 20px 42px rgba(7, 27, 77, 0.13);
    transform: translateY(-4px);
}

.photo-gallery__item:hover .photo-gallery__media img,
.photo-gallery__item:focus-within .photo-gallery__media img {
    filter: saturate(1.08);
    transform: scale(1.06);
}

.photo-gallery__item:hover .photo-gallery__trigger,
.photo-gallery__trigger:focus-visible {
    opacity: 1;
}

.photo-gallery__item figcaption {
    display: grid;
    grid-template-columns: 29px minmax(0, 1fr);
    gap: 11px;
    min-height: 86px;
    padding: 17px 17px 16px;
}

.photo-gallery__number {
    color: var(--color-red);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.photo-gallery__item figcaption strong,
.photo-gallery__item figcaption small {
    display: block;
}

.photo-gallery__item figcaption strong {
    color: var(--color-navy);
    font-size: 0.83rem;
    line-height: 1.35;
}

.photo-gallery__item figcaption small {
    margin-top: 6px;
    color: var(--color-muted);
    font-size: 0.71rem;
    line-height: 1.5;
}

.photo-gallery-lightbox {
    position: fixed;
    z-index: 300;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 30px;
}

.photo-gallery-lightbox[hidden] {
    display: none;
}

.photo-gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    cursor: zoom-out;
    background: rgba(3, 13, 34, 0.94);
}

.photo-gallery-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    padding: 24px 82px 28px;
    color: var(--color-white);
    background: #081a42;
    border: 1px solid rgba(169, 201, 233, 0.28);
    border-radius: 14px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.photo-gallery-lightbox__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
    color: #f4b860;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.photo-gallery-lightbox__close,
.photo-gallery-lightbox__arrow {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
}

.photo-gallery-lightbox__close {
    font-size: 1.65rem;
    line-height: 1;
}

.photo-gallery-lightbox__close:hover,
.photo-gallery-lightbox__close:focus-visible,
.photo-gallery-lightbox__arrow:hover,
.photo-gallery-lightbox__arrow:focus-visible {
    color: var(--color-white);
    background: var(--color-red);
    transform: translateY(-2px);
}

.photo-gallery-lightbox__dialog figure {
    display: grid;
    justify-items: center;
    gap: 18px;
    margin: 11px 0 0;
}

.photo-gallery-lightbox__dialog img {
    display: block;
    width: 100%;
    max-height: min(71vh, 690px);
    object-fit: contain;
    border-radius: 5px;
}

.photo-gallery-lightbox__dialog figcaption {
    display: grid;
    gap: 4px;
    width: 100%;
}

.photo-gallery-lightbox__dialog figcaption strong {
    color: var(--color-white);
    font-size: 1rem;
}

.photo-gallery-lightbox__dialog figcaption span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8rem;
}

.photo-gallery-lightbox__arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.photo-gallery-lightbox__arrow:hover,
.photo-gallery-lightbox__arrow:focus-visible {
    transform: translateY(calc(-50% - 2px));
}

.photo-gallery-lightbox__arrow--prev {
    left: 20px;
}

.photo-gallery-lightbox__arrow--next {
    right: 20px;
}

body.is-photo-gallery-lightbox-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .license-gallery__item {
        flex-basis: calc((100% - 16px) / 2);
    }
}

@media (max-width: 620px) {
    .license-gallery__item {
        flex-basis: 100%;
        height: 285px;
    }

    .license-gallery__item--5 {
        display: block;
    }

    .license-gallery__controls {
        margin-top: 20px;
    }

    .license-lightbox {
        padding: 14px;
    }

    .license-lightbox__dialog {
        min-height: 220px;
        padding: 52px 14px 18px;
        border-radius: 14px;
    }

    .license-lightbox__arrow {
        width: 38px;
        height: 38px;
    }

    .license-lightbox__arrow--prev {
        left: 8px;
    }

    .license-lightbox__arrow--next {
        right: 8px;
    }
}

/* Service content pages */

.service-page {
    --service-ink: #10284f;
    --service-blue: #1d5a9d;
    --service-red: #da0032;
    --service-muted: #657792;
    --service-hero-image: url("/u%20can%20use%20imae/imgi_100_1_YU41RkJsI_0u1OoQNeIGOQ.jpg");
    --service-detail-image: url("/u%20can%20use%20imae/imgi_20_GalaxyMoverscalgary-Work-rtit0nqyde5ogecwbz066y1h5qjtz0kfx90w6ei3uk.jpg");
    overflow: hidden;
    color: var(--service-ink);
    background: #fbfdff;
}

.service-page--house {
    --service-hero-image: url("/u%20can%20use%20imae/imgi_93_Residential-Moving-Company-Calgary-GalaxyMoversInc.webp");
}

.service-page--storage {
    --service-hero-image: url("/u%20can%20use%20imae/imgi_100_1_YU41RkJsI_0u1OoQNeIGOQ.jpg");
}

.service-page--manpower {
    --service-hero-image: url("/u%20can%20use%20imae/imgi_90_Calgary-galaxy-movers-work-1-1536x1152.jpg");
}

.service-page--appliances {
    --service-hero-image: url("/u%20can%20use%20imae/imgi_97_Treadmill-.jpg");
}

.service-page--piano {
    --service-hero-image: url("/u%20can%20use%20imae/imgi_25_galaxy-movers-work-3-2-rtit2qy1k50m97bo4vibqf2cok972suyvl7qkjem0s.jpg");
}

.service-page--seniors {
    --service-hero-image: url("/u%20can%20use%20imae/imgi_98_senior-moving.png");
}

.service-page--student {
    --service-hero-image: url("/u%20can%20use%20imae/imgi_28_galaxy-movers-work-in-calgary-2-1-rtit4w0t4jy4p87pmstqevm5e5palzcyi6pjx88buk.jpg");
}

.service-page--packaging {
    --service-hero-image: url("/u%20can%20use%20imae/imgi_92_professional-mover-course-c4cdc154387c898d31fac92b5ee0e7c5.jpg");
}

.service-page--junk {
    --service-hero-image: url("/u%20can%20use%20imae/imgi_91_How-To-Removals-Companies-Ease-The-Task-Of-Relocation.jpg");
    --service-detail-image: url("/u%20can%20use%20imae/imgi_99_1708059691_Home-shifting.jpg");
}

.service-page--antique {
    --service-hero-image: url("/u%20can%20use%20imae/imgi_31_Long-Distance-Moving-and-Packing-Calgary-alberta-rtit25br6y70u672n45wn2ir0p7r5rh54m7kj6anzw.jpg");
}

.service-page--furniture {
    --service-hero-image: url("/u%20can%20use%20imae/imgi_33_calgary-area-galaxy-movers-work-1-1-rtit5b285wipuzlv6zbrirtiwbn6150nw95blnm130.jpg");
}

.service-page--condo {
    --service-hero-image: url("/u%20can%20use%20imae/imgi_94_Condo-and-Apartment-Moving-GalaxyMoversInc.webp");
}

.service-page h1,
.service-page h2,
.service-page h3 {
    font-family: "Manrope", ui-sans-serif, sans-serif;
}

.service-hero {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background:
        radial-gradient(circle at 82% 18%, rgba(79, 158, 214, 0.34), transparent 25%),
        linear-gradient(90deg, rgba(7, 27, 67, 0.98) 0%, rgba(7, 27, 67, 0.9) 43%, rgba(18, 61, 118, 0.67) 100%),
        var(--service-hero-image) center / cover no-repeat;
}

.service-hero::before {
    position: absolute;
    top: -280px;
    left: -170px;
    width: 590px;
    height: 590px;
    border: 1px solid rgba(175, 220, 244, 0.18);
    border-radius: 50%;
    content: "";
}

.service-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.82fr);
    align-items: center;
    gap: 75px;
    min-height: 590px;
    padding-top: 74px;
    padding-bottom: 74px;
}

.service-hero__content {
    max-width: 670px;
}

.service-kicker {
    margin: 0 0 18px;
    color: #ffb8c2;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.5;
    text-transform: uppercase;
}

.service-hero h1 {
    max-width: 680px;
    margin: 0;
    color: var(--color-white);
    font-size: clamp(2.5rem, 4.8vw, 4.75rem);
    font-weight: 600;
    letter-spacing: -0.07em;
    line-height: 1.01;
}

.service-hero__content > p:not(.service-kicker) {
    max-width: 610px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
    line-height: 1.82;
}

.service-hero .home-button {
    margin-top: 30px;
}

.service-hero .home-button--primary,
.service-cta .home-button--primary {
    color: var(--color-white);
    background: var(--service-red);
    box-shadow: 0 12px 24px rgba(218, 0, 50, 0.22);
}

.service-hero .home-button--primary:hover,
.service-hero .home-button--primary:focus-visible,
.service-cta .home-button--primary:hover,
.service-cta .home-button--primary:focus-visible {
    background: #b9002b;
    box-shadow: 0 15px 28px rgba(218, 0, 50, 0.3);
}

.service-hero__visual {
    position: relative;
    display: grid;
    min-height: 460px;
    place-items: center;
}

.service-hero__visual::before {
    position: absolute;
    width: min(100%, 420px);
    aspect-ratio: 1;
    border: 1px solid rgba(173, 218, 240, 0.28);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(153, 207, 236, 0.05), 0 0 0 58px rgba(153, 207, 236, 0.035);
    content: "";
}

.service-hero__visual img {
    position: relative;
    z-index: 1;
    width: min(100%, 470px);
    max-height: 440px;
    object-fit: contain;
    filter: drop-shadow(0 28px 25px rgba(0, 0, 0, 0.27));
}

.service-page--house .service-hero__visual img {
    width: 100%;
    max-height: 390px;
    object-fit: cover;
    border: 10px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px 46px 2px 46px;
    box-shadow: 18px 18px 0 rgba(218, 0, 50, 0.62);
}

.service-hero__badge {
    position: absolute;
    right: 0;
    bottom: 28px;
    z-index: 2;
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    color: var(--service-ink);
    background: #f4eadb;
    box-shadow: 9px 10px 0 rgba(218, 0, 50, 0.76);
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    transform: rotate(-7deg);
}

.service-section {
    padding: 112px 0;
}

.service-section--light {
    background:
        radial-gradient(circle at 92% 8%, rgba(79, 158, 214, 0.1), transparent 22%),
        #fbfdff;
}

.service-section--navy {
    color: var(--color-white);
    background:
        radial-gradient(circle at 85% 15%, rgba(57, 128, 193, 0.34), transparent 28%),
        linear-gradient(135deg, #081f4b 0%, #123d76 100%);
}

.service-section__heading {
    max-width: 850px;
}

.service-section__heading--narrow {
    max-width: 760px;
}

.service-section__heading h2,
.service-detail-grid__content h2,
.service-benefit-layout__content h2 {
    margin: 0;
    color: var(--service-ink);
    font-size: clamp(2.2rem, 3.7vw, 3.55rem);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 1.06;
}

.service-section__heading > p,
.service-detail-grid__content > p,
.service-benefit-layout__content > p {
    margin: 20px 0 0;
    color: var(--service-muted);
    font-size: 0.94rem;
    line-height: 1.85;
}

.service-section__heading h2 + p {
    max-width: 730px;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    margin-top: 52px;
}

.service-feature-card {
    min-height: 205px;
    padding: 25px 25px 28px;
    background: var(--color-white);
    border: 1px solid #d9e5ee;
    border-radius: 2px 22px 2px 22px;
    box-shadow: 0 13px 30px rgba(16, 40, 79, 0.05);
    transition: transform var(--transition-standard), box-shadow var(--transition-standard);
}

.service-feature-card:hover {
    box-shadow: 0 20px 38px rgba(16, 40, 79, 0.11);
    transform: translateY(-5px);
}

.service-feature-card > span {
    color: var(--service-red);
    font-family: "Manrope", sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.service-feature-card p {
    margin: 29px 0 0;
    color: var(--service-muted);
    font-size: 0.84rem;
    line-height: 1.75;
}

.service-feature-card strong {
    color: var(--service-ink);
}

.service-section__closing {
    max-width: 700px;
    margin: 32px 0 0;
    color: var(--service-muted);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.7;
}

.service-detail-grid,
.service-benefit-layout,
.service-section__split {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    align-items: center;
    gap: 95px;
}

.service-detail-grid__visual,
.service-benefit-layout__visual {
    display: grid;
    min-height: 400px;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(8, 31, 75, 0.18), rgba(8, 31, 75, 0.56)),
        var(--service-detail-image) center / cover no-repeat;
    border: 1px solid rgba(181, 219, 239, 0.22);
    border-radius: 2px 44px 2px 44px;
}

.service-detail-grid__visual img,
.service-benefit-layout__visual img {
    width: 94%;
    max-width: 420px;
    filter: drop-shadow(0 20px 14px rgba(0, 0, 0, 0.2));
}

.service-detail-grid__content {
    max-width: 690px;
}

.service-section--navy .service-detail-grid__content h2,
.service-section--navy .service-benefit-layout__content h2 {
    color: var(--color-white);
}

.service-section--navy .service-detail-grid__content > p,
.service-section--navy .service-benefit-layout__content > p {
    color: rgba(255, 255, 255, 0.7);
}

.service-detail-grid__content h3 {
    margin: 34px 0 0;
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 700;
}

.service-list {
    display: grid;
    gap: 13px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 27px;
    color: var(--service-muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

.service-list li::before {
    position: absolute;
    top: 0.45em;
    left: 0;
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    color: var(--color-white);
    background: var(--service-red);
    border-radius: 50%;
    content: "✓";
    font-size: 0.58rem;
    font-weight: 800;
}

.service-list strong {
    color: var(--service-ink);
}

.service-list-intro {
    margin: 18px 0 0;
    color: var(--service-muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

.service-section--navy .service-list li {
    color: rgba(255, 255, 255, 0.73);
}

.service-section--navy .service-list strong {
    color: var(--color-white);
}

.service-list--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-benefit-layout {
    margin-top: 66px;
}

.service-benefit-layout__content {
    max-width: 700px;
}

.service-benefit-layout__content h2 {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.service-benefit-layout__content > p:last-child,
.service-benefit-list > p {
    margin: 26px 0 0;
    color: var(--service-muted);
    font-size: 0.92rem;
    line-height: 1.8;
}

.service-section__split {
    align-items: start;
}

.service-section__split .service-section__heading {
    max-width: 640px;
}

.service-section__split .service-section__heading h2 {
    margin-top: 32px;
}

.service-section__split .service-section__heading > p {
    margin-top: 20px;
}

.service-benefit-list {
    max-width: 680px;
    padding: 29px 31px 34px;
    background: var(--color-white);
    border: 1px solid #d9e5ee;
    border-radius: 2px 28px 2px 28px;
    box-shadow: 0 14px 32px rgba(16, 40, 79, 0.06);
}

.service-benefit-list--wide {
    max-width: 980px;
    margin: 44px auto 0;
}

.service-benefit-list--wide .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 42px;
    row-gap: 16px;
}

.service-page--junk .service-section__heading--narrow,
.service-page--piano .service-section__heading--narrow {
    max-width: 980px;
}

.service-section--light .service-benefit-list .service-list {
    margin-top: 0;
}

.service-cta {
    color: var(--color-white);
    background:
        radial-gradient(circle at 83% 18%, rgba(79, 158, 214, 0.33), transparent 28%),
        linear-gradient(125deg, #071b43 0%, #123d76 100%);
}

.service-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
    min-height: 330px;
}

.service-cta__inner > div {
    max-width: 850px;
}

.service-cta__inner .service-kicker {
    margin-bottom: 0;
}

.service-cta__inner > div > p:last-child {
    margin: 21px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.94rem;
    line-height: 1.85;
}

.service-cta--compact .service-cta__inner {
    min-height: 220px;
}

/* Junk removal photography */

.service-page--junk .service-hero {
    background:
        linear-gradient(90deg, rgba(7, 27, 67, 0.98) 0%, rgba(7, 27, 67, 0.92) 43%, rgba(7, 27, 67, 0.48) 100%),
        url("/u%20can%20use%20imae/imgi_91_How-To-Removals-Companies-Ease-The-Task-Of-Relocation.jpg") center / cover;
}

.service-page--junk .service-hero__visual {
    padding: 18px;
    background:
        linear-gradient(145deg, rgba(7, 27, 67, 0.08), rgba(7, 27, 67, 0.48)),
        url("/u%20can%20use%20imae/imgi_90_Calgary-galaxy-movers-work-1-1536x1152.jpg") center / cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px 48px 3px 48px;
    box-shadow: 18px 18px 0 rgba(218, 0, 50, 0.5);
}

.service-page--junk .service-hero__visual::before {
    display: none;
}

.service-page--junk .service-hero__visual img {
    width: 100%;
    max-width: 520px;
    height: 330px;
    max-height: none;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.82);
    border-radius: 2px 30px 2px 30px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.28);
}

.service-page--junk .service-section--light {
    background:
        radial-gradient(circle at 92% 8%, rgba(79, 158, 214, 0.1), transparent 22%),
        #fbfdff;
}

.service-page--junk .service-section--light .service-benefit-list {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.service-page--junk .service-detail-grid__visual {
    background:
        linear-gradient(145deg, rgba(8, 31, 75, 0.12), rgba(8, 31, 75, 0.56)),
        url("/u%20can%20use%20imae/imgi_99_1708059691_Home-shifting.jpg") center / cover;
}

.service-page--junk .service-detail-grid__visual img {
    width: 100%;
    max-width: none;
    height: 390px;
    object-fit: cover;
    opacity: 1;
    mix-blend-mode: normal;
}

.service-page--junk .service-cta {
    background:
        radial-gradient(circle at 83% 18%, rgba(79, 158, 214, 0.33), transparent 28%),
        linear-gradient(125deg, #071b43 0%, #123d76 100%);
}

@media (max-width: 900px) {
    .service-hero__grid,
    .service-detail-grid,
    .service-benefit-layout,
    .service-section__split {
        grid-template-columns: 1fr;
    }

    .service-hero__grid {
        gap: 36px;
    }

    .service-hero__content,
    .service-detail-grid__content,
    .service-benefit-layout__content,
    .service-section__heading {
        max-width: 680px;
    }

    .service-hero__visual {
        min-height: 390px;
        max-width: 610px;
    }

    .service-detail-grid,
    .service-benefit-layout,
    .service-section__split {
        gap: 52px;
    }

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

    .service-detail-grid__visual,
    .service-benefit-layout__visual {
        max-width: 590px;
    }

    .service-cta__inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        min-height: 370px;
    }

    .service-cta--compact .service-cta__inner {
        min-height: 260px;
    }
}

@media (max-width: 620px) {
    .service-hero__grid {
        min-height: 0;
        padding-top: 56px;
        padding-bottom: 65px;
    }

    .service-hero h1 {
        font-size: 2.45rem;
    }

    .service-hero__visual {
        min-height: 300px;
    }

    .service-hero__visual img {
        width: 88%;
        max-height: 300px;
    }

    .service-page--junk .service-hero__visual {
        padding: 12px;
    }

    .service-page--junk .service-hero__visual img {
        width: 100%;
        height: 250px;
        max-height: 250px;
    }

    .service-page--junk .service-detail-grid__visual img {
        height: 300px;
    }

    .service-page--house .service-hero__visual img {
        width: 100%;
        height: 280px;
    }

    .service-hero__badge {
        right: 3px;
        bottom: 7px;
        width: 62px;
        height: 62px;
    }

    .service-section {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .service-section__heading h2,
    .service-detail-grid__content h2,
    .service-benefit-layout__content h2 {
        font-size: 2.15rem;
    }

    .service-feature-grid {
        grid-template-columns: 1fr;
        margin-top: 38px;
    }

    .service-feature-card {
        min-height: 0;
    }

    .service-detail-grid__visual,
    .service-benefit-layout__visual {
        min-height: 290px;
    }

    .service-list--compact {
        grid-template-columns: 1fr;
    }

    .service-benefit-list--wide .service-list {
        grid-template-columns: 1fr;
    }

    .service-benefit-list {
        padding: 23px 20px 27px;
    }

    .service-cta__inner {
        min-height: 330px;
    }
}

/* Insurance and policy claims page */

.claims-page {
    --claims-ink: #10284f;
    --claims-blue: #1d5a9d;
    --claims-red: #da0032;
    --claims-sky: #eef6fc;
    overflow: hidden;
    color: var(--claims-ink);
    background: #fbfdff;
}

.claims-page h1,
.claims-page h2,
.claims-page h3 {
    font-family: "Manrope", ui-sans-serif, sans-serif;
}

.claims-hero {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background:
        radial-gradient(circle at 80% 18%, rgba(79, 158, 214, 0.35), transparent 25%),
        linear-gradient(125deg, #071b43 0%, #08204d 56%, #123d76 100%);
}

.claims-hero::before {
    position: absolute;
    top: -250px;
    left: -150px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(175, 220, 244, 0.18);
    border-radius: 50%;
    content: "";
}

.claims-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    align-items: center;
    gap: 75px;
    min-height: 570px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.claims-hero__content {
    max-width: 630px;
}

.claims-hero .eyebrow,
.claims-process .eyebrow,
.claims-guidance .eyebrow {
    color: #ffb8c2;
}

.claims-hero h1 {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(2.8rem, 5.7vw, 5.3rem);
    font-weight: 600;
    letter-spacing: -0.07em;
    line-height: 0.98;
}

.claims-hero h1 span {
    color: #ffb8c2;
}

.claims-hero__content > p:not(.eyebrow) {
    max-width: 560px;
    margin: 27px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.96rem;
    line-height: 1.85;
}

.claims-hero__visual {
    position: relative;
    display: grid;
    min-height: 430px;
    place-items: center;
}

.claims-hero__halo {
    position: absolute;
    width: min(100%, 430px);
    aspect-ratio: 1;
    border: 1px solid rgba(173, 218, 240, 0.28);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(153, 207, 236, 0.05), 0 0 0 58px rgba(153, 207, 236, 0.035);
}

.claims-hero__visual img {
    position: relative;
    z-index: 1;
    width: min(100%, 390px);
    filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.28));
}

.claims-hero__badge {
    position: absolute;
    z-index: 2;
    right: 2%;
    bottom: 32px;
    display: grid;
    min-width: 125px;
    padding: 15px 18px;
    color: var(--claims-ink);
    background: #f4eadb;
    box-shadow: 12px 13px 0 rgba(218, 0, 50, 0.75);
    transform: rotate(-5deg);
}

.claims-hero__badge strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    line-height: 1;
}

.claims-hero__badge small {
    margin-top: 6px;
    color: #5c6c85;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.claims-intro {
    padding-top: 112px;
    padding-bottom: 112px;
    background:
        radial-gradient(circle at 92% 5%, rgba(79, 158, 214, 0.11), transparent 23%),
        #fbfdff;
}

.claims-intro__grid {
    display: grid;
    grid-template-columns: minmax(310px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 110px;
}

.claims-intro__visual {
    position: relative;
    min-height: 420px;
}

.claims-intro__image {
    position: relative;
    display: grid;
    min-height: 420px;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, #e4f0f8, #f9eee6);
    border: 1px solid #d3e3ef;
    border-radius: 2px 42px 2px 42px;
}

.claims-intro__image::before {
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(29, 90, 157, 0.2);
    border-radius: 2px 28px 2px 28px;
    content: "";
}

.claims-intro__image img {
    position: relative;
    z-index: 1;
    width: 104%;
    max-width: 510px;
    filter: drop-shadow(0 19px 12px rgba(16, 40, 79, 0.14));
}

.claims-intro__note {
    position: absolute;
    right: -27px;
    bottom: 25px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 220px;
    padding: 16px 17px;
    color: var(--color-white);
    background: var(--claims-blue);
    box-shadow: 10px 10px 0 var(--claims-red);
}

.claims-intro__note > span:first-child {
    color: #ffd4a8;
    font-size: 1.25rem;
}

.claims-intro__note strong,
.claims-intro__note span {
    font-size: 0.74rem;
    font-weight: 800;
}

.claims-intro__note small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.64rem;
    font-weight: 500;
}

.claims-intro__copy {
    max-width: 640px;
}

.claims-intro__copy p {
    margin: 0;
    color: #657792;
    font-size: clamp(1.1rem, 1.65vw, 1.45rem);
    line-height: 1.8;
}

.claims-process {
    position: relative;
    overflow: hidden;
    padding: 112px 0 120px;
    color: var(--color-white);
    background:
        radial-gradient(circle at 90% 15%, rgba(57, 128, 193, 0.34), transparent 27%),
        linear-gradient(135deg, #081f4b 0%, #123d76 100%);
}

.claims-process::after {
    position: absolute;
    right: -210px;
    bottom: -290px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(158, 215, 241, 0.2);
    border-radius: 50%;
    content: "";
}

.claims-process .home-container {
    position: relative;
    z-index: 1;
}

.claims-process__heading {
    max-width: 670px;
}

.claims-process h2 {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(2.3rem, 4vw, 3.7rem);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 1.04;
}

.claims-process h2 span {
    color: #ffb8c2;
}

.claims-process__heading > p:last-child {
    max-width: 650px;
    margin: 23px 0 0;
    color: rgba(255, 255, 255, 0.69);
    font-size: 0.94rem;
    line-height: 1.8;
}

.claims-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 54px;
}

.claims-step {
    display: flex;
    flex-direction: column;
    min-height: 295px;
    padding: 26px 27px 29px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(181, 219, 239, 0.22);
    border-radius: 4px;
    transition: transform var(--transition-standard), background-color var(--transition-standard);
}

.claims-step:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-6px);
}

.claims-step__number {
    display: inline-grid;
    width: 47px;
    height: 47px;
    place-items: center;
    color: var(--claims-ink);
    background: #f4eadb;
    font-family: "Manrope", sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
}

.claims-step h3 {
    margin: 33px 0 0;
    color: var(--color-white);
    font-size: 1.07rem;
    font-weight: 700;
    line-height: 1.35;
}

.claims-step p {
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.82rem;
    line-height: 1.75;
}

.claims-guidance {
    padding-top: 112px;
    padding-bottom: 112px;
    background: #f4f8fb;
}

.claims-guidance__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    align-items: center;
    gap: 95px;
}

.claims-guidance__content {
    max-width: 600px;
}

.claims-guidance__content .eyebrow {
    color: var(--claims-red);
}

.claims-guidance__content > p:last-child {
    margin: 25px 0 0;
    color: #657792;
    font-size: clamp(1.1rem, 1.65vw, 1.45rem);
    line-height: 1.8;
}

.claims-guidance__visual {
    position: relative;
    display: grid;
    min-height: 320px;
    place-items: center;
    background: #e6f0f7;
    border: 1px solid #d1e1ed;
    border-radius: 42px 2px 42px 2px;
}

.claims-guidance__visual img {
    width: 88%;
    max-width: 340px;
    filter: drop-shadow(0 18px 12px rgba(16, 40, 79, 0.13));
}

.claims-guidance__visual > span {
    position: absolute;
    right: 24px;
    bottom: 19px;
    display: grid;
    width: 47px;
    height: 47px;
    place-items: center;
    color: var(--color-white);
    background: var(--claims-red);
    border-radius: 50%;
    font-size: 1.35rem;
}

@media (max-width: 900px) {
    .claims-hero__grid,
    .claims-intro__grid,
    .claims-guidance__grid {
        grid-template-columns: 1fr;
    }

    .claims-hero__grid {
        gap: 30px;
    }

    .claims-hero__content,
    .claims-intro__copy,
    .claims-guidance__content {
        max-width: 680px;
    }

    .claims-hero__visual {
        min-height: 390px;
        max-width: 570px;
    }

    .claims-intro__grid,
    .claims-guidance__grid {
        gap: 54px;
    }

    .claims-intro__visual {
        max-width: 600px;
    }

    .claims-steps {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .claims-step {
        min-height: 0;
    }

    .claims-guidance__visual {
        max-width: 540px;
    }
}

@media (max-width: 620px) {
    .claims-hero__grid {
        min-height: 0;
        padding-top: 56px;
        padding-bottom: 62px;
    }

    .claims-hero h1 {
        font-size: 2.55rem;
    }

    .claims-hero__visual {
        min-height: 300px;
    }

    .claims-hero__visual img {
        width: 86%;
    }

    .claims-hero__badge {
        right: 0;
        bottom: 6px;
        min-width: 105px;
        padding: 12px 14px;
    }

    .claims-intro,
    .claims-process,
    .claims-guidance {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .claims-intro__visual {
        min-height: 310px;
    }

    .claims-intro__image {
        min-height: 310px;
    }

    .claims-intro__image::before {
        inset: 14px;
    }

    .claims-intro__note {
        right: 8px;
        bottom: 16px;
        width: 196px;
        padding: 13px;
    }

    .claims-process h2 {
        font-size: 2.15rem;
    }

    .claims-steps {
        margin-top: 38px;
    }

    .claims-step {
        padding: 22px;
    }

    .claims-step h3 {
        margin-top: 24px;
    }

    .claims-guidance__visual {
        min-height: 280px;
    }
}

.review-platforms {
    padding: 10px 0 12px;
    overflow: hidden;
    background: #fff;
    border-block: 1px solid #edf0f5;
}

.review-platforms__label {
    margin: 0 0 4px;
    color: #66718a;
    font-size: 0.6rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
}

.review-platforms__viewport {
    overflow: hidden;
}

.review-platforms__track {
    display: flex;
    width: max-content;
    animation: review-platforms-scroll 32s linear infinite;
    will-change: transform;
}

.review-platforms__group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-around;
    gap: clamp(30px, 5vw, 72px);
    padding: 0 clamp(28px, 4vw, 58px);
}

.review-platforms__group img {
    display: block;
    width: clamp(130px, 15vw, 172px);
    height: 58px;
    object-fit: contain;
    user-select: none;
}

@keyframes review-platforms-scroll {
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 620px) {
    .review-platforms {
        padding: 8px 0 10px;
    }

    .review-platforms__group {
        gap: 25px;
        padding-inline: 22px;
    }

    .review-platforms__group img {
        width: 125px;
        height: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .review-platforms__track {
        width: 100%;
        animation: none;
        will-change: auto;
    }

    .review-platforms__group {
        width: 100%;
        justify-content: space-around;
        gap: 12px;
        padding-inline: 12px;
    }

    .review-platforms__group[aria-hidden="true"] {
        display: none;
    }

    .review-platforms__group img {
        width: min(22vw, 150px);
    }
}