.page-head {
    margin-top: 10px;
    margin-bottom: 100px;
    padding: 4vw;
    background: var(--text-100-color);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: 0.5s fadeIn ease-in-out;
}

.page-head h1 {
    font-size: clamp(30px, 5vw, 50px);
    color: #FFF;
    animation: 0.5s fadeInUp ease-in-out;
}

.page-head p {
    font-size: clamp(20px, 2.5vw, 27px);
    max-width: 600px;
    color: #FFF;
    line-height: 1.5;
    opacity: 0.8;
    font-weight: 300;
}

.plans-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.plan {
    box-shadow: 0 20px 50px var(--text-100-color);
    border: 1px solid var(--text-100-color);
    border-radius: 20px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation-name: fadeInUp;
    animation-timeline: view();
    animation-range: entry;
}

.plan h3 {
    margin-bottom: 15px;
}

.plan .price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.plan .features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plan .features li {
    margin-bottom: 10px;
}

.plan .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.plan .btn:hover {
    background-color: #0056b3;
}

.plan-price ins {
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: var(--black);
    line-height: 100%;
}

.plan-price del {
    color: var(--text-300-color);
    margin-inline-start: 10px;
}

ul.plan-features li::marker {
    content: "\e06c";
    font-family: 'lucide';
    color: var(--secondary-color);
}

ul.plan-features {
    text-align: start;
    padding: 0;
    margin-inline-start: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

ul.plan-features li {
    margin: 0;
    padding-inline-start: 10px;
}

h2.plan-name {
    font-size: 20px;
    color: var(--text-500-color);
}

a.buy-btn {
    margin-top: auto;
    border: 1px solid var(--secondary-dark-color);
    padding: 15px;
    font-size: 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.2s;
}

a.buy-btn:hover {
    transform: translateY(-2px);
}

a.buy-btn:active {
    transform: scale(.95) translateY(-2px);
}

section#plans {
    margin-bottom: 100px;
}

.plans-head {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plans-head h2 {
    font-size: 36px;
    color: var(--text-500-color);
    animation-name: fadeIn;
    animation-timeline: view();
}

.plans-head p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    animation-name: fadeIn;
    animation-timeline: view();
}

.page-head.wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    object-position: top left;
}

.page-head>*:not(video) {
    position: relative;
    z-index: 3;
}

.page-head:before {
    content: "";
    width: 100%;
    height: 100%;
    inset: 0;
    background: linear-gradient(270deg, #47055d 50%, #47055d1a);
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.page-head a {
    background-color: #FFF;
    width: max-content;
    padding: 0.6em 1em;
    line-height: 100%;
    border-radius: 10px;
    font-size: clamp(20px, 2.5vw, 27px);
    margin-top: 30px;
    animation: 0.5s zoomIn ease-in-out;
}


.recommended a.buy-btn {
    background: var(--white);
    color: var(--black);
    border: none;
}


.plan.recommended {
    background-color: var(--black);
    border: none;
    box-shadow: none;
    color: var(--text-200-color);
}

.recommended h2.plan-name,
.recommended .plan-price ins {
    color: var(--white);
}

.recommended p.plan-description {
    color: var(--text-100-color);
}


/* FEATURES */
.coaching-features {
    margin-bottom: 100px;
}

.coaching-features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    font-size: 36px;
    color: var(--text-500-color);
    animation-name: fadeIn;
    animation-timeline: view();
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation-name: fadeInUp;
    animation-timeline: view();
    animation-range: entry;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 48px;
    grid-row: 1/3;
    animation-name: zoomIn;
    animation-timeline: view();
}

.feature-card h3 {
    font-size: 22px;
    color: var(--text-500-color);
}

.feature-card p {
    font-size: 18px;
    color: var(--text-400-color);
    line-height: 1.6;
}

@media all and (max-width: 768px) {
    .page-head.wrapper video {
        object-fit: cover;
    }

    .page-head {
        padding: 50px;
    }

    .plans-head {
        margin: 15vw 0;
    }
}

@media all and (max-width: 480px) {
    .page-head.wrapper video {
        display: none;
    }

    .page-head:before {
        background: linear-gradient(45deg, #47055d1a, #47055d);
    }
}


/**/
.trainers-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    margin-top: 30px;
}

.trainer-card {
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    border-radius: 20px;
    padding: 30px;
    animation-name: fadeInUp;
    animation-timeline: view();
    animation-range: entry;
    background-color: var(--white);
    box-shadow: 0 10px 10px rgb(0 0 0 / 5%);
}

.book-meeting {
    margin-bottom: 100px;
    background-color: var(--text-100-color);
    padding: 10vh 0;
}


.trainer-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    object-fit: cover;
    object-position: right;
}

.book-trainer {
    font-size: 18px;
    background: var(--black);
    color: #FFF;
    width: 100%;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    opacity: 0.8;
    transition: 0.1s;
}

b.trainer-name {
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
    color: var(--black);
}

.booking-wrapper p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    animation-name: fadeIn;
    animation-timeline: view();
}

.booking-wrapper h2 {
    font-size: 36px;
    color: var(--text-500-color);
    animation-name: fadeIn;
    animation-timeline: view();
}

.booking-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.book-trainer:before {
    content: "\e2b9";
    font-family: 'lucide';
}

.book-trainer:hover {
    opacity: 1;
}