[card-hover] {
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, border-color 0.25s ease-out;
    transform-origin: center;
}

[card-hover]:hover {
    transform: translateY(-4px) rotate(-3px);
    box-shadow: 0 26px 60px -30px rgba(15, 23, 42, 0.75);
    border-color: var(--primary-4);
}

[card-img] {
    transition: transform 0.4s ease-out, filter 0.4s ease-out;
    transform-origin: center;
}

[card-hover]:hover [card-img] {
    transform: scale(1.04);
    filter: brightness(0.96);
}

[hero-animate] {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[hero-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[hero-delay-1] {
    transition-delay: 0.1s;
}

[hero-delay-2] {
    transition-delay: 0.2s;
}

[hero-delay-3] {
    transition-delay: 0.3s;
}

[cta] {
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, background-color 0.18s ease-out, border-color 0.18s ease-out;
}

[cta]:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -24px rgba(56, 189, 248, 0.45);
}

[step-card] {
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

[step-card]:hover {
    box-shadow: 0 22px 55px -30px rgba(15, 23, 42, 0.8);
    transform: translateY(-3px) rotate(4deg);
}

[step-card]:first-child:hover,
[step-card]:last-child:hover {
    transform: translateY(-3px) rotate(-4deg);
}

.home-page__pipes {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: -1;
    color: var(--primary-5);
    pointer-events: none;
}

.home-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100dvh - 6rem);
    height: auto;
    padding-top: 8rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid var(--border);
}

.home-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blueprint);
    pointer-events: none;
    z-index: -1;
}

.home-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 40%, rgb(250 140 15 / 0.1) 0%, transparent 50%);
}

.home-hero__container {
    position: relative;
    width: 100%;
    min-width: 0;
    max-width: 100rem;
    margin-inline: auto;
    padding-inline: 5rem;
}

.home-hero__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
    gap: 2.5rem;
    min-width: 0;
}

.home-hero__content {
    grid-column: span 7 / span 7;
    align-self: start;
    min-width: 0;
    border-radius: 0.875rem;
}

.home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    width: max-content;
    max-width: 100%;
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--secondary);
}

.home-hero__eyebrow span:last-child {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white-7);
}

.home-hero__eyebrow svg {
    width: 1rem;
    height: 1rem;
}

.home-hero__title {
    margin-top: 1rem;
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 600;
    color: var(--white);
}

.home-hero__title span {
    font-style: italic;
    color: var(--secondary);
}

.home-hero__intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    max-width: 52rem;
    min-width: 0;
    margin-top: 2.5rem;
}

.home-hero__intro > p {
    color: var(--muted);
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.7;
}

.home-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    width: 100%;
    min-width: 0;
    max-width: 18rem;
}

.home-hero__actions > a {
    text-decoration: none;
}

.home-hero__actions > a:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 3rem;
    padding-right: 0.5rem;
    padding-left: 1.5rem;
    border-radius: 9999px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 0.75rem 1.5rem -0.9rem var(--primary-4);
}

.home-hero__actions > a:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding-inline: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 9999px;
    background-color: var(--bg);
    backdrop-filter: blur(10px);
    color: var(--fg);
    font-size: 0.875rem;
    font-weight: 500;
}

.home-hero__action-icon {
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background-color: var(--bg);
    color: var(--primary);
    transition: transform 0.3s;
}

.home-hero__action-icon svg {
    width: 1rem;
    height: 1rem;
}

.home-hero__actions > a:first-child:hover .home-hero__action-icon {
    transform: translateX(0.125rem);
}

.home-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 2rem;
    row-gap: 1.25rem;
    max-width: 42rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--white-1);
    font-size: 0.875rem;
    min-width: 0;
}

.home-hero__stats div {
    min-width: 0;
}

.home-hero__stats dt {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}

.home-hero__stats dd {
    margin-top: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

.home-hero__ticker {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 90rem;
    margin-top: 6rem;
    margin-inline: auto;
    padding-block: 0.75rem;
    border-block: 1px solid var(--white-1);
    backdrop-filter: blur(10px);
    align-self: center;
}

.home-hero__ticker-track {
    display: flex;
    width: max-content;
    animation: reviews-row-scroll 38s linear infinite;
}

.home-hero__ticker-group {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-inline: 1.25rem;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-7);
}

.home-hero__ticker-group > span {
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
}

.home-hero__ticker-group svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.home-method {
    position: relative;
    z-index: 2;
    margin-top: -4rem;
}

.home-method__shell {
    width: 100%;
    min-width: 0;
    max-width: 80rem;
    margin-inline: auto;
    padding-inline: 1.25rem;
}

.home-method__panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 50px -28px rgba(15, 23, 42, 0.35);
}

.home-method__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-color: var(--card);
}

.home-method__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 1.85fr;
    gap: 0;
    min-width: 0;
}

.home-method__intro,
.home-method__content {
    min-width: 0;
}

.home-method__intro {
    padding: 2rem;
    padding-right: 1.5rem;
    border-right: 1px solid var(--border);
}

.home-method__intro > div:first-child {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
}

.home-method__intro > div:nth-child(2) {
    margin-top: 0.75rem;
    font-size: 1.65rem;
    line-height: 1.15;
    font-weight: 650;
    color: var(--fg);
}

.home-method__intro > p {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.home-method__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.home-method__tags span {
    padding-inline: 0.75rem;
    padding-block: 0.35rem;
    border-radius: 999px;
    background-color: var(--primary-1);
    color: var(--primary);
    font-size: 0.8rem;
}

.home-method__content {
    padding: 2rem;
}

.home-method__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    min-width: 0;
}

.home-method__cards [step-card] {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    min-width: 0;
    padding: 1rem;
    border-radius: 0.75rem;
}

.home-method__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    flex-shrink: 0;
    border-radius: 0.75rem;
}

.home-method__card-icon svg {
    width: 1.05rem;
    height: 1.05rem;
    color: var(--primary);
}

.home-method__cards [step-card] > div:last-child {
    min-width: 0;
}

.home-method__cards [step-card] > div:last-child > div:first-child {
    font-weight: 600;
}

.home-method__cards [step-card] > div:last-child > div:last-child {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

.home-method__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.9rem;
}

.home-services-overview {
    padding-block: 5.5rem;
    margin-top: 4rem;
}

.home-services-overview__container {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    width: 100%;
    min-width: 0;
    max-width: 80rem;
    margin-inline: auto;
    padding-inline: 1.25rem;
}

.home-services-overview__media {
    position: relative;
    min-width: 0;
}

.home-services-overview__image {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 1rem;
}

.home-services-overview__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 0.75rem;
}

.home-services-overview__card {
    position: absolute;
    width: 13.5rem;
    border: 1px solid var(--border);
    border-radius: 0.9rem;
    background-color: var(--card);
    box-shadow: 0 18px 40px -24px rgba(15, 23, 42, 0.7);
}

.home-services-overview__card--top {
    top: 2rem;
    left: -1.25rem;
    transform: rotate(-4deg);
}

.home-services-overview__card--bottom {
    right: 0.5rem;
    bottom: 1.5rem;
    width: 14rem;
    transform: rotate(3deg);
    box-shadow: 0 20px 50px -26px rgba(15, 23, 42, 0.8);
}

.home-services-overview__card > div {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.9rem;
}

.home-services-overview__card > div > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
}

.home-services-overview__card--top > div > div:first-child {
    color: var(--primary);
}

.home-services-overview__card--bottom > div > div:first-child {
    color: var(--secondary);
}

.home-services-overview__card > div > div:first-child svg {
    width: 1.25rem;
    height: 1.25rem;
}

.home-services-overview__card > div > div:nth-child(2) {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--fg);
}

.home-services-overview__card p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
}

.home-services-overview__content {
    min-width: 0;
    backdrop-filter: blur(3px);
}

.home-services-overview__content > h2 {
    margin-top: 0.75rem;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary);
}

.home-services-overview__content > p {
    margin-top: 1.25rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.5;
}

.home-services-overview__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    min-width: 0;
    margin-top: 1.75rem;
}

.home-services-overview__list > div {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    min-width: 0;
    font-size: 0.9rem;
}

.home-services-overview__list > div svg {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    color: var(--secondary);
}

.home-services-overview__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.home-services-overview__actions > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-block: 0.875rem;
    padding-inline: 1.5rem;
    border-radius: 0.625rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
}

.home-services-overview__actions > a:first-child {
    background-color: var(--primary);
    color: var(--white);
}

.home-services-overview__actions > a:first-child svg {
    width: 1rem;
    height: 1rem;
}

.home-services-overview__actions > a:last-child {
    border: 1px solid var(--fg-3);
    background-color: var(--card-5);
    backdrop-filter: blur(20px);
    color: var(--fg);
}

.home-field {
    padding-block: 5.5rem;
    border-block: 1px solid var(--border);
    background-color: var(--card);
}

.home-field__container {
    position: relative;
    width: 100%;
    min-width: 0;
    max-width: 100rem;
    margin-inline: auto;
    padding-inline: 5rem;
}

.home-field__intro {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.75rem;
    min-width: 0;
}

.home-field__intro-main,
.home-field__intro-side {
    min-width: 0;
}

.home-field__intro-main {
    max-width: 32rem;
}

.home-field__intro-side {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    max-width: 32rem;
}

.home-field__intro-main > span,
.home-trust__content > span,
.home-reviews__content > span,
.home-zone__intro-main > span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary);
}

.home-field__intro-main h2,
.home-trust__content h2,
.home-reviews__content h2,
.home-zone__intro-main h2 {
    margin-top: 0.75rem;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary);
}

.home-field__intro-main p,
.home-zone__intro-main p {
    margin-top: 0.75rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.home-field__intro-side > p,
.home-zone__intro-side > p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.home-field__intro-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    min-width: 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.home-field__intro-meta > div,
.home-zone__meta > div {
    min-width: 0;
}

.home-field__intro-meta > div > div:first-child,
.home-zone__meta > div > div:first-child {
    font-weight: 600;
    color: var(--fg);
}

.home-field__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    min-width: 0;
}

.home-field__grid article,
.home-zone__grid article:not(.home-zone__map-card) {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background-color: var(--card-5);
    box-shadow: 0 20px 50px -28px rgba(15, 23, 42, 0.55);
}

.home-field__card-media {
    height: 10rem;
    overflow: hidden;
}

.home-field__card-media img,
.home-field__card-split img,
.review-chip-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-field__card-split {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    height: 10rem;
}

.home-field__card-split > div {
    overflow: hidden;
}

.home-field__card-body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.1rem;
}

.home-field__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.home-field__card-top > span:first-child {
    padding-inline: 0.7rem;
    padding-block: 0.3rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
}

.home-field__grid article:nth-child(1) .home-field__card-top > span:first-child,
.home-field__grid article:nth-child(3) .home-field__card-top > span:first-child {
    background-color: var(--primary-1);
    color: var(--primary);
}

.home-field__grid article:nth-child(2) .home-field__card-top > span:first-child {
    background-color: var(--secondary-1);
    color: var(--secondary);
}

.home-field__card-top > span:last-child {
    font-size: 0.78rem;
    color: var(--muted);
}

.home-field__card-body h3,
.home-zone__grid article:not(.home-zone__map-card) h3 {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--fg);
}

.home-field__card-body p,
.home-zone__grid article:not(.home-zone__map-card) p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

.home-field__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
    min-width: 0;
    margin-top: 2.75rem;
}

.home-field__footer p {
    color: var(--muted);
    font-size: 0.9rem;
}

.home-field__footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-inline: 1.25rem;
    padding-block: 0.7rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background-color: var(--bg);
    color: var(--fg);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.home-field__footer a svg {
    width: 0.95rem;
    height: 0.95rem;
    color: var(--primary);
}

.home-trust {
    padding-block: 5.5rem;
}

.home-trust__container {
    width: 100%;
    min-width: 0;
    max-width: 80rem;
    margin-inline: auto;
    padding-inline: 1.25rem;
}

.home-trust__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 3rem;
    min-width: 0;
}

.home-trust__content {
    max-width: 42rem;
    min-width: 0;
    height: max-content;
    backdrop-filter: blur(3px);
}

.home-trust__content p {
    margin-top: 0.9rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.home-trust__content p:last-of-type {
    font-size: 0.9rem;
    line-height: 1.6;
}

.home-trust__cards-wrap {
    min-width: 0;
}

.home-trust__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    min-width: 0;
}

.home-trust__cards article {
    min-width: 0;
    padding: 1.05rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background-color: var(--card);
    box-shadow: 0 18px 45px -28px rgba(15, 23, 42, 0.4);
}

.home-trust__cards article > div {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.home-trust__logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 3.25rem;
    max-width: 100%;
    overflow: visible;
    flex-shrink: 0;
}

.home-trust__logo svg {
    display: block;
    width: 100%;
    max-width: 9.5rem;
    height: auto;
    max-height: 4.1rem;
    color: var(--fg);
    &.foyer-remois {
        stroke: none;
    }
}

.home-trust__logo img {
    display: block;
    width: auto;
    height: 100%;
    max-width: 7.5rem;
    max-height: 4.1rem;
    object-fit: contain;
    object-position: left center;
}

.home-trust__cards article > div > div:nth-child(2) {
    min-width: 0;
}

.home-trust__cards article > div > div:nth-child(2) > div:first-child {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--fg);
}

.home-trust__cards article > div > div:nth-child(2) > div:last-child {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.45;
}

.home-trust__cards p {
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
}

.home-trust__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.8rem;
}

.home-trust__chips span {
    padding-inline: 0.75rem;
    padding-block: 0.3rem;
    border-radius: 999px;
    background-color: var(--card-8);
    backdrop-filter: blur(20px);
}

.home-reviews {
    padding-block: 5.5rem;
    background-color: var(--card);
}

.home-reviews__container {
    width: 100%;
    min-width: 0;
    max-width: 100rem;
    margin-inline: auto;
    padding-inline: 1.25rem;
}

.home-reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 3rem;
    min-width: 0;
}

.home-reviews__content,
.home-reviews__wall {
    min-width: 0;
}

.home-reviews__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 38rem;
    height: max-content;
    backdrop-filter: blur(3px);
}

.home-reviews__content h2 {
    text-align: center;
}

.home-reviews__content > p {
    margin-top: 0.9rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
}

.home-reviews__rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.home-reviews__stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.home-reviews__stars svg {
    width: 1rem;
    height: 1rem;
    color: var(--border);
    stroke: var(--muted);
}

.home-reviews__stars svg.is-filled,
.review-chip-stars svg.is-filled {
    color: var(--primary);
    fill: var(--yellow);
    stroke: var(--muted);
}

.home-reviews__rating-text {
    font-size: 0.8rem;
    color: var(--muted);
}

.home-reviews__rating-text span:first-child {
    font-weight: 600;
}

.home-reviews__content > a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    color: var(--secondary);
    font-size: 0.8rem;
    text-decoration: none;
}

.home-reviews__content > a svg {
    width: 0.9rem;
    height: 0.9rem;
    stroke: var(--muted);
}

.home-reviews__wall {
    width: 100%;
    max-width: 42rem;
}

.home-reviews__wall > div {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1.25rem;
    border-radius: 1.2rem;
}

.reviews-wall-col {
    max-width: 32rem;
    width: 100%;
}

.reviews-wall {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.reviews-row {
    width: 100%;
    overflow: hidden;
}

.reviews-row-bottom {
    margin-top: 0.65rem;
}

.reviews-row-inner {
    display: flex;
    width: max-content;
    animation-name: reviews-row-scroll;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.reviews-strip {
    display: flex;
    gap: 0.5rem;
    margin-right: 0.5rem;
}

.reviews-wall:hover .reviews-row-inner {
    animation-play-state: paused;
}

.review-chip {
    flex-shrink: 0;
    width: auto !important;
    max-width: 13rem;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    background: var(--card-8);
}

.review-chip * {
    max-width: 100%;
}

.review-chip-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.review-chip-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
    overflow: hidden;
    border-radius: 999px;
    background-color: var(--card-8);
    flex-shrink: 0;
}

.review-chip-avatar svg {
    width: 0.9rem;
    height: 0.9rem;
    color: var(--border);
}

.review-chip-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.review-chip-author {
    max-width: 8rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--fg);
}

.review-chip-rating {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.review-chip-stars {
    display: flex;
    align-items: center;
    gap: 0.05rem;
}

.review-chip-stars svg {
    width: 0.55rem;
    height: 0.55rem;
    color: var(--border);
    stroke: var(--muted);
}

.review-chip-rating span {
    font-size: 0.65rem;
    color: var(--muted);
}

.review-chip-text {
    max-width: 11rem;
    margin-top: 0.25rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.75rem;
    color: var(--muted);
}

@keyframes reviews-row-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.home-faq {
    border-bottom: 1px solid var(--border);
    background-color: var(--blueprint);
}

.home-faq__container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    width: 100%;
    min-width: 0;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
    padding-block: 6rem;
}

.home-faq__intro,
.home-faq__accordion {
    min-width: 0;
    backdrop-filter: blur(3px);
}

.home-faq__intro {
    height: max-content;
}

.home-faq__intro > div:first-child {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}

.home-faq__intro h2 {
    margin-top: 0.75rem;
    font-size: 2.25rem;
    color: var(--fg);
}

.home-faq__intro p {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 1rem;
    color: var(--fg-8);
}

.home-faq__intro p a {
    color: var(--secondary);
    text-decoration: none;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-block: 1rem;
    padding-inline: 0;
    color: var(--fg);
    font-size: 1rem;
    transition: 0.3s;
    background: none;
    border: none;
    text-align: left;
}

.faq-trigger-label {
    min-width: 0;
}

.faq-icon {
    width: 1rem;
    height: 1rem;
    color: var(--muted);
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item[active] .faq-icon {
    transform: rotate(180deg);
}

.faq-panel {
    height: 0;
    overflow: hidden;
    font-size: 0.875rem;
    transition: height 0.3s ease;
}

.faq-panel-inner {
    overflow: hidden;
    padding-bottom: 1rem;
    color: var(--fg-7);
}

.home-zone {
    padding-block: 5.5rem;
    border-block: 1px solid var(--border);
    background-color: var(--card);
}

.home-zone__container {
    width: 100%;
    min-width: 0;
    max-width: 100rem;
    margin-inline: auto;
    padding-inline: 5rem;
}

.home-zone__intro {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    min-width: 0;
}

.home-zone__intro-main,
.home-zone__intro-side {
    min-width: 0;
}

.home-zone__intro-main {
    max-width: 32rem;
}

.home-zone__intro-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 34rem;
}

.home-zone__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    min-width: 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.home-zone__note {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    min-width: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.home-zone__note svg {
    width: 1rem;
    height: 1rem;
    color: var(--blue);
    flex-shrink: 0;
}

.home-zone__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    min-width: 0;
}

.home-zone__grid article:not(.home-zone__map-card) {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.15rem;
}

.home-zone__grid article:not(.home-zone__map-card) > span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: max-content;
    padding-inline: 0.7rem;
    padding-block: 0.3rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
}

.home-zone__grid article:not(.home-zone__map-card):first-child > span {
    background-color: var(--primary-1);
    color: var(--primary);
}

.home-zone__grid article:not(.home-zone__map-card):nth-child(2) > span {
    background-color: var(--secondary-1);
    color: var(--secondary);
}

.home-zone__grid article:not(.home-zone__map-card) > span svg {
    width: 1rem;
    height: 1rem;
}

.home-zone__grid article:not(.home-zone__map-card) p:last-of-type {
    font-size: 0.85rem;
}

.home-zone__map-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background-color: var(--card-5);
    box-shadow: 0 20px 50px -28px rgba(15, 23, 42, 0.55);
}

.home-zone__map-head {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--border);
    background-color: var(--blueprint);
}

.home-zone__map-head > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.35rem;
}

.home-zone__map-head span:first-child {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--fg);
}

.home-zone__map-head span:last-child {
    font-size: 0.8rem;
    color: var(--fg-8);
}

.home-zone__map {
    width: 100%;
    height: 14.5rem;
}

@media (max-width: 1279px) {
    .home-hero__content {
        grid-column: span 12 / 12;
    }
}

@media (max-width: 1023px) {
    .home-hero {
        min-height: auto;
        height: auto;
    }

    .home-hero__container {
        padding-inline: 1.25rem;
    }

    .home-hero__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-hero__content {
        grid-column: 1 / 1;
        place-self: unset;
        place-content: center;
        place-items: center;
        text-align: center;
    }

    .home-hero__title {
        font-size: clamp(2.2rem, 7vw, 3rem);
        line-height: 1.02;
    }

    .home-hero__intro {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 100%;
    }

    .home-hero__actions {
        max-width: 22rem;
        place-self: center;
    }

    .home-hero__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 100%;
        column-gap: 1rem;
    }

    .home-hero__ticker {
        margin-top: 4rem;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .home-hero {
        padding-bottom: 5.5rem;
    }

    .home-hero__container {
        padding-inline: 1rem;
    }

    .home-hero__eyebrow {
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        row-gap: 0.35rem;
        white-space: normal;
    }

    .home-hero__title {
        max-width: 100%;
        font-size: clamp(1.9rem, 9vw, 2.6rem);
        text-wrap: pretty;
    }

    .home-hero__intro {
        margin-top: 1.75rem;
        gap: 1rem;
    }

    .home-hero__actions {
        max-width: 50%;
    }

    .home-hero__actions > a {
        min-height: 3rem;
        padding-inline: 1rem;
    }

    .home-hero__ticker {
        margin-top: 2.5rem;
        padding-block: 0.65rem;
    }
}

@media (max-width: 479px) {
    .home-hero__container {
        padding-inline: 0.875rem;
    }

    .home-hero__title {
        font-size: clamp(1.75rem, 9.5vw, 2.2rem);
        line-height: 1.04;
    }

    .home-hero__eyebrow {
        padding-inline: 0.75rem;
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .home-hero__actions {
        max-width: 100%;
    }

    .home-hero__actions > a {
        font-size: 0.82rem;
    }
}

@media (max-width: 1279px) {
    .home-method {
        margin-top: -3rem;
    }

    .home-method__intro,
    .home-method__content {
        padding: 1.75rem;
    }

    .home-method__intro {
        padding-right: 1.25rem;
    }
}

@media (max-width: 1023px) {
    .home-method {
        margin-top: -2rem;
    }

    .home-method__shell {
        padding-inline: 1rem;
    }

    .home-method__grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-method__intro {
        padding: 1.5rem;
        border-right: 0 !important;
        border-bottom: 1px solid var(--border);
    }

    .home-method__content {
        padding: 1.5rem;
    }

    .home-method__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home-method {
        margin-top: -1rem;
    }

    .home-method__shell {
        padding-inline: 0.875rem;
    }

    .home-method__panel {
        border-radius: 1rem;
    }

    .home-method__intro,
    .home-method__content {
        padding: 1.125rem;
    }

    .home-method__cards {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .home-method__tags {
        gap: 0.45rem;
    }

    .home-method__meta {
        gap: 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 479px) {
    .home-method__shell {
        padding-inline: 0.75rem;
    }

    .home-method__intro,
    .home-method__content {
        padding: 1rem;
    }

    .home-method__intro > div:nth-child(2) {
        font-size: 1.35rem;
        line-height: 1.15;
    }
}

@media (max-width: 1279px) {
    .home-services-overview {
        padding-block: 5rem;
        margin-top: 3rem;
    }

    .home-services-overview__container {
        gap: 3rem;
    }

    .home-services-overview__content > h2 {
        font-size: clamp(1.9rem, 4vw, 2.25rem);
    }

    .home-services-overview__card--top {
        left: 0;
    }

    .home-services-overview__card--bottom {
        right: 0;
    }
}

@media (max-width: 1023px) {
    .home-services-overview {
        padding-block: 4rem;
        margin-top: 2rem;
    }

    .home-services-overview__container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-inline: 1rem;
    }

    .home-services-overview__media {
        width: 100%;
        max-width: 42rem;
        margin-inline: auto;
    }

    .home-services-overview__content > h2 {
        margin-top: 0;
        font-size: clamp(1.75rem, 5vw, 2.1rem);
    }

    .home-services-overview__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home-services-overview {
        padding-block: 3.25rem;
        margin-top: 1.5rem;
    }

    .home-services-overview__container {
        gap: 2rem;
        padding-inline: 0.875rem;
    }

    .home-services-overview__media {
        display: flex;
        flex-direction: column;
        gap: 0.875rem;
    }

    .home-services-overview__card {
        position: relative !important;
        inset: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        width: 100% !important;
        transform: none !important;
        rotate: 0deg !important;
    }

    .home-services-overview__list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .home-services-overview__actions {
        flex-direction: column;
    }

    .home-services-overview__actions > a {
        width: 100%;
    }
}

@media (max-width: 479px) {
    .home-services-overview__container {
        padding-inline: 0.75rem;
    }

    .home-services-overview__content > h2 {
        font-size: 1.6rem;
        line-height: 1.12;
    }

    .home-services-overview__content > p {
        font-size: 0.98rem;
    }
}

@media (max-width: 1279px) {
    .home-field {
        padding-block: 5rem;
    }

    .home-field__container {
        padding-inline: 2rem;
    }

    .home-field__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-field__intro h2 {
        font-size: clamp(1.85rem, 4vw, 2.1rem);
    }
}

@media (max-width: 1023px) {
    .home-field {
        padding-block: 4rem;
    }

    .home-field__container {
        padding-inline: 1.25rem;
    }

    .home-field__intro {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .home-field__intro-main,
    .home-field__intro-side {
        max-width: 100%;
    }

    .home-field__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .home-field__footer {
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .home-field {
        padding-block: 3.25rem;
    }

    .home-field__container {
        padding-inline: 1rem;
    }

    .home-field__intro h2 {
        font-size: 1.65rem;
        line-height: 1.12;
    }

    .home-field__intro-meta {
        grid-template-columns: 1fr;
    }

    .home-field__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-field__card-split,
    .home-field__card-media {
        height: 11rem;
    }

    .home-field__footer {
        margin-top: 2rem;
        flex-direction: column;
        align-items: stretch;
    }

    .home-field__footer > a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 479px) {
    .home-field__container {
        padding-inline: 0.875rem;
    }

    .home-field__intro h2 {
        font-size: 1.45rem;
    }

    .home-field__card-split,
    .home-field__card-media {
        height: 9rem;
    }

    .home-field__card-split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1279px) {
    .home-trust {
        padding-block: 5rem;
    }

    .home-trust__grid {
        gap: 2.5rem;
    }

    .home-trust__content h2 {
        font-size: clamp(1.85rem, 4vw, 2.1rem);
    }
}

@media (max-width: 1023px) {
    .home-trust {
        padding-block: 4rem;
    }

    .home-trust__container {
        padding-inline: 1rem;
    }

    .home-trust__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-trust__content {
        max-width: 100%;
    }

    .home-trust__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home-trust {
        padding-block: 3.25rem;
    }

    .home-trust__container {
        padding-inline: 0.875rem;
    }

    .home-trust__content h2 {
        font-size: 1.65rem;
        line-height: 1.12;
    }

    .home-trust__cards {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .home-trust__logo {
        height: 2rem;
    }

    .home-trust__logo svg,
    .home-trust__logo img {
        max-width: 7rem;
        max-height: 2rem;
    }

    .home-trust__chips {
        gap: 0.5rem;
    }
}

@media (max-width: 479px) {
    .home-trust__container {
        padding-inline: 0.75rem;
    }

    .home-trust__content h2 {
        font-size: 1.45rem;
    }

    .home-trust__cards article {
        padding: 0.95rem;
    }

    .home-trust__logo {
        height: 1.85rem;
    }

    .home-trust__logo svg,
    .home-trust__logo img {
        max-width: 6.5rem;
        max-height: 1.85rem;
    }
}

@media (max-width: 1279px) {
    .home-reviews {
        padding-block: 5rem;
    }

    .home-reviews__grid {
        gap: 2.5rem;
    }

    .home-reviews__content h2 {
        font-size: clamp(1.85rem, 4vw, 2.1rem);
    }
}

@media (max-width: 1023px) {
    .home-reviews {
        padding-block: 4rem;
    }

    .home-reviews__container {
        padding-inline: 1rem;
    }

    .home-reviews__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-reviews__content,
    .home-reviews__wall {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .home-reviews {
        padding-block: 3.25rem;
    }

    .home-reviews__container {
        padding-inline: 0.875rem;
    }

    .home-reviews__content h2 {
        font-size: 1.65rem;
        line-height: 1.12;
    }

    .home-reviews__content > p {
        text-align: center;
    }

    .home-reviews__wall > div {
        padding: 0.875rem;
        border-radius: 1rem;
    }

    .review-chip {
        max-width: 11.5rem;
    }

    .review-chip-author {
        max-width: 6.75rem;
    }

    .review-chip-text {
        max-width: 9.5rem;
    }
}

@media (max-width: 479px) {
    .home-reviews__container {
        padding-inline: 0.75rem;
    }

    .home-reviews__content h2 {
        font-size: 1.45rem;
    }

    .review-chip {
        max-width: 10.5rem;
        padding: 0.5rem 0.65rem;
    }

    .review-chip-author {
        max-width: 6rem;
    }

    .review-chip-text {
        max-width: 8.5rem;
    }
}

@media (max-width: 1279px) {
    .home-faq__container {
        gap: 3rem;
    }

    .home-faq__intro h2 {
        font-size: clamp(1.9rem, 4vw, 2.25rem);
    }
}

@media (max-width: 1023px) {
    .home-faq__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-inline: 1.25rem;
        padding-block: 4rem;
    }

    .home-faq__intro {
        max-width: 42rem;
    }
}

@media (max-width: 767px) {
    .home-faq__container {
        gap: 1.5rem;
        padding-inline: 1rem;
        padding-block: 3.25rem;
    }

    .home-faq__intro h2 {
        font-size: 1.7rem;
        line-height: 1.1;
    }

    .faq-trigger {
        padding-block: 0.9rem;
        font-size: 0.95rem;
    }

    .faq-panel {
        font-size: 0.84rem;
    }

    .faq-panel-inner {
        padding-right: 0;
        padding-bottom: 0.9rem;
    }
}

@media (max-width: 479px) {
    .home-faq__container {
        padding-inline: 0.875rem;
    }

    .home-faq__intro h2 {
        font-size: 1.45rem;
    }

    .faq-trigger {
        gap: 0.75rem;
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 0.9rem;
        height: 0.9rem;
    }
}

@media (max-width: 1279px) {
    .home-zone {
        padding-block: 5rem;
    }

    .home-zone__container {
        padding-inline: 2rem;
    }

    .home-zone__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-zone__intro h2 {
        font-size: clamp(1.85rem, 4vw, 2.1rem);
    }

    .home-zone__map-card {
        grid-column: 1 / -1;
    }

    .home-zone__map {
        height: 15rem;
    }
}

@media (max-width: 1023px) {
    .home-zone {
        padding-block: 4rem;
    }

    .home-zone__container {
        padding-inline: 1.25rem;
    }

    .home-zone__intro {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .home-zone__intro-main,
    .home-zone__intro-side {
        max-width: 100%;
    }

    .home-zone__meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .home-zone__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .home-zone__map-card {
        grid-column: auto;
    }

    .home-zone__map {
        height: 13rem;
    }
}

@media (max-width: 767px) {
    .home-zone {
        padding-block: 3.25rem;
    }

    .home-zone__container {
        padding-inline: 1rem;
    }

    .home-zone__intro h2 {
        font-size: 1.65rem;
        line-height: 1.12;
    }

    .home-zone__meta {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .home-zone__note {
        align-items: flex-start;
    }

    .home-zone__map {
        height: 11.5rem;
    }
}

@media (max-width: 479px) {
    .home-zone__container {
        padding-inline: 0.875rem;
    }

    .home-zone__intro h2 {
        font-size: 1.45rem;
    }

    .home-zone__map {
        height: 10rem;
    }
}