/* =========================================
   NYH YTTC Cinematic Editorial System
   ========================================= */

:root {
    /* Brand Colors */
    --clr-purple: #6B46A3;
    --clr-purple-dark: #3E2466;
    --clr-purple-deep: #1A0D2E;
    --clr-magenta: #C84B9B;
    --clr-saffron: #D98532;
    --clr-ivory: #FDFCF9;
    --clr-ivory-dark: #F2EFE8;
    --clr-charcoal: #151515;
    --clr-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* UI Tokens */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 100px;
    
    /* Shadows & Glows */
    --shadow-glass: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-glass-hover: 0 30px 60px rgba(0, 0, 0, 0.12);
    --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.4);
    --glow-primary: 0 0 40px rgba(200, 75, 155, 0.3);
    
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-ivory);
    color: var(--clr-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   Layout & Themes
   ========================================= */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 120px 0;
    }
}

.theme-dark {
    background-color: var(--clr-purple-deep);
    color: var(--clr-ivory);
}

.theme-dark h1, .theme-dark h2, .theme-dark h3, .theme-dark h4 {
    color: var(--clr-white);
}

.theme-dark p {
    color: rgba(255, 255, 255, 0.7);
}

.bg-texture {
    position: relative;
}

.bg-texture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23000000" fill-opacity="0.02" fill-rule="evenodd"%3E%3Ccircle cx="3" cy="3" r="3"/%3E%3Ccircle cx="13" cy="13" r="3"/%3E%3C/g%3E%3C/svg%3E');
    z-index: 0;
    pointer-events: none;
}

/* =========================================
   Component: Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-purple), var(--clr-magenta));
    color: var(--clr-white);
    box-shadow: 0 8px 24px rgba(200, 75, 155, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--clr-magenta), var(--clr-purple));
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background-color: var(--clr-white);
    color: var(--clr-purple-dark);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.theme-dark .btn-secondary {
    background-color: rgba(255,255,255,0.1);
    color: var(--clr-white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.theme-dark .btn-secondary:hover {
    background-color: rgba(255,255,255,0.2);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.btn-whatsapp {
    background-color: #128C7E;
    color: var(--clr-white);
    box-shadow: 0 8px 24px rgba(18, 140, 126, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp::before {
    display: none;
}

.btn-whatsapp:hover {
    background-color: #075E54;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(7, 94, 84, 0.4);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

/* =========================================
   Glass & Editorial Cards
   ========================================= */
.glass-panel {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
}

.theme-dark .glass-panel {
    background: rgba(26, 13, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-dark);
}

/* =========================================
   Header
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(253, 252, 249, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 12px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.5rem;
    color: var(--clr-charcoal);
    margin: 0;
    font-weight: 700;
}

.logo span {
    color: var(--clr-purple);
}

/* =========================================
   Hero Section — Refined
   ========================================= */
.hero {
    position: relative;
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg, #FDFCF9 0%, #F7F2FC 45%, #FDF5F9 70%, #FDFCF9 100%);
}

/* --- Background Atmosphere --- */
.hero-bg-mesh {
    position: absolute;
    top: -30%;
    right: -15%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(ellipse at 60% 40%,
        rgba(200, 75, 155, 0.13) 0%,
        rgba(107, 70, 163, 0.09) 35%,
        transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: drift 18s infinite alternate ease-in-out;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
}

.hero-bg-orb--1 {
    bottom: -10%;
    left: -5%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle,
        rgba(238, 234, 244, 0.9) 0%,
        rgba(243, 217, 232, 0.45) 50%,
        transparent 70%);
    animation: drift 22s infinite alternate-reverse ease-in-out;
}

.hero-bg-orb--2 {
    top: 15%;
    left: 25%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle,
        rgba(217, 133, 50, 0.04) 0%,
        transparent 70%);
    animation: drift 28s 3s infinite alternate ease-in-out;
}

@keyframes drift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-4%, 6%) scale(1.08); }
}

/* --- Grid --- */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* --- LEFT: Content --- */
.hero-content {
    max-width: 560px;
    text-align: left;
}

/* Eyebrow */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: linear-gradient(135deg,
        rgba(107, 70, 163, 0.09),
        rgba(200, 75, 155, 0.06));
    border: 1px solid rgba(107, 70, 163, 0.18);
    color: var(--clr-purple);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(8px);
}

/* H1 */
.hero-h1 {
    font-size: clamp(2.8rem, 4.5vw, 4.4rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--clr-charcoal);
    font-weight: 700;
}

.h1-gradient {
    background: linear-gradient(135deg, #7B3FBF 0%, #C84B9B 55%, #E06060 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.h1-glow {
    filter: drop-shadow(0 2px 12px rgba(200, 75, 155, 0.2));
}

.h1-outlined {
    -webkit-text-stroke: 4px var(--clr-purple);
    color: rgba(107, 70, 163, 0.05);
    display: inline;
}

/* Subheading */
.hero .subheading {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.75;
    max-width: 480px;
}

/* Stats row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(107, 70, 163, 0.1);
    border-radius: 16px;
    padding: 16px 24px;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
    width: fit-content;
    max-width: 100%;
    overflow: hidden;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 20px;
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat:last-child {
    padding-right: 0;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--clr-purple);
    line-height: 1;
}

.hero-stat-lbl {
    font-size: 0.68rem;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.hero-stat-div {
    width: 1px;
    height: 32px;
    background: rgba(107, 70, 163, 0.12);
    flex-shrink: 0;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* Primary button */
.btn-hero-primary {
    padding: 17px 36px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow:
        0 12px 32px rgba(139, 79, 199, 0.35),
        0 4px 12px rgba(200, 75, 155, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transition: left 0.6s ease;
}

.btn-hero-primary:hover::after { left: 100%; }

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 48px rgba(139, 79, 199, 0.42),
        0 8px 20px rgba(200, 75, 155, 0.28);
}

/* Secondary button */
.btn-hero-secondary {
    padding: 15px 32px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-charcoal);
    background: rgba(255, 255, 255, 0.6);
    border: 1.5px solid rgba(107, 70, 163, 0.18);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
    transition: var(--transition-fast);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(107, 70, 163, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 70, 163, 0.1);
}

/* --- RIGHT: Visual --- */
.hero-visual {
    position: relative;
    height: 640px;
}

/* Image frame */
.hero-image-frame {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 40px 80px rgba(107, 70, 163, 0.16),
        0 16px 32px rgba(0, 0, 0, 0.08);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 10s ease;
}

.hero-image-frame:hover img {
    transform: scale(1.04);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(139, 79, 199, 0.06) 0%,
        transparent 35%,
        transparent 55%,
        rgba(26, 13, 46, 0.22) 100%
    );
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
}

/* Floating badges — inside frame, no overflow */
@keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}

.hero-float {
    position: absolute;
    background: rgba(253, 252, 249, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    font-family: var(--font-body);
    pointer-events: none;
}

/* Repositioned inside the frame — no negative offsets */
.hero-float--tl {
    top: 20px;
    left: 20px;
    animation: floatY 4s ease-in-out infinite;
}

.hero-float--tr {
    top: 20px;
    right: 20px;
    animation: floatY 5s 1.2s ease-in-out infinite;
}

.hero-float--bl {
    bottom: 20px;
    left: 20px;
    animation: floatY 6s 0.8s ease-in-out infinite;
}

.hero-float--br {
    bottom: 20px;
    right: 20px;
    animation: floatY 4.5s 2s ease-in-out infinite;
}

.float-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.float-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-charcoal);
    line-height: 1.2;
}

.float-sub {
    display: block;
    font-size: 0.66rem;
    color: #999;
    font-weight: 500;
    margin-top: 1px;
}

/* Trust Chips (legacy) */
.hero-trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.chip-solid {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(107, 70, 163, 0.2);
    backdrop-filter: blur(8px);
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    color: var(--clr-purple-dark);
    font-size: 0.78rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.chip-solid:hover {
    background: rgba(107, 70, 163, 0.08);
    border-color: rgba(107, 70, 163, 0.3);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 48px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero .subheading {
        margin-inline: auto;
        max-width: 100%;
    }

    .eyebrow {
        font-size: 0.7rem;
        padding: 8px 14px;
        margin-bottom: 20px;
        white-space: normal;
        text-align: center;
    }

    .hero-stats {
        width: 100%;
        margin-inline: auto;
        justify-content: space-between;
        padding: 14px 16px;
        box-sizing: border-box;
    }

    .hero-stat {
        padding: 0 8px;
        flex: 1;
        align-items: center;
    }

    .hero-stat-num {
        font-size: 1.25rem;
    }

    .hero-stat-lbl {
        font-size: 0.6rem;
        white-space: normal;
        text-align: center;
    }

    .hero-cta-group {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
        text-align: center;
    }

    .hero-visual {
        height: 380px;
    }

    .hero-image-frame {
        border-radius: 24px;
    }

    .hero-h1 {
        font-size: clamp(2.2rem, 7vw, 3rem);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 88px 0 40px;
    }

    .hero-h1 {
        font-size: 2rem;
    }

    .hero .subheading {
        font-size: 0.95rem;
    }

    .hero-stats {
        padding: 12px 12px;
    }

    .hero-stat-num {
        font-size: 1.1rem;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-float {
        padding: 8px 10px;
        gap: 6px;
    }

    .float-label { font-size: 0.7rem; }
    .float-sub   { font-size: 0.58rem; }
}

.float-sub {
    display: block;
    font-size: 0.7rem;
    color: #999;
    font-weight: 500;
    margin-top: 1px;
}

.float-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--clr-purple);
    line-height: 1;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.float-stat-label {
    font-size: 0.75rem;
    color: #777;
    font-weight: 500;
    margin-top: 2px;
}

/* =========================================
   Form Styles
   ========================================= */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--clr-charcoal);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: rgba(255,255,255,0.95);
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.form-group input:focus {
    outline: none;
    border-color: var(--clr-purple);
    box-shadow: 0 0 0 4px rgba(107, 70, 163, 0.1);
}

.radio-group {
    display: flex;
    gap: 32px;
    padding-top: 4px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-charcoal);
}

.radio-label input {
    display: none;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.radio-label input:checked + .custom-radio {
    border-color: var(--clr-purple);
}

.radio-label input:checked + .custom-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--clr-purple);
    border-radius: 50%;
}

.btn-submit {
    border-radius: 24px;
    padding: 16px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 12px;
    box-shadow: 0 10px 24px rgba(200, 75, 155, 0.2);
}

.form-success {
    margin-top: 16px;
    padding: 14px;
    background: rgba(46, 204, 113, 0.15);
    color: #27ae60;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
}

/* =========================================
   Inquiry Section — Refined
   ========================================= */
.inquiry-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, #F8F4FD 0%, #FDF8FB 50%, #F4F0FA 100%);
}

.inq-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle,
        rgba(200, 75, 155, 0.09) 0%,
        rgba(107, 70, 163, 0.06) 40%,
        transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.inq-bg-glow--2 {
    top: auto;
    bottom: -15%;
    left: -10%;
    right: auto;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle,
        rgba(107, 70, 163, 0.07) 0%,
        transparent 70%);
}

.inquiry-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* ── LEFT: Trust panel ── */
.inquiry-trust {
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.inq-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--clr-charcoal);
    line-height: 1.12;
    margin-bottom: 16px;
    margin-top: 16px;
}

.inq-heading-accent {
    background: linear-gradient(135deg, var(--clr-purple), var(--clr-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inq-subtext {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 460px;
}

/* Trust cards — 2×2 grid */
.inq-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.inq-trust-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(107, 70, 163, 0.08);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.inq-trust-card:hover {
    transform: translateY(-2px);
    border-color: rgba(107, 70, 163, 0.2);
    box-shadow: 0 8px 24px rgba(107, 70, 163, 0.07);
}

.inq-card-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(107, 70, 163, 0.1), rgba(200, 75, 155, 0.07));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-purple);
}

.inq-card-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.inq-card-text strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--clr-charcoal);
    line-height: 1.3;
}

.inq-card-text span {
    font-size: 0.72rem;
    color: #999;
    font-weight: 400;
    line-height: 1.3;
}

/* Trust note */
.inq-trust-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #bbb;
    font-weight: 500;
}

.inq-trust-note svg {
    color: #ccc;
    flex-shrink: 0;
}

/* ── RIGHT: Form panel ── */
.inquiry-form-panel {
    background: var(--clr-white);
    border: 1px solid rgba(107, 70, 163, 0.08);
    border-radius: 28px;
    padding: 40px 44px;
    box-shadow:
        0 24px 60px rgba(107, 70, 163, 0.08),
        0 8px 20px rgba(0, 0, 0, 0.04);
}

.inq-form-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.inq-form-header-icon {
    width: 44px;
    height: 44px;
    background: #128C7E;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.inq-form-header h3 {
    font-size: 1.3rem;
    color: var(--clr-charcoal);
    margin-bottom: 3px;
    line-height: 1.2;
}

.inq-form-micro {
    font-size: 0.78rem !important;
    color: #aaa !important;
    margin: 0 !important;
}

/* Form labels */
.inquiry-form label,
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

.form-optional {
    font-weight: 400;
    color: #bbb;
    font-size: 0.75rem;
}

/* Name + Mobile side by side */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.inquiry-form .form-group {
    margin-bottom: 14px;
}

/* Mode toggle buttons */
.mode-toggle-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mode-toggle-label {
    cursor: pointer;
}

.mode-toggle-label input {
    display: none;
}

.mode-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 16px;
    border: 1.5px solid rgba(107, 70, 163, 0.15);
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #666;
    background: var(--clr-ivory);
    transition: all 0.2s ease;
    cursor: pointer;
    width: 100%;
}

.mode-toggle-label input:checked + .mode-toggle-btn {
    background: linear-gradient(135deg, rgba(107,70,163,0.08), rgba(200,75,155,0.06));
    border-color: var(--clr-purple);
    color: var(--clr-purple);
    box-shadow: 0 0 0 3px rgba(107, 70, 163, 0.08);
}

.mode-toggle-btn:hover {
    border-color: rgba(107, 70, 163, 0.3);
    color: var(--clr-purple);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .inquiry-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .inquiry-form-panel {
        padding: 36px 40px;
    }

    .inq-subtext {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .inquiry-container {
        gap: 36px;
    }

    .inquiry-form-panel {
        padding: 28px 24px;
        border-radius: 24px;
    }

    .inq-heading {
        font-size: 1.9rem;
    }

    .inq-trust-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .inquiry-form-panel {
        padding: 24px 20px;
    }

    .inq-form-header {
        gap: 12px;
    }

    .inq-form-header h3 {
        font-size: 1.15rem;
    }
}


/* =========================================
   Why This Program — Refined.inq-form-header {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.inq-form-header h3 {
    font-size: 1.6rem;
    color: var(--clr-charcoal);
    margin-bottom: 6px;
}

.inq-form-header p {
    font-size: 0.875rem;
    color: #888;
}

.inq-form-micro {
    font-size: 0.8rem !important;
    color: #999 !important;
    margin-top: 4px;
}

.inquiry-form .form-group {
    margin-bottom: 14px;
}

/* Textarea */
.inquiry-form textarea,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: rgba(255,255,255,0.95);
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    resize: none;
    color: var(--clr-charcoal);
    line-height: 1.6;
}

.inquiry-form textarea:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-purple);
    box-shadow: 0 0 0 4px rgba(107, 70, 163, 0.1);
}

/* =========================================
   Hero Additions
   ========================================= */
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.hero-trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.chip-solid {
    background: rgba(139, 95, 191, 0.08);
    border: 1px solid rgba(139, 95, 191, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    color: var(--clr-purple-dark);
    font-size: 0.875rem;
    font-weight: 600;
}

/* =========================================
   Why This Program — Refined
   ========================================= */
.why-program {
    background: var(--clr-white);
    position: relative;
    overflow: hidden;
}

.why-program::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle,
        rgba(238, 234, 244, 0.7) 0%,
        rgba(243, 217, 232, 0.3) 40%,
        transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* Section header */
.why-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 1;
}

.why-header h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--clr-charcoal);
    margin-bottom: 14px;
    line-height: 1.15;
}

.why-header p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.75;
}

/* ── Audience row: card | image | card ── */
.why-audience-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

/* Audience cards */
.why-audience-card {
    border-radius: 24px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25,1,0.3,1),
                box-shadow 0.35s cubic-bezier(0.25,1,0.3,1);
}

.why-audience-card--fresh {
    background: linear-gradient(145deg, #F4F0FB 0%, #EDE8F7 100%);
    border: 1px solid rgba(107, 70, 163, 0.1);
}

.why-audience-card--teacher {
    background: linear-gradient(145deg, #FDF0F7 0%, #F7E4F1 100%);
    border: 1px solid rgba(200, 75, 155, 0.12);
}

.why-audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(107, 70, 163, 0.1);
}

.wac-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(107, 70, 163, 0.12);
    color: var(--clr-purple);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.wac-tag--alt {
    background: rgba(200, 75, 155, 0.12);
    color: var(--clr-magenta);
}

.why-audience-card h3 {
    font-size: 1.35rem;
    color: var(--clr-charcoal);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.why-audience-card p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.wac-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.wac-list li {
    font-size: 0.85rem;
    color: #666;
    padding-left: 18px;
    position: relative;
    line-height: 1.4;
}

.wac-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-purple), var(--clr-magenta));
}

/* Centre image */
.why-center-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 360px;
    border: 5px solid var(--clr-white);
    box-shadow:
        0 24px 60px rgba(107, 70, 163, 0.13),
        0 8px 20px rgba(0,0,0,0.06);
}

.why-center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 8s ease;
}

.why-center-image:hover img {
    transform: scale(1.04);
}

.why-img-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(253, 252, 249, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.85);
    border-radius: var(--radius-pill);
    padding: 10px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.wib-num {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--clr-purple);
    line-height: 1;
}

.wib-txt {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-charcoal);
    line-height: 1.3;
}

/* ── Benefits grid — 4 horizontal cards ── */
.why-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

.why-benefit-card {
    background: var(--clr-ivory);
    border: 1px solid rgba(107, 70, 163, 0.06);
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25,1,0.3,1),
                box-shadow 0.3s cubic-bezier(0.25,1,0.3,1),
                border-color 0.3s ease;
}

.why-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(107, 70, 163, 0.09);
    border-color: rgba(107, 70, 163, 0.18);
    background: var(--clr-white);
}

.wbc-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(107,70,163,0.1), rgba(200,75,155,0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-purple);
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.why-benefit-card:hover .wbc-icon {
    background: linear-gradient(135deg, rgba(107,70,163,0.18), rgba(200,75,155,0.14));
}

.wbc-icon svg {
    width: 22px;
    height: 22px;
}

.wbc-text {
    flex: 1;
}

.wbc-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-charcoal);
    margin-bottom: 6px;
    line-height: 1.2;
}

.wbc-text p {
    font-size: 0.83rem;
    color: #777;
    line-height: 1.55;
    margin: 0;
}

.wbc-arrow {
    font-size: 1rem;
    color: rgba(107, 70, 163, 0.3);
    align-self: flex-end;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
}

.why-benefit-card:hover .wbc-arrow {
    color: var(--clr-purple);
    transform: translateX(3px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .why-audience-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .why-center-image {
        grid-column: 1 / -1;
        min-height: 280px;
        order: -1;
    }

    .why-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-header {
        margin-bottom: 40px;
    }

    .why-header h2 {
        font-size: 1.9rem;
    }

    .why-audience-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-center-image {
        grid-column: 1;
        min-height: 240px;
        border-radius: 20px;
        border-width: 4px;
    }

    .why-audience-card {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .why-audience-card h3 {
        font-size: 1.2rem;
    }

    .why-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .why-benefit-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .wbc-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .why-benefits-grid {
        grid-template-columns: 1fr;
    }

    .why-benefit-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .wbc-text h4 {
        font-size: 0.95rem;
    }
}



/* =========================================
   YCB Certification Section — Refined
   ========================================= */
.ycb-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #F8F4FD 0%, #FDF5F9 50%, #F4F0FA 100%);
}

/* Ambient glow blobs */
.ycb-section::before,
.ycb-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.ycb-section::before {
    top: -10%;
    left: -5%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle,
        rgba(200, 75, 155, 0.08) 0%,
        transparent 70%);
}

.ycb-section::after {
    bottom: -10%;
    right: -5%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle,
        rgba(107, 70, 163, 0.07) 0%,
        transparent 70%);
}

/* ── Two-column layout ── */
.ycb-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ── Centered header above columns ── */
.ycb-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 1;
}

.ycb-header .ycb-eyebrow {
    margin-bottom: 20px;
}

.ycb-header .ycb-heading {
    margin-bottom: 16px;
}

.ycb-header .ycb-subtext {
    max-width: 100%;
}

/* ── Column section label ── */
.ycb-col-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-purple);
    background: rgba(107, 70, 163, 0.07);
    border: 1px solid rgba(107, 70, 163, 0.15);
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    margin-bottom: 20px;
    width: fit-content;
}

.ycb-col-label svg {
    flex-shrink: 0;
    color: var(--clr-magenta);
}

/* ── LEFT: Content column ── */
.ycb-content-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ycb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(107, 70, 163, 0.08);
    border: 1px solid rgba(107, 70, 163, 0.2);
    border-radius: var(--radius-pill);
    color: var(--clr-purple);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    width: fit-content;
}

.ycb-eyebrow svg {
    flex-shrink: 0;
    opacity: 0.85;
}

.ycb-heading {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.08;
    color: var(--clr-charcoal);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}

.ycb-heading-accent {
    background: linear-gradient(135deg, #6B46A3 0%, #C84B9B 60%, #D98532 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ycb-subtext {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
    max-width: 440px;
}

/* ── 4 Benefit cards ── */
.ycb-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ycb-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(107, 70, 163, 0.08);
    border-radius: 16px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    cursor: default;
    box-shadow: 0 2px 12px rgba(107, 70, 163, 0.04);
}

.ycb-benefit-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(107, 70, 163, 0.2);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(107, 70, 163, 0.08);
}

.ycb-bc-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(107,70,163,0.1), rgba(200,75,155,0.08));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-purple);
    flex-shrink: 0;
}

.ycb-bc-icon svg {
    width: 20px;
    height: 20px;
}

.ycb-bc-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ycb-bc-text strong {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--clr-charcoal);
    line-height: 1.2;
}

.ycb-bc-text span {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.5;
}

/* ── RIGHT: Visual column ── */
.ycb-visual-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* NYH Advantages chips grid */
.ycb-advantages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 8px;
}

.ycb-adv-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(107, 70, 163, 0.1);
    border-radius: 12px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--clr-charcoal);
    box-shadow: 0 2px 8px rgba(107, 70, 163, 0.04);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.ycb-adv-item:hover {
    border-color: rgba(107, 70, 163, 0.25);
    transform: translateY(-2px);
}

.ycb-adv-item span {
    color: var(--clr-magenta);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Group photo */
.ycb-photo-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 24px 60px rgba(107, 70, 163, 0.12),
        0 8px 20px rgba(0,0,0,0.06);
}

.ycb-photo-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform 8s ease;
}

.ycb-photo-wrap:hover img {
    transform: scale(1.03);
}

/* Batch badge on photo */
.ycb-batch-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(253, 252, 249, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(107, 70, 163, 0.2);
    border-radius: var(--radius-pill);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.ycb-bb-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--clr-purple);
    line-height: 1;
}

.ycb-bb-txt {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--clr-charcoal);
    line-height: 1.35;
}

/* Certificate */
.ycb-cert-wrap {
    display: flex;
    justify-content: center;
    padding: 0 16px;
}

.ycb-cert-wrap img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 16px 40px rgba(107, 70, 163, 0.15));
}

/* Float animation (reuse existing keyframe) */
@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-14px); }
    100% { transform: translateY(0px); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ycb-layout {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .ycb-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ycb-header {
        margin-bottom: 40px;
    }

    .ycb-heading {
        font-size: 2.2rem;
    }

    .ycb-subtext {
        max-width: 100%;
    }

    .ycb-visual-col {
        order: -1;
    }

    .ycb-photo-wrap {
        border-radius: 20px;
    }

    .ycb-cert-wrap img {
        max-width: 300px;
    }

    .ycb-advantages {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .ycb-benefit-card {
        padding: 14px 16px;
        border-radius: 14px;
    }

    .ycb-bc-icon {
        width: 36px;
        height: 36px;
    }

    .ycb-heading {
        font-size: 1.9rem;
    }

    .ycb-advantages {
        grid-template-columns: 1fr;
    }
}

/* Legacy stubs — kept so nothing breaks */
.ycb-visual { position: relative; }
.ycb-frame  { display: none; }
.ycb-intro, .ycb-group-photo, .ycb-bottom,
.ycb-list, .ycb-list-grid, .ycb-cert-float { /* overridden by new layout */ }


/* =========================================
   Curriculum Section — Refined
   ========================================= */
.curriculum-editorial {
    position: relative;
    overflow: hidden;
    background-color: var(--clr-ivory);
}

.curriculum-glow-blob {
    position: absolute;
    top: 5%;
    left: -15%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle,
        rgba(243, 217, 232, 0.55) 0%,
        rgba(238, 234, 244, 0.35) 40%,
        transparent 70%);
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
}

/* ── Intro row ── */
.curriculum-intro-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 72px;
}

.editorial-label {
    display: inline-block;
    padding: 6px 16px;
    background: #EEEAF4;
    color: #8B5FBF;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.curriculum-text-editorial h2 {
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    line-height: 1.08;
    margin-bottom: 20px;
    color: #2A2233;
}

.curriculum-text-editorial p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 36px;
    line-height: 1.8;
}

.editorial-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip-light {
    padding: 7px 18px;
    background: var(--clr-white);
    border: 1px solid rgba(139, 95, 191, 0.18);
    border-radius: var(--radius-pill);
    color: #2A2233;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: var(--transition-fast);
}

.chip-light:hover {
    border-color: rgba(139, 95, 191, 0.4);
    background: rgba(139, 95, 191, 0.05);
}

.curriculum-visual-editorial {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 460px;
    border: 6px solid var(--clr-white);
    box-shadow:
        0 24px 60px rgba(139, 95, 191, 0.12),
        0 8px 20px rgba(0,0,0,0.06);
}

.curriculum-visual-editorial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(243, 217, 232, 0.15) 0%,
        transparent 50%,
        rgba(26, 13, 46, 0.18) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 22px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.8);
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #8B5FBF;
    font-family: var(--font-heading);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    color: #2A2233;
    line-height: 1.3;
    font-weight: 600;
}

/* ── Module Cards Grid ── */
.curriculum-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
    margin-bottom: 56px;
}

.module-card {
    background: var(--clr-white);
    border-radius: 24px;
    padding: 32px 28px 28px;
    border: 1px solid rgba(139, 95, 191, 0.07);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.35s cubic-bezier(0.25,1,0.3,1),
                box-shadow 0.35s cubic-bezier(0.25,1,0.3,1);
}

.module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(139, 95, 191, 0.11);
    border-color: rgba(139, 95, 191, 0.18);
}

/* Large ghost number top-right */
.module-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(139, 95, 191, 0.07);
    line-height: 1;
    letter-spacing: -2px;
    pointer-events: none;
    user-select: none;
}

/* Icon */
.module-icon-wrap {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #EEEAF4, #F3D9E8);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B5FBF;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.module-icon-wrap svg {
    width: 22px;
    height: 22px;
}

.module-card h3 {
    font-size: 1.1rem;
    color: #2A2233;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

/* List */
.module-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.module-list li {
    font-size: 0.88rem;
    color: #666;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.module-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, #8B5FBF, #C84B9B);
    border-radius: 50%;
}

/* Bottom accent bar on hover */
.module-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-purple), var(--clr-magenta));
    border-radius: 0 0 24px 24px;
    transition: width 0.4s cubic-bezier(0.25,1,0.3,1);
}

.module-card:hover .module-accent {
    width: 100%;
}

/* ── Bottom CTA Strip ── */
.curriculum-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg,
        rgba(107, 70, 163, 0.06) 0%,
        rgba(200, 75, 155, 0.04) 100%);
    border: 1px solid rgba(107, 70, 163, 0.1);
    border-radius: 20px;
    padding: 28px 40px;
    position: relative;
    z-index: 2;
}

.curriculum-cta-strip p {
    font-size: 1.05rem;
    color: #444;
    font-weight: 500;
    margin: 0;
}

.curriculum-cta-strip .btn {
    flex-shrink: 0;
    padding: 14px 32px;
    font-size: 0.95rem;
}

/* ── Utility bg classes ── */
.image-soft-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.4), transparent);
    z-index: 1;
}

.bg-lavender { background: #EEEAF4; }
.bg-blush    { background: #F3D9E8; }
.bg-ivory-dark { background: #F2EFE8; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .curriculum-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .curriculum-intro-editorial {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 48px;
    }

    .curriculum-visual-editorial {
        height: 280px;
        border-radius: 24px;
        border-width: 4px;
    }

    .curriculum-modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .module-card {
        padding: 24px 20px 22px;
        border-radius: 20px;
    }

    .module-number {
        font-size: 2.8rem;
    }

    .curriculum-cta-strip {
        flex-direction: column;
        text-align: center;
        padding: 24px 28px;
        gap: 16px;
    }

    .curriculum-cta-strip .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .curriculum-modules-grid {
        grid-template-columns: 1fr;
    }

    .module-card {
        padding: 22px 18px 20px;
    }
}


/* =========================================
   Faculty Section (Circular Ecosystem)
   ========================================= */
.faculty-section {
    background: var(--clr-ivory);
}

.founder-ecosystem {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.founder-text h2 {
    font-size: clamp(2.5rem, 4vw, 3rem);
    color: var(--clr-charcoal);
    margin-bottom: 24px;
    color: #4B2E39; /* Match reference deep maroon/brown */
}

.founder-text p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.yogi-label {
    display: block;
    color: #B58A4D; /* Match reference earthy copper/gold */
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.founder-info-block h3 {
    font-size: 2rem;
    color: #4B2E39;
    margin-bottom: 4px;
}

.founder-title {
    font-size: 1rem;
    color: #E66A6A; /* Soft pink/red accent */
    font-style: italic;
}

.founder-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.circular-frame-large {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    position: relative;
    padding: 12px;
    background: linear-gradient(135deg, rgba(230,106,106,0.1), rgba(75,46,57,0.1));
}

.circular-frame-large::before {
    content: '';
    position: absolute;
    top: 5px; right: 5px; bottom: 5px; left: 5px;
    border: 2px solid #6E4453; /* Deep ring color */
    border-radius: 50%;
    border-right-color: transparent; /* Asymmetrical border feel */
    transform: rotate(45deg);
}

.circular-frame-large img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(75,46,57,0.15);
    transition: var(--transition-smooth);
}

.founder-expertise {
    font-size: 1.125rem;
    color: #555;
    max-width: 180px;
    line-height: 1.5;
}

/* ── Mentor Carousel ── */
.mentor-carousel-wrap {
    position: relative;
    overflow: hidden;
    /* fade edges */
}

/* Soft fade masks on left & right */
.mentor-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.mentor-fade--left {
    left: 0;
    background: linear-gradient(to right, var(--clr-ivory), transparent);
}

.mentor-fade--right {
    right: 0;
    background: linear-gradient(to left, var(--clr-ivory), transparent);
}

/* The scrolling track */
@keyframes mentor-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.mentor-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: mentor-scroll 32s linear infinite;
    cursor: grab;
}

/* Pause on hover */
.mentor-track:hover {
    animation-play-state: paused;
}

/* Individual card */
.mentor-card {
    flex-shrink: 0;
    width: 220px;
    background: var(--clr-white);
    border-radius: 24px;
    padding: 28px 20px 24px;
    text-align: center;
    border: 1px solid rgba(107, 70, 163, 0.07);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
}

.mentor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(107, 70, 163, 0.1);
    border-color: rgba(107, 70, 163, 0.15);
}

.circular-frame-small {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: relative;
    padding: 5px;
    margin: 0 auto 16px;
}

.circular-frame-small::before {
    content: '';
    position: absolute;
    top: 2px; right: 2px; bottom: 2px; left: 2px;
    border: 1.5px solid #6E4453;
    border-radius: 50%;
    border-left-color: transparent;
    transform: rotate(-30deg);
    transition: transform 0.5s ease, border-color 0.3s ease;
}

.mentor-card:hover .circular-frame-small::before {
    transform: rotate(60deg) scale(1.05);
    border-color: var(--clr-magenta);
}

.circular-frame-small img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(75,46,57,0.12);
}

.mentor-info {
    text-align: center;
}

.mentor-info h4 {
    font-size: 1rem;
    color: #2A2233;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.2;
}

.mentor-info p {
    font-size: 0.78rem;
    color: #888;
    line-height: 1.45;
}


/* =========================================
   Student Transformation Section
   ========================================= */
.transformation-section {
    background: var(--clr-ivory-dark);
}

.trans-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trans-visual {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 500px;
    border: 8px solid var(--clr-white);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.trans-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trans-content h2 {
    font-size: clamp(2.5rem, 4vw, 3rem);
    color: var(--clr-charcoal);
    margin-bottom: 24px;
}

.trans-content p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
}

/* =========================================
   Learning Experience & Timings — Refined
   ========================================= */
.experience-timings {
    background: var(--clr-white);
    position: relative;
    overflow: hidden;
}

.experience-timings::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle,
        rgba(107, 70, 163, 0.06) 0%,
        transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

/* Section header */
.exp-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.exp-header h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--clr-charcoal);
    line-height: 1.15;
    margin-bottom: 14px;
    margin-top: 16px;
}

.exp-heading-accent {
    background: linear-gradient(135deg, var(--clr-purple), var(--clr-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exp-header p {
    font-size: 1rem;
    color: #777;
    line-height: 1.7;
}

/* Cards grid — 3 equal columns */
.timings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Base card */
.timing-card {
    border-radius: 24px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25,1,0.3,1),
                box-shadow 0.35s cubic-bezier(0.25,1,0.3,1);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(107, 70, 163, 0.12);
}

/* Duration card — purple gradient */
.timing-card--duration {
    background: linear-gradient(145deg, #6B46A3 0%, #4A2D7A 100%);
    color: white;
}

/* Weekday card — blush */
.timing-card--weekday {
    background: linear-gradient(145deg, #FDF0F7 0%, #F7E4F1 100%);
    border: 1px solid rgba(200, 75, 155, 0.12);
}

/* Weekend card — lavender */
.timing-card--weekend {
    background: linear-gradient(145deg, #F4F0FB 0%, #EDE8F7 100%);
    border: 1px solid rgba(107, 70, 163, 0.1);
}

/* Icon */
.tc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.timing-card--duration .tc-icon {
    background: rgba(255,255,255,0.15);
    color: white;
}

.timing-card--weekday .tc-icon {
    background: rgba(200, 75, 155, 0.12);
    color: var(--clr-magenta);
}

.timing-card--weekend .tc-icon {
    background: rgba(107, 70, 163, 0.1);
    color: var(--clr-purple);
}

/* Label */
.tc-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}

.timing-card--duration .tc-label { color: rgba(255,255,255,0.65); }
.timing-card--weekday .tc-label  { color: var(--clr-magenta); }
.timing-card--weekend .tc-label  { color: var(--clr-purple); }

/* Big number */
.tc-big {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.timing-card--duration .tc-big { color: white; }
.timing-card--weekday .tc-big  { color: var(--clr-charcoal); }
.timing-card--weekend .tc-big  { color: var(--clr-charcoal); }

/* Sub text */
.tc-sub {
    font-size: 0.82rem;
    line-height: 1.55;
}

.timing-card--duration .tc-sub { color: rgba(255,255,255,0.65); }
.timing-card--weekday .tc-sub  { color: #888; }
.timing-card--weekend .tc-sub  { color: #888; }

/* YCB badge on duration card */
.tc-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    width: fit-content;
}

/* Batch rows */
.tc-batches {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.tc-batch-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tc-batch-tag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    flex-shrink: 0;
}

.timing-card--weekday .tc-batch-tag {
    background: rgba(200, 75, 155, 0.12);
    color: var(--clr-magenta);
}

.timing-card--weekend .tc-batch-tag {
    background: rgba(107, 70, 163, 0.1);
    color: var(--clr-purple);
}

.tc-batch-time {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-charcoal);
}

/* Support chips row */
.support-chips {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.support-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    background: var(--clr-ivory);
    border: 1px solid rgba(107, 70, 163, 0.12);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-charcoal);
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.support-chip svg {
    color: var(--clr-purple);
    flex-shrink: 0;
}

.support-chip:hover {
    background: rgba(107, 70, 163, 0.06);
    border-color: rgba(107, 70, 163, 0.25);
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

    .hero-visual {
        height: 520px;
    }
}

@media (max-width: 768px) {
    .timings-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .timing-card {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .tc-big {
        font-size: 2.2rem;
    }

    .support-chips {
        gap: 10px;
    }

    .support-chip {
        font-size: 0.8rem;
        padding: 9px 16px;
    }
}

@media (max-width: 480px) {
    .exp-header h2 {
        font-size: 1.9rem;
    }

    .timing-card {
        padding: 24px 20px;
    }
}



/* =========================================
   FAQ Section
   ========================================= */
.faq-container {
    max-width: 800px;
}

.faq-header {
    margin-bottom: 48px;
}

.faq-header h2 {
    font-size: clamp(2.5rem, 4vw, 3rem);
    color: var(--clr-charcoal);
    margin-bottom: 16px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--clr-white);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--clr-ivory);
}

.faq-question h4 {
    font-size: 1.125rem;
    color: var(--clr-charcoal);
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--clr-purple);
    font-weight: 300;
    transition: var(--transition-smooth);
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--clr-white);
}

.faq-item.active .faq-answer {
    padding: 0 32px 24px;
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer p {
    font-size: 1.05rem;
    color: #555;
    margin: 0;
    line-height: 1.7;
}

/* =========================================
   Final CTA (Cinematic)
   ========================================= */
.final-cta {
    position: relative;
    padding: 160px 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
}

.cta-container {
    position: relative;
    z-index: 2;
}

/* =========================================
   Animations
   ========================================= */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.pulse-glow {
    animation: pulse 2s infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Sticky Mobile CTA
   ========================================= */
.mobile-sticky-cta {
    display: none;
}

/* =========================================
   Responsive Design — Mobile First
   ========================================= */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(12, 1fr);
    }
    .col-span-8, .col-span-4, .col-span-6 {
        grid-column: span 12;
    }
}

@media (max-width: 1024px) {
    /* --- Global --- */
    .section-padding {
        padding: 80px 0;
    }

    /* --- Hero --- */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero {
        padding: 120px 0 40px;
    }

    .hero-visual {
        height: 460px;
    }

    .hero-float--tl {
        top: 20px;
        left: 12px;
    }

    .hero-float--tr {
        top: 20px;
        right: 12px;
    }

    .hero-float--ml-stat {
        bottom: 200px;
        left: 12px;
    }

    .hero-form-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: 100%;
        margin-top: -60px;
        border-radius: 24px;
        border: 1px solid rgba(255,255,255,0.7);
        border-bottom: 1px solid rgba(255,255,255,0.7);
        border-left: 1px solid rgba(255,255,255,0.7);
    }

    /* --- Trust --- */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* --- Why Program --- */
    .audience-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .career-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* --- YCB --- */
    .ycb-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ycb-frame {
        height: 350px;
    }

    /* --- Curriculum --- */
    .curriculum-intro-editorial {
        grid-template-columns: 1fr;
    }

    .curriculum-visual-editorial {
        height: 350px;
    }

    .editorial-bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ed-card-medium, .ed-card-compact, .ed-card-wide {
        grid-column: span 1;
    }

    .ed-card-wide {
        flex-direction: column;
    }

    .ed-card-wide .ed-card-image {
        width: 100%;
        height: 220px;
    }

    /* --- Faculty --- */
    .founder-ecosystem {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-visual {
        flex-direction: column;
        gap: 20px;
    }

    /* --- Transformation --- */
    .trans-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .trans-visual {
        height: 350px;
    }

    /* --- Timings --- */
    .timings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* --- Final CTA --- */
    .final-cta {
        padding: 100px 0;
    }
}

/* =========================================
   MOBILE — Primary Experience (768px)
   ========================================= */
@media (max-width: 768px) {

    /* --- Global Spacing --- */
    .section-padding {
        padding: 60px 0;
    }

    /* --- Hero Typography Mobile --- */
    .hero-h1 {
        font-size: clamp(2.5rem, 8vw, 3.2rem);
        line-height: 1.15;
        max-width: 95%;
        margin-inline: auto;
        letter-spacing: -0.02em;
    }

    .hero .subheading {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 32px;
    }

    .container {
        padding: 0 20px;
    }

    body {
        padding-bottom: 72px; /* clearance for sticky CTA */
    }

    /* --- Sticky Mobile CTA --- */
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        padding: 12px 20px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
        background: rgba(253, 252, 249, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid rgba(0,0,0,0.06);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    }

    .mobile-sticky-cta .btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: 16px;
    }

    /* --- Header --- */
    .header {
        padding: 12px 0;
    }

    .header .logo img {
        height: 36px !important;
    }

    .nav-cta {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    /* ============================
       TRUST — Mobile
       ============================ */
    .trust-container {
        max-width: 100%;
    }

    .trust-content h2 {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .trust-content p {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 20px 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* ============================
       WHY THIS PROGRAM — Mobile
       ============================ */
    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .audience-split {
        gap: 16px;
        margin-bottom: 40px;
    }

    .audience-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .audience-card h3 {
        font-size: 1.5rem;
    }

    .audience-card p {
        font-size: 1rem;
    }

    .career-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .benefit-item {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .b-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .b-icon svg {
        width: 22px;
        height: 22px;
    }

    .benefit-item h4 {
        font-size: 0.95rem;
    }

    .benefit-item p {
        font-size: 0.85rem;
    }

    /* ============================
       YCB CERTIFICATION — Mobile
       ============================ */
    .ycb-container {
        gap: 32px;
    }

    .ycb-content h2 {
        font-size: 1.75rem;
    }

    .ycb-content p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .ycb-list li {
        font-size: 0.95rem;
        margin-bottom: 16px;
        padding-left: 28px;
    }

    .ycb-frame {
        height: 280px;
        border-radius: 24px;
        border-width: 6px;
    }

    /* ============================
       CURRICULUM — Mobile
       ============================ */
    .curriculum-text-editorial h2 {
        font-size: 2rem;
    }

    .curriculum-visual-editorial {
        height: 280px;
        border-radius: 24px;
        border-width: 6px;
    }

    .ed-card {
        padding: 24px;
        border-radius: 20px;
    }

    .ed-card h3 {
        font-size: 1.125rem;
    }

    .ed-feature-list li {
        font-size: 0.9rem;
    }

    .ed-card-wide .ed-card-image {
        height: 180px;
        border-radius: 16px;
    }

    /* ============================
       FACULTY — Horizontal Scroll
       ============================ */
    .faculty-section {
        overflow: visible;
    }

    .founder-ecosystem {
        gap: 32px;
    }

    .circular-frame-large {
        width: 220px;
        height: 220px;
    }

    .founder-expertise {
        max-width: 100%;
        text-align: center;
    }

    /* ============================
       TRANSFORMATION — Mobile
       ============================ */
    .trans-visual {
        height: 260px;
        border-radius: 24px;
        border-width: 6px;
    }

    .trans-content h2 {
        font-size: 1.75rem;
    }

    .trans-content p {
        font-size: 1rem;
    }

    /* ============================
       FAQ — Mobile
       ============================ */
    .faq-header h2 {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 20px 20px;
    }

    .faq-question h4 {
        font-size: 1rem;
        padding-right: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    /* ============================
       FINAL CTA — Mobile
       ============================ */
    .final-cta {
        padding: 80px 0;
    }

    /* ============================
       FOOTER — Mobile
       ============================ */
    .footer {
        padding-bottom: 100px !important; /* clearance for sticky CTA */
    }
}

/* =========================================
   SMALL MOBILE (480px)
   ========================================= */
@media (max-width: 480px) {
    .hero-h1 {
        font-size: 1.85rem;
    }

    .hero .subheading {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .career-benefits-grid {
        grid-template-columns: 1fr;
    }

    .audience-card h3 {
        font-size: 1.25rem;
    }

    .section-header h2,
    .trust-content h2,
    .ycb-content h2,
    .trans-content h2,
    .faq-header h2 {
        font-size: 1.5rem;
    }

    .curriculum-text-editorial h2 {
        font-size: 1.75rem;
    }

    .t-highlight {
        font-size: 1.75rem;
    }

    .mentor-card {
        min-width: 170px;
    }
}

/* =========================================
   Editorial Image Filter System
   Unified warm cinematic treatment
   ========================================= */
.editorial-filter {
    filter: brightness(1.02) saturate(0.84) sepia(0.10) contrast(1.04);
    transition: filter 0.6s ease;
}

.editorial-filter:hover {
    filter: brightness(1.05) saturate(0.92) sepia(0.05) contrast(1.02);
}

/* =========================================
   Gallery: Immersive Editorial Grid — Refined
   ========================================= */
.gallery-editorial {
    background: linear-gradient(150deg, #F8F4FD 0%, #FDF0F7 40%, #F0EBF8 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

/* Ambient glow */
.gallery-editorial::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle,
        rgba(107, 70, 163, 0.1) 0%,
        transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.gallery-editorial::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -5%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle,
        rgba(200, 75, 155, 0.08) 0%,
        transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.gallery-editorial .container {
    position: relative;
    z-index: 1;
}

/* ── Header ── */
.gallery-header {
    position: relative;
    z-index: 1;
    padding-bottom: 48px;
}

.gallery-header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.gallery-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(107, 70, 163, 0.1);
    border: 1px solid rgba(107, 70, 163, 0.2);
    border-radius: var(--radius-pill);
    color: var(--clr-purple);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    display: block;
    width: fit-content;
}

.gallery-header-text h2 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    color: var(--clr-charcoal);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0;
}

.gallery-header-sub {
    font-size: 1rem;
    color: #888;
    line-height: 1.7;
    max-width: 320px;
    text-align: right;
    margin: 0;
    padding-bottom: 6px;
}

/* ── Shared cell styles ── */
.gallery-cell {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(107, 70, 163, 0.1);
}

.gallery-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.25, 1, 0.3, 1);
    display: block;
}

.gallery-cell:hover .gallery-img-wrap img {
    transform: scale(1.07);
}

/* Gradient overlay — stronger for readability */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.08) 40%,
        rgba(0,0,0,0.72) 100%
    );
    z-index: 1;
    border-radius: inherit;
    transition: background 0.4s ease;
}

.gallery-cell:hover .gallery-overlay {
    background: linear-gradient(
        180deg,
        rgba(107, 70, 163, 0.1) 0%,
        rgba(0,0,0,0.1) 30%,
        rgba(0,0,0,0.82) 100%
    );
}

/* Caption — always visible, strong contrast */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateY(4px);
    transition: transform 0.4s ease;
}

.gallery-cell:hover .gallery-caption {
    transform: translateY(0);
}

.gc-tag {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #FFB3D9;
    line-height: 1;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.gc-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    font-family: var(--font-heading);
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* ── ROW 1: Hero tall left + 2 stacked right ── */
.gallery-row-1 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 520px;
    gap: 10px;
    margin-bottom: 10px;
}

.gallery-hero {
    grid-row: 1;
    min-height: 520px;
}

.gallery-col-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    min-height: 520px;
}

.gallery-col-stack .gallery-cell {
    min-height: 0;
}

/* ── ROW 2: Wide + portrait ── */
.gallery-row-2 {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 300px;
    gap: 10px;
    margin-bottom: 10px;
}

.gallery-wide,
.gallery-portrait {
    min-height: 300px;
}

/* ── ROW 3: Three equal ── */
.gallery-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px;
    gap: 10px;
    padding-bottom: 0;
}

.gallery-row-3 .gallery-cell {
    min-height: 240px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .gallery-row-1 {
        grid-template-rows: 420px;
    }

    .gallery-hero {
        min-height: 420px;
    }

    .gallery-col-stack {
        min-height: 420px;
    }

    .gallery-row-2 {
        grid-template-rows: 260px;
    }

    .gallery-wide,
    .gallery-portrait {
        min-height: 260px;
    }

    .gallery-row-3 {
        grid-template-rows: 220px;
    }

    .gallery-row-3 .gallery-cell {
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .gallery-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .gallery-header-sub {
        text-align: left;
        max-width: 100%;
    }

    .gallery-header {
        padding-bottom: 32px;
    }

    .gallery-row-1 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .gallery-hero {
        min-height: 300px;
        height: 300px;
    }

    .gallery-col-stack {
        display: grid;
        grid-template-rows: unset;
        grid-template-columns: 1fr 1fr;
        min-height: unset;
        height: 200px;
    }

    .gallery-row-2 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px;
        height: auto;
    }

    .gallery-wide,
    .gallery-portrait {
        min-height: 220px;
    }

    .gallery-row-3 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .gallery-row-3 .gallery-cell {
        height: 200px;
        min-height: 200px;
    }

    .gallery-row-3 .gallery-cell:last-child {
        grid-column: 1 / -1;
        height: 180px;
        min-height: 180px;
    }

    /* Always show captions on mobile */
    .gallery-caption {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .gallery-row-1 {
        gap: 8px;
    }

    .gallery-hero {
        height: 260px;
        min-height: 260px;
    }

    .gallery-col-stack {
        grid-template-columns: 1fr 1fr;
        height: 160px;
        min-height: 160px;
    }

    .gallery-row-2 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .gallery-wide,
    .gallery-portrait {
        height: 200px;
        min-height: 200px;
    }

    .gallery-row-3 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-row-3 .gallery-cell,
    .gallery-row-3 .gallery-cell:last-child {
        grid-column: 1;
        height: 200px;
        min-height: 200px;
    }
    .gallery-row-3 .gallery-cell:last-child {
        grid-column: 1;
        height: 200px;
    }

    .gc-title {
        font-size: 0.82rem;
    }
}


/* =========================================
   Footer: Locations + Bottom Bar
   ========================================= */
.footer-locations {
    background: var(--clr-purple-deep);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.footer-locations::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle,
        rgba(200, 75, 155, 0.12) 0%,
        rgba(107, 70, 163, 0.08) 40%,
        transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.footer-locations .container {
    position: relative;
    z-index: 1;
}

.footer-locations-header {
    text-align: center;
    margin-bottom: 56px;
}

.footer-locations-header .editorial-label {
    background: rgba(200, 75, 155, 0.15);
    color: var(--clr-magenta);
    border: 1px solid rgba(200, 75, 155, 0.25);
}

.footer-locations-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--clr-white);
    margin-bottom: 12px;
}

.footer-locations-header p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
}

.footer-locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition-smooth);
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(200, 75, 155, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.location-icon {
    width: 40px;
    height: 40px;
    background: rgba(200, 75, 155, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-magenta);
    margin-bottom: 4px;
    flex-shrink: 0;
}

.location-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--clr-white);
    font-weight: 600;
    line-height: 1.2;
}

.location-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    flex: 1;
}

.location-call {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--clr-white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-call:hover {
    color: var(--clr-magenta);
}

.location-map {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-magenta);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: opacity 0.2s ease;
}

.location-map:hover {
    opacity: 0.75;
}

/* Footer Bottom Bar */
.footer-bottom {
    background: var(--clr-ivory);
    padding: 32px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo img {
    height: 48px;
    width: auto;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--clr-purple);
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-divider {
    color: #ccc;
    font-size: 0.875rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: #999;
}

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-locations {
        padding: 60px 0 40px;
    }

    .footer-locations-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-links {
        justify-content: center;
    }
}
