/* CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

/* CSS Variables */
:root {
    --clr-primary: #002c39;
    --clr-secondary: #015061;
    --clr-accent: #00c18e;
    --clr-bg: #fff7f7;
    
    --clr-text-dark: var(--clr-primary);
    --clr-text-light: #fff7f7;
    --clr-text-muted: rgba(0, 44, 57, 0.7);

    --ff-header: "Erbaum", system-ui, -apple-system, sans-serif;
    --ff-body: "Afacad", system-ui, -apple-system, sans-serif;

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;
    --fw-black: 800;

    --fs-title: 2.75rem;
    --fs-subtitle: 2.25rem;
    --fs-h1: 1.5rem;
    --fs-h2: 1.15rem;
    --fs-h3: 1.75rem; 
    --fs-body: 1.15rem;
    --fs-small: 1rem;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    --tr-main: 0.3s ease;
    --tr-reveal: 0.8s ease-out;
    --tr-delay-stagger: 0.2s;

    --container-max: 1000px;
    --br-card: 0.6rem;
}

body {
    font-family: var(--ff-body);
    font-weight: var(--fw-regular);
    font-size: var(--fs-body);
    color: var(--clr-text-dark);
    background-color: var(--clr-bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0;
}

h1 { font-family: var(--ff-header); font-size: var(--fs-h1); font-weight: var(--fw-medium); letter-spacing: 0.02em; line-height: 1.2; }
h2 { font-family: var(--ff-header); font-size: var(--fs-h2); font-weight: var(--fw-medium); letter-spacing: 0.02em; line-height: 1.25; color: var(--clr-secondary); }
h3 { font-family: var(--ff-header); font-size: var(--fs-h3); font-weight: var(--fw-medium); letter-spacing: 0.02em; line-height: 1.25; }

.t-title { font-family: var(--ff-body); font-size: var(--fs-title); font-weight: var(--fw-regular); line-height: 1.1; }
.t-subtitle { font-family: var(--ff-body); font-size: var(--fs-subtitle); font-weight: var(--fw-regular); line-height: 1.2; }
.t-h1 { font-family: var(--ff-header); font-size: var(--fs-h1); font-weight: var(--fw-medium); letter-spacing: 0.02em; line-height: 1.2; }
.t-h2 { font-family: var(--ff-header); font-size: var(--fs-h2); font-weight: var(--fw-regular); letter-spacing: 0.02em; }
.t-body { font-family: var(--ff-body); font-size: var(--fs-body); font-weight: var(--fw-regular); line-height: 1.5; }

.page-wrapper { flex: 1; display: flex; flex-direction: column; }
main { flex: 1; }

.container { width: 100%; max-width: 1000px; margin-inline: auto; padding-inline: var(--spacing-sm); }
section { padding-block: var(--spacing-lg); }

header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: background-color 0.3s ease; background-color: rgba(0, 44, 57, 0.8); }
header.scrolled { background-color: rgba(0, 44, 57, 1); box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.header-center { display: flex; justify-content: center; }
.logo { max-width: 250px; padding: var(--spacing-xs); }
footer { background-color: var(--clr-primary); color: var(--clr-text-light); padding-block: var(--spacing-xs); margin-top: auto; }

#hero {
    background-image: linear-gradient(rgba(0, 44, 57, 0.6), rgba(0, 44, 57, 0.6)), url('ALPS BG.webp');
    background-size: cover; background-position: center;
    padding-top: 200px; padding-bottom: var(--spacing-lg);
    max-height: 550px; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center; color: var(--clr-text-light);
}
#hero .t-title { margin-bottom: var(--spacing-xl); font-weight: var(--fw-regular); }
#hero .t-subtitle { margin-bottom: 0; }
#hero p.t-body { margin-top: 0; margin-bottom: var(--spacing-lg); margin-inline: auto; max-width: 80ch; }
.hero-subtitle-wrapper { position: relative; display: inline-block; margin-bottom: 0px; }
.hero-star { top: 0; right: -12px; }

.text-gradient { background: linear-gradient(to right, var(--clr-primary), var(--clr-secondary), var(--clr-accent)); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(1px 1px 1px rgba(255, 247, 247, 0.6)); font-weight: 800; }

.star-system { position: absolute; width: 14px; height: 14px; display: flex; justify-content: center; align-items: center; pointer-events: none; z-index: 10; }
.star-glow { position: absolute; width: 4px; height: 4px; background-color: white; border-radius: 50%; box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.9), 0 0 10px 4px rgba(255, 255, 255, 0.6), 0 0 15px 1px rgba(255, 255, 255, 0.4); }
.star-front { position: absolute; width: 100%; height: 100%; background-color: var(--clr-text-light); clip-path: polygon(50% 0%, 54% 46%, 100% 50%, 54% 54%, 50% 100%, 46% 54%, 0% 50%, 46% 46%); z-index: 2; }

.banner-divider { padding-top: var(--spacing-xs); padding-bottom: 0; text-align: center; background-color: var(--clr-bg); }
.banner-container { display: flex; padding-top: var(--spacing-xs); justify-content: center; align-items: center; width: 100%; }
.banner-text { background: linear-gradient(to right, var(--clr-primary), var(--clr-secondary), var(--clr-accent)); -webkit-background-clip: text; background-clip: text; color: transparent; font-size: clamp(1rem, 1.5vw, 1.25rem); letter-spacing: 0.01em; font-weight: 700; text-align: center; width: 100%; max-width: 1000px; line-height: 1.4; display: block; margin: 0 auto; }
.divider-line { width: 100%; height: 1px; background-color: var(--clr-primary); opacity: 0.6; margin-top: 9px; margin-inline: auto; }

#what-we-do { padding-block: var(--spacing-md); background-color: var(--clr-bg); }
.container-70 { width: 100%; max-width: 1000px; margin-inline: auto; padding-inline: var(--spacing-sm); }
.section-heading { color: var(--clr-text-dark); margin-bottom: var(--spacing-md); }
.what-we-do-card { background-color: var(--clr-secondary); border-radius: 0.5rem; padding: var(--spacing-md); box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08); }
.what-we-do-layout { display: flex; align-items: center; gap: var(--spacing-md); margin-top: 1%; margin-left: 5%; }
.what-we-do-text { flex: 0 0 40%; text-align: left; }
#what-we-do .section-heading { color: var(--clr-text-light); margin-bottom: var(--spacing-sm); }
#what-we-do .t-body { color: var(--clr-text-light); }
.what-bullets { list-style: none; padding: 0; margin: 0 0 var(--spacing-md); max-width: 40ch; }
.what-bullets li { position: relative; padding-left: 1.2rem; margin-bottom: 0.35rem; color: var(--clr-text-light); }
.what-bullets li::before { content: "•"; position: absolute; left: 0; top: 0; color: var(--clr-accent); }
.what-we-do-media { flex: 1; max-width: 700px; margin-inline: auto; }
.video-container { width: 100%; margin-bottom: 0; position: relative; cursor: pointer; }
.responsive-video { width: 100%; height: auto; display: block; }
.section-divider { background-color: rgba(0, 44, 57, 0.2); opacity: 1; margin-top: var(--spacing-md); }

/* --- REVEAL ANIMATIONS (RESTORED) --- */
.reveal { opacity: 0; transform: scale(0.9) translateY(50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out, visibility 0.8s; visibility: hidden; }
.reveal.active { opacity: 1; transform: scale(1) translateY(0); visibility: visible; }
.section-heading.reveal.active { transition-delay: 0s; }
.video-container.reveal.active, .what-we-do-media.reveal.active { transition-delay: 0.2s; }
.reveal:not(.active) { transition: opacity 0.6s ease-in, transform 0.6s ease-in, visibility 0.6s; }
.section-heading.reveal:not(.active) { transition-delay: 0.2s; }
.video-container.reveal:not(.active), .what-we-do-media.reveal:not(.active) { transition-delay: 0s; }

/* Reveal-on-scroll */
.reveal-on-scroll { opacity: 0; transform: translateY(20px); transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); visibility: hidden; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); visibility: visible; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

video::-webkit-media-controls-fullscreen-button { display: none; }
video::-webkit-media-controls-picture-in-picture-button { display: none; }
.video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; z-index: 5; transition: opacity 0.5s ease; background: rgba(0, 0, 0, 0.1); }
.play-button-circle { width: 60px; height: 60px; background-color: rgba(0, 193, 142, 0.2); border-radius: 50%; display: flex; justify-content: center; align-items: center; transition: transform 0.3s ease, background-color 0.3s ease; border: 1.5px solid rgba(0, 193, 142, 0.4); }
.video-overlay:hover .play-button-circle { transform: scale(1.1); background-color: rgba(0, 193, 142, 0.5); border-color: rgba(0, 193, 142, 0.8); }
.play-icon-triangle { width: 0; height: 0; border-top: 12px solid transparent; border-bottom: 12px solid transparent; border-left: 20px solid #ffffff; margin-left: 5px; }
.video-overlay.hidden { opacity: 0; pointer-events: none; }

#who-it-is-for { width: 100%; padding-top: var(--spacing-md); padding-bottom: var(--spacing-sm); background-color: var(--clr-bg); display: flex; justify-content: center; }
.who-container { width: 100%; max-width: 1000px; margin-inline: auto; padding-inline: var(--spacing-sm); display: flex; flex-direction: column; align-items: center; text-align: center; }
.who-header { margin-bottom: var(--spacing-xs); }
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; width: 100%; max-width: 850px; margin-top: var(--spacing-xl); margin-bottom: var(--spacing-xl); justify-items: center; }
.who-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.who-item p { max-width: 140px; margin-inline: auto; line-height: 1.3; }
.who-footer { margin-top: var(--spacing-sm); margin-bottom: var(--spacing-lg); }
.who-footer h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 2px; }
.who-footer p.italic { font-size: var(--fs-body); font-weight: 400; font-style: italic; background: linear-gradient(to right, var(--clr-primary), #00c18e); -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block; }
.who-footer .banner-text{ font-size: var(--fs-body); }
.who-star { top: -12px; left: -18px; width: 30px; height: 30px; margin-inline: auto; margin-bottom: 0.35rem; }
.who-star .star-front { background-color: var(--clr-accent); }
.who-star .star-glow { background-color: var(--clr-accent); box-shadow: 0 0 5px 2px rgba(0, 193, 142, 0.9), 0 0 10px 4px rgba(0, 193, 142, 0.6), 0 0 15px 1px rgba(0, 193, 142, 0.4); transform: scale(0.6); }
.who-icon { margin-bottom: var(--spacing-xs); }
.who-icon svg { width: 40px; height: 40px; stroke: var(--clr-primary); fill: none; stroke-width: 1.7; }
.who-icon svg path, .who-icon svg circle { stroke-linecap: round; stroke-linejoin: round; }

#how-it-works .container-70{ text-align: center; }
#how-it-works { padding-top: var(--spacing-md); padding-bottom: var(--spacing-lg); }
.how-header { position: relative; margin-bottom: 0; display: inline-block; }
.how-slider { overflow: hidden; touch-action: pan-y; }
.how-track { display: flex; align-items: stretch; transition: transform 0.6s ease; }
.how-slide { min-width: 100%; display: flex; padding-inline: clamp(1.5rem, 10vw, 3rem); padding-bottom: var(--spacing-md); }
.how-card { background: var(--clr-secondary); color: var(--clr-text-light); border-radius: 0.6rem; padding: var(--spacing-md); text-align: center; align-items: center; flex: 1; display: flex; flex-direction: row; gap: var(--spacing-sm); }
.framework-image-container { width: 100%; max-height: 100%; margin-inline: auto; margin-top: 0; padding-inline: var(--spacing-sm); }
.framework-png { width: 100%; height: auto; display: block; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1)); }
.how-uneven { display: flex; align-items: center; gap: var(--spacing-md); }
.how-left { flex: 0 0 25%; display: flex; flex-direction: column; justify-content: center; }
.how-left2 { flex: 0 0 35%; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.how-right { flex: 1; min-width: 0; }
.how-agile-wrapper { position: relative; display: inline-block; margin: 0.15rem 0 0.25rem; }
.how-eyebrow { font-size: var(--fs-body); font-weight: var(--fw-bold); opacity: 1; margin-bottom: 0; line-height: 1; }
.how-agile { font-size: 2.25rem; font-weight: 800; background: linear-gradient(125deg, var(--clr-accent) 0%, var(--clr-accent) 30%, var(--clr-text-light) 50%, var(--clr-accent) 70%, var(--clr-accent) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; margin: 0.15rem 0 0.25rem; }
.how-body-left { text-align: left; max-width: 100%; margin-bottom: 0; margin-left: 15%; }
.how-body-left2 { text-align: left; margin-bottom: 0; margin-right: 15%; }

.how-star { top: 12px; right: -16px; width: 30px; height: 30px; margin-inline: auto; margin-bottom: 0.35rem; }
.how-star .star-front, .slide2-star1 .star-front, .slide2-star2 .star-front { background-color: var(--clr-accent); }
.how-star .star-glow, .slide2-star1 .star-glow, .slide2-star2 .star-glow { background-color: var(--clr-accent); box-shadow: 0 0 5px 2px rgba(0, 193, 142, 0.9), 0 0 10px 4px rgba(0, 193, 142, 0.6), 0 0 15px 1px rgba(0, 193, 142, 0.4); transform: scale(0.6); }
.slide2-star1 { bottom: -12px; right: -16px; width: 30px; height: 30px; margin-inline: auto; margin-bottom: 0.35rem; }
.slide2-star2 { top: -9px; left: -13px; width: 30px; height: 30px; margin-inline: auto; margin-bottom: 0.35rem; }

#what-makes-us-different { padding-top: 0; padding-bottom: 0; background-color: var(--clr-bg); }
#what-makes-us-different .container-70 { padding-inline: var(--spacing-sm); text-align: center; }
.wmu-header { position: relative; display: inline-block; margin-bottom: var(--spacing-sm); }
.wmu-star { top: 14px; left: -22px; width: 30px; height: 30px; }
.wmu-star .star-front { background-color: var(--clr-accent); }
.wmu-star .star-glow { background-color: var(--clr-accent); box-shadow: 0 0 5px 2px rgba(0, 193, 142, 0.9), 0 0 10px 4px rgba(0, 193, 142, 0.6), 0 0 15px 1px rgba(0, 193, 142, 0.4); transform: scale(0.6); }
.wmu-block { width: 100%; border: 1px solid var(--clr-text-dark); background-color: var(--clr-bg); }
.wmu-tab + .wmu-tab { border-top: none; border-bottom: none; }
.wmu-accordion { margin-top: var(--spacing-sm); }
.wmu-tab { display: flex; align-items: center; justify-content: space-between; gap: var(--spacing-sm); padding: var(--spacing-sm) 1.5rem; text-align: left; cursor: pointer; border-radius: 0; color: var(--clr-text-dark); transition: background-color var(--tr-main), color var(--tr-main); }
.wmu-tab:hover { background-color: rgba(0, 44, 57, 0.04); }
.wmu-tab.reveal:nth-of-type(1) { transition-delay: 0.1s; }
.wmu-tab.reveal:nth-of-type(2) { transition-delay: 0.3s; }
.wmu-tab.reveal:nth-of-type(3) { transition-delay: 0.5s; }
.wmu-tab-icon { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; height: 1em; }
.wmu-tab-icon svg { width: 1em; height: 1em; transition: transform var(--tr-main); transform-origin: center; }
.wmu-tab.is-open .wmu-tab-icon svg { transform: rotate(90deg); }
.wmu-panel { border-radius: 0; overflow: hidden; margin-left: 5%; width: 95%; margin-top: -1px; margin-bottom: -1px; max-height: 0; opacity: 0; transition: max-height 1s ease, opacity 1s ease; }
.wmu-panel.active { max-height: 600px; opacity: 1; }
.wmu-panel.reveal { transition-delay: 0s !important; transform: none !important; }
.wmu-panel-inner { padding: var(--spacing-sm) 1.5rem; }

.section-transition-gradient { width: 100%; height: 70px; background: linear-gradient(to bottom, var(--clr-bg) 0%, var(--clr-bg) 10%, var(--clr-accent) 100%); }
.section-transition-gradient2 { width: 100%; height: 200px; background: linear-gradient(to bottom, var(--clr-accent) 0%, var(--clr-secondary) 100%); }

#learning-magic { color: var(--clr-text-light); text-align: center; padding: 0; background: linear-gradient(to bottom, var(--clr-secondary) 75%, var(--clr-primary) 100%); }
#learning-magic .t-title { font-size: 2rem; font-weight: 800; margin-bottom: var(--spacing-sm); letter-spacing: 0.05em; }
#learning-magic .italic { font-style: italic; opacity: 0.9; }
.learning-magic-header { position: relative; display: inline-block; margin-bottom: var(--spacing-sm); }

.learning-experience-top { display: flex; align-items: center; justify-content: space-between; gap: 4rem; padding: 100px 0 60px 0; text-align: left; }
.lx-text { flex: 1.2; }
.lx-sub { font-family: var(--ff-body); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em; color: var(--clr-text-light); margin-bottom: 0.5rem; opacity: 0.8; }
.lx-main { font-family: var(--ff-header); font-size: clamp(1.8rem, 4vw, 2.5rem); line-height: 1.1; margin-bottom: 1.5rem; color: var(--clr-text-light); }
.lx-body { font-family: var(--ff-body); font-size: 1.1rem; line-height: 1.6; color: var(--clr-text-light); }
.lx-visual { flex: 1; display: flex; justify-content: flex-end; }
.static-module-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--br-card); display: block; }

.learning-experience-bottom { padding-bottom: 100px; display: flex; flex-direction: column; align-items: center; }
.carousel-intro { text-align: center; margin-bottom: 50px; }
.carousel-intro .lx-body { margin: 0 auto; }
.carousel-wrapper { display: flex; align-items: center; justify-content: center; width: 100%; margin-bottom: 40px; }
.carousel-track { display: flex; align-items: center; justify-content: center; gap: 30px; width: 100%; }
.card { background-color: transparent; display: flex; align-items: center; justify-content: center; color: #00e0b0; font-style: italic; font-weight: 500; transition: all 0.4s ease-in-out; text-align: center; padding: 20px; border-radius: 4px; border: none !important; outline: none !important; box-shadow: none !important;}
.main-card { width: 500px; height: 300px; z-index: 2; font-size: 1.4rem; }
.side-card { width: 300px; height: 240px; opacity: 0.3; font-size: 1rem; }
.card video:focus, .main-card video:focus { outline: none !important; border: none !important; }

.nav-arrow { background: none; border: none; color: #00e0b0; font-size: 4rem; cursor: pointer; transition: transform 0.2s; user-select: none; }
.nav-arrow:hover { transform: scale(1.2); }
.legend-container { display: block; text-align: center; max-width: 600px; width: 100%; margin: 0 auto; }
.legend-text h3 { font-family: var(--ff-header); color: var(--clr-text-light); font-size: 1.4rem; margin-bottom: 8px; }
.legend-text p { font-family: var(--ff-body); color: var(--clr-text-light); line-height: 1.5; }

/* INLINE CATALOG GRID (Replaced CTA button) */
.inline-catalog-wrapper { width: 100%; max-width: 1000px; margin: 3rem auto 0; text-align: left; }
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.catalog-card { background: #fff; border-radius: 0.75rem; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.catalog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.catalog-card--soon { opacity: 0.7; pointer-events: none; }
.catalog-thumb { height: 140px; position: relative; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--clr-secondary), var(--clr-primary)); }
.catalog-thumb--alt { background: linear-gradient(135deg, #014a5c, var(--clr-primary)); }
.catalog-thumb--soon { background: linear-gradient(135deg, #2a2a2a, #111); }
.catalog-badge { position: absolute; top: 1rem; left: 1rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 50px; z-index: 2; }
.badge-available { background: var(--clr-accent); color: var(--clr-primary); }
.badge-soon { background: rgba(255,255,255,0.2); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.catalog-thumb-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 1; }
.catalog-thumb-icon svg { width: 24px; height: 24px; stroke: var(--clr-accent); }
.catalog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.catalog-title { font-family: var(--ff-header); font-size: 1.05rem; font-weight: 700; text-transform: uppercase; color: var(--clr-primary); margin: 0; }
.catalog-desc { font-size: 0.9rem; color: rgba(0,44,57,0.7); line-height: 1.5; margin: 0; flex: 1; }
.catalog-objectives { background: rgba(0,44,57,0.04); border-left: 3px solid var(--clr-accent); padding: 0.75rem; border-radius: 0 4px 4px 0; }
.catalog-objectives h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--clr-secondary); margin-bottom: 0.4rem; }
.catalog-objectives ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.catalog-objectives li { font-size: 0.8rem; color: rgba(0,44,57,0.8); padding-left: 1rem; position: relative; }
.catalog-objectives li::before { content: '›'; position: absolute; left: 0; color: var(--clr-accent); font-weight: 700; }
.catalog-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid rgba(0,44,57,0.1); margin-top: auto; }
.catalog-price { font-size: 0.85rem; font-weight: 700; color: var(--clr-accent); }
.btn-preview { font-family: var(--ff-body); font-size: 0.85rem; font-weight: 700; text-decoration: none; background: var(--clr-secondary); color: #fff; padding: 0.4rem 1rem; border-radius: 50px; transition: background 0.2s; }
.btn-preview:hover { background: var(--clr-primary); color: var(--clr-accent); }
.btn-coming-soon { font-size: 0.85rem; font-weight: 700; color: rgba(0,44,57,0.4); background: rgba(0,44,57,0.08); padding: 0.4rem 1rem; border-radius: 50px; }
.mt-auto { margin-top: auto; }

.video-sandwich-wrapper { display: flex; flex-direction: column; align-items: center; width: 100%; margin: 100px auto 0; gap: 50px; padding-bottom: 20px; }
.horizontal-divider { width: 70%; height: 2px; background-color: #00c18e; opacity: 0.8; }
.video-sandwich-content { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; max-width: 900px; }
.video-text-box { margin-bottom: 40px; }
.video-text-box .lx-main { margin-bottom: 15px; }
.video-text-box .lx-body { max-width: 650px; margin: 0 auto; }
.main-video-player { width: 100%; aspect-ratio: 16 / 9; border-radius: 8px; box-shadow: 0 15px 40px rgba(0, 44, 57, 0.3); background-color: #000; outline: none; display: block; }

/* CONTACT (UPDATED 2-COLUMN GRID) */
#contact { background-color: var(--clr-bg); padding-block: var(--spacing-xl); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--spacing-xl); align-items: start; }
.contact-left { display: flex; flex-direction: column; gap: 0; position: relative; }
.contact-overline { font-family: var(--ff-body); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clr-accent); margin-bottom: var(--spacing-sm); }
.contact-heading { font-family: var(--ff-header); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: var(--fw-medium); color: var(--clr-primary); line-height: 1.2; margin-bottom: var(--spacing-sm); }
.contact-body { font-family: var(--ff-body); font-size: 1.15rem; line-height: 1.65; color: rgba(0, 44, 57, 0.7); margin-bottom: var(--spacing-md); max-width: 90%; }
.contact-form-box { background: var(--clr-secondary); border-radius: 1.5rem; padding: 2.5rem; box-shadow: 0 15px 40px rgba(0, 44, 57, 0.15); }
.contact-form-stack { display: flex; flex-direction: column; gap: 1rem; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-row-trio { grid-template-columns: 1fr 1fr 80px; }
.contact-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-full { grid-column: 1 / -1; }
.contact-form-group label { font-family: var(--ff-header); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); }
.contact-form-group input, .contact-form-group textarea { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 0.5rem; padding: 0.8rem 1rem; color: var(--clr-text-light); font-family: var(--ff-body); font-size: 1rem; outline: none; transition: border-color 0.2s ease, background 0.2s ease; }
.contact-form-group input::placeholder, .contact-form-group textarea::placeholder { color: rgba(255, 255, 255, 0.3); }
.contact-form-group input:focus, .contact-form-group textarea:focus { border-color: var(--clr-accent); background: rgba(255, 255, 255, 0.12); }
.contact-form-group textarea { resize: vertical; min-height: 100px; }
.contact-submit-btn { width: 100%; padding: 1rem; background: var(--clr-accent); color: var(--clr-primary); font-family: var(--ff-header); font-weight: 700; font-size: 1rem; border: none; border-radius: 0.5rem; cursor: pointer; transition: background 0.25s ease, transform 0.2s ease; margin-top: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-submit-btn:hover { background: #00d9a0; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 193, 142, 0.4); }
.contact-success { text-align: center; padding: 1rem; color: var(--clr-text-light); }
.contact-success h3 { font-family: var(--ff-header); color: var(--clr-accent); font-size: 1.2rem; margin-bottom: 0.5rem; }

/* =========================================================
   LEARNING MAGIC - WIDE LAYOUT OVERRIDES 
   (Utilizing side space for a more premium, expansive look)
========================================================= */

/* Expand the main container from 1000px to 1300px */
#learning-magic .container-70 {
    max-width: 1300px;
    width: 95%;
}

/* Give the top description and image more room to breathe */
#learning-magic .learning-experience-top {
    gap: 6rem; 
}

/* Let the course catalog stretch out to fill the new width */
#learning-magic .inline-catalog-wrapper {
    max-width: 100%; /* Removes the 1000px cap so it fills the 1300px container */
}

/* Expand the bottom video player so it looks cinematic in the new space */
#learning-magic .video-sandwich-content {
    max-width: 1100px; /* Increased from 900px */
}

/* Widen the green divider lines to match the new scale */
#learning-magic .horizontal-divider {
    width: 85%; /* Increased from 70% */
}

/* Mobile Adjustments (Restored Your Exact Values) */
@media (max-width: 900px) {
    .what-we-do-layout { flex-direction: column; align-items: center; }
    .what-we-do-text { text-align: center; }
    .video-caption, .what-bullets { margin-inline: auto; }
    .who-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .learning-experience-top { flex-direction: column; text-align: center; gap: 2rem; }
    .lx-visual { justify-content: center; width: 100%; }
    .side-card { display: none; }
    .main-card { width: 100%; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 800px) {
    .how-uneven { flex-direction: column; text-align: center; align-items: center; }
    .how-body-left { text-align: left; }
}

@media (max-width: 768px) {
    :root { --fs-title: 2rem; --fs-subtitle: 1.5rem; --fs-h1: 1.35rem; --fs-h3: 1.5rem; }
    h1, h2, h3, p { word-wrap: break-word; }
    .container, .container-70, .container-90 { width: 92% !important; max-width: 92% !important; padding-inline: 15px; }
    section { padding-block: 40px; }
    #hero { padding-top: 140px; padding-bottom: 40px; background-attachment: scroll; height: auto; min-height: auto; }
    .t-title br { display: none; }
    .banner-text { font-size: 0.9rem; line-height: 1.6; }
    .what-we-do-layout { flex-direction: column; gap: 30px; margin: 0 !important; }
    .what-we-do-text { flex: none; width: 100%; text-align: center; }
    .what-bullets { text-align: left; margin: 0 auto 20px auto; }
    .what-we-do-media { width: 100%; }
    .who-grid { grid-template-columns: 1fr !important; gap: 20px; }
    .horizontal-divider { width: 90%; }
    .video-sandwich-wrapper { margin: 60px auto; gap: 30px; }
    .contact-header { margin-top: -10px; }
    .contact-form-row, .contact-row-trio { grid-template-columns: 1fr; gap: 15px; }
    .contact-form-box { padding: 1.5rem; }
}

@media (max-width: 600px) {
    #hero { padding-top: 140px; min-height: 70vh; }
    h1 { font-size: 1.6rem; }
    .who-grid { grid-template-columns: 1fr; max-width: 100%; }
    .who-item p { max-width: 200px; }
    .wmu-panel-inner { padding-left: 1.5rem; }
    .wmu-tab { align-items: center; }
}

/* Internal Utility Bar Styling */
.internal-utility-bar {
  /* Matches your deep teal background */
  background-color: #011f2a; 
  /* Subtle divider to separate it from the main content */
  border-top: 1px solid rgba(255, 255, 255, 0.05); 
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  width: 100%;
}

.utility-content {
  /* MATCH THIS TO YOUR MAIN CONTAINER */
  /* If your main content wrapper is 1200px or 1100px, set this to the exact same value */
  max-width: 1100px; 
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Match this padding to the left/right padding of your main text/form area */
  padding: 0 2rem; 
}

.utility-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.utility-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.utility-subtitle {
  color: #a8c1ca; /* Muted light teal to complement the background */
  font-size: 0.85rem;
}

.utility-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  /* Matches the vibrant green of your "SUBMIT INQUIRY" button */
  color: #00d59f; 
  border: 1px solid #00d59f;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.utility-btn:hover {
  background-color: #00d59f;
  color: #011f2a; /* Reverts to dark text on hover for high contrast */
  box-shadow: 0 4px 15px rgba(0, 213, 159, 0.3);
}

.utility-btn .lock-icon {
  stroke: #00d59f;
  transition: stroke 0.3s ease;
}

.utility-btn:hover .lock-icon {
  stroke: #011f2a; /* Matches the text on hover */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .utility-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
