﻿/* ── Page shell ─────────────────────────────────────────────── */
.page {
    overflow: clip;
}

header.nav {
    margin-bottom: -90px;
    background-color: transparent;
}

.nav.sticky {
    background-color: rgb(255 255 255 / 90%);
}

/* ── Shared section spacing ─────────────────────────────────── */
.section {
    padding: 5vw 0;
}

/* ── Section heading ─────────────────────────────────────────── */
.section-head {
    margin-bottom: 36px;
}

.section-head h2 {
    font-size: clamp(26px, 5vw, 50px);
    font-weight: 700;
    color: var(--text-500-color);
    animation-name: fadeInUp;
    animation-timeline: view();
    margin-bottom: 20px;
}

.section-head h3 {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 600;
    color: var(--text-500-color);
}

.section-head p {
    font-size: clamp(20px, 4vw, 26px);
    color: var(--text-500-color);
    line-height: 1.5;
    max-width: 700px;
    font-weight: lighter;
    animation: fadeIn;
    animation-timeline: view();
}

.section-head--center {
    text-align: center;
}

.section-head--center p {
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-300-color);
    margin-bottom: 10px;
}

.section-label [data-lucide] {
    width: 16px;
    height: 16px;
}



/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
    background: linear-gradient(45deg, #FFF 60%, var(--secondary-light-color));
    padding-bottom: 5vw;
    padding-top: calc(90px + 5vw);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
}

/* Eyebrow */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--secondary-light-color);
    color: var(--primary-color);
    font-size: 16px;
    animation: 0.5s zoomIn ease-in-out;
}

.eyebrow [data-lucide] {
    width: 14px;
    height: 14px;
}

/* H1 */
.hero__copy h1 {
    margin: 20px 0;
    font-size: clamp(42px, 5vw, 75px);
    font-weight: 700;
    color: var(--black);
    max-width: 560px;
    animation: 0.5s fadeInUp ease-in-out;
}

.hero__copy>p {
    font-size: clamp(18px, 5vw, 23px);
    color: var(--text-500-color);
    max-width: 630px;
    margin: 30px 0;
    line-height: 1.5;
    animation: fadeIn .5s linear;
}

/* CTAs */
.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}

.hero__ctas .btn {
    font-size: 20px;
    padding: 14px 30px;
}

.hero__ctas .btn i {
    color: var(--secondary-color);
    width: 20px;
    height: 20px;
}

/* Feature pills */
.hero__pills {
    display: flex;
    gap: 15px;
    margin-top: 5vw;
    flex-wrap: wrap;
    justify-content: center;
    max-width: max-content;
}

.hero__pills span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    color: var(--black);
    animation: zoomIn;
    animation-timeline: view();
    animation-range: entry;
    background-color: var(--orange-light-color);
    padding: 10px 20px;
    border-radius: 100px;
    white-space: nowrap;
}

.hero__pills [data-lucide] {
    color: var(--secondary-dark-color);
    width: 50px;
    height: 50px;
    background-color: var(--orange-light-color);
    border-radius: 100px;
    padding: 13px;
}

/* ── Hero visual ─────────────────────────────────────────────── */
video#hero-video {
    width: clamp(400px, 40vw, 700px);
    pointer-events: none;
}

/* ════════════════════════════════════════════════════════════
   TRACKS
════════════════════════════════════════════════════════════ */
.tracks {
    background: #ffffff;
}

.tracks__layout {
    display: grid;
    align-items: center;
    /* background-color: var(--text-100-color); */
    padding: 50px;
    border-radius: 30px;
    max-width: 960px;
    margin: 0 auto 50px;
    border: 1px solid var(--text-200-color);
}

.tracks__list {
    display: flex;
    gap: 70px;
    margin-bottom: 50px;
    justify-content: center;
}

.track {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    text-align: center;
    transition: 0.5s;
    opacity: 1;
    max-width: 350px;
    flex-grow: 1;
}

article.track.track--hide {
    opacity: 0;
    pointer-events: none;
}

article.track.track--remove {
    display: none;
}

.track-wrap {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
}


.track__num {
    background: var(--secondary-light-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.track h3 {
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 600;
    color: var(--black);
}

.track p {
    font-size: 18px;
    color: var(--text-400-color);
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: justify;
    text-align-last: center;
}

.tracks__media {
    padding: 56.25% 0 0 0;
    position: relative;
    animation: zoomIn 0.5s ease-in-out;
    animation-timeline: view();
    animation-range: entry;
}

.tracks__media iframe,
.track-cover {
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 20px 30px rgb(0 0 0 / 10%);
    background-color: #000;
}

.track-cover {
    overflow: hidden;
    padding: 0;
    border: none;
    transform: none !important;
    z-index: 5;
}

button.track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button.track-cover i {
    width: 100px;
    height: 100px;
    font-size: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #eec02a;
    background: #3d0051;
    border-radius: 100px;
    transition: 0.1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.track-cover:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #3d0051ab, #ed1e7900);
}

button.track-cover:active {
    transform: scale(1);
}

button.track-cover:hover i {
    width: 110px;
    height: 110px;
}

.tracks-center {
    width: 0px;
    margin: 0 auto 150px;
}

span.track-point {
    position: absolute;
    bottom: 110%;
    left: 50%;
}

button.choose-track {
    max-width: max-content;
    background-color: var(--black);
    color: var(--white);
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 100px;
    margin: 0 auto;
}

.tracks-content {
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
    gap: 30px;
    margin: 0 auto 30px;
    justify-content: center;
}

article.track-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 350px;
    border: 1px solid var(--text-200-color);
    padding: 20px;
    border-radius: 20px;
    animation: 0.5s zoomIn ease-in-out;
}

a.track-tag {
    background-color: #000000;
    color: #FFF;
    padding: 10px 30px;
    border-radius: 100px;
    font-size: 20px;
    white-space: nowrap;
    transition: 0.1s;
}

a.track-tag:hover {
    background-color: var(--secondary-color);
}

.track-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

article.track-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

.track-card__body h3 {
    font-size: 22px;
}

.track-card__body p {
    color: var(--text-300-color);
}

/* ════════════════════════════════════════════════════════════
   COURSES
════════════════════════════════════════════════════════════ */

/* Filter chips */
.filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    overflow: auto hidden;
    padding-bottom: 30px;
}

.chip {
    padding: 10px 20px;
    border-radius: 99px;
    background: var(--text-100-color);
    color: var(--text-400-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    flex-shrink: 0;
}

.chip--active {
    background: var(--primary-color);
    color: #ffffff;
}

a.chip {
    margin-inline-start: auto;
}

/* Course grid */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(71, 5, 93, 0.09);
    box-shadow: 0 18px 44px var(--text-100-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px var(--text-200-color);
}

.course-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.course-card__body {
    padding: 30px;
}

.course-card__body h3 {
    margin: 0 0 10px;
}

.course-card__body h3 a {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-500-color);
}

.course-card__body h3 a:hover {
    color: var(--primary-color);
}

.course-card__meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-300-color);
    margin-bottom: 12px;
}

.course-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.course-card__meta [data-lucide] {
    width: 13px;
    height: 13px;
}

.course-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(71, 5, 93, 0.08);
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.price.free-price {
    color: #FFF;
    font-weight: 500;
    background-color: #6abb2a;
    border-radius: 100px;
    padding: 5px 15px;
}

/* ════════════════════════════════════════════════════════════
   WHY US
════════════════════════════════════════════════════════════ */
.why {
    background:
        linear-gradient(130deg, rgba(10, 6, 16, 0.88), rgba(55, 30, 75, 0.84)),
        url('../images/photo-1511578314322-379afb476865.jpg') center/cover no-repeat;
    color: #ffffff;
    background-attachment: fixed;
    background-blend-mode: color-burn;
}

.why__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px 100px;
}

/* Stats grid */
.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat {
    padding: 30px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0 30px;
    align-items: center;
    align-content: center;
    height: 180px;
}

.stat [data-lucide] {
    width: 60px;
    height: 60px;
    color: var(--secondary-color);
    display: block;
    grid-row: 1/3;
}

.stat strong {
    display: block;
    font-size: clamp(18px, 7vw, 36px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
    color: #ffffff;
}

.stat span {
    font-size: clamp(18px, 5vw, 24px);
    color: rgba(255, 255, 255, 0.7);
}

/* Copy */
.wrapper.why__inner .section-head h2 {
    color: var(--white);
    text-shadow: 0 2px 0px #000;
}

.wrapper.why__inner .section-head p {
    color: var(--text-100-color);
    text-shadow: 0 2px 0px #000;
}

.wrapper.why__inner .section-head {
    display: grid;
    gap: 30px;
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════════ */
.testimonials {
    /* background: linear-gradient(180deg, #f5f3f9 0%, #ffffff 100%); */
    border-top: 1px solid var(--text-100-color);
    padding: 0;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.testimonials .section-head--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5vw 0;
}

.testimonials-wrapper .section-head p {
    margin-bottom: 50px;
}

.testimonials .splide__slide {
    height: auto !important;
}

.testi-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.testimonials .splide {
    overflow: hidden;
    padding: 0 30px;
    border-radius: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials .splide__track {
    overflow: visible !important;
}

.testi-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 3px 30px rgba(71, 5, 93, 0.07);
    display: flex;
    flex-direction: column;
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 30px;
}

.stars {
    display: flex;
    margin-bottom: 14px;
    color: #eec02a;
    margin-top: auto;
}

.stars svg {
    width: 15px;
    height: 15px;
    fill: goldenrod;
}

.short-text,
.full-text {
    font-size: 20px;
    color: var(--text-400-color);
    flex: 1;
    margin-bottom: 15px;
    text-align: justify;
}

.full-text {
    display: none;
}

.short-text button {
    font-size: 18px;
    color: darkgoldenrod;
}

.testi-card__footer {
    display: flex;
    align-items: center;
    gap: 0 10px;
    flex-direction: column;
    gap: 10px;
}

img.testi-card__avatar {
    border-radius: 1em;
    width: 60px;
    height: 60px;
    opacity: 0.8;
}

.testi-card footer strong {
    font-size: 14px;
    color: var(--text-300-color);
    font-weight: normal;
    text-align: center;
}

.testi-card footer span {
    font-size: 13px;
    color: var(--text-300-color);
}

/* ════════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════════ */
.services {
    background: #ffffff;
}

.services__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.services__head .section-head p {
    max-width: 700px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-rows: auto auto;
    gap: 30px;
}

.service-card {
    border-radius: 22px;
    padding: 30px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    animation-name: zoomIn;
    animation-timeline: view();
    animation-range: entry;
}

.service-card__icon {
    margin-bottom: 18px;
}

.service-card__icon [data-lucide] {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 600;
    color: var(--text-500-color);
}

.service-card p {
    font-size: clamp(18px, 3vw, 20px);
    color: #000;
    flex: 1;
    opacity: .6;
}

.service-card__links {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    transition: gap 0.15s;
    max-width: max-content;
}

.service-card__link:hover {
    gap: 10px;
}

.service-card__link [data-lucide] {
    width: 14px;
    height: 14px;
}

/* Tone colors */
.service-card--peach {
    background: linear-gradient(45deg, #fff6eb, #ffb4af);
}

.service-card--peach h3 {
    color: #800A00;
}

.service-card--peach h3 {
    color: #800A00;
}

.service-card--blue {
    background: linear-gradient(45deg, #faf7ff, #d2dfff);
}

.service-card--blue h3 {
    color: #374097;
}

.service-card--rose {
    background: linear-gradient(45deg, #fffce7, #d0fff1);
}

.service-card--rose h3 {
    color: #007d57;
}

.service-card--blue2 {
    background: linear-gradient(45deg, #f8ebff, #ffe0ef);
}

.service-card--blue2 h3 {
    color: #47055c;
}

.service-card--lime {
    background: linear-gradient(45deg, #e8e7ff, #f9ffc0);
}

.service-card--lime h3 {
    color: #5A6400;
}

.service-card--gray {
    /* background: linear-gradient(45deg, #ffffff, #f9f9f9); */
    border: 1px solid var(--text-200-color);
}

.service-card--gray h3 {
    color: #a2a2a2;
}

.service-card--brown {
    background: linear-gradient(45deg, #f7f7f7, #ead6d6);
}

.service-card--brown h3 {
    color: #5d4635;
}

.service-card--purple {
    background: linear-gradient(45deg, #f9f5ff, #e2d4ff);
}

.service-card--purple h3 {
    color: #4d1f84;
}

.service-card--yellow h3 {
    color: #7E6908;
}

.services-foot {
    max-width: 600px;
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-top: 40px;
    margin-inline-start: auto;
}

.services-foot i {
    width: 60px;
    height: 60px;
}


/* P2P MEET */
.consulting {
    background: linear-gradient(165deg, #090D1F 0%, #141832 40%, #1c2248 68%, #0e1228 100%);
    padding: 50px;
    color: #FFF;
    position: relative;
    z-index: 1;
    /* margin-top: 50px; */
    overflow: hidden;
}

.consulting-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
    background-color: #32305330;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    z-index: 1;
    animation-name: fadeIn;
    animation-timeline: view();
}

.consulting-end h2 {
    font-size: clamp(24px, 4vw, 40px);
}

.consulting-end p {
    font-size: clamp(14px, 3vw, 20px);
    font-weight: lighter;
    line-height: 1.5;
    /* opacity: 0.8; */
    max-width: 700px;
    color: #cad2ff;
}

.consulting-tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 450px;
    font-size: 14px;
    margin-top: 10px;
}

.consulting-tags li {
    padding: 10px 15px;
    border-radius: 14px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .12);
    color: #96a6d3;
    backdrop-filter: blur(10px);
    position: absolute;
    white-space: nowrap;
    animation: float 7s linear alternate infinite;
    cursor: cell;
    transition: 0.1s;
    user-select: none;
}

.consulting-tags li:hover {
    background-color: rgba(255, 255, 255, .055);
    color: #FFF;
    animation-play-state: paused;
}

.consulting-tags li:nth-of-type(1) {
    bottom: 20%;
    right: 50%;
    animation-delay: 0.3s;
    transform-origin: bottom left;
}

.consulting-tags li:nth-of-type(2) {
    bottom: 7%;
    left: -10%;
    animation-delay: .6s;
    transform-origin: top right;
}

.consulting-tags li:nth-of-type(3) {
    bottom: 15%;
    right: -10%;
    animation-delay: .9s;
    transform-origin: top right;
}

.consulting-end {
    display: grid;
    gap: 10px;
}

.consulting-start img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    border: 2px solid #85a6ff6b;
    box-shadow: 0 20px 40px #171e4c;
    transition: 0.5s;
}

.consulting-start img:hover {
    border-color: #5667ff;
    box-shadow: 0 0px 100px #2f3872;
}

.consulting-cta {
    display: flex;
    gap: 10px;
    padding: 30px;
    border-radius: 20px;
    background-color: rgb(0 0 0 / 30%);
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
}

.consulting-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
    grid-column: 2/3;
    grid-row: 1/3;
}

.consulting-links a {
    display: flex;
    padding: 15px 30px;
    text-align: center;
    justify-content: center;
    border-radius: 10px;
    transition: 0.3s;
    white-space: nowrap;
    flex-grow: 1;
}

.consulting-links a:first-of-type {
    background-color: #3A4BE0;
    box-shadow: 0 10px 20px #4253d880;
}

.consulting-links a:first-of-type:hover {
    background-color: #4F63FF;
    box-shadow: 0 10px 40px #4f63ff80;
    transform: translateY(-2px);
}

.consulting-links a:last-of-type {
    background-color: #00a158;
    box-shadow: 0 10px 20px #019f3e80;
}

.consulting-links a:last-of-type:hover {
    background-color: #00cd70;
    box-shadow: 0 10px 40px #30da7e80;
    transform: translateY(-2px);
}

.consulting-cta h3 {
    font-size: 24px;
    font-weight: normal;
}

.consulting-cta p {
    font-size: 18px;
    font-weight: lighter;
    line-height: 1.5;
    opacity: 0.8;
}

.consulting-start {
    position: relative;
}

@keyframes float {
    50% {
        transform: translateY(-10px) rotate(-2deg)
    }

    100% {
        transform: translateY(10px) rotate(2deg)
    }
}

.consulting video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    opacity: 0.05;
}

span.consulting-label {
    width: max-content;
    background-color: #1b2145;
    color: #85a6ff;
    border: 1px solid #86a7ff3b;
    padding: 7px 15px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ════════════════════════════════════════════════════════════
   BLOG
════════════════════════════════════════════════════════════ */
.blog {
    background: #faf9fc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.blog-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(71, 5, 93, 0.08);
    box-shadow: 0 8px 28px rgba(71, 5, 93, 0.07);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    animation: fadeIn 1s ease-in-out forwards;
    animation-timeline: view();
    animation-range: entry;
    opacity: 0;
}

.blog-card:nth-of-type(1) {
    animation-delay: 0
}

.blog-card:nth-of-type(2) {
    animation-delay: 0.5s
}

.blog-card:nth-of-type(3) {
    animation-delay: 1s
}

.blog-card:nth-of-type(4) {
    animation-delay: 1.5s
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.blog-card__body {
    padding: 30px;
    display: grid;
    gap: 5px;
    flex-grow: 1;
}

.blog-card__body a {
    max-width: max-content;
    margin-top: auto;
}

.blog-card__body h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-500-color);
    overflow: hidden;
}

.blog-card__body p {
    font-size: 16px;
    color: var(--text-300-color);
    margin-top: auto;
}

/* ════════════════════════════════════════════════════════════
   PARTNERS STRIP
════════════════════════════════════════════════════════════ */
.partners {
    padding: 30px 0;
    background: #f0eef5;
    position: relative;
}

.partners:before,
.partners:after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 30vw;
    z-index: 1;
    pointer-events: none;
}

.partners:before {
    background: linear-gradient(90deg, transparent, var(--text-100-color));
    inset-inline-start: 0;
}

.partners:after {
    background: linear-gradient(90deg, var(--text-100-color), transparent);
    inset-inline-end: 0;
}

.partners__row {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 100px;
}

.partner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner img {
    width: auto;
    filter: grayscale(100%) opacity(0.4);
    transition: filter 0.2s;
}

.partner img:hover {
    filter: grayscale(0%) opacity(1);
}



/* RESPONSIVE */
@media screen and (max-width: 1280px) {
    .consulting-cta {
        flex-wrap: wrap;
    }

    .consulting-wrapper.wrapper {
        width: 100%;
    }

    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 5vw;
    }

    .section-head.section-head--center {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    article.testi-card {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 1024px) {
    .wrapper.hero__inner {
        grid-template-columns: 1fr;
    }

    video#hero-video {
        display: none;
    }

    .consulting-wrapper.wrapper {
        padding: 0;
        background: none;
    }
}

@media screen and (max-width: 960px) {
    nav#site-nav {
        display: none;
    }

    .hero__pills [data-lucide] {
        width: 30px;
        height: 30px;
        padding: 5px;
    }

    .filters {
        justify-content: flex-start;
    }

    a.chip {
        margin: initial;
    }

    .tracks__layout {
        grid-template-columns: 1fr;
    }

    .tracks__list {
        flex-direction: row;
        gap: 30px;
    }

    article.track {
        padding-inline-start: 0;
        padding-top: 30px;
        max-width: 100%;
    }

    .track:before,
    .track:after {
        width: 100%;
        height: 10px;
    }

    .track-wrap {
        flex-direction: column;
    }

    .wrapper.why__inner {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 10vw 0
    }

    .why {
        padding: 15vw 0;
    }

    .consulting-wrapper.wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .consulting-start {
        width: 300px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .course-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5vw;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 5vw;
    }

    article.stat {
        height: auto;
    }

    span.track-point {
        display: none;
    }

    .track-wrap {
        grid-row: 1/3;
    }

    .track p {
        text-align: start;
    }

    button.choose-track {
        margin-inline-start: 0;
    }

    .tracks__list {
        flex-direction: column;
    }


    article.track {
        padding-top: 0;
        display: grid;
        grid-template-columns: 200px 1fr;
        border: 1px solid var(--text-200-color);
        border-radius: 20px;
        padding: 30px;
        align-items: center;
    }

    .track:before,
    .track:after {
        width: 10px;
        height: 100%;
    }

    .services-grid {
        gap: 5vw;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .service-card__icon img {
        height: 10vw;
    }

    .tracks-center {
        margin: 0 auto 100px !important;
    }

    .testimonials .splide {
        padding: 30px 0;
        width: 100%;
    }

    .testi-card {
        padding: 5vw
    }

    p.short-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {


    article.track {
        grid-template-columns: 1fr;
    }

    .track-wrap {
        flex-direction: row;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .tracks__layout {
        padding: 5vw
    }

    .track p {
        text-align-last: start;
    }

    button.track-cover i {
        width: 20vw;
        height: 20vw;
    }
}

@media screen and (max-width: 480px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    article.service-card {
        min-height: auto;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0 20px;
    }

    .service-card__icon {
        grid-row: 1/4;
    }

    .service-card__icon img {
        height: auto;
        width: 8vw;
    }

    .hero__ctas .btn {
        flex-grow: 1;
    }


    .consulting {
        padding: 50px 5vw;
    }
}

@media screen and (max-width: 420px) {
    .consulting-start {
        width: 100%;
    }
}