:root {
    --color-black: #000;
    --color-white: #fff;

    --color-green: #95a80f;
    --color-green-bright: #b7df16;
    --color-green-hover: #b9d311;
    --color-green-strong: #c7f000;

    --color-purple: #7b58c6;
    --color-purple-soft: #8368b5;

    --text-white-90: rgba(255, 255, 255, 0.9);
    --text-white-88: rgba(255, 255, 255, 0.88);
    --text-white-78: rgba(255, 255, 255, 0.78);
    --text-white-75: rgba(255, 255, 255, 0.75);
    --text-white-72: rgba(255, 255, 255, 0.72);
    --text-white-65: rgba(255, 255, 255, 0.65);

    --radius-sm: 4px;
    --radius-md: 10px;
    --transition: all 0.3s ease;
}



.values-section{
    background:#000;
    /*padding:120px 0;*/
    color:#fff;
}

.values-header{
    margin-bottom:60px;
}

.values-subtitle{
    color:#c4ff00;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
}

.values-title{
    font-size:50px;
    font-weight:800;
    line-height:1;
    margin-top:20px;
    margin-bottom: 50px;
}

.values-title span{
    color:#c4ff00;
}

.values-intro{
    max-width:320px;
    margin-left:auto;
    color:#aaa;
}

/* GRID */
.values-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border:1px solid rgba(255,255,255,.08);
}

/* CARD */
.value-card{
    position:relative;
    overflow:hidden;
    padding:40px;
    min-height:260px;
    background:#050814;
    border-right:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
    transition:.4s ease;
}

/* borders fix */
.value-card:nth-child(3n){
    border-right:none;
}

.value-card:nth-child(n+4){
    border-bottom:none;
}

/* NEON BORDER EFFECT */
.value-card::before{
    content:"";
    position:absolute;
    inset:0;
    border:1px solid #c4ff00;
    opacity:0;
    transition:.4s ease;
    pointer-events:none;
}

/* OVERLAY (REPLACES value-hover) */
.value-card::after{
    content:"";
    /* position:absolute; */
    /* left:0; */
    bottom:-100%;
    width:100%;
    height:100%;
    background:#c4ff00;
    /* transition:.45s ease; */
    /* z-index:1; */
}

/* content must be above overlay */
.value-card *{
    position:relative;
    z-index:2;
}

/* hover animation */
.value-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(196,255,0,.15);
}

.value-card:hover::before{
    opacity:1;
}

.value-card:hover::after{
    bottom:0;
}

/* TEXT STYLING */
.value-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.value-top i{
    color:#c4ff00;
    transition:.3s;
}

.value-top span{
    font-size:12px;
    color:#777;
}

.value-card h3{
      margin: 0 0 18px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
 }

.value-card p{
    color:#9a9a9a;
    line-height:1.7;
    transition:.3s;
}



/* RESPONSIVE */
@media(max-width:991px){
    .values-grid{
        grid-template-columns:1fr;
    }

    .value-card{
        border-right:none;
    }

    .values-title{
        font-size:35px;
    }
}

/* =========================
   BASE
========================= */
.school-hero-section,
.programs-section,
.courses-section,
.teachers-section,
.studio-rental-section,
.next-generation-section {
    position: relative;
    background: var(--color-black);
    overflow: hidden;
}

h2.school-cta-title{
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--contact-text);
    margin: 0 0 32px;

}


.teacher-image-wrapper{
    position:relative;
}

.slider-debug{
    position:absolute;
    top:20px;
    left:20px;
    background:red;
    color:#fff;
    padding:10px 15px;
    font-size:28px;
    font-weight:bold;
    z-index:999;
}


.store-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:25px;
    flex-wrap:wrap;
    padding-bottom: 10px !important;
}

.store-btn{
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    transition:.3s ease;
    color:#fff;
    width:180px;
}

.play-store{
    background:#a9cb38;
     width:180px;
}

.app-store{
    background:#000;
}

.store-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.store-btn i{
    font-size:20px;
}

@media (max-width:768px){
    .store-buttons{
        flex-direction:column;
        align-items:center;
    }

    .store-btn{
        width:260px;
        justify-content:center;
    }
    
    h2.programs-title{
    font-size: 27px !important;
}

    .studio-rental-slider {
    margin-bottom: 25px;
}
.value-top {
    margin-bottom: 10px;
}

.value-card {
   
    padding: 25px;
    min-height: 200px;
}

    .school-cta-title{
        margin-top: -85% !important;
    width: 100% !important;
    padding: 0px 0px !important;
   
    font-size: 13px !important;
    }
    
    
}



.school-hero-content,
.programs-content,
.courses-header,
.teachers-header {
    position: relative;
    z-index: 2;
}

.school-hero-title,
.programs-title,
.courses-title,
.teachers-title,
.studio-rental-title,
.next-generation-title {
    margin: 0;
    color: var(--color-white);
    font-weight: 800;
    text-transform: uppercase;
}

.section-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.section-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

/* =========================
   SCHOOL HERO
========================= */
.school-hero-section {
    min-height: 675px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.school-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.18) 0%,
            rgba(0, 0, 0, 0.35) 40%,
            rgba(0, 0, 0, 0.82) 100%),
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.14) 0%,
            rgba(0, 0, 0, 0.10) 45%,
            rgba(0, 0, 0, 0.28) 100%);
}

.school-hero-glow {
    position: absolute;
    left: -30px;
    bottom: -30px;
    z-index: 2;
    width: 220px;
    height: 280px;
    background: radial-gradient(circle,
            rgba(149, 168, 15, 0.42) 0%,
            rgba(149, 168, 15, 0.18) 35%,
            rgba(0, 0, 0, 0) 75%);
    filter: blur(26px);
    pointer-events: none;
}

/* Hero fade in/out + slide up */
.school-hero-content {
    max-width: 760px;
    margin: 0 auto;
    opacity: 0;
    margin-top: 80px;
    transition: opacity 3s ease, margin-top 3.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.school-hero-section.is-visible .school-hero-content {
    opacity: 1;
    margin-top: 0;
}

.school-hero-title {
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;font-size: 65px;
    line-height: 1;
    letter-spacing: 2px;
}

.school-hero-subtitle {
    margin: 0 0 14px;
    color: var(--color-white);
    font-family: 'Montserrat', sans-serif;font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.school-hero-text {
    margin: 0;
    color: var(--text-white-90);
    font-family: 'Montserrat', sans-serif;font-size: 14px;
    line-height: 1.8;
}

/* =========================
   PROGRAMS
========================= */
.programs-section {
    padding: 100px 0;
}

.programs-glow {
    position: absolute;
    top: -20px;
    left: -30px;
    z-index: 1;
    width: 180px;
    height: 220px;
    background: radial-gradient(circle,
            rgba(149, 168, 15, 0.38) 0%,
            rgba(149, 168, 15, 0.16) 35%,
            rgba(0, 0, 0, 0) 75%);
    filter: blur(24px);
    pointer-events: none;
}

/* Scroll animation: rapprochement */
.programs-content {
    max-width: 640px;
    transform: translateX(-160px);
    opacity: 0.3;
    transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.4s ease;
}

.programs-image-wrapper,
.programs-slider__wrapper {
    transform: translateX(160px);
    opacity: 0.3;
    transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 1.4s ease 0.1s;
}

.programs-section.is-visible .programs-content {
    transform: translateX(0);
    opacity: 1;
}

.programs-section.is-visible .programs-image-wrapper,
.programs-section.is-visible .programs-slider__wrapper {
    transform: translateX(0);
    opacity: 1;
}

.programs-title {
    margin-bottom: 26px;
    color: #8c8c8c;
    font-family: 'Montserrat', sans-serif;font-size: clamp(60px, 3vw, 71px);
    line-height: 1;
    letter-spacing: 1px;
}

.programs-title span {
    color: var(--color-green);
}

.programs-list {
    margin: 0 0 26px;
    padding-left: 18px;
}

.programs-list li {
    margin-bottom: 8px;
    color: var(--text-white-78);
    font-family: 'Montserrat', sans-serif;font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.programs-text {
    max-width: 560px;
    margin: 0;
    color: var(--text-white-72);
    font-family: 'Montserrat', sans-serif;font-size: 16px;
    line-height: 1.8;
}

.programs-image-wrapper,
.programs-slider__wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.programs-slider__track {
    display: flex;
}

.programs-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.programs-slider__prev {
    left: 10px;
}

.programs-slider__next {
    right: 10px;
}

.programs-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.programs-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.programs-slider__dot.active {
    background: var(--color-green);
}

.programs-image {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
}

/* =========================
   COURSES
========================= */
.course-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    flex: 0 0 auto;
}

.course-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.course-card-link .course-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card-link:hover .course-card {
    transform: translateY(-6px);
}

.courses-section {
    padding: 100px 0;
}

.courses-glow {
    position: absolute;
    right: 80px;
    bottom: -20px;
    z-index: 1;
    width: 180px;
    height: 70px;
    background: radial-gradient(circle,
            rgba(149, 168, 15, 0.45) 0%,
            rgba(149, 168, 15, 0.16) 35%,
            rgba(0, 0, 0, 0) 75%);
    filter: blur(22px);
    pointer-events: none;
}

.jss33,
a[href*="pro.bsport.io"]{
    display:none !important;
}

.courses-header {
    
    margin: 0 auto 42px;
}

.courses-title {
    margin-bottom: 50px;
    font-family: 'Montserrat', sans-serif;font-size: 65px;
    line-height: 1;
    letter-spacing: 1px;
}

.courses-intro {
    max-width: 760px;
    margin: 0 auto 28px;
    color: var(--text-white-88);
    font-family: 'Montserrat', sans-serif;font-size: 15px;
    line-height: 1.8;
}

.courses-toggle {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.courses-tab {
    min-width: 160px;
    padding: 12px 20px;
    border: 1px solid var(--color-green);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--color-green);
    font-family: 'Montserrat', sans-serif;font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.courses-tab.active,
.courses-tab:hover {
    background: var(--color-green);
    color: #111;
}

.courses-carousel-block {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
}

.courses-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: none;
    border-radius: 50%;
    background: var(--color-green);
    color: #111;
    font-family: 'Montserrat', sans-serif;font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.courses-arrow:hover {
    background: var(--color-green-hover);
    transform: scale(1.06);
}

.courses-viewport {
    width: 100%;
    overflow: hidden;
}

.courses-track {
    display: none;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.courses-track::-webkit-scrollbar {
    display: none;
}

.courses-track.active {
    display: flex;
}

.course-card {
    min-width: 245px;
    max-width: 245px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #333;
}

.course-card-image-wrap {
    position: relative;
}

.course-card-image {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.course-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 10px;
    border-radius: 20px;
    background: var(--color-green-bright);
    color: #111;
    font-family: 'Montserrat', sans-serif;font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.course-card-body {
    min-height: 96px;
    padding: 16px 16px 18px;
    background: #363636;
}

.course-card-title {
    margin: 0 0 8px;
    color: var(--color-white);
    font-family: 'Montserrat', sans-serif;font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.course-card-text {
    margin: 0;
    color: var(--text-white-65);
    font-family: 'Montserrat', sans-serif;font-size: 12px;
    line-height: 1.7;
}

/* =========================
   TEACHERS
========================= */
.teachers-section {
    padding: 70px 0;
}

.teachers-glow {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 1;
    width: 180px;
    height: 220px;
    background: radial-gradient(circle,
            rgba(149, 168, 15, 0.38) 0%,
            rgba(149, 168, 15, 0.16) 35%,
            rgba(0, 0, 0, 0) 75%);
    filter: blur(24px);
    pointer-events: none;
}

.teachers-header {
    max-width: 760px;
    margin: 0 auto 48px;
}

.teachers-title {
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    line-height: 0.95;
    letter-spacing: 1px;
}

.teachers-title span {
    color: #c4ff00;
}

h2.courses-title span {
    color: #c4ff00;
}

.teachers-intro {
    margin: 0;
    color: var(--text-white-88);
    font-family: 'Montserrat', sans-serif;font-size: 14px;
    line-height: 1.7;
}

.teachers-slider {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 28px;
}

.teachers-slider-window {
    flex: 1;
    overflow: hidden;
}

.teachers-slider-track {
    position: relative;
}

.teacher-slide {
    display: none;
}

.teacher-slide.active {
    display: block;
}

.teachers-arrow {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: none;
    background: transparent;
    color: var(--color-white);
    font-family: 'Montserrat', sans-serif;font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.teachers-arrow:hover {
    color: var(--color-green);
    transform: scale(1.08);
}

.teacher-image-wrapper {
    position: relative;
    overflow: hidden;
}

.teacher-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.teacher-content {
    max-width: 620px;
}

.teacher-name {
    margin: 0 0 18px;
    color: var(--color-white);
    font-family: 'Montserrat', sans-serif;font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.teacher-text {
    margin: 0 0 12px;
    color: var(--text-white-75);
    font-family: 'Montserrat', sans-serif;font-size: 14px;
    line-height: 1.8;
}

.teacher-text:last-child {
    margin-bottom: 0;
}

/* =========================
   STUDIO RENTAL
========================= */
.studio-rental-section {
    padding: 100px 0;
}

/* Scroll animation: rapprochement */
.studio-rental-content {
    max-width: 460px;
    transform: translateX(-160px);
    opacity: 0.3;
    transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.4s ease;
}
video.course-modal-video {
    height: 500px;
}
/* .studio-rental-slider {
    transform: translateX(160px);
    opacity: 0.3;
    transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 1.4s ease 0.1s;
} */

.studio-rental-section.is-visible .studio-rental-content {
    transform: translateX(0);
    opacity: 1;
    position: relative;
    z-index: 2;
}

.studio-rental-section.is-visible .studio-rental-slider {
    transform: translateX(0);
    opacity: 1;
    position: relative;
    z-index: 1;
}

.studio-rental-title {
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;font-size: 65px;
    line-height: 0.95;
    letter-spacing: 1px;
    transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.studio-rental-title-bottom {
    margin-top: 20px;
    margin-bottom: 18px;
    white-space: nowrap;
}

.studio-rental-section.is-visible .studio-rental-title {
    transform: translateX(100px);
}

.studio-rental-title span {
    color: var(--color-green);
}

.studio-rental-text {
    margin: 0 0 18px;
    color: var(--text-white-72);
    font-family: 'Montserrat', sans-serif;font-size: 14px;
    line-height: 1.8;
}

.studio-rental-list {
    margin: 0 0 22px;
    padding-left: 18px;
}

.studio-rental-list li {
    margin-bottom: 8px;
    color: var(--text-white-72);
    font-family: 'Montserrat', sans-serif;font-size: 13px;
    line-height: 1.7;
}

.studio-rental-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 2px;
    background: var(--color-white);
    color: #111;
    font-family: 'Montserrat', sans-serif;font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.studio-rental-btn:hover {
    background: var(--color-green);
    color: #111;
    transform: translateY(-2px);
    text-decoration: none;
}

.studio-rental-slider {
    display: flex;
    align-items: center;
    gap: 12px;
}

.studio-rental-slider-window {
    flex: 1;
    overflow: hidden;
}

.studio-rental-slider-track {
    position: relative;
}

.studio-rental-slide {
    display: none;
}

.studio-rental-slide.active {
    display: block;
}

.studio-rental-image {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.studio-rental-arrow {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: none;
    background: transparent;
    color: var(--text-white-65);
    font-family: 'Montserrat', sans-serif;font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.studio-rental-arrow:hover {
    color: var(--color-white);
    transform: scale(1.08);
}

/* =========================
   NEXT GENERATION
========================= */
.next-generation-section {
    padding: 110px 0 100px;
}

.next-generation-content {
    max-width: 1100px;
    margin: 0 auto;
}

.next-generation-title {
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;font-size: 65px;
    line-height: 1.02;
    letter-spacing: 1px;
}

.next-generation-title span {
    color: var(--color-white);
    transition: color 0.3s ease;
}

.next-generation-text {
    max-width: 920px;
    margin: 0 auto 34px;
    color: var(--text-white-90);
    font-family: 'Montserrat', sans-serif;font-size: 14px;
    line-height: 1.8;
}

.next-generation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 250px;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    background: var(--color-purple-soft);
    color: var(--color-white);
    font-family: 'Montserrat', sans-serif;font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.next-generation-btn .btn-arrow {
    font-family: 'Montserrat', sans-serif;font-size: 14px;
    line-height: 1;
}

.next-generation-btn:hover {
    color: #111;
    text-decoration: none;
}

.next-generation-section:hover .next-generation-title span {
    color: var(--color-green-strong);
}

.next-generation-section:hover .next-generation-btn {
    background: var(--color-green-strong);
    color: #111;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
    .school-hero-section {
        min-height: 460px;
    }

    .school-hero-title {
        font-family: 'Montserrat', sans-serif;font-size: 54px;
    }

    .school-hero-text {
        font-family: 'Montserrat', sans-serif;font-size: 13px;
    }

    .programs-section,
    .courses-section,
    .teachers-section,
    .studio-rental-section {
        padding: 80px 0;
    }

    .next-generation-section {
        padding: 90px 0 80px;
    }

    .programs-title,
    .courses-title,
    .next-generation-title {
        font-family: 'Montserrat', sans-serif;font-size: 52px;
    }

    .programs-text {
        max-width: 100%;
        font-family: 'Montserrat', sans-serif;font-size: 15px;
    }

    .programs-image {
        height: 320px;
    }

    .course-card {
        min-width: 220px;
        max-width: 220px;
    }

    .teachers-slider {
        gap: 18px;
    }

    .teacher-image {
        height: auto;
    }

    .teacher-name {
        font-family: 'Montserrat', sans-serif;font-size: 24px;
    }
.values-section{
    background:#000;
    padding:50px 0;
    color:#fff;
}
    .studio-rental-content {
        max-width: 100%;
    }

    .studio-rental-image {
        height: 360px;
    }

    .next-generation-text {
        max-width: 760px;
        font-family: 'Montserrat', sans-serif;font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .values-section{
    background:#000;
    padding:0px 0;
    color:#fff;
}
     * {
        opacity: 1 !important;
        transition: none !important;
    }
/**:not(.owl-stage):not(.owl-item):not(.owl-carousel):not(.agency-hero-content) {*/
/*        transform: none !important;*/
/*    }*/

    .school-hero-section {
        min-height: 380px;
        padding: 40px 0;
        background-position: center center;
    }

    .school-hero-title,
    .programs-title,
    .courses-title,
    .teachers-title,
    .studio-rental-title,
    .next-generation-title {
        font-family: 'Montserrat', sans-serif;font-size: 34px;
    }

    .school-hero-title {
        letter-spacing: 1px;
    }

    .school-hero-subtitle {
        font-family: 'Montserrat', sans-serif;font-size: 11px;
        letter-spacing: 1.5px;
    }

    .school-hero-text,
    .courses-intro,
    .teachers-intro,
    .studio-rental-text,
    .studio-rental-list li,
    .next-generation-text {
        font-family: 'Montserrat', sans-serif;font-size: 13px;
        line-height: 1.7;
    }

    .programs-section,
    .courses-section,
    .teachers-section,
    .studio-rental-section,
    .next-generation-section {
        padding: 60px 0;
    }

    .programs-title,
    .next-generation-title {
        line-height: 1.08;
    }

    .programs-list li {
        font-family: 'Montserrat', sans-serif;font-size: 12px;
        line-height: 1.6;
    }

    .programs-text {
        font-family: 'Montserrat', sans-serif;font-size: 14px;
        line-height: 1.75;
    }

    .programs-image {
        height: 240px;
    }

    .courses-toggle {
        flex-direction: column;
        width: 100%;
    }

    .courses-tab {
        width: 100%;
    }

    .courses-carousel-block {
        gap: 10px;
    }

    .courses-arrow {
        width: 38px;
        height: 38px;
        font-family: 'Montserrat', sans-serif;font-size: 16px;
    }

    .course-card {
        min-width: 210px;
        max-width: 210px;
    }

    .course-card-image {
        height: 180px;
    }

    .teachers-header {
        margin-bottom: 32px;
    }

    .teachers-title {
        line-height: 1.05;
    }

    .teachers-slider {
        gap: 10px;
    }

    .teachers-arrow {
        width: 34px;
        height: 34px;
        font-family: 'Montserrat', sans-serif;font-size: 28px;
    }

    .teacher-name {
        margin-bottom: 14px;
        font-family: 'Montserrat', sans-serif;font-size: 20px;
    }

    .teacher-text {
        font-family: 'Montserrat', sans-serif;font-size: 13px;
        line-height: 1.7;
    }

    .studio-rental-btn,
    .next-generation-btn {
        font-family: 'Montserrat', sans-serif;font-size: 10px;
    }

    .studio-rental-btn {
        padding: 11px 16px;
    }

    .studio-rental-image {
        height: 240px;
    }

    .studio-rental-arrow {
        width: 30px;
        height: 30px;
        font-family: 'Montserrat', sans-serif;font-size: 22px;
    }

    .next-generation-text {
        margin-bottom: 26px;
    }

    .next-generation-btn {
        min-width: 100%;
        padding: 13px 18px;
    }
}


    
/* Course modal */
.course-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,0.65);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 9999;
}
.course-modal.open { visibility: visible; opacity: 1; }
.course-modal-overlay { position: absolute; inset: 0; }
.course-modal-sheet { position: relative; width: min(540px,100%); max-height: 90vh; overflow:auto; background:#111; border-radius:16px; padding:20px; box-shadow:0 24px 60px rgba(0,0,0,0.5); z-index:1; }
.course-modal-close { position:absolute; top:12px; right:12px; width:40px; height:40px; border:none; border-radius:50%; background:rgba(255,255,255,0.06); color:#fff; font-size:0; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 12px rgba(0,0,0,0.35); }
.course-modal-close svg { width:18px; height:18px; color:#fff; }
.course-modal-close:focus { outline:2px solid rgba(255,255,255,0.12); outline-offset:2px; }
.visually-hidden { position:absolute !important; height:1px; width:1px; overflow:hidden; clip:rect(1px, 1px, 1px, 1px); white-space:nowrap; }
.course-modal-image-wrap { overflow:hidden; border-radius:12px; margin-bottom:14px; }
.course-modal-image {    width: 100%;
    height: 400px;
    object-fit: fill;
    display: block;
 }
.course-modal-badge { display:inline-block; margin-bottom:10px; padding:6px 10px; border-radius:999px; background:var(--color-green-bright); color:#111; font-weight:700; font-size:11px; }
.course-modal-title { margin:8px 0 10px; font-size:20px; color:#fff; }
.course-modal-description { color:var(--text-white-88); font-size:14px; line-height:1.6; margin-bottom:16px; }
.course-modal-button {display: flex;width:100%;padding:12px 16px;/* border-radius:999px; */background:var(--color-green);color:#111;font-weight:700;text-align:center;text-decoration:none;justify-content: center;}
body.course-modal-open { overflow:hidden; }