/* /public_html/_stage-fh/home/home.css */

/* =========================
   Home Fonts
========================= */

@font-face {
    font-family: "Peyda";
    src: url("/assets/fonts/peyda/Peyda-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Peyda";
    src: url("/assets/fonts/peyda/Peyda-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Peyda";
    src: url("/assets/fonts/peyda/Peyda-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Peyda";
    src: url("/assets/fonts/peyda/Peyda-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Peyda";
    src: url("/assets/fonts/peyda/Peyda-Black.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


/* =========================
   Home Base
========================= */
:root {
    --fh-home-bg: #fffdf9;
    --fh-home-surface: rgba(255, 255, 255, 0.76);
    --fh-home-surface-strong: rgba(255, 255, 255, 0.92);

    --fh-home-ink: #2f4b43;
    --fh-home-muted: #6f7d78;

    --fh-home-pink: #e96f83;
    --fh-home-pink-dark: #d95b70;
    --fh-home-pink-soft: #ffe3e9;

    --fh-home-green: #2fae83;
    --fh-home-green-soft: #dceee7;
    --fh-home-green-shape: #bdd8cf;

    --fh-home-cream: #faf4eb;
    --fh-home-border: rgba(47, 75, 67, 0.11);

    --fh-home-shadow: 0 24px 70px rgba(73, 67, 61, 0.14);
    --fh-home-shadow-soft: 0 14px 34px rgba(73, 67, 61, 0.09);

    --fh-home-radius-xl: 34px;
    --fh-home-radius-lg: 24px;
    --fh-home-radius-md: 18px;

    --fh-home-max: 1160px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Peyda", sans-serif;
    background: #fffdf9;
    color: var(--fh-home-ink);
}

.fh-home-page {
    min-height: 100vh;
    overflow-x: clip;
    overflow-y: visible;
    word-spacing: 1.2px;
    text-rendering: optimizeLegibility;

    background:
        linear-gradient(
            180deg,
            #fffdf9 0%,
            #fdf8f1 50%,
            #fffdf9 100%
        );
}
.fh-home-container {
    width: min(var(--fh-home-max), calc(100% - 40px));
    margin-inline: auto;
}

.fh-home-page a {
    color: inherit;
    text-decoration: none;
}

.fh-home-page button,
.fh-home-page input,
.fh-home-page textarea,
.fh-home-page select {
    font-family: inherit;
}


/* =========================
   Section 01 - Hero
========================= */

.fh-home-hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
}

.fh-home-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 82px;
    background: rgba(255, 255, 255, 0.70);
    clip-path: ellipse(78% 72% at 50% 100%);
    pointer-events: none;
}

.fh-home-hero__container {
    position: relative;
    z-index: 1;
    min-height: 680px;

    direction: ltr;

    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    grid-template-areas: "content visual";
    align-items: center;
    gap: 32px;
}

.fh-home-hero__content {
    grid-area: content;
    direction: rtl;
    max-width: 520px;
    justify-self: start;
    padding-top: 22px;
}

.fh-home-hero__brand {
    width: fit-content;
    margin: 0 0 14px;
    padding: 8px 14px;

    border-radius: 999px;
    border: 1px solid var(--fh-home-border);
    background: rgba(255, 255, 255, 0.68);
    color: #527169;

    font-size: 13px;
    font-weight: 800;
    line-height: 1.6;

    box-shadow: var(--fh-home-shadow-soft);
    backdrop-filter: blur(14px);
}

.fh-home-hero__title {
    margin: 0;
    color: var(--fh-home-ink);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.34;
    letter-spacing: normal;
}

.fh-home-hero__title span,
.fh-home-hero__title strong {
    display: block;
}

.fh-home-hero__title span {
    font-weight: 850;
}

.fh-home-hero__title strong {
    position: relative;
    width: fit-content;
    margin-top: 2px;
    color: #e15f75;
    isolation: isolate;
}

.fh-home-hero__title strong::before {
    content: "";
    position: absolute;
    right: -8px;
    left: -8px;
    bottom: 7px;
    height: 18px;
    z-index: -1;

    border-radius: 999px;
    background: rgba(255, 211, 221, 0.85);
    transform: rotate(-1.2deg);
}

.fh-home-hero__subtitle {
    max-width: 470px;
    margin: 22px 0 0;

    color: var(--fh-home-muted);
    font-size: 16px;
    font-weight: 500;
    line-height: 2.15;
}

.fh-home-hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.fh-home-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    min-height: 58px;
    padding: 0 14px 0 25px;

    border-radius: 999px;
    background: linear-gradient(135deg, var(--fh-home-pink), var(--fh-home-pink-dark));
    color: #ffffff;

    font-size: 15px;
    font-weight: 900;
    line-height: 1;

    box-shadow: 0 18px 34px rgba(217, 91, 112, 0.25);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.fh-home-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(217, 91, 112, 0.32);
}

.fh-home-hero__cta-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--fh-home-pink-dark);

    font-size: 20px;
    line-height: 1;
}

.fh-home-hero__visual {
    grid-area: visual;
    direction: rtl;

    position: relative;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    min-height: 680px;
    align-self: stretch;
}

.fh-home-hero__shape {
    position: absolute;
    pointer-events: none;
}

.fh-home-hero__shape--main {
    right: 5%;
    bottom: 18px;

    width: min(650px, 95%);
    height: 570px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: hidden;

    border-radius: 58% 42% 47% 53% / 44% 58% 42% 56%;

    background:
        linear-gradient(145deg, rgba(189, 216, 207, 0.88), rgba(220, 238, 231, 0.60));

    transform: rotate(-4deg);
    z-index: 1;
}
.fh-home-hero__shape--main::before {
    content: "";
    position: absolute;
    left: -130px;
    top: 18px;

    width: 310px;
    height: 310px;

    border-radius: 999px;
    background: rgba(189, 216, 207, 0.54);
}

.fh-home-hero__shape--soft {
    left: -6px;
    top: 46px;

    width: 285px;
    height: 255px;

    border-radius: 61% 39% 52% 48% / 43% 58% 42% 57%;

    background: rgba(189, 216, 207, 0.28);

    transform: rotate(12deg);
    z-index: 0;
}
.fh-home-hero__dots {
    position: absolute;
    left: 55px;
    top: 220px;

    width: 152px;
    height: 94px;

    z-index: 3;
    opacity: 0.86;

    background-image: radial-gradient(rgba(255, 255, 255, 0.92) 2px, transparent 2px);
    background-size: 14px 14px;
    pointer-events: none;
}

.fh-home-hero__image {
    position: relative;
    z-index: 2;

    display: block;

    width: auto;
    height: 100%;
    max-width: 92%;

    object-fit: contain;
    object-position: bottom center;

   transform: translate(50px, 20px) rotate(8deg);

    filter: drop-shadow(0 28px 34px rgba(44, 62, 57, 0.13));
}
.fh-home-hero__badge {
    position: absolute;
    z-index: 6;

    display: flex;
    flex-direction: column;
    gap: 2px;

    min-width: 130px;
    padding: 12px 14px;

    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.78);

    background: rgba(255, 255, 255, 0.76);
    color: #3f5d55;

    box-shadow: 0 18px 38px rgba(65, 74, 70, 0.12);
    backdrop-filter: blur(16px);
}

.fh-home-hero__badge span {
    color: #75837f;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
}

.fh-home-hero__badge strong {
    color: #2f4b43;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.6;
}

.fh-home-hero__badge--coach {
    right: 34px;
    top: 118px;
}

.fh-home-hero__badge--official {
    left: 28px;
    top: 235px;
    min-width: 148px;
}

.fh-home-hero__badge--women {
    right: 58px;
    bottom: 76px;
    min-width: 120px;
}

.fh-home-hero__badge--women strong {
    color: var(--fh-home-pink-dark);
    font-size: 20px;
    line-height: 1.2;
}


/* =========================
   Section 02 - Trust Strip
========================= */

.fh-home-trust {
    position: relative;
    z-index: 3;
    margin-top: -18px;
    padding: 0 0 34px;
}

.fh-home-trust__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;

    padding: 12px;

    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.78);

    background: rgba(255, 255, 255, 0.70);

    box-shadow:
        0 18px 44px rgba(73, 67, 61, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(18px);
}

.fh-home-trust__item {
    min-height: 86px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    border-radius: 20px;
    background: rgba(255, 250, 246, 0.72);

    text-align: center;
}

.fh-home-trust__item strong {
    color: var(--fh-home-pink-dark);
    font-size: 30px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: normal;
}

.fh-home-trust__item span {
    color: #60736d;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.6;
}


/* =========================
   Section 03 - Why Fit Hasti
========================= */

.fh-home-why {
    padding: 46px 0 70px;
}

.fh-home-why__head {
    max-width: 620px;
    margin: 0 auto 22px;
    text-align: center;
}

.fh-home-why__eyebrow {
    width: fit-content;
    margin: 0 auto 10px;
    padding: 7px 13px;

    border-radius: 999px;
    border: 1px solid var(--fh-home-border);
    background: rgba(255, 255, 255, 0.66);
    color: #d95b70;

    font-size: 12px;
    font-weight: 900;
    line-height: 1.5;
}

.fh-home-why__title {
    margin: 0;

    color: var(--fh-home-ink);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    line-height: 1.55;
    letter-spacing: normal;
}

.fh-home-why__marquee {
    position: relative;
    overflow: visible;
    padding: 10px 0;
    direction: rtl;
}

.fh-home-why__track {
    width: 100%;
    margin-inline: auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;

    animation: none;
}
.fh-home-why__card[aria-hidden="true"] {
    display: none;
}

.fh-home-why__card {
    direction: rtl;

    width: auto;
    min-height: 122px;

    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-content: center;
    gap: 7px 13px;

    padding: 22px 24px;

    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.86);

background:
    radial-gradient(circle at 92% 10%, rgba(233, 111, 131, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.82);

box-shadow:
    0 18px 44px rgba(73, 67, 61, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(16px);
}
.fh-home-why__icon {
    grid-row: span 2;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;
    flex-shrink: 0;

    border-radius: 18px;
    background: rgba(255, 227, 233, 0.72);
    color: #060435;
    line-height: 1;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}


.fh-home-why__icon svg {
    display: block;
    width: 30px;
    height: 30px;
}
.fh-home-why__icon--plan {
    background: rgba(220, 238, 231, 0.78);
    color: #2f6f5a;
}

.fh-home-why__icon--women {
    --fh-home-women-icon-main: #d95b70;
    --fh-home-women-icon-accent: #e96f83;
}

.fh-home-why__icon--women svg {
    display: block;
    width: 31px;
    height: 31px;
    transform: scale(1.12);
    transform-origin: center;
}

.fh-home-why__icon--women .fh-home-why__women-icon-main {
    fill: var(--fh-home-women-icon-main);
}

.fh-home-why__icon--women .fh-home-why__women-icon-accent {
    fill: var(--fh-home-women-icon-accent);
}
.fh-home-why__card:nth-child(3n + 2) .fh-home-why__icon {
    background: rgba(220, 238, 231, 0.76);
}

.fh-home-why__card:nth-child(3n + 3) .fh-home-why__icon {
    background: rgba(255, 242, 223, 0.82);
}

.fh-home-why__card h3 {
    margin: 0;

    color: var(--fh-home-ink);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.7;
    letter-spacing: normal;
}
.fh-home-why__card p {
    margin: 0;

    color: #71817b;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.9;
}

@keyframes fhHomeWhyScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================
   Section 04 - Results Proof
========================= */

.fh-home-results {
    position: relative;
    padding: 28px 0 58px;
    overflow: hidden;
}

.fh-home-results__head {
    max-width: 720px;
    margin: 0 auto 24px;
    text-align: center;
}

.fh-home-results__eyebrow {
    width: fit-content;
    margin: 0 auto 8px;
    padding: 6px 12px;

    border-radius: 999px;
    border: 1px solid var(--fh-home-border);
    background: rgba(255, 255, 255, 0.66);
    color: var(--fh-home-pink-dark);

    font-size: 11px;
    font-weight: 900;
    line-height: 1.5;
}

.fh-home-results__title {
    margin: 0;

    color: var(--fh-home-ink);
    font-size: clamp(23px, 2.7vw, 33px);
    font-weight: 900;
    line-height: 1.55;
    letter-spacing: normal;
}

.fh-home-results__text {
    max-width: 640px;
    margin: 9px auto 0;

    color: var(--fh-home-muted);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 2.05;
}

.fh-home-results__slider {
    width: 100%;
    margin-inline: auto;

    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
    grid-template-areas:
        "featured video"
        "featured life"
        "featured workout"
        "featured nutrition";
    grid-template-rows: minmax(196px, auto) repeat(3, minmax(78px, auto));

    gap: 10px 24px;
    align-items: stretch;
}

.fh-home-results__card {
    position: relative;

    min-width: 0;
    padding: 14px;

    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.86);

    background:
        radial-gradient(circle at 92% 10%, rgba(233, 111, 131, 0.07), transparent 30%),
        rgba(255, 255, 255, 0.82);

    box-shadow:
        0 14px 34px rgba(73, 67, 61, 0.065),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(16px);
    overflow: hidden;
}

.fh-home-results__card:nth-child(1) {
    grid-area: featured;
}

.fh-home-results__card:nth-child(2) {
    grid-area: video;
}

.fh-home-results__card:nth-child(3) {
    grid-area: life;
}

.fh-home-results__card:nth-child(4) {
    grid-area: workout;
}

.fh-home-results__card:nth-child(5) {
    grid-area: nutrition;
}

.fh-home-results__card--featured {
    min-height: 464px;
    padding: 16px;

    display: grid;
    grid-template-rows: minmax(268px, 1fr) auto;
    gap: 14px;
}

.fh-home-results__media {
    position: relative;

    min-height: 268px;
    height: 100%;

    border-radius: 22px;
    overflow: hidden;

    background:
        linear-gradient(145deg, rgba(255, 227, 233, 0.86), rgba(220, 238, 231, 0.72));
}

.fh-home-results__image,
.fh-home-results__mini-image {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.fh-home-results__media-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;

    min-height: 32px;
    padding: 0 11px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--fh-home-pink-dark);

    font-size: 10.5px;
    font-weight: 900;

    box-shadow: var(--fh-home-shadow-soft);
    backdrop-filter: blur(14px);
}

.fh-home-results__content {
    min-width: 0;
}

.fh-home-results__tag,
.fh-home-results__mini-label {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 26px;
    padding: 0 9px;

    border-radius: 999px;
    background: rgba(220, 238, 231, 0.76);
    color: #2f6f5a;

    font-size: 10px;
    font-weight: 900;
    line-height: 1;
}

.fh-home-results__card-title {
    margin: 9px 0 0;

    color: var(--fh-home-ink);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.68;
    letter-spacing: normal;
}

.fh-home-results__card-text {
    margin: 6px 0 0;

    color: #667872;
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.9;
}

.fh-home-results__card--video {
    min-height: 238px;

    display: grid;
    grid-template-columns: minmax(210px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 15px;
}

/* کاور قابل‌کلیک ویدیو */
.fh-home-results__video-preview {
    position: relative;

    width: 100%;
    height: 210px;
    padding: 0;

    display: block;

    border: 0;
    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 227, 233, 0.74),
            rgba(220, 238, 231, 0.62)
        );

    overflow: hidden;

    font-family: inherit;
    cursor: pointer;
    appearance: none;
}

/* یک تیرگی خیلی ملایم روی کاور */
.fh-home-results__video-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(20, 32, 28, 0.01) 45%,
            rgba(20, 32, 28, 0.16) 100%
        );

    pointer-events: none;
}

.fh-home-results__video-preview .fh-home-results__mini-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 280ms ease;
}

.fh-home-results__video-preview:hover .fh-home-results__mini-image {
    transform: scale(1.025);
}

/* دکمه پخش روی کاور */
.fh-home-results__play {
    position: absolute;
    inset: 0;
    z-index: 3;

    width: 66px;
    height: 66px;
    margin: auto;

    display: grid;
    place-items: center;

    border-radius: 50%;

    /* استروک اصلی */
    border: 1px solid rgba(255, 255, 255, 0.82);

    /* شیشه‌ای */
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.38),
            rgba(255, 255, 255, 0.16)
        );

    color: var(--fh-home-pink-dark);

    box-shadow:
        0 14px 32px rgba(39, 73, 63, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        inset 0 -1px 0 rgba(255, 255, 255, 0.16);

    backdrop-filter: blur(15px) saturate(145%);
    -webkit-backdrop-filter: blur(15px) saturate(145%);

    line-height: 0;
    pointer-events: none;

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

.fh-home-results__play::before {
    content: "";

    position: absolute;
    inset: -6px;

    border-radius: 50%;

    /* حلقه شیشه‌ای بیرونی */
    border: 1px solid rgba(255, 255, 255, 0.58);

    background: rgba(255, 255, 255, 0.07);

    box-shadow:
        0 0 0 1px rgba(233, 111, 131, 0.055);

    pointer-events: none;
}

.fh-home-results__play::after {
    content: "";

    position: absolute;
    inset: -7px;

    border-radius: 50%;

    border: 1px solid rgba(233, 111, 131, 0.22);

    animation: fhResultsPlayPulse 2.4s ease-out infinite;

    pointer-events: none;
}

.fh-home-results__play svg {
    position: relative;
    z-index: 2;

    width: 48px;
    height: 48px;

    display: block;

    transform: translate(1px, -1px);

    filter:
        drop-shadow(0 2px 3px rgba(217, 91, 112, 0.20));
}

.fh-home-results__play svg path {
    fill: #e96f83;

    stroke: rgba(255, 255, 255, 0.96);
    stroke-width: 1.0;

    stroke-linejoin: round;
    stroke-linecap: round;
}

.fh-home-results__video-preview:hover .fh-home-results__play {
    transform: scale(1.07);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.46),
            rgba(255, 255, 255, 0.22)
        );

    box-shadow:
        0 18px 38px rgba(39, 73, 63, 0.19),
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        inset 0 -1px 0 rgba(255, 255, 255, 0.18);
}

@keyframes fhResultsPlayPulse {
    0% {
        transform: scale(0.92);
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.28);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fh-home-results__play::after {
        animation: none;
    }
}


.fh-home-results__video-badge {
    position: absolute;

    left: 10px;
    right: auto;
    bottom: 10px;

    width: fit-content;
    min-width: 0;

    z-index: 4;

    min-height: 26px;
    padding: 0 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    border-radius: 999px;

    border: 1px solid rgba(255, 255, 255, 0.48);

    background: rgba(255, 255, 255, 0.82);
    color: #375b50;

    font-size: 10px;
    font-weight: 800;
    line-height: 1;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 6px 16px rgba(37, 62, 54, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);

    pointer-events: none;
}

.fh-home-results__video-badge::before {
    content: "";

    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    border-radius: 50%;
    background: #e96f83;
}
/* برچسب پایین کاور */
.fh-home-results__video-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 3;

    min-height: 28px;
    padding: 0 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.9);
    color: var(--fh-home-ink);

    font-size: 9.5px;
    font-weight: 900;
    line-height: 1;

    backdrop-filter: blur(10px);

    pointer-events: none;
}

.fh-home-results__mini-content--video {
    min-width: 0;
}

.fh-home-results__mini-content--video .fh-home-results__mini-title {
    margin-top: 9px;
}

/* تصویرهای معمولی کارت‌های دیگر */
.fh-home-results__mini-visual {
    position: relative;

    height: 168px;

    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 227, 233, 0.74),
            rgba(220, 238, 231, 0.62)
        );

    overflow: hidden;
}

/* بخش‌های آیکن‌دار کارت‌های دیگر */
.fh-home-results__icon-visual {
    height: 168px;

    display: grid;
    place-items: center;

    border-radius: 21px;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(255, 255, 255, 0.72),
            transparent 42%
        ),
        rgba(220, 238, 231, 0.70);
}

.fh-home-results__icon-visual--nutrition {
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(255, 255, 255, 0.72),
            transparent 42%
        ),
        rgba(255, 242, 223, 0.86);
}

.fh-home-results__icon-visual span {
    width: 66px;
    height: 66px;

    display: grid;
    place-items: center;

    border-radius: 23px;

    background: rgba(255, 255, 255, 0.76);

    font-size: 31px;
    line-height: 1;

    box-shadow:
        0 10px 24px rgba(73, 67, 61, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.fh-home-results__icon-visual--nutrition {
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.72), transparent 42%),
        rgba(255, 242, 223, 0.86);
}

.fh-home-results__icon-visual span {
    display: grid;
    place-items: center;

    width: 66px;
    height: 66px;

    border-radius: 23px;
    background: rgba(255, 255, 255, 0.76);

    font-size: 31px;
    line-height: 1;

    box-shadow:
        0 10px 24px rgba(73, 67, 61, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.fh-home-results__mini-content {
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fh-home-results__mini-title {
    margin: 9px 0 0;

    color: var(--fh-home-ink);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.75;
    letter-spacing: normal;
}

.fh-home-results__mini-text {
    margin: 5px 0 0;

    color: #71817b;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.85;
}

.fh-home-results__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;

    margin-top: 10px;
}

.fh-home-results__chips span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 23px;
    padding: 0 8px;

    border-radius: 999px;
    background: rgba(255, 250, 244, 0.88);
    color: #60736d;

    font-size: 9px;
    font-weight: 800;
    line-height: 1;
}

.fh-home-results__card--reason {
    min-height: 78px;
    padding: 12px 14px;

    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-content: center;
    gap: 4px 11px;
}

.fh-home-results__card--reason .fh-home-results__mini-visual,
.fh-home-results__card--reason .fh-home-results__icon-visual {
    display: none;
}

.fh-home-results__card--reason .fh-home-results__mini-content {
    display: contents;
}

.fh-home-results__card--reason .fh-home-results__mini-label {
    display: none;
}

.fh-home-results__card--reason .fh-home-results__mini-title {
    grid-column: 2;
    margin: 0;

    font-size: 14px;
    line-height: 1.55;
}

.fh-home-results__card--reason .fh-home-results__mini-text {
    grid-column: 2;
    margin: 0;

    font-size: 10.8px;
    line-height: 1.75;
}

.fh-home-results__card--reason .fh-home-results__chips {
    display: none;
}

.fh-home-results__reason-icon {
    grid-row: span 2;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 16px;
    background: rgba(255, 227, 233, 0.72);

    font-size: 19px;
    line-height: 1;
}

.fh-home-results__card--workout .fh-home-results__reason-icon {
    background: rgba(220, 238, 231, 0.76);
}

.fh-home-results__card--nutrition .fh-home-results__reason-icon {
    background: rgba(255, 242, 223, 0.86);
}

.fh-home-results__dots {
    display: none;
}

.fh-home-results__actions {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.fh-home-results__cta {
    min-height: 44px;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border-radius: 999px;
    border: 1px solid rgba(233, 111, 131, 0.16);
    background: rgba(255, 255, 255, 0.76);
    color: var(--fh-home-pink-dark);

    font-size: 12.5px;
    font-weight: 900;

    box-shadow: var(--fh-home-shadow-soft);
    backdrop-filter: blur(14px);
}


/* =========================
   Section 05 - Coach Intro
========================= */

.fh-home-coach {
    position: relative;
    padding: 24px 0 74px;
    overflow: hidden;
}

.fh-home-coach__card {
    position: relative;

    min-height: 352px;
    padding: 24px;

    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    grid-template-areas: "visual content";
    align-items: center;
    gap: 28px;

    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.88);

    background:
        radial-gradient(circle at 12% 12%, rgba(233, 111, 131, 0.065), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(189, 216, 207, 0.26), transparent 34%),
        rgba(255, 255, 255, 0.78);

    box-shadow:
        0 20px 54px rgba(73, 67, 61, 0.085),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(18px);
    overflow: hidden;
}

.fh-home-coach__visual {
    grid-area: visual;

    position: relative;

    min-height: 300px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.fh-home-coach__shape {
    position: relative;

    width: 255px;
    height: 278px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: hidden;

    border-radius: 58% 42% 47% 53% / 44% 58% 42% 56%;

    background:
        linear-gradient(145deg, rgba(189, 216, 207, 0.90), rgba(220, 238, 231, 0.62));

    transform: rotate(-4deg);
}

.fh-home-coach__shape::before {
    content: "";
    position: absolute;
    left: -68px;
    top: 22px;

    width: 162px;
    height: 162px;

    border-radius: 999px;
    background: rgba(255, 255, 255, 0.30);
}

.fh-home-coach__image {
    position: relative;
    z-index: 2;

    display: block;

    width: auto;
    height: 124%;
    max-width: 108%;

    object-fit: contain;
    object-position: bottom center;

    transform: translateY(-2px) rotate(4deg);

    filter: drop-shadow(0 20px 24px rgba(44, 62, 57, 0.12));
}
.fh-home-coach__badge {
    position: absolute;
    z-index: 4;

    min-width: 118px;
    padding: 9px 11px;

    display: grid;
    gap: 1px;

    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.82);

    background: rgba(255, 255, 255, 0.78);

    box-shadow: var(--fh-home-shadow-soft);
    backdrop-filter: blur(14px);
}

.fh-home-coach__badge span {
    color: #71817b;
    font-size: 9.5px;
    font-weight: 800;
    line-height: 1.5;
}

.fh-home-coach__badge strong {
    color: var(--fh-home-ink);
    font-size: 11.5px;
    font-weight: 900;
    line-height: 1.6;
}

.fh-home-coach__badge--name {
    right: 4px;
    top: 36px;
}

.fh-home-coach__badge--method {
    left: 12px;
    bottom: 34px;
}

.fh-home-coach__content {
    grid-area: content;
    min-width: 0;
}

.fh-home-coach__eyebrow {
    width: fit-content;
    margin: 0 0 10px;
    padding: 6px 12px;

    border-radius: 999px;
    border: 1px solid var(--fh-home-border);

    background: rgba(255, 255, 255, 0.66);
    color: var(--fh-home-pink-dark);

    font-size: 11px;
    font-weight: 900;
    line-height: 1.5;
}

.fh-home-coach__title {
    max-width: 590px;
    margin: 0;

    color: var(--fh-home-ink);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    line-height: 1.58;
    letter-spacing: normal;
}

.fh-home-coach__title mark {
    position: relative;
    color: var(--fh-home-pink-dark);
    background: transparent;
    isolation: isolate;
}

.fh-home-coach__title mark::before {
    content: "";
    position: absolute;
    right: -5px;
    left: -5px;
    bottom: 6px;
    height: 12px;
    z-index: -1;

    border-radius: 999px;
    background: rgba(255, 211, 221, 0.74);
    transform: rotate(-1.2deg);
}

.fh-home-coach__text {
    max-width: 620px;
    margin: 12px 0 0;

    color: var(--fh-home-muted);
    font-size: 13px;
    font-weight: 600;
    line-height: 2.1;
}

.fh-home-coach__quote {
    position: relative;

    max-width: 610px;
    margin: 16px 0 0;
    padding: 15px 18px;

    border-radius: 22px;
    border: 1px solid rgba(233, 111, 131, 0.12);

    background: rgba(255, 255, 255, 0.60);

    color: #4e665f;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 2;
}

.fh-home-coach__quote::before {
    content: "“";
    position: absolute;
    top: -15px;
    right: 15px;

    color: rgba(233, 111, 131, 0.30);
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}

.fh-home-coach__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;

    margin-top: 16px;
}

.fh-home-coach__meta-item {
    min-height: 68px;
    padding: 10px 12px;

    display: grid;
    align-content: center;
    gap: 3px;

    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.86);

    background: rgba(255, 250, 246, 0.72);

    box-shadow:
        0 10px 24px rgba(73, 67, 61, 0.048),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.fh-home-coach__meta-item strong {
    color: var(--fh-home-ink);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.7;
}

.fh-home-coach__meta-item span {
    color: #71817b;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.7;
}


/* =========================
   Section 06 - Course Map
========================= */

.fh-home-course-map {
    position: relative;
    padding: 18px 0 72px;
    overflow: hidden;
}

.fh-home-course-map__card {
    padding: 30px 26px 24px;

    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.88);

    background:
        radial-gradient(circle at 12% 12%, rgba(233, 111, 131, 0.065), transparent 28%),
        radial-gradient(circle at 88% 14%, rgba(189, 216, 207, 0.28), transparent 34%),
        rgba(255, 255, 255, 0.78);

    box-shadow:
        0 20px 54px rgba(73, 67, 61, 0.085),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(18px);
    overflow: hidden;
}

.fh-home-course-map__head {
    max-width: 720px;
    margin: 0 auto 22px;
    text-align: center;
}

.fh-home-course-map__title {
    margin: 0;

    color: var(--fh-home-ink);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    line-height: 1.58;
    letter-spacing: normal;
}

.fh-home-course-map__title mark {
    color: var(--fh-home-pink-dark);
    background: transparent;
}

.fh-home-course-map__text {
    max-width: 500px;
    margin: 10px auto 0;

    color: var(--fh-home-muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 2;
}

.fh-home-course-map__map {
    position: relative;

    width: 390px;
    height: 372px;
    margin: 6px auto 0;

    isolation: isolate;
}

.fh-home-course-map__svg {
    position: absolute;
    inset: 0;
    z-index: 1;

    width: 100%;
    height: 100%;

    overflow: visible;
}
.fh-home-course-map__svg path {
    fill: none;
}
.fh-home-course-map__track {
    display: none;
}
.fh-home-course-map__path {
    fill: none;
    stroke: rgba(47, 174, 131, 0.62);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 8 10;
}
.fh-home-course-map__weekly-arc {
    fill: none;
    stroke: rgba(233, 111, 131, 0.42);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: none;
}

.fh-home-course-map__loop {
    position: absolute;
    top: 117px;
    left: 50%;
    z-index: 3;

    padding: 0 7px;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #2f6f5a;
    background: rgba(255, 255, 255, 0.84);

    font-size: 10.5px;
    font-weight: 900;
    line-height: 1.8;
    white-space: nowrap;

    transform: translateX(-50%);
}

.fh-home-course-map__loop::before,
.fh-home-course-map__loop::after {
    display: none;
}
.fh-home-course-map__loop svg {
    width: 11px;
    height: 11px;
    flex: 0 0 auto;
}

.fh-home-course-map__step {
    position: absolute;
    z-index: 2;

    width: 108px;

    text-align: center;
}

.fh-home-course-map__dot {
    width: 32px;
    height: 32px;
    margin: 0 auto 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    border: 1.7px solid #2fae83;

    background: #ffffff;
    color: #2f6f5a;

    font-size: 11px;
    font-weight: 900;
    line-height: 1;

    box-shadow:
        0 6px 16px rgba(47, 174, 131, 0.14),
        inset 0 1px 0 #ffffff;
}
.fh-home-course-map__step-title {
    color: var(--fh-home-ink);
    font-size: 12.5px;
    font-weight: 900;
    line-height: 1.45;
}

.fh-home-course-map__step-desc {
    margin-top: 3px;

    color: var(--fh-home-muted);
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.6;
}

.fh-home-course-map__step--1 {
    top: 36px;
    right: 20px;
}

.fh-home-course-map__step--2 {
    top: 36px;
    left:28px;
    width: 128px;
    text-align: right;
}
.fh-home-course-map__step--3 {
    top: 144px;
    left: 20px;
}


.fh-home-course-map__step--4 {
    top: 144px;
    right: 4px;
    width: 128px;
    text-align: left;
}
.fh-home-course-map__step--2 .fh-home-course-map__dot {
    margin: 0 0 8px auto;
}

.fh-home-course-map__step--4 .fh-home-course-map__dot {
    margin: 0 auto 8px 0;
}
.fh-home-course-map__step--5 {
    top: 254px;
    right: 20px;
}

.fh-home-course-map__step--6 {
    top: 257px;
    left: 60px;
    width: 150px;
}

.fh-home-course-map__step--6 .fh-home-course-map__dot {
    position: relative;

    width: 42px;
    height: 42px;

    border: 0;
    background: linear-gradient(135deg, #ef7890 0%, #de5f76 100%);

    box-shadow:
        0 9px 20px rgba(217, 91, 112, 0.18);
}
.fh-home-course-map__step--6 .fh-home-course-map__dot::before,
.fh-home-course-map__step--6 .fh-home-course-map__dot::after {
    display: none;
}
.fh-home-course-map__check {
    position: relative;
    z-index: 2;

    width: 26px;
    height: 26px;

    display: grid;
    place-items: center;

    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.fh-home-course-map__check svg {
    width: 18px;
    height: 18px;

    display: block;
}

.fh-home-course-map__check path {
    fill: none;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.fh-home-course-map__step--6 .fh-home-course-map__step-title {
    margin-top: 3px;

    color: var(--fh-home-ink);
    font-size: 14px;
    font-weight: 900;
}

.fh-home-course-map__step--6 .fh-home-course-map__step-desc {
    font-size: 11px;
}

.fh-home-course-map__bottom {
    margin-top: 14px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.fh-home-course-map__date {
    min-height: 46px;
    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    border-radius: 999px;
    background: rgba(255, 250, 246, 0.78);
    color: var(--fh-home-ink);

    font-size: 12.5px;
    font-weight: 900;
    line-height: 1;
}

.fh-home-course-map__date strong {
    color: var(--fh-home-pink-dark);
    font-weight: 900;
}

.fh-home-course-map__cta {
    min-height: 48px;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border-radius: 999px;
    background: linear-gradient(135deg, var(--fh-home-pink), var(--fh-home-pink-dark));
    color: #ffffff;

    font-size: 13px;
    font-weight: 900;
    line-height: 1;

    box-shadow: 0 16px 30px rgba(217, 91, 112, 0.24);
}

.fh-home-course-map__cta span {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);

    font-size: 15px;
    line-height: 1;
}


/* =========================
   Section 07 - Problem Fit
========================= */

.fh-problem-fit {
    --fh-problem-card: #fffefb;
    --fh-problem-ink: var(--fh-home-ink, #2f4b43);
    --fh-problem-muted: var(--fh-home-muted, #6f7d78);
    --fh-problem-pink: var(--fh-home-pink, #e96f83);
    --fh-problem-pink-dark: var(--fh-home-pink-dark, #d95b70);
    --fh-problem-green: var(--fh-home-green, #2fae83);

    position: relative;

    padding: 18px 0 76px;

    overflow: visible;
}

.fh-problem-fit__container {
    width: min(var(--fh-home-max), calc(100% - 40px));
    margin-inline: auto;

    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: center;
}

.fh-problem-fit__intro {
    min-width: 0;
}

.fh-problem-fit__eyebrow {
    width: fit-content;
    margin: 0 0 12px;
    padding: 7px 13px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    border: 1px solid rgba(233, 111, 131, 0.16);
    background: rgba(255, 255, 255, 0.72);
    color: var(--fh-problem-pink-dark);

    font-size: 11px;
    font-weight: 900;
    line-height: 1.5;
}

.fh-problem-fit__title {
    margin: 0;

    color: var(--fh-problem-ink);

    font-size: clamp(25px, 3vw, 37px);
    font-weight: 950;
    line-height: 1.7;
    letter-spacing: normal;
}

.fh-problem-fit__text {
    max-width: 450px;
    margin: 13px 0 0;

    color: var(--fh-problem-muted);

    font-size: 14px;
    font-weight: 700;
    line-height: 2.15;
}



.fh-problem-fit__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.fh-problem-fit__card {
    position: relative;

    border-radius: 28px;
    border: 1px solid rgba(230, 223, 215, 0.95);

    background: var(--fh-problem-card);

    box-shadow:
        0 8px 18px rgba(73, 67, 61, 0.045),
        0 2px 6px rgba(73, 67, 61, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);

    overflow: hidden;
}

.fh-problem-fit__card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;

    width: 100%;
    height: 2px;

    background: var(--card-accent);
}

.fh-problem-fit__card--main::before {
    height: 3px;
}

.fh-problem-fit__card--main {
    --card-accent: var(--fh-problem-green);

    grid-column: 1 / -1;

    min-height: 210px;
    padding: 24px 22px 22px;

    background:
        radial-gradient(circle at 12% 18%, rgba(47, 174, 131, 0.08), transparent 28%),
        #fffefb;
}

.fh-problem-fit__card-top {
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.fh-problem-fit__number {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;
    background: rgba(47, 174, 131, 0.12);
    color: var(--fh-problem-green);

    font-size: 13px;
    font-weight: 950;
    line-height: 1;
}

.fh-problem-fit__label {
    padding: 7px 11px;

    border-radius: 999px;
    background: rgba(47, 174, 131, 0.1);
    color: #247a5e;

    font-size: 10.5px;
    font-weight: 900;
    line-height: 1;
}

.fh-problem-fit__card--main h3 {
    margin: 0 0 10px;

    color: var(--fh-problem-ink);

    font-size: 19px;
    font-weight: 950;
    line-height: 1.75;
    letter-spacing: normal;
}

.fh-problem-fit__card--main p {
    max-width: 520px;
    margin: 0;

    color: var(--fh-problem-muted);

    font-size: 13px;
    font-weight: 750;
    line-height: 2.05;
}

.fh-problem-fit__card--pink,
.fh-problem-fit__card--green,
.fh-problem-fit__card--dark {
    min-height: 176px;
    padding: 18px 16px 16px;
}

.fh-problem-fit__mini-head {
    display: grid;
    gap: 11px;
}

.fh-problem-fit__mini-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;
    background: var(--card-soft);

    font-size: 19px;
    line-height: 1;
}

.fh-problem-fit__card h3 {
    margin: 0;

    color: var(--fh-problem-ink);

    font-size: 13.5px;
    font-weight: 950;
    line-height: 1.75;
    letter-spacing: normal;
}

.fh-problem-fit__card p {
    margin: 9px 0 0;

    color: var(--fh-problem-muted);

    font-size: 12px;
    font-weight: 700;
    line-height: 2;
}

.fh-problem-fit__card--pink {
    --card-accent: rgba(47, 75, 67, 0.17);
    --card-soft: rgba(233, 111, 131, 0.11);
}

.fh-problem-fit__card--green {
    --card-accent: rgba(47, 75, 67, 0.17);
    --card-soft: rgba(47, 174, 131, 0.11);
}

.fh-problem-fit__card--dark {
    --card-accent: rgba(47, 75, 67, 0.17);
    --card-soft: rgba(47, 75, 67, 0.09);
}

/* =========================
   Section 08 - Join CTA
========================= */

.fh-home-join {
    position: relative;

    padding: 6px 0 64px;
}

.fh-home-join__card {
    position: relative;

    min-height: 92px;
    padding: 16px 18px 16px 16px;

    display: grid;
    grid-template-columns: 46px minmax(230px, 1fr) auto auto;
    align-items: center;
    gap: 18px;

    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.42);

    background:
        radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.16), transparent 28%),
        linear-gradient(135deg, #3f8d78 0%, #67a091 100%);

    color: #ffffff;

    box-shadow:
        0 18px 44px rgba(47, 75, 67, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);

    overflow: hidden;
}

.fh-home-join__icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--fh-home-pink-dark);

    font-size: 18px;
    font-weight: 900;
    line-height: 1;

    box-shadow:
        0 10px 22px rgba(47, 75, 67, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.fh-home-join__content {
    min-width: 0;
}

.fh-home-join__title {
    margin: 0;

    color: #ffffff;

    font-size: 17px;
    font-weight: 950;
    line-height: 1.75;
    letter-spacing: normal;
}

.fh-home-join__text {
    max-width: 470px;
    margin: 3px 0 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.9;
}

.fh-home-join__stats {
    min-width: 330px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.fh-home-join__stat {
    min-width: 0;

    text-align: center;
}

.fh-home-join__stat strong {
    display: block;

    color: #ffffff;

    font-size: 17px;
    font-weight: 950;
    line-height: 1.2;
    letter-spacing: normal;
}

.fh-home-join__stat span {
    display: block;
    margin-top: 4px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 9.5px;
    font-weight: 800;
    line-height: 1.4;
    white-space: nowrap;
}

.fh-home-join__button {
    min-width: 146px;
    min-height: 44px;
    padding: 0 14px 0 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border-radius: 999px;
    background: linear-gradient(135deg, var(--fh-home-pink), var(--fh-home-pink-dark));
    color: #ffffff;

    font-size: 12.5px;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;

    box-shadow:
        0 14px 28px rgba(217, 91, 112, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);

    transition:
        transform 0.22s ease,
        background-color 0.22s ease;
}

.fh-home-join__button:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #ef7f92, var(--fh-home-pink-dark));
}

.fh-home-join__button span {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border-radius: 999px;
    background: rgba(255, 255, 255, 0.20);
    color: #ffffff;

    font-size: 13px;
    line-height: 1;
}

/* =========================
   Testimonial Video Modal
========================= */

.fh-testimonial-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;

    padding: 22px;

    display: grid;
    place-items: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 180ms ease,
        visibility 180ms ease;
}

.fh-testimonial-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.fh-testimonial-modal__backdrop {
    position: absolute;
    inset: 0;

    background: rgba(24, 39, 34, 0.56);
    backdrop-filter: blur(8px);
}

.fh-testimonial-modal__dialog {
    position: relative;
    z-index: 1;

    width: min(100%, 390px);
    max-height: calc(100vh - 44px);
    padding: 12px;

    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.72);

    background: var(--fh-home-bg, #fffdf9);

    box-shadow:
        0 28px 80px rgba(18, 34, 29, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);

    overflow: hidden;

    transform: translateY(14px) scale(0.97);

    transition: transform 180ms ease;
}

.fh-testimonial-modal.is-open .fh-testimonial-modal__dialog {
    transform: translateY(0) scale(1);
}

.fh-testimonial-modal__head {
    min-height: 58px;
    padding: 2px 3px 11px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.fh-testimonial-modal__eyebrow {
    color: var(--fh-home-pink-dark);

    font-size: 9.5px;
    font-weight: 900;
}

.fh-testimonial-modal__title {
    margin: 3px 0 0;

    color: var(--fh-home-ink);

    font-size: 14px;
    font-weight: 900;
    line-height: 1.7;
}

.fh-testimonial-modal__close {
    width: 38px;
    height: 38px;
    padding: 0;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 999px;

    background: rgba(47, 75, 67, 0.07);
    color: var(--fh-home-ink);

    font-family: inherit;
    font-size: 24px;
    line-height: 1;

    cursor: pointer;
}

.fh-testimonial-modal__video-wrap {
    position: relative;

    width: min(100%, 330px);
    max-height: calc(100vh - 145px);
    margin: 0 auto;

    aspect-ratio: 9 / 16;

    display: grid;
    place-items: center;

    border-radius: 22px;

    background: #101412;

    overflow: hidden;
}

.fh-testimonial-modal__video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    background: #101412;
}

.fh-testimonial-modal__loading {
    padding: 18px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

body.fh-testimonial-modal-open {
    overflow: hidden;
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
    .fh-home-container {
        width: min(100% - 26px, 430px);
    }

    /* Hero */
    .fh-home-hero {
        min-height: auto;
    }

    .fh-home-hero::after {
        height: 48px;
    }

    .fh-home-hero__container {
        min-height: auto;

        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";

        gap: 0;
        padding: 0 0 46px;
    }

    .fh-home-hero__visual {
        width: 100%;
        min-height: 390px;
        align-self: auto;
    }

    .fh-home-hero__shape--main {
        right: 50%;
        bottom: 10px;

        width: 360px;
        height: 345px;

        display: flex;
        align-items: flex-end;
        justify-content: center;

        overflow: hidden;

        border-radius: 58% 42% 47% 53% / 44% 58% 42% 56%;
        transform: translateX(50%);
    }

    .fh-home-hero__shape--main::before {
        left: -74px;
        top: 12px;

        width: 188px;
        height: 188px;
    }

    .fh-home-hero__shape--soft {
        left: -12px;
        top: 72px;

        width: 190px;
        height: 168px;

        display: block;

        border-radius: 61% 39% 52% 48% / 43% 58% 42% 57%;
        background: rgba(189, 216, 207, 0.24);

        transform: rotate(10deg);
    }

    .fh-home-hero__dots {
        left: 22px;
        top: 118px;

        width: 112px;
        height: 74px;

        background-size: 12px 12px;
    }

    .fh-home-hero__image {
        width: auto;
        height: 101%;
        max-width: 90%;

        transform: translate(35px, 20px) rotate(5deg);
    }

    .fh-home-hero__badge {
        min-width: auto;
        padding: 8px 10px;

        border-radius: 15px;
    }

    .fh-home-hero__badge span {
        font-size: 9px;
    }

    .fh-home-hero__badge strong {
        font-size: 10.5px;
    }

    .fh-home-hero__badge--coach {
        right: 4px;
        top: 52px;
    }

    .fh-home-hero__badge--official {
        left: 0;
        top: 166px;

        max-width: 120px;
    }

    .fh-home-hero__badge--women {
        right: 14px;
        bottom: 35px;
    }

    .fh-home-hero__badge--women strong {
        font-size: 16px;
    }

    .fh-home-hero__content {
        width: 100%;
        max-width: 100%;

        justify-self: stretch;

        padding-top: 0;
        margin-top: -3px;

        text-align: center;
    }

    .fh-home-hero__brand {
        margin-inline: auto;
        margin-bottom: 12px;

        font-size: 11px;

        box-shadow: none;
    }

    .fh-home-hero__title {
        font-size: 37px;
        line-height: 1.45;
    }

    .fh-home-hero__title strong {
        margin-inline: auto;
    }

    .fh-home-hero__title strong::before {
        bottom: 6px;

        height: 14px;
    }

    .fh-home-hero__subtitle {
        max-width: 335px;
        margin: 16px auto 0;

        font-size: 13.5px;
        line-height: 2.15;
    }

    .fh-home-hero__actions {
        justify-content: center;

        margin-top: 25px;
    }

    .fh-home-hero__cta {
        width: min(100%, 315px);
        min-height: 58px;

        padding: 0 13px 0 22px;

        font-size: 14px;
    }

    .fh-home-hero__cta-icon {
        width: 39px;
        height: 39px;
    }

    /* Trust */
    .fh-home-trust {
        margin-top: -18px;
        padding-bottom: 24px;
    }

    .fh-home-trust__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px;

        padding: 7px;

        border-radius: 20px;
    }

    .fh-home-trust__item {
        min-height: 66px;
        gap: 3px;

        border-radius: 16px;
    }

    .fh-home-trust__item strong {
        font-size: 19px;
    }

    .fh-home-trust__item span {
        font-size: 10px;
        line-height: 1.5;
    }

/* Why */
.fh-home-why {
    padding: 36px 0 52px;
}

.fh-home-why__head {
    margin-bottom: 16px;
}

.fh-home-why__title {
    font-size: 22px;
}

.fh-home-why__marquee {
    overflow-x: auto;
    overflow-y: hidden;

    direction: ltr;

    padding: 10px 0;

    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    touch-action: pan-x pan-y;

    scrollbar-width: none;
    cursor: grab;

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0,
        #000 36px,
        #000 calc(100% - 36px),
        transparent 100%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0,
        #000 36px,
        #000 calc(100% - 36px),
        transparent 100%
    );
}

.fh-home-why__marquee::-webkit-scrollbar {
    display: none;
}

.fh-home-why__marquee.is-grabbing {
    cursor: grabbing;
}

.fh-home-why__track {
    width: max-content;
    margin-inline: 0;

    display: flex;
    align-items: stretch;
    gap: 10px;

    animation: none;
}

.fh-home-why__card[aria-hidden="true"] {
    display: grid;
}

.fh-home-why__card {
    width: 218px;
    min-height: 112px;

    grid-template-columns: 40px minmax(0, 1fr);

    padding: 14px;

    border-radius: 19px;
}

.fh-home-why__icon {
    width: 40px;
    height: 40px;

    border-radius: 15px;

    font-size: 19px;
}

.fh-home-why__card h3 {
    font-size: 13.5px;
}

.fh-home-why__card p {
    font-size: 11px;
}
    /* Results */
    .fh-home-results {
        padding: 30px 0 58px;
    }

    .fh-home-results__head {
        margin-bottom: 24px;
    }

    .fh-home-results__eyebrow {
        font-size: 11px;

        box-shadow: none;
    }

    .fh-home-results__title {
        font-size: 24px;
        line-height: 1.7;
    }

    .fh-home-results__text {
        max-width: 350px;

        font-size: 12.5px;
        line-height: 2.05;
    }

.fh-home-results__slider {
    display: flex;
    gap: 12px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    padding: 6px 2px 38px;
    margin-inline: -2px;

    scrollbar-width: none;
}

    .fh-home-results__slider::-webkit-scrollbar {
        display: none;
    }

   .fh-home-results__card,
.fh-home-results__card--featured {
    flex: 0 0 88%;

    width: 88%;
    height: 430px;
    min-height: 430px;
    max-height: 430px;

    padding: 14px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;

    border-radius: 26px;

    scroll-snap-align: center;
    scroll-snap-stop: always;
}

    .fh-home-results__card--video,
    .fh-home-results__card--reason {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 14px;
    }
.fh-home-results__card--video {
    height: 430px;
    min-height: 430px;
}

.fh-home-results__card--video .fh-home-results__video-preview {
    width: 100%;
    height: 300px;
    flex: 0 0 300px;

    border-radius: 21px;
}

.fh-home-results__card--video .fh-home-results__mini-content {
    flex: 0 0 auto;
}

.fh-home-results__card--video .fh-home-results__mini-title {
    margin-top: 8px;
}

.fh-testimonial-modal {
    padding: 14px;
}

.fh-testimonial-modal__dialog {
    width: min(100%, 370px);
    max-height: calc(100vh - 28px);

    border-radius: 26px;
}

.fh-testimonial-modal__video-wrap {
    width: min(100%, 315px);
    max-height: calc(100vh - 130px);
}
    .fh-home-results__reason-icon {
        display: none;
    }

    .fh-home-results__card--reason .fh-home-results__mini-visual {
        display: block;
    }

    .fh-home-results__card--reason .fh-home-results__icon-visual {
        display: grid;
    }

    .fh-home-results__card--reason .fh-home-results__mini-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .fh-home-results__card--reason .fh-home-results__mini-label {
        display: inline-flex;
    }

    .fh-home-results__card--reason .fh-home-results__mini-title {
        margin: 10px 0 0;
    }

    .fh-home-results__card--reason .fh-home-results__mini-text {
        margin: 6px 0 0;
    }

    .fh-home-results__card--reason .fh-home-results__chips {
        display: flex;
    }

    .fh-home-results__media {
        min-height: 0;
        height: 260px;

        border-radius: 23px;
    }

    .fh-home-results__mini-visual,
    .fh-home-results__icon-visual {
        height: 175px;

        border-radius: 21px;
    }

    .fh-home-results__icon-visual span {
        width: 82px;
        height: 82px;

        border-radius: 28px;

        font-size: 38px;
    }

    .fh-home-results__card-title {
        font-size: 16px;
        line-height: 1.75;
    }

    .fh-home-results__card-text {
        font-size: 11.5px;
        line-height: 1.9;
    }

    .fh-home-results__mini-title {
        font-size: 15px;
        line-height: 1.75;
    }

    .fh-home-results__mini-text {
        font-size: 12px;
        line-height: 2.05;
    }

    .fh-home-results__chips {
        margin-top: auto;
        padding-top: 12px;
    }

    .fh-home-results__chips span {
        min-height: 27px;
        padding: 0 10px;

        font-size: 10px;
    }

 .fh-home-results__dots {
    display: flex;
    justify-content: center;
    gap: 6px;

    margin-top: -12px;
}
    .fh-home-results__dot {
        width: 6px;
        height: 6px;

        border-radius: 999px;
        background: rgba(233, 111, 131, 0.24);

        transition:
            width 0.2s ease,
            background 0.2s ease;
    }

    .fh-home-results__dot.is-active {
        width: 18px;

        background: var(--fh-home-pink);
    }

    .fh-home-results__actions {
        margin-top: 14px;
    }

    .fh-home-results__cta {
        width: min(100%, 315px);
        min-height: 48px;
    }

    /* Coach */
    .fh-home-coach {
        padding: 10px 0 42px;
    }

    .fh-home-coach__card {
        min-height: auto;
        padding: 16px 15px 17px;

        display: grid;
        grid-template-columns: 104px minmax(0, 1fr);
        grid-template-areas:
            "visual eyebrow"
            "visual title"
            "text text"
            "meta meta";

        gap: 7px 24px;

        border-radius: 28px;

        direction: rtl;
    }

    .fh-home-coach__visual {
        grid-area: visual;

        min-height: 98px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .fh-home-coach__shape {
        width: 109px;
        height: 112px;
    }

    .fh-home-coach__image {
        height: 102%;
        max-width: 120%;
    }

    .fh-home-coach__badge {
        display: none;
    }

    .fh-home-coach__content {
        display: contents;
    }

    .fh-home-coach__eyebrow {
        grid-area: eyebrow;

        width: fit-content;
        margin: 6px 0 0;
        padding: 5px 10px;

        justify-self: start;

        font-size: 10px;
    }

    .fh-home-coach__title {
        grid-area: title;

        max-width: 100%;
        margin: 0;

        text-align: right;

        font-size: 18px;
        font-weight: 900;
        line-height: 1.9;
        letter-spacing: normal;
        word-spacing: 2px;
    }

    .fh-home-coach__title mark {
        margin-inline: 2px;

        letter-spacing: normal;
        word-spacing: normal;
    }

    .fh-home-coach__title mark::before {
        bottom: 4px;

        height: 9px;
    }

    .fh-home-coach__text {
        grid-area: text;

        max-width: 315px;
        margin: 10px auto 0;

        text-align: center;

        font-size: 11.5px;
        line-height: 1.95;
    }

    .fh-home-coach__quote {
        display: none;
    }

    .fh-home-coach__meta {
        grid-area: meta;

        width: 100%;
        margin-top: 12px;

        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px;
    }

    .fh-home-coach__meta-item {
        min-width: 0;
        min-height: 34px;
        padding: 0 5px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 999px;
    }

    .fh-home-coach__meta-item strong {
        font-size: 10.5px;
        line-height: 1.4;
        white-space: nowrap;
    }

    .fh-home-coach__meta-item span {
        display: none;
    }

    /* Course Map */
    .fh-home-course-map {
        padding: 8px 0 48px;
    }

    .fh-home-course-map__card {
        padding: 22px 13px 16px;

        border-radius: 28px;
    }

    .fh-home-course-map__head {
        margin-bottom: 16px;
    }

    .fh-home-course-map__eyebrow {
        font-size: 10.5px;
    }

    .fh-home-course-map__title {
        font-size: 18px;
        line-height: 1.75;
        letter-spacing: normal;
    }

    .fh-home-course-map__text {
        max-width: 320px;
        margin-top: 8px;

        font-size: 12px;
        line-height: 1.95;
    }

    .fh-home-course-map__map {
        width: 360px;
        height: 360px;
        max-width: 100%;

        margin-top: 4px;
    }

    .fh-home-course-map__step {
        width: 108px;
    }

    .fh-home-course-map__bottom {
        margin-top: 10px;
        gap: 8px;
    }

    .fh-home-course-map__date,
    .fh-home-course-map__cta {
        width: 100%;
        min-height: 48px;
    }

    .fh-home-course-map__date {
        font-size: 12px;
    }

    .fh-home-course-map__cta {
        font-size: 12.5px;
    }

    /* Problem Fit */
 .fh-problem-fit {
    padding: 18px 0 58px;
}
  .fh-problem-fit__container {
    width: min(100% - 26px, 430px);

    grid-template-columns: 1fr;
    gap: 18px;
}

.fh-problem-fit__intro {
    position: sticky;
    top: 72px;
    z-index: 30;

    width: 100%;
    max-width: none;
    box-sizing: border-box;

    margin: 0;
    padding: 14px 16px 13px;

    text-align: center;

    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.82);

    background: rgba(255, 250, 244, 0.92);

    box-shadow:
        0 14px 34px rgba(73, 67, 61, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(16px);
}
    .fh-problem-fit__eyebrow {
        margin-inline: auto;
        margin-bottom: 8px;

        font-size: 10px;
    }

  .fh-problem-fit__title {
    font-size: 17.5px;
    font-weight: 950;
    line-height: 1.7;
    letter-spacing: normal;
}

    .fh-problem-fit__text {
        max-width: 330px;
        margin: 8px auto 0;

        font-size: 11.8px;
        line-height: 1.95;
    }

.fh-problem-fit__cards {
    position: relative;

    display: block;

    min-height: 0;
    padding-top: 0;
    padding-bottom: 34px;

    overflow: visible;
    isolation: isolate;
}


.fh-problem-fit__card {
    position: sticky;
    top: var(--fh-problem-card-sticky-top, 245px);
    z-index: 1;

    min-height: auto;
    margin-bottom: -38px;

    transform-origin: center top;

    will-change: transform;
}
    .fh-problem-fit__card + .fh-problem-fit__card {
        margin-top: 42px;
    }

    .fh-problem-fit__card:nth-child(1) {
        z-index: 1;

        transform: scale(0.982) translateY(0);
    }

    .fh-problem-fit__card:nth-child(2) {
        z-index: 2;

        transform: scale(0.988) translateY(8px);
    }

    .fh-problem-fit__card:nth-child(3) {
        z-index: 3;

        transform: scale(0.994) translateY(16px);
    }

    .fh-problem-fit__card:nth-child(4) {
        z-index: 4;

        transform: scale(1) translateY(24px);
    }

    .fh-problem-fit__card--main,
    .fh-problem-fit__card--pink,
    .fh-problem-fit__card--green,
    .fh-problem-fit__card--dark {
        min-height: auto;
        padding: 15px 15px 14px;

        border-radius: 25px;
    }

    .fh-problem-fit__card--pink,
    .fh-problem-fit__card--green,
    .fh-problem-fit__card--dark {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .fh-problem-fit__card-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;

        margin-bottom: 10px;
    }

    .fh-problem-fit__card-main-head {
        min-width: 0;

        display: flex;
        align-items: center;
        gap: 10px;
    }

    .fh-problem-fit__number {
        flex: 0 0 auto;

        width: 36px;
        height: 36px;

        border-radius: 14px;

        font-size: 11px;
    }

    .fh-problem-fit__label {
        flex: 0 0 auto;

        padding: 6px 10px;

        font-size: 9.5px;
        white-space: nowrap;
    }

    .fh-problem-fit__mini-head {
        display: flex;
        align-items: center;
        gap: 9px;
    }

    .fh-problem-fit__mini-icon {
        flex: 0 0 auto;

        width: 32px;
        height: 32px;

        border-radius: 13px;

        font-size: 16px;
    }

    .fh-problem-fit__card h3 {
        font-size: 12.8px;
        line-height: 1.65;
    }

    .fh-problem-fit__card--main h3 {
        margin: 0;

        font-size: 13.6px;
        line-height: 1.55;
    }

    .fh-problem-fit__card p {
        margin-top: 6px;

        font-size: 11.3px;
        line-height: 1.75;
    }

    .fh-problem-fit__card--main p {
        font-size: 11.5px;
        line-height: 1.85;
    }

    /* Join */
 .fh-home-join {
    position: relative;
    z-index: 2;

    padding: 2px 0 42px;

    background: var(--fh-home-bg);
}

    .fh-home-join__card {
        min-height: auto;
        padding: 18px 15px 15px;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 11px;

        border-radius: 24px;

        background:
            radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.18), transparent 30%),
            linear-gradient(135deg, #ea7688 0%, #dc6679 100%);

        text-align: center;
    }

    .fh-home-join__icon {
        display: none;
    }

    .fh-home-join__content {
        width: 100%;
    }

    .fh-home-join__title {
        max-width: 270px;
        margin-inline: auto;

        font-size: 16px;
        line-height: 1.8;
        letter-spacing: normal;
    }

    .fh-home-join__text {
        max-width: 260px;
        margin: 4px auto 0;

        font-size: 10.8px;
        line-height: 1.85;
    }

    .fh-home-join__stats {
        display: none;
    }

    .fh-home-join__button {
        width: min(100%, 232px);
        min-height: 43px;
        margin-top: 2px;

        background: linear-gradient(135deg, #3fbd91, #2f9f78);
        color: #ffffff;

        font-size: 12px;

        box-shadow:
            0 12px 24px rgba(47, 174, 131, 0.24),
            inset 0 1px 0 rgba(255, 255, 255, 0.18);
    }

    .fh-home-join__button span {
        width: 24px;
        height: 24px;

        background: rgba(255, 255, 255, 0.20);
        color: #ffffff;
    }
}

@media (max-width: 380px) {
    .fh-home-hero__visual {
        min-height: 360px;
    }

  .fh-home-hero__shape--main {
    width: 322px;
    height: 318px;
    border-radius: 58% 42% 47% 53% / 44% 58% 42% 56%;
}

    .fh-home-hero__image {
        width: auto;
        height: 98%;
        max-width: 90%;

        transform: none;
    }
    .fh-home-hero__title {
        font-size: 32px;
    }

    .fh-home-trust__item strong {
        font-size: 17px;
    }

    .fh-home-trust__item span {
        font-size: 9px;
    }

.fh-home-course-map__map {
    width: 340px;
    height: 350px;
}

.fh-home-course-map__step {
    width: 102px;
}

.fh-home-course-map__step--1 {
    right: 14px;
}
.fh-home-course-map__step--2 {
    top: 36px;
    left: 34px;
    width: 120px;
    text-align: right;
}

.fh-home-course-map__step--3 {
    top: 144px;
    left: 14px;
}

.fh-home-course-map__step--4 {
    top: 144px;
    right: 34px;
    width: 120px;
    text-align: left;
}
.fh-home-course-map__step--5 {
    top: 254px;
    right: 14px;
}

.fh-home-course-map__step--6 {
    top: 247px;
    left: 48px;
    width: 148px;
}
    

    .fh-home-join__button,
    .fh-home-join__button:hover {
        transition: none;
        transform: none;
    }
}

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

    .fh-home-hero__cta,
    .fh-home-hero__cta:hover {
        transition: none;
        transform: none;
    }
.fh-problem-fit__card {
        position: relative;
        top: auto;
        transform: none;
    }

    .fh-problem-fit__card + .fh-problem-fit__card {
        margin-top: 12px;
    }

}