/* =========================================================
   دوره Cardio Pro
   /public_html/courses/cardio-pro/style.css
========================================================= */

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

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

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

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

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

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

/* =========================
   Variables
========================= */

:root {
    --cp-bg: #F7F8FA;
    --cp-surface: #ffffff;

    --cp-text: #19335A;
    --cp-muted: #667085;
    --cp-light: #98a2b3;

    --cp-green: #F7AD19;
    --cp-green-dark: #F7AD19;
    --cp-green-deep: #8A6500;
    --cp-green-soft: #FFF8D1;

    --cp-purple: #19335A;

    --cp-border: #e7ecf2;
    --cp-border-green: rgba(247, 173, 25, 0.20);

    --cp-container: 1240px;

    --cp-radius-xl: 34px;
    --cp-radius-lg: 28px;
    --cp-radius-md: 22px;

    --cp-shadow-hero:
        0 22px 60px rgba(31, 41, 55, 0.09);

    --cp-shadow-card:
        0 18px 44px rgba(31, 41, 55, 0.07);
}

/* =========================
   Base
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 94% 12%,
            rgba(247, 173, 25, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 5% 36%,
            rgba(17, 24, 39, 0.045),
            transparent 24%
        ),
        var(--cp-bg);

    color: var(--cp-text);

    font-family: "Peyda", system-ui, sans-serif;
    font-weight: 400;

    direction: rtl;
}

button,
a,
input,
textarea,
select {
    font-family: inherit;
}

a {
    color: inherit;
}

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

button {
    font: inherit;
}

.cp-page {
    min-height: 100vh;
    padding: 22px 16px 72px;
}

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

/* =========================
   Hero
========================= */

.cp-hero {
    position: relative;
    isolation: isolate;

    min-height: 540px;
    margin-top: 8px;
    padding: 34px;

    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, 0.95fr);

    grid-template-areas:
        "content media";

    align-items: center;
    gap: 44px;

    overflow: hidden;

    border: 1px solid rgba(223, 230, 237, 0.92);
    border-radius: var(--cp-radius-xl);

    background:
        radial-gradient(
            circle at 92% 12%,
            rgba(247, 173, 25, 0.11),
            transparent 30%
        ),
        radial-gradient(
            circle at 8% 15%,
            rgba(17, 24, 39, 0.055),
            transparent 28%
        ),
        rgba(255, 255, 255, 0.90);

    box-shadow:
        var(--cp-shadow-hero),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.cp-hero::before {
    content: "";

    position: absolute;
    top: -145px;
    right: -135px;
    z-index: -2;

    width: 390px;
    height: 390px;

    border-radius: 50%;

    background: rgba(247, 173, 25, 0.08);

    pointer-events: none;
}

.cp-hero::after {
    content: "";

    position: absolute;
    right: 42%;
    bottom: -235px;
    z-index: -2;

    width: 510px;
    height: 510px;

    border-radius: 50%;

    background: rgba(17, 24, 39, 0.04);

    pointer-events: none;
}

.cp-hero__decor {
    position: absolute;
    z-index: -1;

    pointer-events: none;
}

.cp-hero__decor--one {
    top: 44px;
    right: 45%;

    width: 84px;
    height: 84px;

    border: 14px solid rgba(247, 173, 25, 0.10);
    border-radius: 50%;
}

.cp-hero__decor--two {
    right: 48%;
    bottom: 42px;

    width: 76px;
    height: 76px;

    background-image:
        radial-gradient(
            rgba(17, 24, 39, 0.17) 1.7px,
            transparent 1.7px
        );

    background-size: 13px 13px;
}

.cp-hero__content {
    grid-area: content;

    position: relative;
    z-index: 2;

    min-width: 0;
    padding: 14px 14px 14px 4px;
}

.cp-hero__eyebrow {
    width: fit-content;
    min-height: 38px;

    margin-bottom: 18px;
    padding: 6px 8px 6px 15px;

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

    border: 1px solid var(--cp-border-green);
    border-radius: 999px;

    background: var(--cp-green-soft);
    color: var(--cp-green-deep);

    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

.cp-hero__eyebrow-icon {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #ffffff;
    color: var(--cp-green-dark);
}

.cp-hero__eyebrow-icon svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cp-hero__title {
    max-width: 650px;
    margin: 0;

    color: var(--cp-text);

    font-size: clamp(38px, 4.1vw, 59px);
    font-weight: 800;
    line-height: 1.34;
    letter-spacing: -1.4px;
}

.cp-hero__title span {
    position: relative;
    isolation: isolate;

    display: inline-block;

    color: var(--cp-green-deep);
    font-size: 0.78em;
}

.cp-hero__title span::after {
    display: none;
}

.cp-hero__lead {
    max-width: 680px;
    margin: 20px 0 0;

    color: var(--cp-muted);

    font-size: 15.5px;
    font-weight: 400;
    line-height: 2.05;
}

.cp-hero__conditions {
    margin-top: 24px;

    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.cp-hero__conditions > span {
    min-height: 35px;
    padding: 0 11px;

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

    border: 1px solid #e8edf2;
    border-radius: 12px;

    background: #ffffff;
    color: #475467;

    font-size: 12px;
    font-weight: 600;

    box-shadow:
        0 7px 20px rgba(39, 57, 83, 0.045);
}

.cp-hero__conditions svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: var(--cp-green-dark);
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cp-hero__actions {
    margin-top: 28px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.cp-button {
    min-height: 50px;
    padding: 0 20px;

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

    border-radius: 16px;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.cp-button--primary {
    background: #F7AD19;
    color: #ffffff;

    box-shadow:
        0 15px 30px rgba(17, 24, 39, 0.20);
}

.cp-button--primary:hover {
    background: #F7AD19;

    transform: translateY(-2px);

    box-shadow:
        0 19px 34px rgba(17, 24, 39, 0.28);
}

.cp-button svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;

    transform: rotate(180deg);
}

.cp-hero__helper {
    position: relative;

    padding-right: 20px;

    color: var(--cp-muted);

    font-size: 13px;
    font-weight: 600;
}

.cp-hero__helper::before {
    content: "";

    position: absolute;
    top: 50%;
    right: 0;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--cp-green);

    box-shadow:
        0 0 0 5px rgba(247, 173, 25, 0.13);

    transform: translateY(-50%);
}

/* =========================
   Hero Cover
========================= */

.cp-hero__media {
    grid-area: media;

    position: relative;
    z-index: 2;

    min-width: 0;

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

.cp-hero__image-card {
    position: relative;

    width: min(100%, 360px);
    aspect-ratio: 4 / 5;
    padding: 2px;

    border-radius: 34px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(255, 235, 224, 0.84)
        );

    box-shadow:
        0 24px 60px rgba(247, 173, 25, 0.16),
        0 8px 20px rgba(31, 41, 55, 0.06);
}

.cp-hero__picture {
    width: 100%;
    height: 100%;

    display: block;
    overflow: hidden;

    border-radius: 27px;

    background: #f3f6f1;
}

.cp-hero__image {
    width: 100%;
    height: 100%;

    display: block;

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

    border-radius: 27px;

    background: #f3f6f1;

    transition:
        transform 0.65s ease;
}

.cp-hero:hover .cp-hero__image {
    transform: scale(1.02);
}

/* =========================
   Divider
========================= */

.cp-course-section-divider {
    position: relative;

    height: 14px;
    margin: 12px 0 8px;

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

.cp-course-section-divider::before {
    content: "";

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(247, 173, 25, 0.16) 18%,
            rgba(17, 24, 39, 0.20) 50%,
            rgba(247, 173, 25, 0.16) 82%,
            transparent 100%
        );
}

.cp-course-section-divider span {
    position: absolute;

    width: 42px;
    height: 7px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--cp-green),
            var(--cp-green-deep)
        );

    box-shadow:
        0 6px 18px rgba(17, 24, 39, 0.18);
}

/* =========================
   Main Layout
   دسکتاپ:
   جزئیات سمت راست
   قیمت سمت چپ
========================= */

.cp-course-main-layout {
    position: relative;

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

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

    gap: 18px;
    align-items: start;
}

.cp-course-main-layout__details {
    grid-column: 1;
    grid-row: 1;

    width: 100%;
    min-width: 0;
}

.cp-course-main-layout__sidebar {
    grid-column: 2;
    grid-row: 1;

    width: 100%;
    min-width: 0;

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

    align-self: start;
}

@media (min-width: 900px) {
    .cp-course-main-layout__sidebar {
        position: sticky;
        top: 108px;
        z-index: 20;
    }
}

/* =========================
   Price Card
========================= */

.cp-course-price {
    width: 100%;
    margin: 0;
}

.cp-course-price__card {
    width: 100%;
    padding: 12px;

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

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

    background:
        radial-gradient(
            circle at 92% 20%,
            rgba(247, 173, 25, 0.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 8% 18%,
            rgba(17, 24, 39, 0.07),
            transparent 28%
        ),
        rgba(255, 255, 255, 0.88);

    box-shadow:
        0 18px 44px rgba(31, 41, 55, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.cp-course-price__status {
    width: fit-content;
    margin-bottom: 2px;
    padding: 7px 12px;

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

    border-radius: 999px;

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

.cp-course-price__status--open {
    background: rgba(226, 250, 215, 0.96);
    color: var(--cp-green-deep);
}

.cp-course-price__buybox {
    width: 100%;
    padding: 10px 14px;

    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(247, 253, 243, 0.98),
            rgba(255, 255, 255, 0.98)
        );

    box-shadow:
        0 12px 28px rgba(17, 24, 39, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.cp-course-price__buybox-top {
    min-height: 42px;

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

.cp-course-price__icon-box {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;

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

    border-radius: 15px;

    background: rgba(226, 250, 215, 0.78);
}

.cp-course-price__icon {
    width: 24px;
    height: 24px;

    display: block;

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

.cp-course-price__amount {
    min-width: 0;
    flex: 1 1 auto;

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

.cp-course-price__amount-value {
    margin-right: auto;

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

    direction: ltr;
    text-align: left;

    color: var(--cp-green-deep);

    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
}

.cp-course-price__amount-value span {
    color: #6b7280;

    font-size: 13px;
    font-weight: 700;
}

.cp-course-price__button {
    width: 100%;
    min-height: 48px;
    padding: 0 24px;

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

    border: 0;
    outline: none;
    appearance: none;
    border-radius: 16px;

    background: #F7AD19;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    box-shadow:
        0 16px 34px rgba(17, 24, 39, 0.22),
        0 8px 18px rgba(247, 173, 25, 0.15);

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.cp-course-price__button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 20px 42px rgba(17, 24, 39, 0.26),
        0 10px 22px rgba(247, 173, 25, 0.18);
}

.cp-course-price__button:focus-visible {
    outline: 3px solid rgba(17, 24, 39, 0.22);
    outline-offset: 4px;
}

.cp-course-price__button:disabled,
.cp-course-price__button[aria-disabled="true"] {
    cursor: default;
}

.cp-course-price__message {
    min-height: 0;
    margin-top: 0;
    padding-inline: 4px;

    color: #7b8493;

    font-size: 11px;
    font-weight: 500;
    line-height: 1.9;
    text-align: center;
}

.cp-course-price__message:empty {
    display: none;
}

/* =========================
   Course Details
========================= */

.cp-course-details {
    width: 100%;
    margin: 0;
    padding: 0;

    overflow: hidden;

    border: 1px solid rgba(17, 24, 39, 0.09);
    border-radius: 30px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(247, 173, 25, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 15%,
            rgba(17, 24, 39, 0.05),
            transparent 30%
        ),
        rgba(255, 255, 255, 0.80);

    box-shadow:
        var(--cp-shadow-card),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);

    scroll-margin-top: 95px;
}

.cp-course-details__grid {
    width: 100%;
    padding: 18px 10px;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 0;
}

.cp-course-details__card {
    position: relative;

    min-width: 0;
    min-height: 132px;
    padding: 10px 8px;

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

    border: 0;
    border-radius: 0;

    background: transparent;
    box-shadow: none;

    text-align: center;
}

.cp-course-details__card::before,
.cp-course-details__card::after {
    content: none;
}

.cp-course-details__card:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 23px;
    bottom: 23px;
    left: 0;

    width: 1px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(17, 24, 39, 0.16),
            transparent
        );
}

.cp-course-details__icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;

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

    border-radius: 0;

    background: transparent;
}

.cp-course-details__icon img,
.cp-course-details__icon-img {
    width: 25px;
    height: 25px;

    display: block;

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

    opacity: 0.74;
}

.cp-course-details__icon-img--support {
    width: 29px;
    height: 29px;
}

.cp-course-details__text {
    min-width: 0;

    text-align: center;
}

.cp-course-details__item-title {
    margin: 0;

    color: #202433;

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

.cp-course-details__value {
    margin: 1px 0 0;

    color: #4b5563;

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

/* =========================================================
   Course Description
   کارت توضیحات و منوی سریع
========================================================= */

.cp-course-anchor-section {
    scroll-margin-top: 90px;
}

#courseDescription,
#courseSessions,
#courseComments {
    scroll-margin-top: 90px;
}


/* =========================================================
   Description Layout
   توضیحات داخل ستون اصلی دوره قرار دارد
========================================================= */

.cp-course-description {
    width: 100%;
    max-width: none;
    margin: 15px 0 0;
}


/* =========================================================
   Description Card
========================================================= */

.cp-course-description__card {
    position: relative;

    width: 100%;
    padding: 28px;

    overflow: hidden;

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

    background:
        radial-gradient(
            circle at 94% 8%,
            rgba(247, 173, 25, 0.10),
            transparent 26%
        ),
        radial-gradient(
            circle at 8% 14%,
            rgba(17, 24, 39, 0.06),
            transparent 28%
        ),
        rgba(255, 255, 255, 0.88);

    box-shadow:
        0 18px 44px rgba(31, 41, 55, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.cp-course-description__card::before {
    content: "";

    position: absolute;
    top: -72px;
    left: -72px;

    width: 170px;
    height: 170px;

    border-radius: 999px;

    background: rgba(247, 173, 25, 0.08);

    pointer-events: none;
}


/* =========================================================
   Course Quick Navigation
========================================================= */

.cp-course-quicknav {
    position: relative;
    z-index: 2;

    width: 100%;
    margin: 0 0 22px;
    padding: 10px;

    border: 1px solid rgba(17, 24, 39, 0.09);
    border-radius: 22px;

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

    box-shadow: none;
}

.cp-course-quicknav__nav {
    width: 100%;

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

    padding: 0;

    border-radius: 0;

    background: transparent;
    box-shadow: none;
}

.cp-course-quicknav__link {
    min-width: 0;
    min-height: 44px;
    padding: 0 16px;

    flex: 1 1 0;

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

    border: 1px solid rgba(17, 24, 39, 0.11);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.86);
    color: #374151;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;

    box-shadow:
        0 8px 18px rgba(31, 41, 55, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);

    transition:
        transform 0.2s ease,
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.cp-course-quicknav__icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;

    margin-left: 7px;

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

    transition:
        width 0.2s ease,
        flex-basis 0.2s ease,
        margin 0.2s ease,
        opacity 0.2s ease;
}

.cp-course-quicknav__icon img {
    width: 20px;
    height: 20px;

    display: block;

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

.cp-course-quicknav__text {
    display: inline-block;

    white-space: nowrap;
}

.cp-course-quicknav__link:hover {
    color: #ffffff;

    border-color: transparent;

    background: #F7AD19;

    box-shadow:
        0 12px 24px rgba(17, 24, 39, 0.18),
        0 6px 14px rgba(17, 24, 39, 0.12);

    transform: translateY(-1px);
}


/* گزینه فعال */

.cp-course-quicknav__link.is-active {
    color: #ffffff;

    border-color: transparent;

    background: #F7AD19;

    box-shadow:
        0 12px 24px rgba(17, 24, 39, 0.18),
        0 6px 14px rgba(17, 24, 39, 0.12);
}


/* مشابه دوره یک‌ماهه، آیکن گزینه فعال جمع می‌شود */

.cp-course-quicknav__link.is-active
.cp-course-quicknav__icon {
    width: 0;
    flex-basis: 0;
    margin-left: 0;

    overflow: hidden;

    opacity: 0;
}


/* =========================================================
   Description Heading
========================================================= */

.cp-course-description__head {
    position: relative;
    z-index: 1;

    margin-bottom: 14px;
}

.cp-course-description__title {
    margin: 0;

    color: var(--cp-text);

    font-size: 23px;
    font-weight: 700;
    line-height: 1.7;
}

.cp-description-divider {
    width: 100%;
    margin: 4px 0 18px;

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

.cp-description-divider::before,
.cp-description-divider::after {
    content: "";

    height: 1px;
    flex: 1 1 auto;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(17, 24, 39, 0.22),
            rgba(17, 24, 39, 0.14),
            transparent
        );
}

.cp-description-divider
.cp-course-description__title {
    flex: 0 0 auto;

    margin: 0;

    line-height: 1;
}

.cp-description-divider
.cp-course-description__title span {
    padding: 7px 16px;

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

    border: 1px solid rgba(17, 24, 39, 0.13);
    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            rgba(240, 253, 244, 0.94),
            rgba(255, 255, 255, 0.94)
        );

    color: var(--cp-green-deep);

    font-size: 18px;
    font-weight: 800;
    line-height: 1.7;
    letter-spacing: 0;
    word-spacing: 0.14em;
    white-space: nowrap;

    box-shadow:
        0 10px 24px rgba(17, 24, 39, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}


/* =========================================================
   Description Mobile
========================================================= */

@media (max-width: 820px) {

    .cp-course-anchor-section,
    #courseDescription,
    #courseSessions,
    #courseComments {
        scroll-margin-top: 76px;
    }

    .cp-course-description {
        width: 100%;
        margin-top: 0;
        padding-top: 14px;
    }

    .cp-course-description__card {
        padding: 16px;

        border-radius: 22px;
    }

    .cp-course-quicknav {
        width: 100%;
        max-width: none;

        margin: 0 0 18px;
        padding: 12px;

        border-radius: 18px;
    }

    .cp-course-quicknav__nav {
        gap: 6px;
        padding: 6px;

        border-radius: 18px;
    }

    .cp-course-quicknav__link {
        min-height: 38px;
        padding: 0 8px;

        border-radius: 14px;

        font-size: 11px;
    }

    .cp-course-quicknav__icon {
        width: 18px;
        height: 18px;
        flex-basis: 18px;

        margin-left: 5px;
    }

    .cp-course-quicknav__icon img {
        width: 17px;
        height: 17px;
    }

    .cp-course-description__title {
        font-size: 17px;
    }

}


@media (max-width: 520px) {

    .cp-description-divider {
        gap: 9px;
        margin: 2px 0 14px;
    }

    .cp-description-divider
    .cp-course-description__title span {
        padding: 6px 12px;

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

}



/* =========================================================
   Description Content
========================================================= */

.cp-course-description__block {
    position: relative;
    z-index: 1;
}

.cp-course-description__subtitle {
    position: relative;

    margin: 0 0 10px;
    padding-right: 16px;

    color: var(--cp-text);

    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
}

.cp-course-description__subtitle::before {
    content: "";

    position: absolute;
    top: 13px;
    right: 0;

    width: 7px;
    height: 7px;

    border-radius: 999px;

    background: #F7AD19;

    box-shadow:
        0 0 0 5px rgba(17, 24, 39, 0.10);
}

.cp-course-description__text {
    max-width: 980px;
    margin: 0;

    color: #4b5563;

    font-size: 14px;
    font-weight: 500;
    line-height: 2.25;
}

.cp-course-description__text +
.cp-course-description__text {
    margin-top: 10px;
}


/* =========================================================
   Description Divider
========================================================= */

.cp-course-description__divider {
    position: relative;
    z-index: 1;

    height: 18px;
    margin: 24px 0;

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

.cp-course-description__divider::before {
    content: "";

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(247, 173, 25, 0.15) 18%,
            rgba(17, 24, 39, 0.20) 50%,
            rgba(17, 24, 39, 0.13) 82%,
            transparent 100%
        );
}

.cp-course-description__divider span {
    position: absolute;

    width: 36px;
    height: 7px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--cp-green),
            var(--cp-green-deep)
        );

    box-shadow:
        0 8px 20px rgba(17, 24, 39, 0.17);
}


/* =========================================================
   Includes Stack
========================================================= */

.cp-includes-stack {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 904px;

    margin: 0 auto;
}

.cp-includes-head {
    position: relative;
    z-index: 20;

    min-height: 46px;
    margin-bottom: 39px;
    padding-inline: 8px;

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

.cp-includes-title-wrap {
    min-width: 0;

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

.cp-includes-head-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;

    border-radius: 999px;

    background: #F7AD19;
    box-shadow: 0 0 0 4px rgba(247, 173, 25, 0.14);
}

.cp-includes-title {
    margin: 0;

    color: var(--cp-text);

    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    white-space: nowrap;
}

.cp-includes-cards {
    position: relative;
    z-index: 1;

    min-height: 96px;
}

.cp-include-card {
    position: relative;

    width: 100%;
    min-height: 50px;
    padding: 12px 16px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;

    overflow: hidden;

    border: 1px solid rgba(17, 24, 39, 0.15);
    border-radius: 17px;

    background: #ffffff;

    box-shadow: none;

    transition:
        transform 0.38s cubic-bezier(0.68, -0.55, 0.27, 1.55),
        margin 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.cp-include-card::after {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 5px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            var(--cp-green),
            var(--cp-green-deep)
        );

    opacity: 0;

    transition:
        opacity 0.3s ease;
}

.cp-include-card:hover {
    border-color: rgba(17, 24, 39, 0.25);
    box-shadow: none;
}

.cp-include-card:hover::after {
    opacity: 1;
}

.cp-include-card p {
    margin: 0;

    color: #37394d;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.85;
}

.cp-include-card__check {
    position: relative;

    width: 32px;
    height: 32px;
    flex: 0 0 32px;

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

    border-radius: 999px;

    background: rgba(17, 24, 39, 0.035);
}

.cp-include-card__check::before {
    content: "";

    position: absolute;
    inset: 5px;

    border-radius: 999px;

    background: linear-gradient(135deg, #F7AD19, #E6A000);

    box-shadow: 0 6px 14px rgba(247, 173, 25, 0.28);
}

.cp-include-card__check::after {
    content: "";

    position: absolute;
    top: 45%;
    left: 50%;

    width: 9px;
    height: 5px;

    border-bottom: 2.2px solid #ffffff;
    border-left: 2.2px solid #ffffff;
    border-radius: 1px;

    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}


/* کارت‌ها همیشه باز هستند. */
.cp-includes-cards {
    min-height: 0;
}

.cp-include-card {
    margin-top: 0;
    margin-bottom: 12px;

    transform: none;
}


/* =========================================================
   Access Cards
========================================================= */

.cp-course-access {
    width: 100%;
    margin-top: 18px;

    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}

.cp-course-access__item {
    min-width: 0;
    min-height: 112px;
    padding: 15px;

    display: flex;
    align-items: flex-start;
    gap: 11px;

    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(246, 253, 242, 0.95),
            rgba(255, 255, 255, 0.96)
        );

    box-shadow:
        0 10px 24px rgba(31, 41, 55, 0.045);
}

.cp-course-access__icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--cp-green),
            var(--cp-green-deep)
        );

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;
}

.cp-course-access__item div {
    min-width: 0;
}

.cp-course-access__item strong {
    display: block;

    color: var(--cp-text);

    font-size: 13px;
    font-weight: 700;
    line-height: 1.8;
}

.cp-course-access__item p {
    margin: 4px 0 0;

    color: #667085;

    font-size: 10.5px;
    font-weight: 500;
    line-height: 1.9;
}


/* =========================================================
   Read More
========================================================= */

.cp-course-description__toggle {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.cp-course-description__more {
    position: relative;

    max-height: 240px;
    overflow: hidden;

    transition:
        max-height 0.48s ease;
}

.cp-course-description__more::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;

    height: 120px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.88) 58%,
            rgba(255, 255, 255, 1)
        );

    pointer-events: none;
}

.cp-course-description__toggle:checked ~
.cp-course-description__more {
    max-height: 1800px;
}

.cp-course-description__toggle:checked ~
.cp-course-description__more::after {
    display: none;
}

.cp-course-description__more-button {
    position: relative;
    z-index: 3;

    width: fit-content;
    min-height: 42px;
    margin: -47px auto 0;
    padding: 0 18px;

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

    border: 1px solid rgba(17, 24, 39, 0.15);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.92);
    color: var(--cp-green-deep);

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 12px 28px rgba(17, 24, 39, 0.10);

    cursor: pointer;

    transition:
        transform 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}

.cp-course-description__more-button:hover {
    color: #ffffff;

    background: #F7AD19;

    transform: translateY(-1px);
}

.cp-course-description__more-icon {
    width: 22px;
    height: 22px;

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

    border-radius: 999px;

    background: rgba(17, 24, 39, 0.10);

    transition:
        transform 0.25s ease;
}

.cp-course-description__more-text--close {
    display: none;
}

.cp-course-description__toggle:checked ~
.cp-course-description__more-button
.cp-course-description__more-text--open {
    display: none;
}

.cp-course-description__toggle:checked ~
.cp-course-description__more-button
.cp-course-description__more-text--close {
    display: inline;
}

.cp-course-description__toggle:checked ~
.cp-course-description__more-button
.cp-course-description__more-icon {
    transform: rotate(180deg);
}

.cp-course-description__toggle:checked ~
.cp-course-description__more-button {
    margin-top: 22px;
}


/* =========================================================
   Description Mobile
========================================================= */

@media (max-width: 820px) {

    .cp-course-description__subtitle {
        margin-bottom: 8px;
        padding-right: 20px;

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

    .cp-course-description__subtitle::before {
        top: 11px;
        right: 5px;

        width: 5px;
        height: 5px;

        box-shadow:
            0 0 0 4px rgba(17, 24, 39, 0.10);
    }

    .cp-course-description__text {
        font-size: 12.5px;
        line-height: 2.1;
    }

    .cp-course-description__divider {
        height: 16px;
        margin: 18px 0;
    }

    .cp-course-description__divider span {
        width: 30px;
        height: 6px;
    }

    .cp-includes-title {
        font-size: 14px;
    }

    .cp-include-card {
        min-height: 50px;
        padding: 11px 12px;

        gap: 9px;

        border-radius: 15px;
    }

    .cp-include-card p {
        font-size: 12.5px;
        line-height: 1.8;
    }

    .cp-include-card__check {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .cp-course-access {
        grid-template-columns: 1fr;

        gap: 9px;
    }

    .cp-course-access__item {
        min-height: auto;
        padding: 12px;

        border-radius: 16px;
    }

    .cp-course-description__more {
        max-height: 260px;
    }

    .cp-course-description__more-button {
        min-height: 38px;
        margin-top: -36px;
        padding: 0 14px;

        font-size: 11px;
    }

    .cp-course-description__toggle:checked ~
    .cp-course-description__more-button {
        margin-top: 18px;
    }

}


/* =========================================================
   FIT BEL Movements
   +۳۰ حرکت تخصصی شکم و پهلو
========================================================= */

.cp-moves {
    width: 100%;
    margin-top: 15px;
    scroll-margin-top: 90px;
}

.cp-moves__card {
    position: relative;
    isolation: isolate;

    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    align-items: center;
    gap: 26px;

    min-height: 210px;
    padding: 28px 30px;

    overflow: hidden;

    border: 1px solid rgba(247, 173, 25, 0.14);
    border-radius: 30px;

    background:
        radial-gradient(circle at 92% 12%, rgba(247, 173, 25, 0.13), transparent 31%),
        radial-gradient(circle at 8% 88%, rgba(17, 24, 39, 0.09), transparent 30%),
        #ffffff;

    box-shadow:
        0 18px 44px rgba(23, 32, 51, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.cp-moves__card::after {
    content: "";
    position: absolute;
    left: -76px;
    bottom: -104px;
    z-index: -1;

    width: 250px;
    height: 250px;

    border: 30px solid rgba(17, 24, 39, 0.055);
    border-radius: 50%;
}

.cp-moves__number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;

    width: 150px;
    height: 150px;

    border: 1px solid rgba(247, 173, 25, 0.18);
    border-radius: 34px;

    background: #fff3ed;
    color: #F7AD19;

    font-size: 62px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;

    box-shadow:
        0 18px 36px rgba(247, 173, 25, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.cp-moves__number span {
    color: #F7AD19;
    font-size: 0.8em;
    font-weight: 800;
}

.cp-moves__content {
    min-width: 0;
}

.cp-moves__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

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

    border: 1px solid rgba(17, 24, 39, 0.15);
    border-radius: 999px;

    background: #eefbfd;
    color: #168c99;

    font-size: 10px;
    font-weight: 800;
}

.cp-moves__title {
    margin: 11px 0 0;

    color: var(--cp-text);
    font-size: clamp(23px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.65;
    letter-spacing: -0.035em;
}

.cp-moves__text {
    margin: 5px 0 0;

    color: #596273;
    font-size: 14px;
    font-weight: 600;
    line-height: 2;
}

.cp-moves__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 17px;
}

.cp-moves__features span {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 0 10px;

    border: 1px solid rgba(247, 173, 25, 0.12);
    border-radius: 10px;

    background: #fff8f4;
    color: #5f6775;

    font-size: 10.5px;
    font-weight: 700;
}

@media (max-width: 820px) {
    .cp-moves {
        margin-top: 14px;
        scroll-margin-top: 76px;
    }

    .cp-moves__card {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 15px;

        min-height: 164px;
        padding: 18px 15px;

        border-radius: 23px;
    }

    .cp-moves__number {
        width: 90px;
        height: 105px;

        border-radius: 23px;

        font-size: 42px;
    }

    .cp-moves__number span {
        font-size: 24px;
    }

    .cp-moves__eyebrow {
        min-height: 25px;
        padding-inline: 9px;
        font-size: 8.5px;
    }

    .cp-moves__title {
        margin-top: 8px;
        font-size: 16px;
        line-height: 1.75;
    }

    .cp-moves__text {
        margin-top: 3px;
        font-size: 10.5px;
        line-height: 1.9;
    }

    .cp-moves__features {
        gap: 5px;
        margin-top: 10px;
    }

    .cp-moves__features span {
        min-height: 26px;
        padding-inline: 7px;
        border-radius: 8px;
        font-size: 8px;
    }
}

@media (max-width: 420px) {
    .cp-moves__card {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 11px;
        padding: 15px 12px;
    }

    .cp-moves__number {
        width: 74px;
        height: 96px;
        font-size: 35px;
    }

    .cp-moves__number span {
        font-size: 20px;
    }

    .cp-moves__title {
        font-size: 14px;
    }

    .cp-moves__features span:last-child {
        display: none;
    }
}

/* =========================================================
   Anomalies Slider
========================================================= */

.cp-anomalies {
    width: 100%;
    margin-top: 15px;
}

@media (min-width: 900px) {
    .cp-anomalies {
        width: calc(100% - 378px);
        max-width: none;

        margin-right: 0;
        margin-left: auto;
    }
}


/* =========================================================
   Anomalies Card
========================================================= */

.cp-anomalies__card {
    position: relative;

    width: 100%;
    padding: 28px 22px 24px;

    overflow: hidden;

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

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(247, 173, 25, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 7% 14%,
            rgba(17, 24, 39, 0.055),
            transparent 30%
        ),
        rgba(255, 255, 255, 0.88);

    box-shadow:
        0 18px 44px rgba(31, 41, 55, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.cp-anomalies__card::before {
    content: "";

    position: absolute;
    top: -85px;
    left: -85px;

    width: 190px;
    height: 190px;

    border-radius: 999px;

    background: rgba(247, 173, 25, 0.06);

    pointer-events: none;
}


/* =========================================================
   Anomalies Header
========================================================= */

.cp-anomalies__head {
    position: relative;
    z-index: 2;

    max-width: 680px;
    margin: 0 auto 24px;

    text-align: center;
}

.cp-anomalies__eyebrow {
    width: fit-content;
    min-height: 28px;
    margin: 0 auto;
    padding: 0 12px;

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

    border: 1px solid rgba(17, 24, 39, 0.13);
    border-radius: 999px;

    background: rgba(240, 253, 244, 0.90);
    color: var(--cp-green-deep);

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

.cp-anomalies__title {
    margin: 11px 0 0;

    color: var(--cp-text);

    font-size: 24px;
    font-weight: 800;
    line-height: 1.7;
    letter-spacing: 0;
    word-spacing: 0.12em;
}

.cp-anomalies__description {
    max-width: 540px;
    margin: 6px auto 0;

    color: #667085;

    font-size: 12.5px;
    font-weight: 500;
    line-height: 2;
}


/* =========================================================
   Slider Structure
========================================================= */

.cp-anomalies__slider {
    position: relative;

    padding-inline: 34px;
}

.cp-anomalies__viewport {
    position: relative;

    overflow: hidden;

    border-radius: 26px;

    direction: rtl;
    touch-action: pan-y;

    cursor: grab;
}

.cp-anomalies__viewport:active {
    cursor: grabbing;
}

.cp-anomalies__track {
    display: flex;
    align-items: stretch;
    gap: 14px;

    padding: 4px 0 8px;

    direction: rtl;

    will-change: transform;

    transform: translate3d(0, 0, 0);

    transition:
        transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}


/* =========================================================
   Anomaly Card
========================================================= */

.cp-anomalies__item {
    width: calc((100% - 28px) / 3);
    min-width: calc((100% - 28px) / 3);

    display: flex;
    flex-direction: column;

    overflow: hidden;

    direction: rtl;

    border: 1px solid rgba(209, 218, 207, 0.86);
    border-radius: 22px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98),
            rgba(250, 253, 248, 0.97)
        );

    box-shadow:
        0 10px 26px rgba(41, 70, 46, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);

    user-select: none;
}
.cp-anomalies__visual {
    position: relative;

    width: auto;
    height: auto;
    aspect-ratio: 16 / 9;

    margin: 8px 8px 0;

    display: grid;
    place-items: center;

    overflow: hidden;

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

    background:
        radial-gradient(
            circle at 20% 18%,
            rgba(255, 255, 255, 0.85),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            rgba(255, 235, 224, 0.88),
            rgba(244, 240, 255, 0.72)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 7px 18px rgba(49, 75, 52, 0.045);
}
.cp-anomalies__visual img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

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

    pointer-events: none;

    transition:
        transform 420ms ease;
}

.cp-anomalies__item:hover
.cp-anomalies__visual img {
    transform: scale(1.035);
}

.cp-anomalies__number {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;

    min-width: 30px;
    height: 25px;
    padding: 0 8px;

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

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

    background: rgba(255, 255, 255, 0.84);
    color: var(--cp-green-deep);

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

    backdrop-filter: blur(10px);
}

.cp-anomalies__content {
    flex: 1;

    padding: 14px 14px 16px;

    display: flex;
    flex-direction: column;
}

.cp-anomalies__item-title {
    margin: 0;

    color: var(--cp-text);

    font-size: 15px;
    font-weight: 800;
    line-height: 1.8;
}

.cp-anomalies__item-text {
    margin: 6px 0 0;

    color: #667085;

    font-size: 10.5px;
    font-weight: 500;
    line-height: 2;
}

.cp-anomalies__item-meta {
    width: fit-content;
    min-height: 25px;
    margin-top: 12px;
    padding: 0 9px;

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

    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 999px;

    background: rgba(240, 253, 244, 0.76);
    color: var(--cp-green-deep);

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


/* =========================================================
   Slider Arrows
========================================================= */

.cp-anomalies__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 1px solid rgba(38, 75, 48, 0.08);
    border-radius: 999px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98),
            rgba(247, 252, 245, 0.94)
        );

    color: var(--cp-green-deep);

    box-shadow:
        0 10px 22px rgba(49, 75, 52, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);

    backdrop-filter: blur(12px);

    cursor: pointer;

    transform: translateY(-50%);

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

.cp-anomalies__arrow svg {
    width: 19px;
    height: 19px;

    display: block;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cp-anomalies__arrow:hover {
    border-color: rgba(17, 24, 39, 0.20);

    background:
        linear-gradient(
            180deg,
            #ffffff,
            rgba(240, 253, 244, 0.98)
        );

    box-shadow:
        0 14px 28px rgba(17, 24, 39, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.99);

    transform:
        translateY(calc(-50% - 2px));
}

.cp-anomalies__arrow--prev {
    right: 4px;
}

.cp-anomalies__arrow--next {
    left: 4px;
}


/* =========================================================
   Slider Dots
========================================================= */

.cp-anomalies__dots {
    margin-top: 18px;

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

.cp-anomalies__dot {
    width: 7px;
    height: 7px;
    padding: 0;

    border: 0;
    border-radius: 999px;

    background: rgba(38, 75, 48, 0.18);

    cursor: pointer;

    transition:
        width 200ms ease,
        background 200ms ease;
}

.cp-anomalies__dot.is-active {
    width: 22px;

    background: var(--cp-green-deep);
}

/* =========================================================
   Tablet and Mobile
========================================================= */

@media (max-width: 900px) {

    .cp-anomalies {
        width: 100%;
        margin-top: 14px;
    }

    .cp-anomalies__card {
        padding: 20px 16px 22px;

        border-radius: 24px;
    }

    .cp-anomalies__head {
        margin-bottom: 20px;
    }

    .cp-anomalies__title {
        margin-top: 9px;

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

    .cp-anomalies__description {
        max-width: 330px;

        font-size: 11px;
        line-height: 2;
    }

    .cp-anomalies__slider {
        padding-inline: 24px;
    }

    .cp-anomalies__viewport {
        margin-inline: -24px;
        padding-inline: 24px;

        overflow: hidden;

        border-radius: 0;
    }

    .cp-anomalies__track {
        gap: 10px;
        padding: 3px 0 8px;
    }

    .cp-anomalies__item {
        width: 72%;
        min-width: 72%;

        border-radius: 20px;
    }

    .cp-anomalies__visual {
        position: relative;

        width: auto;
        height: auto;
        aspect-ratio: 16 / 9;

        margin: 8px 8px 0;

        overflow: hidden;

        border-radius: 17px;
    }

    .cp-anomalies__visual img {
        position: absolute;
        inset: 0;

        width: 100%;
        height: 100%;

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

    .cp-anomalies__content {
        padding: 13px 13px 15px;
    }

    .cp-anomalies__item-title {
        font-size: 14px;
    }

    .cp-anomalies__item-text {
        font-size: 10.3px;
        line-height: 1.95;
    }

    .cp-anomalies__arrow {
        width: 34px;
        height: 34px;
    }

    .cp-anomalies__arrow svg {
        width: 17px;
        height: 17px;
    }

    .cp-anomalies__arrow--prev {
        right: 1px;
    }

    .cp-anomalies__arrow--next {
        left: 1px;
    }

}

@media (max-width: 440px) {

    .cp-anomalies__item {
        width: 78%;
        min-width: 78%;
    }

}

@media (max-width: 370px) {

    .cp-anomalies__item {
        width: 82%;
        min-width: 82%;
    }

}


/* =========================================================
   Anahita Smart Support CTA
========================================================= */

.cp-anahita-cta {
    width: 100%;
    margin-top: 15px;
}

@media (min-width: 900px) {

    .cp-anahita-cta {
        width: calc(100% - 378px);

        margin-right: 0;
        margin-left: auto;
    }

}

.cp-anahita-cta__card {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 132px;
    padding: 22px 26px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;

    overflow: hidden;

    border: 1px solid rgba(17, 24, 39, 0.13);
    border-radius: 28px;

    background:
        radial-gradient(
            circle at 92% 20%,
            rgba(247, 173, 25, 0.15),
            transparent 31%
        ),
        radial-gradient(
            circle at 8% 80%,
            rgba(17, 24, 39, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            rgba(248, 255, 244, 0.97),
            rgba(255, 255, 255, 0.97)
        );

    box-shadow:
        0 16px 38px rgba(31, 70, 40, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.cp-anahita-cta__card::before {
    content: "?";

    position: absolute;
    top: -45px;
    left: 26px;
    z-index: -1;

    color: rgba(17, 24, 39, 0.055);

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

    pointer-events: none;
}

.cp-anahita-cta__content,
.cp-anahita-cta__action {
    position: relative;
    z-index: 1;
}

.cp-anahita-cta__content {
    min-width: 0;
}

.cp-anahita-cta__badge {
    width: fit-content;
    min-height: 29px;
    padding: 0 11px;

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

    border: 1px solid rgba(17, 24, 39, 0.14);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.76);
    color: var(--cp-green-deep);

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

.cp-anahita-cta__badge span {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;

    border-radius: 999px;

    background: var(--cp-green);

    box-shadow:
        0 0 0 4px rgba(247, 173, 25, 0.14);
}

.cp-anahita-cta__title {
    margin: 11px 0 0;

    color: var(--cp-text);

    font-size: clamp(21px, 2.5vw, 29px);
    font-weight: 800;
    line-height: 1.75;
    letter-spacing: 0;
    word-spacing: 0.12em;
}

.cp-anahita-cta__action {
    min-width: 205px;

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

.cp-anahita-cta__button {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;

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

    border: 0;
    outline: none;
    appearance: none;
    border-radius: 999px;

    background: #F7AD19;

    color: #ffffff;

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

    box-shadow:
        0 14px 28px rgba(17, 24, 39, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);

    cursor: pointer;

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

.cp-anahita-cta__button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 18px 35px rgba(17, 24, 39, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.cp-anahita-cta__button:focus-visible {
    outline: 3px solid rgba(17, 24, 39, 0.20);
    outline-offset: 4px;
}

.cp-anahita-cta__button-icon {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;

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

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.16);
}

.cp-anahita-cta__button-icon svg {
    width: 15px;
    height: 15px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cp-anahita-cta__arrow {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;

    transform: rotate(180deg);
}

.cp-anahita-cta__note {
    margin: 0;

    color: #667085;

    font-size: 10.5px;
    font-weight: 600;
    line-height: 1.8;
    text-align: center;
}


/* =========================================================
   Anahita CTA Mobile
========================================================= */

@media (max-width: 900px) {

    .cp-anahita-cta {
        width: 100%;
        margin-top: 14px;
    }

    .cp-anahita-cta__card {
        min-height: auto;
        padding: 20px 16px;

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

        border-radius: 23px;

        text-align: center;
    }

    .cp-anahita-cta__badge {
        margin-inline: auto;
    }

    .cp-anahita-cta__title {
        margin-top: 10px;

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

    .cp-anahita-cta__action {
        width: 100%;
        min-width: 0;
    }

    .cp-anahita-cta__button {
        width: min(100%, 300px);
        min-height: 49px;

        font-size: 12.5px;
    }

    .cp-anahita-cta__note {
        font-size: 10px;
    }

}


/* =========================================================
   Course Sessions From Admin Panel
   خروجی مشترک course-page-sessions.php
========================================================= */

.fh-course-sessions {
    width: 100%;
    margin-top: 15px;
    padding: 24px;

    overflow: hidden;

    border: 1px solid rgba(247, 173, 25, 0.26);
    border-radius: 30px;

    background:
        radial-gradient(
            circle at 94% 8%,
            rgba(247, 173, 25, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 8% 14%,
            rgba(17, 24, 39, 0.055),
            transparent 30%
        ),
        rgba(255, 255, 255, 0.90);

    box-shadow:
        0 18px 44px rgba(31, 41, 55, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);

    scroll-margin-top: 90px;
}

@media (min-width: 900px) {
    .fh-course-sessions {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.fh-course-sessions__head {
    margin-bottom: 18px;
    text-align: center;
}

.fh-sessions-divider {
    width: 100%;
    margin: 4px 0 12px;

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

.fh-sessions-divider::before,
.fh-sessions-divider::after {
    content: "";

    height: 1px;
    flex: 1 1 auto;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(17, 24, 39, 0.22),
            rgba(17, 24, 39, 0.14),
            transparent
        );
}

.fh-course-sessions__title {
    flex: 0 0 auto;

    margin: 0;
    padding: 7px 16px;

    border: 1px solid rgba(17, 24, 39, 0.13);
    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            rgba(240, 253, 244, 0.94),
            rgba(255, 255, 255, 0.96)
        );

    color: var(--cp-green-deep);

    font-size: 18px;
    font-weight: 800;
    line-height: 1.7;
    letter-spacing: 0;
    word-spacing: 0.12em;

    box-shadow:
        0 10px 24px rgba(17, 24, 39, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.fh-course-sessions__intro {
    max-width: 680px;
    margin: 0 auto;

    color: #667085;
    word-spacing: 0.08em;

    font-size: 12.5px;
    font-weight: 500;
    line-height: 2;
}

.fh-course-sessions__accordion {
    width: 100%;

    display: grid;
    gap: 11px;
}


/* =========================================================
   Session Card
========================================================= */

.fh-course-session {
    width: 100%;

    overflow: hidden;

    border: 1px solid rgba(17, 24, 39, 0.16);
    border-radius: 23px;

    background:
        linear-gradient(
            180deg,
            rgba(250, 255, 248, 0.98),
            rgba(245, 252, 241, 0.94)
        );

    box-shadow:
        0 8px 22px rgba(31, 70, 40, 0.045);

    transition:
        border-color 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease;
}

.fh-course-session:not(.is-open):hover {
    border-color: rgba(17, 24, 39, 0.28);
}

.fh-course-session.is-open,
.fh-course-session--green.is-open {
    border-color: rgba(17, 24, 39, 0.34);

    background:
        radial-gradient(
            circle at 94% 8%,
            rgba(247, 173, 25, 0.14),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            rgba(249, 255, 246, 0.99),
            rgba(235, 249, 226, 0.94)
        );

    box-shadow:
        0 16px 34px rgba(17, 24, 39, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.fh-course-session--live {
    border-color: rgba(239, 68, 68, 0.26);

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(248, 113, 113, 0.13),
            transparent 31%
        ),
        linear-gradient(
            180deg,
            rgba(255, 250, 250, 0.99),
            rgba(254, 242, 242, 0.95)
        );
}

.fh-course-session--live.is-open {
    border-color: rgba(239, 68, 68, 0.38);

    box-shadow:
        0 16px 34px rgba(239, 68, 68, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.fh-course-session--locked {
    background:
        linear-gradient(
            180deg,
            rgba(250, 250, 250, 0.98),
            rgba(245, 245, 245, 0.94)
        );
}


/* =========================================================
   Session Header
========================================================= */

.fh-course-session__trigger {
    width: 100%;
    min-height: 76px;
    padding: 13px 15px;

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

    border: 0;
    outline: none;

    background: transparent;
    color: inherit;

    text-align: right;

    cursor: pointer;
}

.fh-course-session__trigger:focus-visible {
    outline: 3px solid rgba(17, 24, 39, 0.18);
    outline-offset: -3px;
}

.fh-course-session__right {
    min-width: 0;

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

.fh-course-session__number-wrap {
    position: relative;

    width: 48px;
    height: 48px;
    flex: 0 0 48px;
}

.fh-course-session__number {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background: linear-gradient(135deg, #F7AD19, #E6A000);

    color: #ffffff;

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

    box-shadow:
        0 10px 22px rgba(247, 173, 25, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.fh-course-session--live
.fh-course-session__number {
    background:
        linear-gradient(
            135deg,
            #fb7185,
            #dc2626
        );

    box-shadow:
        0 10px 22px rgba(220, 38, 38, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.fh-course-session--locked
.fh-course-session__number {
    background:
        linear-gradient(
            135deg,
            #a3a3a3,
            #737373
        );
}

.fh-course-session__head-icon {
    position: absolute;
    left: -2px;
    bottom: -2px;

    width: 22px;
    height: 22px;

    display: grid;
    place-items: center;

    overflow: hidden;

    border: 2px solid #ffffff;
    border-radius: 8px;

    background: #ffffff;

    box-shadow:
        0 5px 12px rgba(31, 41, 55, 0.13);
}

.fh-course-session__head-icon img {
    width: 15px;
    height: 15px;

    object-fit: contain;
}

.fh-course-session__title-wrap {
    min-width: 0;

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

.fh-course-session__title {
    overflow: hidden;

    color: var(--cp-text);

    font-size: 14px;
    font-weight: 800;
    line-height: 1.75;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.fh-course-session__left {
    flex: 0 0 auto;

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

.fh-course-session__status {
    min-height: 27px;
    padding: 0 10px;

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

    border-radius: 999px;

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

.fh-course-session__status--saved {
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: rgba(240, 253, 244, 0.86);
    color: var(--cp-green-deep);
}

.fh-course-session__status--live {
    border: 1px solid rgba(239, 68, 68, 0.14);
    background: rgba(254, 226, 226, 0.92);
    color: #dc2626;
}

.fh-course-session__status--locked {
    border: 1px solid rgba(107, 114, 128, 0.12);
    background: rgba(243, 244, 246, 0.92);
    color: #6b7280;
}

.fh-course-session__chevron {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;

    display: grid;
    place-items: center;

    border-radius: 999px;

    background: rgba(17, 24, 39, 0.09);
    color: var(--cp-green-deep);
}

.fh-course-session__chevron-icon {
    width: 14px;
    height: 14px;

    display: block;

    object-fit: contain;

    transition:
        transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fh-course-session.is-open
.fh-course-session__chevron-icon {
    transform: rotate(180deg);
}

/* =========================================================
   Session Panel
========================================================= */

.fh-course-session__panel {
    height: 0;

    overflow: hidden;

    transition:
        height 430ms cubic-bezier(0.16, 1, 0.3, 1);
}

.fh-course-session__panel[hidden] {
    display: block;
}

.fh-course-session__panel-inner {
    margin: 0 12px 12px;
    padding: 16px;

    display: grid;
    grid-template-columns:
        minmax(250px, 0.84fr)
        minmax(0, 1.16fr);
    grid-template-areas:
        "video quick"
        "video intro"
        "video content"
        "note note";

    align-items: start;
    gap: 12px 18px;

    direction: ltr;

    border: 1px solid rgba(17, 24, 39, 0.11);
    border-radius: 20px;

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

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


/* =========================================================
   Session Quick Information
========================================================= */

.fh-course-session__quick-info {
    grid-area: quick;

    width: 100%;

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

    direction: rtl;
}

.fh-course-session__quick-item {
    min-width: 0;
    min-height: 62px;
    padding: 9px 7px;

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

    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: 14px;

    background: rgba(247, 253, 244, 0.82);

    text-align: center;
}

.fh-course-session__quick-item span {
    color: #98a2b3;

    font-size: 8.5px;
    font-weight: 700;
    line-height: 1.6;
}

.fh-course-session__quick-item strong {
    color: #475467;

    font-size: 9.5px;
    font-weight: 800;
    line-height: 1.7;
}


/* =========================================================
   Session Introduction
========================================================= */

.fh-course-session__intro-block {
    grid-area: intro;

    min-width: 0;

    direction: rtl;
    text-align: right;
}

.fh-course-session__panel-title {
    position: relative;

    margin: 0;
    padding-right: 14px;

    color: var(--cp-text);

    font-size: 17px;
    font-weight: 800;
    line-height: 1.8;
}

.fh-course-session__panel-title::before {
    content: "";

    position: absolute;
    top: 14px;
    right: 0;

    width: 6px;
    height: 6px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            var(--cp-green),
            var(--cp-green-deep)
        );

    box-shadow:
        0 0 0 5px rgba(17, 24, 39, 0.09);
}

.fh-course-session__desc {
    margin: 6px 0 0;

    color: #667085;

    font-size: 11px;
    font-weight: 600;
    line-height: 2;

    direction: rtl;
    text-align: right;
}


/* =========================================================
   Session Video
========================================================= */

.fh-course-session__video {
    grid-area: video;

    min-width: 0;
    width: 100%;

    align-self: start;

    direction: rtl;
    line-height: 0;
}

.fh-course-session__embed {
    position: relative;
    isolation: isolate;

    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;

    display: block;

    overflow: hidden;

    border: 0;
    outline: 0;
    border-radius: 17px;

    background: transparent;

    box-shadow: none;

    line-height: 0;
}


/*
 * حذف فاصله، استروک و padding ایجادشده
 * توسط wrapperهای داخلی پلیر Stream
 */

.fh-course-session__embed > div:not(.fh-course-session__live-waiting),
.fh-course-session__embed > iframe,
.fh-course-session__embed > div:not(.fh-course-session__live-waiting) > div {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;

    border: 0 !important;
    outline: 0 !important;
    border-radius: inherit !important;

    background: transparent !important;

    box-shadow: none !important;
}

.fh-course-session__embed > div:not(.fh-course-session__live-waiting) {
    z-index: 1;

    display: block !important;
}


/* iframe و video واقعی پلیر */

.fh-course-session__embed iframe,
.fh-course-session__embed video {
    position: absolute !important;
    inset: 0 !important;

    display: block !important;

    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    outline: 0 !important;
    border-radius: inherit !important;

    background: #000000;

    box-shadow: none !important;

    object-fit: contain;
}


/* اسکریپت Embed نباید فضای بصری بگیرد */

.fh-course-session__embed script {
    display: none !important;

    width: 0 !important;
    height: 0 !important;
}

/* =========================================================
   Locked Session Embed
========================================================= */

.fh-course-session__embed--locked {
    display: grid;
    place-items: center;

    padding: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(247, 253, 244, 0.98),
            rgba(241, 236, 255, 0.90)
        );

    color: #667085;

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


/* =========================================================
   Live Session Embed
========================================================= */

.fh-course-session__embed--live {
    background:
        radial-gradient(
            circle at 86% 14%,
            rgba(248, 113, 113, 0.18),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            rgba(255, 247, 247, 0.98),
            rgba(254, 226, 226, 0.86)
        );
}

.fh-course-session__live-waiting {
    position: absolute !important;
    inset: 0 !important;
    z-index: 3;

    width: 100%;
    height: 100%;
    padding: 18px;

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

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.90),
            rgba(254, 242, 242, 0.92)
        );

    color: #7f1d1d;

    font-size: 10px;
    line-height: 1.9;
    text-align: center;

    pointer-events: none;
}

.fh-course-session__live-waiting strong {
    color: #dc2626;

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

.fh-course-session__live-waiting b {
    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   Session Content
========================================================= */

.fh-course-session__content {
    grid-area: content;

    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    direction: rtl;
    text-align: right;
}


/* =========================================================
   Session Tools
========================================================= */

.fh-course-session__tools {
    margin-top: 13px;
}

.fh-course-session__tools h4 {
    margin: 0 0 8px;

    color: var(--cp-text);

    font-size: 11px;
    font-weight: 800;
    line-height: 1.8;
}

.fh-course-session__tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.fh-course-session__tool {
    min-height: 30px;
    padding: 0 10px;

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

    border: 1px solid rgba(17, 24, 39, 0.11);
    border-radius: 999px;

    background: rgba(247, 253, 244, 0.82);
    color: #475467;

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

.fh-course-session__tool img {
    width: 17px;
    height: 17px;

    object-fit: contain;
}


/* =========================================================
   Session Start Button
========================================================= */

.fh-course-session__start {
    width: 100%;
    min-height: 43px;
    margin-top: 14px;
    padding: 0 15px;

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

    border-radius: 14px;

    background: #F7AD19;

    color: #ffffff;

    font-size: 11.5px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;

    box-shadow:
        0 12px 26px rgba(17, 24, 39, 0.19);

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

.fh-course-session__start:hover {
    transform: translateY(-1px);

    box-shadow:
        0 16px 30px rgba(17, 24, 39, 0.24);
}

.fh-course-session__start.is-disabled {
    background: #d1d5db;
    color: #6b7280;

    box-shadow: none;

    pointer-events: none;
}


/* =========================================================
   Session Panel Mobile
========================================================= */

@media (max-width: 820px) {

    .fh-course-session__panel-inner {
        margin: 0 8px 8px;
        padding: 10px;

        grid-template-columns: 1fr;
        grid-template-areas:
            "quick"
            "intro"
            "video"
            "content"
            "note";

        gap: 12px;

        direction: rtl;

        border-radius: 16px;
    }

    .fh-course-session__quick-info {
        gap: 5px;
    }

    .fh-course-session__quick-item {
        min-height: 58px;
        padding: 7px 4px;

        border-radius: 12px;
    }

    .fh-course-session__quick-item span {
        font-size: 7.5px;
    }

    .fh-course-session__quick-item strong {
        font-size: 8px;
    }

    .fh-course-session__panel-title {
        font-size: 14px;
    }

    .fh-course-session__desc {
        font-size: 10px;
    }

    .fh-course-session__video {
        width: 100%;
    }

.fh-course-session__embed {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;

        border: 0;
        outline: 0;
        border-radius: 14px;

        background: transparent;

        box-shadow: none;
    }

    .fh-course-session__embed--locked {
        padding: 14px;

        font-size: 10px;
    }

    .fh-course-session__start {
        min-height: 41px;

        font-size: 10.5px;
    }

}

/* =========================================================
   Session Note
========================================================= */

.fh-course-session__note {
    grid-area: note;

    width: 100%;
    padding: 10px 12px;

    display: flex;
    align-items: flex-start;
    gap: 9px;

    direction: rtl;

    border: 1px solid rgba(245, 158, 11, 0.14);
    border-radius: 14px;

    background: rgba(255, 251, 235, 0.78);
}

.fh-course-session__note-icon {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;

    display: grid;
    place-items: center;

    border-radius: 999px;

    background: rgba(245, 158, 11, 0.15);
    color: #d97706;

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

.fh-course-session__note-content {
    min-width: 0;
}

.fh-course-session__note-content strong {
    display: block;

    color: #92400e;

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

.fh-course-session__note-content p {
    margin: 2px 0 0;

    color: #78350f;

    font-size: 9.5px;
    font-weight: 600;
    line-height: 1.9;
}


/* =========================================================
   Live Divider
========================================================= */

.fh-course-live-divider {
    position: relative;

    height: 32px;
    margin: 2px 0;

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

.fh-course-live-divider::before {
    content: "";

    position: absolute;
    right: 0;
    left: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(239, 68, 68, 0.22),
            transparent
        );
}

.fh-course-live-divider__badge {
    position: relative;
    z-index: 1;

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

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

    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 999px;

    background: #ffffff;
    color: #dc2626;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
}


/* =========================================================
   Session Blocks Between Items
========================================================= */

.fh-course-session-break {
    width: calc(100% - 20px);
    margin: 1px auto;
    padding: 12px 14px;

    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 17px;

    background: rgba(247, 253, 244, 0.88);
}

.fh-course-session-break__content {
    text-align: right;
}

.fh-course-session-break__content strong {
    display: block;

    color: var(--cp-text);

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

.fh-course-session-break__content p {
    margin: 3px 0 0;

    color: #667085;

    font-size: 10px;
    font-weight: 600;
    line-height: 1.9;
}

.fh-course-session-break__btn {
    width: fit-content;
    min-height: 32px;
    margin-top: 9px;
    padding: 0 12px;

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

    border-radius: 999px;

    background: var(--cp-green-deep);
    color: #ffffff;

    font-size: 9.5px;
    font-weight: 800;
    text-decoration: none;
}

.fh-course-session-break--yellow {
    border-color: rgba(245, 158, 11, 0.15);
    background: rgba(255, 251, 235, 0.88);
}

.fh-course-session-break--red {
    border-color: rgba(239, 68, 68, 0.15);
    background: rgba(254, 242, 242, 0.90);
}

.fh-course-session-break--green {
    border-color: rgba(17, 24, 39, 0.15);
    background: rgba(240, 253, 244, 0.90);
}

.fh-course-session-break--blue {
    border-color: rgba(59, 130, 246, 0.15);
    background: rgba(239, 246, 255, 0.90);
}

.fh-course-session-break--pink {
    border-color: rgba(236, 72, 153, 0.15);
    background: rgba(253, 242, 248, 0.90);
}


/* =========================================================
   Sessions Mobile
========================================================= */

@media (max-width: 820px) {
    .fh-course-sessions {
        width: 100%;
        margin-top: 14px;
        padding: 16px 12px;

        border-radius: 23px;

        scroll-margin-top: 76px;
    }

    .fh-course-sessions__title {
        padding: 6px 12px;

        font-size: 14px;
    }

    .fh-course-sessions__intro {
        max-width: 330px;

        font-size: 10.5px;
        line-height: 2;
    }

    .fh-course-sessions__accordion {
        gap: 9px;
    }

    .fh-course-session {
        border-radius: 19px;
    }

    .fh-course-session__trigger {
        min-height: 68px;
        padding: 10px;
        gap: 8px;
    }

    .fh-course-session__right {
        gap: 8px;
    }

    .fh-course-session__number-wrap {
        width: 41px;
        height: 41px;
        flex-basis: 41px;
    }

    .fh-course-session__number {
        width: 38px;
        height: 38px;

        border-radius: 13px;

        font-size: 11px;
    }

    .fh-course-session__head-icon {
        width: 19px;
        height: 19px;

        border-radius: 7px;
    }

    .fh-course-session__head-icon img {
        width: 13px;
        height: 13px;
    }

    .fh-course-session__title {
        max-width: 190px;

        font-size: 11.5px;
    }

    .fh-course-session__status {
        display: none;
    }

    .fh-course-session__chevron {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .fh-course-session__panel-inner {
        margin: 0 8px 8px;
        padding: 10px;

        grid-template-columns: 1fr;
        grid-template-areas:
            "quick"
            "intro"
            "video"
            "note"
            "content";

        gap: 12px;

        border-radius: 16px;
    }

    .fh-course-session__quick-info {
        gap: 5px;
    }

    .fh-course-session__quick-item {
        min-height: 59px;
        padding-inline: 4px;

        border-radius: 12px;
    }

    .fh-course-session__quick-item span {
        font-size: 7.5px;
    }

    .fh-course-session__quick-item strong {
        font-size: 8px;
    }

    .fh-course-session__panel-title {
        font-size: 14px;
    }

    .fh-course-session__desc {
        font-size: 10px;
    }

    .fh-course-session__embed {
        min-height: 0;
        aspect-ratio: 16 / 9;

        border-radius: 14px;
    }

    .fh-course-session__note-content p {
        font-size: 8.5px;
    }

    .fh-course-session__start {
        min-height: 41px;

        font-size: 10.5px;
    }

    .fh-course-session-break {
        width: calc(100% - 10px);
        padding: 10px 12px;

        border-radius: 14px;
    }
}

@media (max-width: 390px) {
    .fh-course-session__title {
        max-width: 150px;

        font-size: 10.8px;
    }

    .fh-course-session__quick-item strong {
        font-size: 7.4px;
    }
}

/* =========================================================
   Course FAQ
========================================================= */

.cp-course-faq {
    width: 100%;
    margin-top: 15px;

    scroll-margin-top: 90px;
}

@media (min-width: 900px) {
    .cp-course-faq {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}


/* =========================================================
   FAQ Main Card
========================================================= */

.cp-course-faq__card {
    position: relative;
    isolation: isolate;

    width: 100%;
    padding: 26px 24px;

    overflow: hidden;

    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 30px;

    background:
        radial-gradient(
            circle at 94% 8%,
            rgba(247, 173, 25, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 7% 14%,
            rgba(17, 24, 39, 0.055),
            transparent 30%
        ),
        rgba(255, 255, 255, 0.90);

    box-shadow:
        0 18px 44px rgba(31, 41, 55, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.cp-course-faq__card::before {
    content: "?";

    position: absolute;
    top: -72px;
    left: 22px;
    z-index: -1;

    color: rgba(17, 24, 39, 0.045);

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

    pointer-events: none;
}


/* =========================================================
   FAQ Header
========================================================= */

.cp-course-faq__head {
    margin-bottom: 20px;

    text-align: center;
}

.cp-course-faq__eyebrow {
    width: fit-content;
    min-height: 29px;
    margin: 0 auto 10px;
    padding: 0 12px;

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

    border: 1px solid rgba(17, 24, 39, 0.13);
    border-radius: 999px;

    background: rgba(240, 253, 244, 0.90);
    color: var(--cp-green-deep);

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

.cp-course-faq__divider {
    width: 100%;
    margin: 4px 0 11px;

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

.cp-course-faq__divider::before,
.cp-course-faq__divider::after {
    content: "";

    height: 1px;
    flex: 1 1 auto;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(17, 24, 39, 0.22),
            rgba(17, 24, 39, 0.14),
            transparent
        );
}

.cp-course-faq__title {
    flex: 0 0 auto;

    margin: 0;
    padding: 7px 16px;

    border: 1px solid rgba(17, 24, 39, 0.13);
    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            rgba(240, 253, 244, 0.94),
            rgba(255, 255, 255, 0.96)
        );

    color: var(--cp-green-deep);

    font-size: 18px;
    font-weight: 800;
    line-height: 1.7;

    box-shadow:
        0 10px 24px rgba(17, 24, 39, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.cp-course-faq__intro {
    max-width: 580px;
    margin: 0 auto;

    color: #667085;

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


/* =========================================================
   FAQ List
========================================================= */

.cp-course-faq__list {
    width: 100%;

    display: grid;
    gap: 10px;
}

.cp-course-faq__item {
    width: 100%;

    overflow: hidden;

    border: 1px solid rgba(17, 24, 39, 0.13);
    border-radius: 19px;

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

    box-shadow:
        0 8px 20px rgba(31, 70, 40, 0.035);

    transition:
        border-color 220ms ease,
        background 220ms ease,
        box-shadow 220ms ease;
}

.cp-course-faq__item:hover {
    border-color: rgba(17, 24, 39, 0.23);
}

.cp-course-faq__item.is-open {
    border-color: rgba(17, 24, 39, 0.28);

    background:
        radial-gradient(
            circle at 94% 5%,
            rgba(247, 173, 25, 0.11),
            transparent 29%
        ),
        rgba(252, 255, 250, 0.96);

    box-shadow:
        0 13px 28px rgba(17, 24, 39, 0.07);
}


/* =========================================================
   FAQ Trigger
========================================================= */

.cp-course-faq__trigger {
    width: 100%;
    min-height: 68px;
    padding: 11px 14px;

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

    border: 0;
    outline: 0;

    background: transparent;
    color: inherit;

    text-align: right;

    cursor: pointer;
}

.cp-course-faq__trigger:focus-visible {
    outline: 3px solid rgba(17, 24, 39, 0.17);
    outline-offset: -3px;
}

.cp-course-faq__question-wrap {
    min-width: 0;

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

.cp-course-faq__number {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: rgba(17, 24, 39, 0.09);
    color: var(--cp-green-deep);

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

    transition:
        color 220ms ease,
        background 220ms ease,
        box-shadow 220ms ease;
}

.cp-course-faq__item.is-open
.cp-course-faq__number {
    background: linear-gradient(135deg, #F7AD19, #E6A000);

    color: #ffffff;

    box-shadow:
        0 9px 20px rgba(247, 173, 25, 0.24);
}

.cp-course-faq__question {
    min-width: 0;

    color: var(--cp-text);

    font-size: 13.5px;
    font-weight: 800;
    line-height: 1.9;
}

.cp-course-faq__icon {
    position: relative;

    width: 31px;
    height: 31px;
    flex: 0 0 31px;

    display: grid;
    place-items: center;

    border-radius: 999px;

    background: rgba(17, 24, 39, 0.08);
    color: var(--cp-green-deep);

    transition:
        color 220ms ease,
        background 220ms ease,
        transform 300ms ease;
}

.cp-course-faq__icon::before,
.cp-course-faq__icon::after {
    content: "";

    position: absolute;

    width: 11px;
    height: 2px;

    border-radius: 999px;

    background: currentColor;

    transition:
        opacity 220ms ease,
        transform 300ms ease;
}

.cp-course-faq__icon::after {
    transform: rotate(90deg);
}

.cp-course-faq__item.is-open
.cp-course-faq__icon {
    background: #F7AD19;
    color: #ffffff;

    transform: rotate(180deg);
}

.cp-course-faq__item.is-open
.cp-course-faq__icon::after {
    opacity: 0;

    transform: rotate(0);
}


/* =========================================================
   FAQ Panel
========================================================= */

.cp-course-faq__panel {
    height: 0;

    overflow: hidden;

    transition:
        height 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cp-course-faq__panel[hidden] {
    display: block;
}

.cp-course-faq__answer {
    margin: 0 14px 13px;
    padding: 13px 15px;

    border: 1px solid rgba(17, 24, 39, 0.09);
    border-radius: 15px;

    background: rgba(247, 253, 244, 0.72);
}

.cp-course-faq__answer p {
    margin: 0;

    color: #596273;

    font-size: 11.5px;
    font-weight: 500;
    line-height: 2.15;
}

.cp-course-faq__answer p +
.cp-course-faq__answer p {
    margin-top: 8px;
}


/* =========================================================
   FAQ Mobile
========================================================= */

@media (max-width: 820px) {

    .cp-course-faq {
        width: 100%;
        margin-top: 14px;

        scroll-margin-top: 76px;
    }

    .cp-course-faq__card {
        padding: 18px 12px;

        border-radius: 23px;
    }

    .cp-course-faq__head {
        margin-bottom: 17px;
    }

    .cp-course-faq__title {
        padding: 6px 12px;

        font-size: 14px;
    }

    .cp-course-faq__intro {
        max-width: 320px;

        font-size: 10.5px;
    }

    .cp-course-faq__list {
        gap: 8px;
    }

    .cp-course-faq__item {
        border-radius: 16px;
    }

    .cp-course-faq__trigger {
        min-height: 61px;
        padding: 9px 10px;

        gap: 8px;
    }

    .cp-course-faq__question-wrap {
        gap: 8px;
    }

    .cp-course-faq__number {
        width: 34px;
        height: 34px;
        flex-basis: 34px;

        border-radius: 11px;

        font-size: 9px;
    }

    .cp-course-faq__question {
        font-size: 11.5px;
        line-height: 1.8;
    }

    .cp-course-faq__icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .cp-course-faq__answer {
        margin: 0 9px 9px;
        padding: 11px 12px;

        border-radius: 13px;
    }

    .cp-course-faq__answer p {
        font-size: 10.5px;
        line-height: 2;
    }

}


/* =========================================================
   Course Syllabus
========================================================= */

.cp-course-syllabus {
    width: 100%;
    margin-top: 15px;

    scroll-margin-top: 90px;
}

@media (min-width: 900px) {

    .cp-course-syllabus {
        width: calc(100% - 378px);

        margin-right: 0;
        margin-left: auto;
    }

}


/* =========================================================
   Syllabus Main Card
========================================================= */

.cp-course-syllabus__card {
    position: relative;
    isolation: isolate;

    width: 100%;
    padding: 28px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 30px;

    background:
        radial-gradient(
            circle at 94% 8%,
            rgba(247, 173, 25, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 6% 96%,
            rgba(17, 24, 39, 0.055),
            transparent 28%
        ),
        rgba(255, 255, 255, 0.90);

    box-shadow:
        0 18px 44px rgba(31, 41, 55, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.cp-course-syllabus__card::before {
    content: "";

    position: absolute;
    top: -92px;
    left: -92px;
    z-index: -1;

    width: 210px;
    height: 210px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            rgba(247, 173, 25, 0.09),
            rgba(17, 24, 39, 0.04)
        );

    pointer-events: none;
}


/* =========================================================
   Syllabus Header
========================================================= */

.cp-course-syllabus__head {
    max-width: 690px;
    margin: 0 auto 24px;

    text-align: center;
}

.cp-course-syllabus__eyebrow {
    width: fit-content;
    min-height: 30px;
    margin: 0 auto;
    padding: 0 12px;

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

    border: 1px solid rgba(17, 24, 39, 0.13);
    border-radius: 999px;

    background: rgba(240, 253, 244, 0.90);
    color: var(--cp-green-deep);

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

.cp-course-syllabus__eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;
    flex: 0 0 7px;

    border-radius: 999px;

    background: var(--cp-green);

    box-shadow:
        0 0 0 4px rgba(247, 173, 25, 0.14);
}

.cp-course-syllabus__title {
    margin: 11px 0 0;

    color: var(--cp-text);

    font-size: clamp(22px, 3vw, 31px);
    font-weight: 800;
    line-height: 1.75;
    letter-spacing: -0.03em;
}

.cp-course-syllabus__description {
    max-width: 580px;
    margin: 6px auto 0;

    color: #667085;

    font-size: 12.5px;
    font-weight: 500;
    line-height: 2;
}

.cp-course-syllabus__summary {
    width: fit-content;
    margin: 14px auto 0;
    padding: 6px 10px;

    display: flex;
    align-items: center;
    gap: 13px;

    border: 1px solid rgba(17, 24, 39, 0.09);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.72);
}

.cp-course-syllabus__summary span {
    position: relative;

    color: #697386;

    font-size: 9.5px;
    font-weight: 700;
    line-height: 1.6;
}

.cp-course-syllabus__summary span:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 50%;
    left: -8px;

    width: 3px;
    height: 3px;

    border-radius: 999px;

    background: rgba(17, 24, 39, 0.40);

    transform: translateY(-50%);
}


/* =========================================================
   Syllabus Cards
========================================================= */

.cp-course-syllabus__cards {
    display: grid;
    grid-template-columns:
        minmax(0, 0.96fr)
        minmax(0, 0.74fr)
        minmax(0, 1.36fr);

    gap: 14px;
    align-items: stretch;
}

.cp-syllabus-card {
    position: relative;

    min-width: 0;
    min-height: 264px;
    padding: 18px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid rgba(17, 24, 39, 0.13);
    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98),
            rgba(249, 253, 247, 0.95)
        );

    box-shadow:
        0 12px 30px rgba(31, 70, 40, 0.045),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);

    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.cp-syllabus-card:hover {
    border-color: rgba(17, 24, 39, 0.24);

    box-shadow:
        0 18px 38px rgba(17, 24, 39, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);

    transform: translateY(-3px);
}

.cp-syllabus-card--purple {
    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(17, 24, 39, 0.08),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98),
            rgba(250, 248, 255, 0.96)
        );
}

.cp-syllabus-card--amber {
    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(245, 158, 11, 0.08),
            transparent 36%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98),
            rgba(255, 252, 245, 0.96)
        );
}


/* =========================================================
   Syllabus Card Header
========================================================= */

.cp-syllabus-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.cp-syllabus-card__head-main {
    min-width: 0;

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

.cp-syllabus-card__icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(247, 173, 25, 0.18),
            rgba(17, 24, 39, 0.10)
        );

    color: var(--cp-green-deep);
}

.cp-syllabus-card--purple
.cp-syllabus-card__icon {
    background:
        linear-gradient(
            135deg,
            rgba(17, 24, 39, 0.16),
            rgba(17, 24, 39, 0.08)
        );

    color: var(--cp-purple);
}

.cp-syllabus-card--amber
.cp-syllabus-card__icon {
    background:
        linear-gradient(
            135deg,
            rgba(245, 158, 11, 0.17),
            rgba(245, 158, 11, 0.08)
        );

    color: #d97706;
}

.cp-syllabus-card__icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cp-syllabus-card__title {
    margin: 0;

    color: var(--cp-text);

    font-size: 15px;
    font-weight: 800;
    line-height: 1.8;
}

.cp-syllabus-card__subtitle {
    display: block;
    margin-top: 2px;

    color: #8a93a2;

    font-size: 9px;
    font-weight: 600;
    line-height: 1.7;
}

.cp-syllabus-card__count {
    min-height: 26px;
    padding: 0 9px;
    flex: 0 0 auto;

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

    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.78);
    color: var(--cp-green-deep);

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

.cp-syllabus-card--purple
.cp-syllabus-card__count {
    border-color: rgba(17, 24, 39, 0.12);
    color: var(--cp-purple);
}

.cp-syllabus-card--amber
.cp-syllabus-card__count {
    border-color: rgba(245, 158, 11, 0.14);
    color: #d97706;
}


/* =========================================================
   Syllabus Items
========================================================= */

.cp-syllabus-card__list {
    margin: 17px 0 0;
    padding: 0;

    display: grid;
    gap: 8px;

    list-style: none;
}

.cp-syllabus-card__list--two-columns {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 8px;
}

.cp-syllabus-card__item {
    min-width: 0;
    min-height: 42px;
    padding: 8px 10px;

    display: flex;
    align-items: center;
    gap: 8px;

    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 13px;

    background: rgba(248, 252, 246, 0.78);
}

.cp-syllabus-card--purple
.cp-syllabus-card__item {
    border-color: rgba(17, 24, 39, 0.08);
    background: rgba(249, 247, 255, 0.80);
}

.cp-syllabus-card--amber
.cp-syllabus-card__item {
    border-color: rgba(245, 158, 11, 0.09);
    background: rgba(255, 251, 242, 0.82);
}

.cp-syllabus-card__item-number {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background: rgba(17, 24, 39, 0.10);
    color: var(--cp-green-deep);

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

.cp-syllabus-card--purple
.cp-syllabus-card__item-number {
    background: rgba(17, 24, 39, 0.10);
    color: var(--cp-purple);
}

.cp-syllabus-card--amber
.cp-syllabus-card__item-number {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
}

.cp-syllabus-card__item-text {
    min-width: 0;

    color: #414a59;

    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.8;
}


/* =========================================================
   Syllabus Card Footer
========================================================= */

.cp-syllabus-card__footer {
    margin-top: auto;
    padding-top: 15px;

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

    color: #8b94a3;

    font-size: 8.8px;
    font-weight: 700;
    line-height: 1.7;
}

.cp-syllabus-card__progress {
    width: 62px;
    height: 5px;
    flex: 0 0 62px;

    overflow: hidden;

    border-radius: 999px;

    background: rgba(17, 24, 39, 0.09);
}

.cp-syllabus-card__progress > span {
    display: block;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--cp-green),
            var(--cp-green-deep)
        );
}

.cp-syllabus-card--purple
.cp-syllabus-card__progress > span {
    background:
        linear-gradient(
            90deg,
            #9d82ed,
            var(--cp-purple)
        );
}

.cp-syllabus-card--amber
.cp-syllabus-card__progress > span {
    background:
        linear-gradient(
            90deg,
            #fbbf24,
            #f59e0b
        );
}


/* =========================================================
   Swipe Hint
========================================================= */

.cp-course-syllabus__swipe-hint {
    display: none;
}


/* =========================================================
   Syllabus Mobile Slider
========================================================= */

@media (max-width: 820px) {

    .cp-course-syllabus {
        width: 100%;
        margin-top: 14px;

        scroll-margin-top: 76px;
    }

    .cp-course-syllabus__card {
        padding: 20px 14px 22px;

        border-radius: 24px;
    }

    .cp-course-syllabus__head {
        margin-bottom: 19px;
    }

    .cp-course-syllabus__title {
        margin-top: 9px;

        font-size: 20px;
    }

    .cp-course-syllabus__description {
        max-width: 330px;

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

    .cp-course-syllabus__summary {
        margin-top: 11px;

        gap: 11px;
    }

    .cp-course-syllabus__summary span {
        font-size: 8.5px;
    }

    .cp-course-syllabus__cards {
        margin-inline: -14px;
        padding-inline: 14px 22px;
        padding-bottom: 8px;

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

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

        scroll-snap-type: x mandatory;
        scrollbar-width: none;

        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
    }

    .cp-course-syllabus__cards::-webkit-scrollbar {
        display: none;
    }

    .cp-syllabus-card {
        width: 82%;
        min-width: 82%;
        min-height: 282px;
        padding: 16px;
        flex: 0 0 82%;

        scroll-snap-align: start;
        scroll-snap-stop: always;

        border-radius: 21px;
    }

    .cp-syllabus-card:hover {
        transform: none;
    }

    .cp-syllabus-card__list--two-columns {
        grid-template-columns: 1fr;
    }

    .cp-syllabus-card__item {
        min-height: 40px;
    }

    .cp-course-syllabus__swipe-hint {
        width: fit-content;
        margin: 9px auto 0;

        display: flex;
        align-items: center;
        gap: 7px;

        color: #8a93a2;

        font-size: 9px;
        font-weight: 700;
        line-height: 1.7;
    }

    .cp-course-syllabus__swipe-hint::before {
        content: "←";

        color: var(--cp-green-deep);

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

}

@media (max-width: 430px) {

    .cp-syllabus-card {
        width: 86%;
        min-width: 86%;
        flex-basis: 86%;
    }

}
/* =========================================================
   FIT BEL Comments Theme
========================================================= */

.cp-course-main-layout__details .fh-course-comments {
    width: 100%;
    max-width: none;
    margin: 15px 0 0;

    --fh-comment-star: #f7a928;
    --fh-comment-star-dark: #c97b12;
}

.cp-course-main-layout__details .fh-course-comments__title {
    border-color: rgba(247, 173, 25, 0.15);
    background: #fff4ee;
    color: #F7AD19;
}

.cp-course-main-layout__details .fh-course-comments__head::before,
.cp-course-main-layout__details .fh-course-comments__head::after {
    background: rgba(247, 173, 25, 0.18);
}

.cp-course-main-layout__details .fh-course-comments__submit,
.cp-course-main-layout__details .fh-course-comments__login-button {
    background: #F7AD19;
    color: #ffffff;
}

.cp-course-main-layout__details .fh-course-comments__submit:hover,
.cp-course-main-layout__details .fh-course-comments__login-button:hover {
    background: #F7AD19;
}

.cp-course-main-layout__details .fh-course-comments__page-btn {
    background: #fff3ed;
    border-color: rgba(247, 173, 25, 0.18);
    color: #F7AD19;
}

.cp-course-main-layout__details .fh-course-comments__empty {
    min-height: 150px;
    padding: 24px;

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

    border: 1px dashed rgba(247, 173, 25, 0.22);
    border-radius: 22px;

    background: #fffaf7;
    color: #667085;
    text-align: center;
}

.cp-course-main-layout__details .fh-course-comments__empty strong {
    color: var(--cp-text);
    font-size: 13px;
    font-weight: 800;
}

.cp-course-main-layout__details .fh-course-comments__empty p {
    max-width: 430px;
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    line-height: 2;
}

@media (max-width: 820px) {
    .cp-course-main-layout__details .fh-course-comments {
        width: 100%;
        margin-top: 14px;
    }
}

/* =========================
   Reveal Animation
========================= */

html.js-enabled [data-reveal] {
    opacity: 0;

    transform: translateY(18px);

    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

html.js-enabled [data-reveal].is-visible {
    opacity: 1;

    transform: translateY(0);
}

/* =========================
   Responsive - Tablet
========================= */

@media (max-width: 1060px) {

    .cp-hero {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(330px, 0.84fr);

        gap: 28px;
    }

    .cp-hero__title {
        font-size: clamp(36px, 4.4vw, 50px);
    }

    .cp-course-main-layout {
        grid-template-columns:
            minmax(0, 1fr)
            330px;
    }

}

@media (max-width: 880px) {

    .cp-hero {
        min-height: auto;
        padding: 28px;

        grid-template-columns: 1fr;

        grid-template-areas:
            "content"
            "media";

        gap: 34px;
    }

    .cp-hero__content {
        padding: 8px 4px 0;
    }

    .cp-hero__media {
        width: 100%;
    }

    .cp-hero__image-card {
        width: min(100%, 500px);
    }

    .cp-course-main-layout {
        width: 100%;
        margin-top: 14px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .cp-course-main-layout__sidebar {
        order: 1;

        width: 100%;
    }

    .cp-course-main-layout__details {
        order: 2;

        width: 100%;
    }

    .cp-course-price,
    .cp-course-price__card,
    .cp-course-price__buybox {
        width: 100%;
        max-width: none;
    }

    .cp-course-details__grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

}

/* =========================
   Responsive - Mobile
========================= */

@media (max-width: 680px) {

    .cp-page {
        padding: 14px 7px 48px;
    }

    .cp-container {
        width: 100%;
    }

    .cp-hero {
        padding: 22px 18px 24px;
        gap: 28px;

        border-radius: 27px;
    }

    .cp-hero__decor--one,
    .cp-hero__decor--two {
        display: none;
    }

    .cp-hero__eyebrow {
        margin-bottom: 15px;

        font-size: 12px;
    }

    .cp-hero__title {
        font-size: clamp(31px, 9.7vw, 43px);
        line-height: 1.42;
        letter-spacing: -0.8px;
    }

    .cp-hero__title span::after {
        bottom: 4px;
        height: 9px;
    }

    .cp-hero__lead {
        margin-top: 16px;

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

    .cp-hero__conditions {
        margin-top: 20px;
        gap: 7px;
    }

    .cp-hero__conditions > span {
        min-height: 33px;
        padding-inline: 9px;

        font-size: 11px;
    }

    .cp-hero__actions {
        margin-top: 23px;
    }

    .cp-button {
        min-height: 48px;

        font-size: 13px;
    }

    .cp-hero__image-card {
        width: 100%;
        max-width: 520px;
        aspect-ratio: 16 / 9;
        padding: 2px;

        border-radius: 24px;
    }

    .cp-hero__picture {
        border-radius: 20px;
    }

    .cp-hero__image {
        object-position: center;

        border-radius: 20px;
    }

    .cp-course-section-divider {
        height: 12px;
        margin: 8px 0;
    }

    .cp-course-section-divider span {
        width: 38px;
        height: 7px;
    }

    .cp-course-price__card {
        padding: 12px;

        border-radius: 22px;
    }

    .cp-course-price__buybox {
        padding: 10px 12px;

        border-radius: 18px;
    }

    .cp-course-price__buybox-top {
        gap: 12px;
    }

    .cp-course-price__icon-box {
        width: 38px;
        height: 38px;
        flex-basis: 38px;

        border-radius: 14px;
    }

    .cp-course-price__icon {
        width: 22px;
        height: 22px;
    }

    .cp-course-price__amount-value {
        font-size: 24px;
        gap: 4px;
    }

    .cp-course-price__amount-value span {
        font-size: 11px;
    }

    .cp-course-price__button {
        min-height: 48px;

        border-radius: 16px;

        font-size: 13px;
    }

    .cp-course-details {
        border-radius: 24px;
    }

    .cp-course-details__grid {
        padding: 12px 5px;

        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

    .cp-course-details__card {
        min-height: 108px;
        padding: 8px 3px;
        gap: 7px;
    }

    .cp-course-details__card:not(:last-child)::after {
        top: 22px;
        bottom: 22px;

        background:
            linear-gradient(
                180deg,
                transparent,
                rgba(17, 24, 39, 0.14),
                transparent
            );
    }

    .cp-course-details__icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .cp-course-details__icon img,
    .cp-course-details__icon-img {
        width: 22px;
        height: 22px;
    }

    .cp-course-details__icon-img--support {
        width: 24px;
        height: 24px;
    }

    .cp-course-details__item-title {
        font-size: 10px;
        line-height: 1.6;
    }

    .cp-course-details__value {
        margin-top: 2px;

        font-size: 9px;
        line-height: 1.65;
    }

}

@media (max-width: 470px) {

    .cp-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cp-button {
        width: 100%;
    }

    .cp-hero__helper {
        width: fit-content;
        margin-inline: auto;
    }

    .cp-course-details__grid {
        padding-inline: 2px;
    }

    .cp-course-details__card {
        min-height: 102px;
        padding-inline: 2px;
    }

    .cp-course-details__icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .cp-course-details__icon img,
    .cp-course-details__icon-img {
        width: 20px;
        height: 20px;
    }

    .cp-course-details__icon-img--support {
        width: 22px;
        height: 22px;
    }

    .cp-course-details__item-title {
        font-size: 9px;
    }

    .cp-course-details__value {
        font-size: 8.2px;
        line-height: 1.6;
    }

}

@media (max-width: 360px) {

    .cp-hero {
        padding-inline: 14px;
    }

    .cp-hero__title {
        font-size: 29px;
    }

    .cp-course-details__item-title {
        font-size: 8.4px;
    }

    .cp-course-details__value {
        font-size: 7.5px;
    }

}

/* =========================
   Reduced Motion
========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html.js-enabled [data-reveal] {
        opacity: 1;
        transform: none;
    }

}

/* =========================================================
   FIT BEL - تنظیمات اختصاصی صفحه
   همان مدل چیدمان دوره‌های اصلی، با هویت سرمه‌ای/نارنجی/فیروزه‌ای
========================================================= */

:root {
    --cp-bg: #ffffff;
    --cp-surface: #ffffff;
    --cp-text: #111827;
    --cp-muted: #667085;
    --cp-light: #98a2b3;

    --cp-green: #F7AD19;
    --cp-green-dark: #F7AD19;
    --cp-green-deep: #8A6500;
    --cp-green-soft: #FFF8D1;
    --cp-purple: #111827;

    --cp-border: #e7eaf0;
    --cp-border-green: rgba(247, 173, 25, 0.20);
}

body {
    background: var(--cp-bg);
}

.cp-hero {
    background:
        radial-gradient(circle at 92% 12%, rgba(247, 173, 25, 0.13), transparent 30%),
        radial-gradient(circle at 8% 15%, rgba(17, 24, 39, 0.075), transparent 28%),
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(250,251,254,.92));
}

.cp-hero::before {
    background: rgba(247, 173, 25, 0.09);
}

.cp-hero__title span {
    color: #F27F0C;
}

.cp-hero__title span::after {
    background: rgba(17, 24, 39, 0.18);
}

.cp-hero__image-card {
    background: linear-gradient(145deg, rgba(255,255,255,.99), rgba(255,230,217,.88));
    box-shadow:
        0 24px 60px rgba(247, 173, 25, 0.17),
        0 8px 20px rgba(23, 32, 51, 0.07);
}

.cp-course-price__button,
.cp-button--primary {
    background: #F7AD19;
}

.cp-course-price__old {
    margin-top: 6px;
    color: #98a2b3;
    font-size: 13px;
    font-weight: 650;
    text-decoration: line-through;
}

.cp-course-price__special {
    margin-top: 6px;
    color: #8A6500;
    font-size: 13px;
    font-weight: 800;
}

.cp-course-price__button--member,
.cp-course-price__button--member:disabled {
    opacity: 1;
    cursor: default;
    color: #ffffff;
    background: #138d9d;
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.18);
}

.cp-course-details__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cp-cardio-pro-audience {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.cp-cardio-pro-audience__item {
    position: relative;
    min-height: 92px;
    padding: 16px 48px 16px 16px;
    border: 1px solid rgba(17, 24, 39, 0.13);
    border-radius: 20px;
    background:
        radial-gradient(circle at 95% 10%, rgba(247, 173, 25, 0.09), transparent 32%),
        rgba(255,255,255,.76);
    box-shadow: none;
}

.cp-cardio-pro-audience__item::before {
    content: "✓";
    position: absolute;
    right: 16px;
    top: 18px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F7AD19;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(247, 173, 25, .18);
}

.cp-cardio-pro-audience__item h4 {
    margin: 0;
    color: var(--cp-text);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.9;
}

.cp-cardio-pro-audience__item p {
    margin: 4px 0 0;
    color: var(--cp-muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 2;
}

.cp-cardio-pro-complement {
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(247, 173, 25, 0.15);
    background: linear-gradient(135deg, rgba(255,240,232,.9), rgba(237,251,252,.78));
    color: #384152;
    font-size: 13px;
    font-weight: 700;
    line-height: 2;
}

.cp-cardio-pro-complement strong {
    color: #8A6500;
}

@media (max-width: 680px) {
    .cp-course-details__grid {
        display: flex;
        gap: 0;
        padding: 12px 5px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        touch-action: pan-x;
        cursor: grab;
        scrollbar-width: none;
        direction: ltr;
    }

    .cp-course-details__grid:active {
        cursor: grabbing;
    }

    .cp-course-details__grid::-webkit-scrollbar {
        display: none;
    }

    .cp-course-details__card {
        flex: 0 0 35%;
        min-width: 35%;
        direction: rtl;
        scroll-snap-align: center;
    }

    .cp-course-details__card:not(:last-child)::after {
        display: block;
    }

    .cp-cardio-pro-audience {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .cp-cardio-pro-audience__item {
        min-height: auto;
        padding: 13px 43px 13px 12px;
        border-radius: 17px;
    }

    .cp-cardio-pro-audience__item::before {
        right: 13px;
        top: 15px;
        width: 21px;
        height: 21px;
        font-size: 10px;
    }

    .cp-cardio-pro-audience__item h4 {
        font-size: 12px;
    }

    .cp-cardio-pro-audience__item p,
    .cp-cardio-pro-complement {
        font-size: 11px;
    }
}

/* کارت‌های مشخص‌شده در صفحه Cardio Pro کاملاً بدون سایه */
.cp-hero,
.cp-hero__image-card,
.cp-hero__conditions > span,
.cp-button--primary,
.cp-button--primary:hover,
.cp-course-price__card,
.cp-course-price__buybox,
.cp-course-price__status,
.cp-course-price__button,
.cp-course-price__button:hover,
.cp-moves__card,
.cp-moves__number {
    box-shadow: none !important;
}

/* راهنمای مینیمال و پاپ‌آپ شرایط ویژه دسترسی */
.cp-cardio-pro-access-explainer {
    padding: 18px 20px;
    box-shadow: none;
}

.cp-cardio-pro-access-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cp-cardio-pro-access-summary__copy {
    min-width: 0;
}

.cp-cardio-pro-access-summary__copy h2 {
    margin: 0;
    color: #19335A;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.8;
}

.cp-cardio-pro-access-summary__copy p {
    margin: 4px 0 0;
    color: #667085;
    font-size: 11.5px;
    line-height: 2;
}

.cp-cardio-pro-access-summary__copy strong {
    font-weight: 700;
}

.cp-cardio-pro-access-trigger {
    min-height: 38px;
    padding: 0 12px;
    flex: 0 0 auto;

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

    border: 1px solid rgba(247, 173, 25, 0.34);
    border-radius: 999px;
    background: #fff9eb;
    color: #a86e00;
    box-shadow: none;

    font: inherit;
    font-size: 10.5px;
    font-weight: 800;
    cursor: pointer;
}

.cp-cardio-pro-access-trigger__icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;

    display: grid;
    place-items: center;

    border-radius: 50%;
    background: #F7AD19;
    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.cp-cardio-pro-access-modal[hidden] {
    display: none;
}

.cp-cardio-pro-access-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;

    display: grid;
    place-items: center;
    padding: 18px;

    direction: rtl;
}

.cp-cardio-pro-access-modal__backdrop {
    position: absolute;
    inset: 0;

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

    border: 0;
    background: rgba(25, 51, 90, 0.46);
    cursor: pointer;
}

.cp-cardio-pro-access-modal__dialog {
    position: relative;
    z-index: 1;

    width: min(100%, 520px);
    max-height: calc(100vh - 36px);
    max-height: calc(100dvh - 36px);
    padding: 25px 22px 21px;
    overflow-y: auto;

    border: 1px solid rgba(247, 173, 25, 0.3);
    border-radius: 24px;
    background: #ffffff;
    color: #19335A;
    box-shadow: none;
    outline: none;
}

.cp-cardio-pro-access-modal__close {
    position: absolute;
    top: 12px;
    left: 12px;

    width: 31px;
    height: 31px;
    padding: 0;

    display: grid;
    place-items: center;

    border: 1px solid rgba(25, 51, 90, 0.14);
    border-radius: 50%;
    background: #f8fafc;
    color: #19335A;
    box-shadow: none;

    font: inherit;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.cp-cardio-pro-access-modal__eyebrow {
    display: inline-flex;
    min-height: 27px;
    padding: 0 10px;
    align-items: center;

    border: 1px solid rgba(247, 173, 25, 0.3);
    border-radius: 999px;
    background: #fff9eb;
    color: #a86e00;

    font-size: 10px;
    font-weight: 800;
}

.cp-cardio-pro-access-modal__dialog h2 {
    margin: 14px 0 0;
    padding-left: 34px;
    color: #19335A;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.9;
}

.cp-cardio-pro-access-modal__dialog > p:not(.cp-cardio-pro-access-explainer__note) {
    margin: 7px 0 0;
    color: #667085;
    font-size: 12px;
    font-weight: 600;
    line-height: 2.1;
}

body.cp-cardio-pro-access-modal-open {
    overflow: hidden;
}

@media (max-width: 680px) {
    .cp-cardio-pro-access-explainer {
        padding: 15px;
    }

    .cp-cardio-pro-access-summary {
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
    }

    .cp-cardio-pro-access-summary__copy h2 {
        font-size: 14px;
    }

    .cp-cardio-pro-access-summary__copy p {
        font-size: 10.5px;
    }

    .cp-cardio-pro-access-trigger {
        align-self: flex-start;
        min-height: 36px;
        font-size: 10px;
    }

    .cp-cardio-pro-access-modal {
        padding: 12px;
    }

    .cp-cardio-pro-access-modal__dialog {
        max-height: calc(100vh - 24px);
        max-height: calc(100dvh - 24px);
        padding: 22px 17px 17px;
        border-radius: 20px;
    }

    .cp-cardio-pro-access-modal__dialog h2 {
        margin-top: 12px;
        font-size: 14px;
    }

    .cp-cardio-pro-access-modal__dialog > p:not(.cp-cardio-pro-access-explainer__note) {
        font-size: 10.5px;
    }
}

/* ارتفاع کارت کالری‌سوزی فقط بر اساس محتوای متن */
.cp-moves__card {
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 0;
    padding: 18px 20px;
    gap: 20px;
}

.cp-moves__number {
    align-self: stretch;
    width: 120px;
    height: auto;
    min-height: 0;
    border-radius: 25px;
    font-size: 52px;
}

@media (max-width: 820px) {
    .cp-moves__card {
        grid-template-columns: 84px minmax(0, 1fr);
        min-height: 0;
        padding: 14px;
        gap: 13px;
    }

    .cp-moves__number {
        width: 84px;
        height: auto;
        min-height: 0;
        border-radius: 20px;
        font-size: 38px;
    }
}

@media (max-width: 420px) {
    .cp-moves__card {
        grid-template-columns: 70px minmax(0, 1fr);
        padding: 12px;
        gap: 10px;
    }

    .cp-moves__number {
        width: 70px;
        height: auto;
        font-size: 32px;
    }
}

/* پس از حذف بج‌ها، عنوان کارت بدون فاصلهٔ اضافی شروع می‌شود. */
.cp-moves__content > .cp-moves__title {
    margin-top: 0;
}

@media (max-width: 430px) {
    .cp-course-details__card {
        flex-basis: 42%;
        min-width: 42%;
    }
}

.cp-course-price__amount {
    flex-direction: column;
    align-items: flex-end;
}

.cp-course-price__amount-value {
    margin-right: 0;
}

/* =========================================================
   Cardio Pro course identity
========================================================= */

.cp-course-section-divider::before,
.cp-course-description__divider::before {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(247, 173, 25, 0.16) 18%,
        rgba(247, 173, 25, 0.42) 50%,
        rgba(247, 173, 25, 0.16) 82%,
        transparent 100%
    );
}

.cp-course-section-divider span,
.cp-course-description__divider span {
    background: linear-gradient(90deg, #F7AD19, #E6A000);
}

.cp-button--primary,
.cp-course-price__button:not(:disabled) {
    background: #19335A;
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(25, 51, 90, 0.2);
}

.cp-button--primary:hover,
.cp-course-price__button:not(:disabled):hover {
    background: #19335A;
    box-shadow: 0 19px 34px rgba(25, 51, 90, 0.28);
}

/* رنگ دکمه ثبت‌نام بر اساس نمونه تأییدشده */
.cp-course-price__button:not(.cp-course-price__button--member),
.cp-course-price__button:not(.cp-course-price__button--member):hover {
    background: #32BEA6;
    color: #ffffff;
    box-shadow: none;
}

.cp-course-price__button:not(.cp-course-price__button--member) {
    box-shadow: none;
}

/* سطح پس‌زمینهٔ کارت‌ها روشن و نزدیک به سفید */
.cp-course-price__card,
.cp-course-details,
.cp-course-description__card,
.cp-moves__card,
.fh-course-sessions,
.cp-course-faq__card,
.fh-course-session:not(.fh-course-session--live):not(.fh-course-session--locked),
.fh-course-session:not(.fh-course-session--live):not(.fh-course-session--locked).is-open,
.fh-course-session--green.is-open,
.cp-course-faq__item,
.cp-course-faq__item.is-open,
.cp-course-faq__answer {
    background: #ffffff;
}

.cp-moves__card::after {
    border-color: rgba(247, 173, 25, 0.035);
}

.cp-moves__card {
    box-shadow: none;
}

/* راهنمای دسترسی Cardio Pro */
.cp-cardio-pro-access-explainer {
    margin-top: 22px;
    padding: 22px;

    border: 1px solid rgba(247, 173, 25, 0.26);
    border-radius: 24px;
    background: #ffffff;
    color: #19335A;
}

.cp-cardio-pro-access-explainer__head {
    text-align: center;
}

.cp-cardio-pro-access-explainer__eyebrow {
    display: inline-flex;
    min-height: 26px;
    padding: 0 10px;

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

    border: 1px solid rgba(247, 173, 25, 0.3);
    border-radius: 999px;
    background: #fff9eb;
    color: #a86e00;

    font-size: 10px;
    font-weight: 800;
}

.cp-cardio-pro-access-explainer__head h2 {
    margin: 9px 0 0;
    color: #19335A;
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 800;
    line-height: 1.8;
}

.cp-cardio-pro-access-explainer__steps {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;

    margin-top: 18px;
}

.cp-cardio-pro-access-step {
    min-width: 0;
    padding: 16px;

    display: flex;
    align-items: flex-start;
    gap: 11px;

    border: 1px solid rgba(25, 51, 90, 0.13);
    border-radius: 18px;
    background: #ffffff;
}

.cp-cardio-pro-access-step__number {
    width: 29px;
    height: 29px;
    flex: 0 0 29px;

    display: grid;
    place-items: center;

    border-radius: 50%;
    background: #F7AD19;
    color: #ffffff;

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

.cp-cardio-pro-access-step h3 {
    margin: 0;
    color: #19335A;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.8;
}

.cp-cardio-pro-access-step p {
    margin: 5px 0 0;
    color: #667085;
    font-size: 11.5px;
    font-weight: 600;
    line-height: 2;
}

.cp-cardio-pro-access-explainer__connector {
    position: relative;
    align-self: center;
    height: 1px;
    background: rgba(247, 173, 25, 0.55);
}

.cp-cardio-pro-access-explainer__connector::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;

    width: 7px;
    height: 7px;

    border-top: 1.5px solid #F7AD19;
    border-left: 1.5px solid #F7AD19;
    transform: translateY(-50%) rotate(-45deg);
}

.cp-cardio-pro-access-explainer__note {
    margin: 14px 0 0;
    padding: 10px 12px;

    display: flex;
    align-items: flex-start;
    gap: 8px;

    border-radius: 14px;
    background: #f8fafc;
    color: #667085;

    font-size: 10.5px;
    font-weight: 600;
    line-height: 2;
}

.cp-cardio-pro-access-explainer__note span {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(25, 51, 90, 0.2);
    border-radius: 50%;
    color: #19335A;

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.cp-cardio-pro-access-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(247, 173, 25, 0.72);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.cp-cardio-pro-access-link:hover {
    color: #a86e00;
}

@media (max-width: 680px) {
    .cp-cardio-pro-access-explainer {
        margin-top: 18px;
        padding: 17px 14px;
        border-radius: 20px;
    }

    .cp-cardio-pro-access-explainer__head h2 {
        margin-top: 8px;
        font-size: 16px;
    }

    .cp-cardio-pro-access-explainer__steps {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 15px;
    }

    .cp-cardio-pro-access-explainer__connector {
        width: 1px;
        height: 22px;
        justify-self: center;
    }

    .cp-cardio-pro-access-explainer__connector::after {
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) rotate(-135deg);
    }

    .cp-cardio-pro-access-step {
        padding: 13px;
        border-radius: 16px;
    }

    .cp-cardio-pro-access-step p {
        font-size: 10.5px;
    }

    .cp-cardio-pro-access-explainer__note {
        margin-top: 12px;
        padding: 9px 10px;
        font-size: 9.8px;
    }
}

/* فاصله‌گذاری طبیعی و خواناتر متن‌های فارسی/لاتین */
.cp-course-description,
.cp-course-details,
.cp-course-price,
.cp-moves,
.cp-course-faq {
    word-spacing: 0.08em;
}

.cp-description-divider
.cp-course-description__title span {
    word-spacing: 0.14em;
    letter-spacing: 0.01em;
}

.cp-include-card p {
    word-spacing: 0.08em;
}

.cp-include-card p strong {
    margin-bottom: 7px;
    word-spacing: 0.12em;
    letter-spacing: 0.01em;
}

.cp-moves__eyebrow {
    padding-inline: 14px;
    word-spacing: 0.12em;
    letter-spacing: 0.01em;
}

/* کارت‌ها و کنترل‌های این بخش بدون سایه */
.cp-description-divider .cp-course-description__title span,
.cp-hero__image-card,
.cp-course-description__card,
.cp-button--primary,
.cp-button--primary:hover,
.cp-course-quicknav,
.cp-course-quicknav__nav,
.cp-course-quicknav__link,
.cp-course-quicknav__link:hover,
.cp-course-quicknav__link.is-active,
.cp-course-faq__card,
.cp-course-faq__item,
.cp-course-faq__item.is-open .cp-course-faq__number,
.cp-course-faq__icon,
.cp-course-faq__item.is-open .cp-course-faq__icon,
.cp-course-faq__title,
.fh-course-sessions__title,
.cp-course-main-layout__details .fh-course-comments__title {
    box-shadow: none !important;
}

.cp-include-card p strong {
    display: block;
    margin-bottom: 4px;
    color: var(--cp-text);
    font-size: 14px;
    font-weight: 800;
}

.cp-cardio-pro-access-note {
    border-color: rgba(247, 173, 25, 0.28);
    background: linear-gradient(135deg, rgba(255, 248, 209, 0.95), rgba(247, 248, 250, 0.96));
}

.cp-cardio-pro-access-note strong {
    display: block;
    margin-bottom: 3px;
    color: #19335A;
}

.cp-moves__card {
    border-color: rgba(247, 173, 25, 0.22);
    background:
        radial-gradient(circle at 12% 16%, rgba(247, 173, 25, 0.18), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(247, 173, 25, 0.12), transparent 34%),
        #fffdf7;
    box-shadow: 0 24px 54px rgba(25, 51, 90, 0.1);
}

.cp-moves__number {
    color: #F7AD19;
    text-shadow: 0 10px 28px rgba(247, 173, 25, 0.2);
}

.cp-moves__number span {
    color: #F7AD19;
    font-size: 0.86em;
    line-height: 1;
}

.cp-moves__eyebrow {
    border-color: rgba(247, 173, 25, 0.32);
    background: rgba(247, 173, 25, 0.12);
    color: #a86e00;
}

.cp-moves__title,
.cp-moves__text {
    color: #19335A;
}

.cp-moves__features span {
    border-color: rgba(247, 173, 25, 0.26);
    background: #fff9eb;
    color: #19335A;
}

.cp-cardio-pro-audience__item {
    min-height: 108px;
    padding: 18px 62px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.cp-cardio-pro-audience__item::before {
    content: "";
    right: 18px;
    top: 18px;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.76);
    background: #F7AD19;
    box-shadow: none;
}

.cp-cardio-pro-audience__item::after {
    content: "";
    position: absolute;
    right: 27px;
    top: 25px;
    width: 6px;
    height: 9px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
}

.cp-cardio-pro-audience__item p {
    margin: 4px 0 0;
}

@media (max-width: 680px) {
    .cp-include-card p strong {
        font-size: 12px;
    }

    .cp-cardio-pro-audience__item {
        min-height: 0;
        padding: 15px 55px 15px 14px;
    }

    .cp-cardio-pro-audience__item::before {
        right: 14px;
        top: 14px;
        width: 22px;
        height: 22px;
    }

    .cp-cardio-pro-audience__item::after {
        right: 22px;
        top: 21px;
        width: 5px;
        height: 8px;
    }
}

/* کارت‌های مشخص‌شده در صفحه Cardio Pro کاملاً بدون سایه */
.cp-hero,
.cp-hero__image-card,
.cp-hero__conditions > span,
.cp-button--primary,
.cp-button--primary:hover,
.cp-course-price__card,
.cp-course-price__buybox,
.cp-course-price__status,
.cp-course-price__button,
.cp-course-price__button:hover,
.cp-moves__card,
.cp-moves__number {
    box-shadow: none !important;
}
