/* ==========================================================================
   FONT REGISTRATION (Haim Classic v2 FM & Almoni)
   ========================================================================== */

/* Haim Classic v2 FM
   ========================================================================== */
@font-face {
    font-family: 'Haim Classic v2 FM';
    src: url('../fonts/haim-classic-light-fm.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Haim Classic v2 FM';
    src: url('../fonts/haim-classic-regular-fm.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Haim Classic v2 FM';
    src: url('../fonts/haim-classic-bold-fm.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Haim Classic v2 FM';
    src: url('../fonts/haim-classic-black-fm.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

/* Almoni
   ========================================================================== */
@font-face {
    font-family: 'Almoni AAA';
    src: url('../fonts/almoni-regular-aaa.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
/* ==========================================================================
   1. RESET, VARIABLES & GLOBAL DESIGN TOKENS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #202020;
    --bg-darker: #202020;
    --accent-lime: #dffe95;
    --text-white: #ffffff;
    --text-gray: #b0b5bc;
    --card-gray: #202020;
    --light-gray: #f4f6f8;

    /* Controls inner padding of the form sidebar at all sizes */
    --form-px: clamp(16px, 2vw, 24px);
}

/* ==========================================================================
   2. STRUCTURAL CANVAS LAYOUT
   ========================================================================== */
body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 3030px;
    max-width: 1920px;
    margin: 0 auto;
    direction: rtl;
}

.container {
    width: 1920px;
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
}

/* --- SITE WRAPPER & MAIN PAGE --- */
.site-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0px, 0vw, 0px);
    padding-top: 0;
    overflow: unset;
    font-family: 'Haim Classic v2 FM' !important;
}
.site-wrapper * {
    font-family: 'Haim Classic v2 FM' !important;
}

.site-wrapper .program-description-text *,
.site-wrapper .audience-paragraph-text *,
.site-wrapper .admission-desc
{
    font-family: 'Almoni AAA' !important;
}

.main-page {
    width: clamp(320px, 79.2vw, 1521px);
    flex: 1 1 clamp(320px, 60vw, 1521px);
    min-width: 0;
}

/* --- TOP NAVIGATION BAR --- */
.top-nav-bar {
    width: 100%;
    background-color: var(--bg-darker);
    padding: 32px 0;
}

.top-bar-container {
    width: 1920px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.brand-identity-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-text-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.brand-line-top {
    font-weight: 900;
    font-size: 34px;
    line-height: 0.85;
    color: #FFFFFF;
    letter-spacing: 0%;
}

.brand-line-bottom {
    font-weight: 700;
    font-size: 34px;
    line-height: 0.85;
    color: #FFFFFF;
    letter-spacing: 0%;
    margin-top: 4px;
}

.brand-logo-icon {
    width: auto;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   3. HERO AREA & STICKY FORM LAYOUT
   ========================================================================== */
.hero {
    background-color: var(--bg-darker);
    padding: 60px 0 100px;
    position: relative;
    width: clamp(300px, 73.4vw, 1409px);
    margin: 0 auto;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-top: 40px;
}

.hero-main-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 45px;
    width: 100%;
    max-width: 1521px;
}

.text-brand-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.badge-date-hero {
    width: 208px;
    height: 29px;
    background: #FFFFFF;
    color: #202020;
    opacity: 1;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    line-height: 0.78;
    letter-spacing: 0%;
    margin-bottom: 12px;
}

.main-title-hero {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.title-line-1 {
    color: #F1F1F1;
    font-weight: 700;
    font-size: clamp(48px, 7.8vw, 150px);
    line-height: 0.75;
    letter-spacing: 0%;
}

.title-line-2 {
    color: #F1F1F1;
    font-weight: 700;
    font-size: clamp(48px, 7.8vw, 150px);
    line-height: 0.75;
    letter-spacing: 0%;
    margin-top: -5px;
}

.sub-title-hero {
    color: #F1F1F1;
    font-weight: 300;
    font-size: clamp(20px, 2.2vw, 42px);
    line-height: 1;
    letter-spacing: 0%;
    text-align: right;
    margin-top: 18px;
}

.logo-graphic-container {
    width: clamp(120px, 18.5vw, 354.58px);
    height: clamp(120px, 18.5vw, 354.58px);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-graphic-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   STICKY LEAD FORM
   Key fix: all inner children use width:100% + padding via --form-px
   instead of hardcoded 354px, so nothing overflows the sidebar at any size.
   ========================================================================== */
.hero-form-container {
    opacity: 1;
    background-color: #1e2022;
    padding: 20px 0;
    position: sticky;
    top: 40px;
    align-self: flex-start;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    width: clamp(330px, 20.8vw, 399px);
    flex: 0 0 clamp(330px, 20.8vw, 399px);
    height: max-content;
    overflow: hidden; /* hard clip — nothing escapes the sidebar */
}

.form-header-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0 var(--form-px);
    box-sizing: border-box;
}

.form-top-meta-date {
    font-weight: 700;
    font-size: 20px;
    line-height: 0.78;
    letter-spacing: 0%;
    color: #F1F1F1;
    margin-bottom: 16px;
}

.form-top-meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    font-size: 20px;
    line-height: 0.78;
    letter-spacing: 0%;
    color: #F1F1F1;
}

.form-top-meta-list li:not(:last-child)::after {
    content: "/";
    margin-right: 8px;
    color: #F1F1F1;
}

.form-main-heading-title {
    font-weight: 700;
    font-size: clamp(32px, 2.5vw, 48px);
    line-height: 0.95;
    letter-spacing: 0%;
    color: #FFFFFF;
    direction: rtl;
}

/* Grid that holds the inputs — fluid, no fixed pixel width */
.sticky-lead-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 41px;
    column-gap: 18px;
    width: 100%;
    padding: 0 var(--form-px);
    box-sizing: border-box;
}

/* Each input row — fluid */
.floating-input-group {
    position: relative;
    width: 100%;
    height: 28px;
}

.floating-input-group input,
.floating-input-group select {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #F1F1F1;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 20px;
    padding: 0 5px;
    direction: rtl;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.floating-input-group select option {
    background-color: #1e2022;
    color: #FFFFFF;
}

.floating-input-group label {
    position: absolute;
    right: 5px;
    top: 0;
    color: #F1F1F1;
    font-weight: 300;
    font-size: 20px;
    line-height: 0.78;
    transition: transform 0.25s ease, font-size 0.25s ease, color 0.25s ease;
    transform-origin: top right;
    pointer-events: none;
    z-index: 1;
}

.floating-input-group input:focus ~ label,
.floating-input-group input:not(:placeholder-shown) ~ label,
.floating-input-group select:focus ~ label,
.floating-input-group select:valid ~ label {
    transform: translateY(-20px);
    font-size: 14px;
    color: #EFFFAE;
}

.floating-input-group input:focus,
.floating-input-group select:focus {
    outline: none;
    border-bottom: 1px solid #EFFFAE;
}

/* Validation error states */
.floating-input-group input.input-error-state,
.floating-input-group select.input-error-state {
    border-bottom: 1px solid #ff7675 !important;
}

.input-error-state .checkbox-visual-box {
    border-color: #ff7675 !important;
}

.floating-input-group input.input-error-state ~ label,
.floating-input-group select.input-error-state ~ label {
    color: #ff7675 !important;
}

.form-field-error-msg {
    position: absolute;
    bottom: -18px;
    right: 5px;
    font-size: 11px;
    color: #ff7675;
    line-height: 1;
    direction: rtl;
    text-align: right;
    font-weight: bold;
    white-space: nowrap;
}

.marketing-checkbox-group .form-field-error-msg {
    bottom: -14px;
    right: 36px;
}

/* Checkbox row — fluid */
.marketing-checkbox-group {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    margin-top: -10px;
}

.custom-checkbox-container {
    position: relative;
    cursor: pointer;
    display: block;
    width: 24.93px;
    height: 24.93px;
    flex-shrink: 0;
}

.custom-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-visual-box {
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #F1F1F1;
    background-color: transparent;
    transition: background-color 0.2s, border-color 0.2s;
}

.custom-checkbox-container input:checked ~ .checkbox-visual-box {
    background-color: #EFFFAE;
    border-color: #EFFFAE;
}

.checkbox-visual-box::after {
    content: "";
    position: absolute;
    display: none;
    left: 8px;
    top: 4px;
    width: 6px;
    height: 11px;
    border: solid #202020;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox-container input:checked ~ .checkbox-visual-box::after {
    display: block;
}

.marketing-consent-text {
    font-family: 'Almoni Neue DL 4.0 AAA', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 0%;
    text-align: right;
    color: #F1F1F1;
    margin: 0;
    direction: rtl;
}

/* Buttons row — fluid, each button takes equal share */
.form-action-buttons-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    gap: 12px;
}

.btn-action-submit,
.btn-action-call {
    flex: 1 1 0;
    min-width: 0;
    height: 46px;
    opacity: 1;
    border: none;
    cursor: pointer;
    border-radius: 0px;
    font-weight: 700;
    font-size: clamp(15px, 1.1vw, 20px);
    line-height: 1.27;
    letter-spacing: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: opacity 0.2s;
    text-decoration: none;
}

.btn-action-submit {
    background: #EFFFAE;
    color: #202020;
    padding: 10px 8px;
}

.btn-action-call {
    background: #C2D4E3;
    color: #202020;
    padding: 10px 8px;
}

.phone-btn-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.btn-action-submit:hover,
.btn-action-call:hover {
    opacity: 0.85;
}

/* ==========================================================================
   4. MIDDLE CONTENT SECTIONS
   ========================================================================== */

/* --- TICKER / USP BAR --- */
.ticker-bar {
    max-width: 1521px;
    width: 100%;
    height: 154px;
    background: #EFFFAE;
    opacity: 1;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 50px;
    padding-left: 100px;
    margin: 0;
    display: flex;
    align-items: center;
}

.ticker-container {
    width: 1409px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 0 !important;
}

.ticker-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    color: #202020;
}

.ticker-item i {
    font-size: 44px;
    color: #202020;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-item p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.19;
    text-align: right;
    letter-spacing: 0em;
    color: #202020;
    margin: 0;
}

/* --- PROGRAM ABOUT SECTION --- */
.program-about-section {
    width: 100%;
    background-color: var(--bg-dark);
    padding: 100px 0;
}

.program-about-container {
    max-width: 1521px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.program-about-inner {
    width: 1409px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.program-image-wrapper {
    width: clamp(200px, 26vw, 499px);
    height: clamp(120px, 16vw, 308px);
    opacity: 1;
    border-radius: 0px;
    overflow: hidden;
    flex-shrink: 0;
}

.program-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-content-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    max-width: 750px;
}

.program-main-title {
    font-weight: 700;
    font-size: clamp(24px, 2.1vw, 40px);
    line-height: 1.00;
    letter-spacing: 0%;
    color: #F1F1F1;
    margin: 0 0 24px 0;
}

.program-sub-heading {
    font-weight: 400;
    font-size: clamp(16px, 1.15vw, 22px);
    line-height: 1.20;
    letter-spacing: 0%;
    color: #F1F1F1;
    margin: 0 0 28px 0;
    max-width: 560px;
}

.program-description-text {
    font-weight: 400;
    font-size: clamp(15px, 1.04vw, 20px);
    line-height: 1.40;
    letter-spacing: 0%;
    color: #F1F1F1;
    margin: 0;
}

/* --- SPEECH BUBBLES SECTION --- */
.speech-bubbles-section {
    width: 100%;
    background-color: var(--bg-dark);
    padding: 20px 0;
    max-width: 1521px;
}

.bubbles-grid-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(40px, 7.8vw, 150px);
}

.bubble-column-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
}

.align-right-side {
    align-items: flex-start;
    width: clamp(280px, 24.5vw, 471px);
}

.align-left-side {
    align-items: flex-start;
    width: clamp(280px, 27.6vw, 529px);
}

.tag-speech-bubble {
    width: auto;
    min-width: 236px;
    height: 50.62px;
    background: #EFFFAE;
    opacity: 1;
    padding-top: 17px;
    padding-right: 16px;
    padding-bottom: 21px;
    padding-left: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 400;
    font-size: 20px;
    line-height: 0.78;
    letter-spacing: 0%;
    text-align: center;
    color: #202020;
    position: relative;
    margin-bottom: 30px;
    margin-right: -40px;
}

.align-right-side .tag-speech-bubble {
    margin-right: -100px;
}

.tag-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -11px;
    right: 0px;
    width: 16.27px;
    height: 11.9px;
    background: #EFFFAE;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.stats-data-stack {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.sub-header-bar-blue {
    width: 310px;
    height: 50px;
    background: #C2D4E3;
    opacity: 1;
    border-radius: 0;
    padding: 17px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    font-size: 20px;
    line-height: 0.78;
    letter-spacing: 0%;
    text-align: center;
    color: #202020;
    align-self: flex-end;
}

.main-stats-card-bubble {
    width: 470.84px;
    height: 88px;
    background: #C2D4E3;
    opacity: 1;
    border-radius: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    gap: 16px;
    height: auto;
    padding: 20px;
}

.main-stats-card-bubble::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0px;
    width: 21.64px;
    height: 11.9px;
    background: #C2D4E3;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.counter-column-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.counter-huge-number {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.00;
    letter-spacing: 0%;
    text-align: center;
    color: #202020;
    margin-bottom: 4px;
}

.counter-label-desc {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.00;
    letter-spacing: 0%;
    text-align: center;
    color: #202020;
}

.main-description-card-bubble {
    width: 529.02px;
    min-height: 151px;
    background: #C2D4E3;
    opacity: 1;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #202020;
}

.main-description-card-bubble::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 16.27px;
    height: 11.9px;
    background: #C2D4E3;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.audience-paragraph-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.30;
    letter-spacing: 0%;
    text-align: right;
    color: #202020;
    margin: 0;
}

/* --- STUDENTS VIDEO SECTION --- */
.students-video-section {
    width: 100%;
    background-color: var(--bg-dark);
    padding: 60px 0 80px 0;
}

.video-section-container {
    max-width: 1521px;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.video-section-inner {
    width: clamp(300px, 73.4vw, 1409px);
    max-width: 100%;
    margin: 0 auto;
}

.video-section-title {
    font-weight: 700;
    font-size: clamp(24px, 2.1vw, 40px);
    line-height: 0.78;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin: 0 0 40px 0;
}

.video-player-wrapper {
    width: 100%;
    max-width: 1409px;
    height: clamp(200px, 27.8vw, 533px);
    background-color: #212930;
    border: 1px solid #202020;
    opacity: 1;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.4);
}

.video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.video-custom-play-btn {
    width: 120px;
    height: 95.53px;
    background-color: #EFFFAE;
    opacity: 1;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    padding-top: 28px;
    padding-right: 40px;
    padding-bottom: 28px;
    padding-left: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s;
    z-index: 10;
}

.video-custom-play-btn:hover {
    background-color: #e5f696;
    transform: translate(-50%, -50%) scale(1.05);
}

/* --- VIDEO MODAL --- */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(21, 22, 24, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content-window {
    position: relative;
    width: 90%;
    max-width: 960px;
    background: #151618;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
}

.iframe-aspect-ratio-box {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.iframe-aspect-ratio-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}

.modal-close-trigger-btn {
    position: absolute;
    top: -45px;
    left: 0;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.2s;
}

.modal-close-trigger-btn:hover {
    color: var(--accent-lime);
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* --- SPLIT REQUIREMENTS SECTION --- */
.split-requirements-section {
    width: 100%;
    background-color: var(--bg-dark);
    padding: 40px 0;
}

.split-requirements-container {
    max-width: 1521px;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: row;
    border-radius: 0px;
    overflow: hidden;
    padding: 0;
}

.requirement-block {
    width: 50%;
    min-height: 376px;
    opacity: 1;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: clamp(24px, 2.9vw, 56px);
    padding-left: clamp(24px, 2.9vw, 56px);
    display: flex;
    flex-direction: column;
}

.lime-block-bg {
    background: #EFFFAE;
}

.blue-block-bg {
    background: #C2D4E3;
}

.block-main-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    font-size: clamp(24px, 2.1vw, 40px);
    line-height: 0.78;
    letter-spacing: 0%;
    color: #202020;
    margin: 0 auto 16px auto;
}

.heading-svg-icon {
    width: auto;
    height: 26px;
    object-fit: contain;
}

.block-sub-heading-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #202020;
    text-align: center;
    margin-bottom: 24px;
}

.admissions-matrix-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 auto;
}

.admission-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    justify-content: center;
}

.admission-label {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.1;
    color: #202020;
    text-align: end;
    width: 101px;
}

.admission-desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: #202020;
    text-align: right;
    width: 280px;
    align-items: center;
    display: flex;
}

.duration-tracks-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin-top: 10px;
}

.track-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.track-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.00;
    letter-spacing: 0%;
    color: #202020;
    margin-bottom: 6px;
}

.track-details-row {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.00;
    letter-spacing: 0%;
    color: #202020;
    display: flex;
    gap: 8px;
    direction: rtl;
}

/* --- SCHOLARSHIPS & BENEFITS SECTION --- */
.scholarships-section {
    width: 100%;
    background-color: var(--bg-dark);
    padding: 30px 0 100px 0;
    max-width: 1521px;
}

.scholarships-container {
    max-width: 1521px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
}

.scholarships-inner {
    width: clamp(300px, 73.4vw, 1409px);
    max-width: 100%;
    margin: 0 auto;
}

.scholarships-main-title {
    font-weight: 700;
    font-size: clamp(24px, 2.1vw, 40px);
    line-height: 0.78;
    letter-spacing: 0%;
    color: #F1F1F1;
    margin: 0 0 64px 0;
    text-align: right;
}

.scholarships-grid-matrix {
    width: 100%;
    display: grid;
    row-gap: 60px;
    column-gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(418px, 24fr));
}

.scholarship-card-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
}

.scholarship-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
}

.scholarship-text-content h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0%;
    color: #F1F1F1;
    margin: 0;
}

.scholarship-graphic-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    flex-shrink: 0;
}

.scholarship-graphic-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   5. FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--bg-darker);
    padding: 30px 0;
    font-size: 0.8rem;
    color: #F1F1F1;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #F1F1F1;
    text-decoration: underline;
    font-size: 12px;
}

/* ==========================================================================
   6. RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 900px) {
    .site-wrapper {
        flex-direction: column;
    }

    .main-page {
        width: 100%;
        flex: none;
    }

    .hero-form-container {
        position: static;
        width: 100%;
        flex: none;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero {
        width: 100%;
    }

    .split-requirements-container {
        flex-direction: column;
    }

    .requirement-block {
        width: 100%;
    }

    .bubbles-grid-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .align-right-side,
    .align-left-side {
        width: 100%;
        max-width: 480px;
    }

    .ticker-bar {
        height: auto;
        padding: 32px 24px;
    }

    .ticker-container {
        width: 100%;
        flex-wrap: wrap;
        gap: 24px;
    }

    .program-about-inner {
        width: 100%;
        flex-direction: column;
        gap: 32px;
        padding: 0 24px;
    }

    .program-image-wrapper {
        width: 100%;
        height: 240px;
    }
}

@media (max-width: 520px) {
    .hero-main-content {
        flex-direction: column;
        gap: 24px;
    }

    .logo-graphic-container {
        width: 120px;
        height: 120px;
    }

    .form-action-buttons-row {
        flex-direction: column;
    }

    .btn-action-submit,
    .btn-action-call {
        width: 100%;
        flex: none;
    }

    .main-stats-card-bubble {
        width: 100%;
    }

    .main-description-card-bubble {
        width: 100%;
    }

    .scholarships-grid-matrix {
        grid-template-columns: 1fr;
    }

    .admission-desc {
        width: auto;
    }
}


#glassix-container{
    display: none !important;
}