    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
    body { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; color: #1a1a1a; background: #fff; overflow-x: hidden; cursor: none; }
    @media (max-width: 968px) { body { cursor: auto; } .cursor-dot, .cursor-ring { display: none !important; } }
    /* Custom cursor */
    .cursor-dot {
        position: fixed; top:0; left:0;
        width: 10px; height: 10px;
        background: var(--pink);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%,-50%);
        transition: transform 0.08s, background 0.2s, width 0.2s, height 0.2s;
    }
    .cursor-ring {
        position: fixed; top:0; left:0;
        width: 36px; height: 36px;
        border: 2px solid rgba(255,107,157,0.5);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%,-50%);
        transition: transform 0.18s cubic-bezier(0.4,0,0.2,1), width 0.25s, height 0.25s, border-color 0.25s;
    }
    a:hover ~ .cursor-dot, button:hover ~ .cursor-dot { width:16px; height:16px; }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { border: none; background: none; cursor: pointer; font-family: inherit; }

    /* ============================================================
       VARIABLES
    ============================================================ */
    :root {
        --pink: #FF6B9D;
        --pink-light: #FF8FB3;
        --pink-deep: #E91E8C;
        --blue: #4A90E2;
        --blue-deep: #2563EB;
        --purple: #8B5CF6;
        --coral: #FF7F6E;
        --mint: #34D399;
        --dark: #1a1a1a;
        --gray: #718096;
        --light: #f8f9fa;
        --white: #fff;
        --grad: linear-gradient(135deg, #FF6B9D, #4A90E2);
        --grad-3: linear-gradient(135deg, #FF6B9D, #8B5CF6, #4A90E2);
        --grad-pink: linear-gradient(135deg, #FF6B9D, #FF8FB3);
        --grad-warm: linear-gradient(135deg, #FF6B9D, #FF7F6E, #FFB347);
        --grad-cool: linear-gradient(135deg, #4A90E2, #8B5CF6);
        --shadow-pink: rgba(255,107,157,0.3);
        --shadow-purple: rgba(139,92,246,0.3);
        --shadow-blue: rgba(74,144,226,0.3);
        --radius-xl: 28px;
        --radius-lg: 20px;
        --radius-md: 16px;
        --radius-sm: 12px;
        --radius-pill: 50px;
        --max-w: 1380px;
        --transition: all 0.3s ease;
    }

    /* ============================================================
       UTILITY
    ============================================================ */
    .gradient-text {
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    .section-header h2 {
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 1rem;
        letter-spacing: -0.5px;
    }
    .section-header p {
        color: var(--gray);
        font-size: 1.05rem;
        max-width: 560px;
        margin: 0 auto;
    }
    .section-header::after {
        content: '';
        display: block;
        width: 48px;
        height: 4px;
        background: var(--grad-3);
        border-radius: 2px;
        margin: 1.2rem auto 0;
        animation: lineGrow 0.8s ease forwards;
        transform-origin: center;
    }
    @keyframes lineGrow {
        from { width: 0; opacity: 0; }
        to   { width: 48px; opacity: 1; }
    }
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.9rem 2rem;
        border-radius: var(--radius-pill);
        font-weight: 600;
        font-size: 0.95rem;
        transition: var(--transition);
        cursor: pointer;
        white-space: nowrap;
    }
    .btn-primary {
        background: var(--grad-pink);
        color: #fff;
        box-shadow: 0 6px 20px var(--shadow-pink);
        position: relative;
        overflow: hidden;
    }
    .btn-primary::after {
        content: '';
        position: absolute;
        top: 0; left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transform: skewX(-15deg);
        transition: left 0.5s ease;
    }
    .btn-primary:hover::after { left: 150%; }
    .btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 35px rgba(255,107,157,0.5); }
    .btn-outline {
        background: transparent;
        color: var(--pink);
        border: 2px solid var(--pink);
    }
    .btn-outline:hover { background: var(--pink); color: #fff; transform: translateY(-2px); }
    .btn-white {
        background: #fff;
        color: var(--pink);
        font-weight: 700;
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
    .btn-outline-white {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255,255,255,0.6);
    }
    .btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
    .btn-large { padding: 1.1rem 2.5rem; font-size: 1rem; }

    /* ============================================================
       NAVIGATION
    ============================================================ */
    .nav {
        position: fixed;
        top: 0; left: 0; right: 0;
        z-index: 1000;
        background: rgba(255,255,255,0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255,255,255,0.3);
        transition: var(--transition);
    }
    .nav.scrolled {
        background: rgba(255,255,255,0.97);
        box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    }
    .nav-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 1.1rem 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
    .logo {
        font-size: 1.55rem;
        font-weight: 800;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: -0.5px;
        flex-shrink: 0;
        transition: transform 0.3s;
    }
    .logo:hover { transform: scale(1.05); }
    .nav-links {
        display: flex;
        align-items: center;
        gap: 2.5rem;
    }
    .nav-links a {
        font-weight: 500;
        font-size: 0.9rem;
        color: var(--dark);
        position: relative;
        transition: color 0.3s;
    }
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px; left: 0;
        width: 0; height: 2px;
        background: var(--grad);
        border-radius: 1px;
        transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--pink); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
        background: var(--grad-pink);
        color: #fff;
        padding: 0.75rem 1.8rem;
        border-radius: var(--radius-pill);
        font-weight: 600;
        font-size: 0.9rem;
        box-shadow: 0 4px 15px var(--shadow-pink);
        transition: var(--transition);
        flex-shrink: 0;
    }
    .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,157,0.45); }
    .mobile-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        padding: 4px;
        cursor: pointer;
    }
    .mobile-toggle span {
        display: block;
        width: 24px; height: 2px;
        background: var(--dark);
        border-radius: 2px;
        transition: var(--transition);
    }
    .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* ============================================================
       MOBILE MENU
    ============================================================ */
    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1001;
        opacity: 0;
        transition: opacity 0.3s;
    }
    .mobile-overlay.active { display: block; opacity: 1; }
    .mobile-menu {
        position: fixed;
        top: 0; right: -100%;
        width: min(340px, 90vw);
        height: 100%;
        background: #fff;
        z-index: 1002;
        padding: 2rem;
        transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .mobile-menu.active { right: 0; }
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .mobile-logo {
        font-size: 1.4rem;
        font-weight: 800;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .mobile-close {
        width: 36px; height: 36px;
        border-radius: 50%;
        background: var(--light);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: var(--dark);
        cursor: pointer;
        transition: var(--transition);
        line-height: 1;
    }
    .mobile-close:hover { background: var(--pink); color: #fff; }
    .mobile-menu-links { display: flex; flex-direction: column; gap: 0.25rem; }
    .mobile-menu-links a {
        display: block;
        padding: 0.9rem 1rem;
        font-weight: 600;
        font-size: 1rem;
        color: var(--dark);
        border-radius: var(--radius-sm);
        transition: var(--transition);
    }
    .mobile-menu-links a:hover { background: rgba(255,107,157,0.07); color: var(--pink); padding-left: 1.5rem; }
    .mobile-menu-cta { display: flex; flex-direction: column; gap: 0.75rem; }
    .mobile-menu-cta .btn { width: 100%; }
    .mobile-social {
        display: flex;
        gap: 1rem;
        margin-top: auto;
    }
    .mobile-social a {
        width: 40px; height: 40px;
        border-radius: 50%;
        background: var(--light);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        transition: var(--transition);
    }
    .mobile-social a:hover { background: var(--pink); }

    /* ============================================================
       HERO
    ============================================================ */
    .hero {
        min-height: 100vh;
        padding-top: 80px;
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #FFE5F0 0%, #EAF1FF 55%, #F0E6FF 100%);
        overflow: hidden;
        position: relative;
    }
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 20% 20%, rgba(255,107,157,0.18) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(74,144,226,0.15) 0%, transparent 50%),
            radial-gradient(circle at 60% 10%, rgba(139,92,246,0.12) 0%, transparent 40%);
        pointer-events: none;
        animation: meshPulse 8s ease-in-out infinite alternate;
    }
    @keyframes meshPulse {
        from { opacity: 0.7; transform: scale(1); }
        to   { opacity: 1;   transform: scale(1.04); }
    }
    /* Floating orbs */
    .hero-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        pointer-events: none;
        animation: orbFloat linear infinite;
    }
    .hero-orb-1 { width:300px; height:300px; background:rgba(255,107,157,0.22); top:-80px; right:15%; animation-duration:18s; animation-delay:0s; }
    .hero-orb-2 { width:220px; height:220px; background:rgba(74,144,226,0.18); bottom:5%; left:5%;  animation-duration:22s; animation-delay:-6s; }
    .hero-orb-3 { width:180px; height:180px; background:rgba(139,92,246,0.15); top:40%; right:5%;  animation-duration:15s; animation-delay:-3s; }
    @keyframes orbFloat {
        0%   { transform: translateY(0) translateX(0) scale(1); }
        33%  { transform: translateY(-30px) translateX(15px) scale(1.05); }
        66%  { transform: translateY(15px) translateX(-20px) scale(0.97); }
        100% { transform: translateY(0) translateX(0) scale(1); }
    }
    .hero-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 4rem 5%;
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 5rem;
        align-items: center;
        width: 100%;
    }
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, rgba(255,107,157,0.12), rgba(139,92,246,0.1));
        border: 1px solid rgba(255,107,157,0.3);
        color: var(--pink);
        padding: 0.55rem 1.2rem;
        border-radius: var(--radius-pill);
        font-size: 0.82rem;
        font-weight: 600;
        margin-bottom: 1.8rem;
        letter-spacing: 0.3px;
        animation: badgePop 0.6s cubic-bezier(0.175,0.885,0.32,1.275) 0.3s both;
        position: relative;
        overflow: hidden;
    }
    .hero-badge::before { content: '✦'; animation: spin 3s linear infinite; display: inline-block; }
    .hero-badge::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transform: translateX(-100%);
        animation: badgeShine 3s ease-in-out 2s infinite;
    }
    @keyframes badgePop { from {opacity:0;transform:scale(0.8) translateY(10px);} to {opacity:1;transform:scale(1) translateY(0);} }
    @keyframes badgeShine { to { transform: translateX(200%); } }
    @keyframes spin { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }
    .hero-content h1 {
        font-size: clamp(2.6rem, 5vw, 4rem);
        font-weight: 800;
        line-height: 1.15;
        color: var(--dark);
        letter-spacing: -1.5px;
        margin-bottom: 1.5rem;
    }
    .hero-content p {
        font-size: 1.1rem;
        color: var(--gray);
        line-height: 1.75;
        margin-bottom: 2.2rem;
        max-width: 480px;
    }
    .hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 3rem;
    }
    .hero-stats {
        display: flex;
        gap: 2.5rem;
    }
    .hero-stat h3 {
        font-size: 1.7rem;
        font-weight: 800;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: -0.5px;
    }
    .hero-stat p {
        font-size: 0.82rem;
        color: var(--gray);
        margin: 0;
        font-weight: 500;
    }
    .hero-image { position: relative; }
    .hero-image-wrapper {
        position: relative;
        border-radius: var(--radius-xl);
        padding: 6px;
        background: var(--grad);
    }
    .hero-image-inner {
        border-radius: calc(var(--radius-xl) - 6px);
        overflow: hidden;
        background: #fff;
    }
    .hero-image-inner img {
        width: 100%;
        height: 580px;
        object-fit: cover;
        display: block;
    }
    .hero-float-card {
        position: absolute;
        background: rgba(255,255,255,0.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 1rem 1.3rem;
        border-radius: var(--radius-md);
        box-shadow: 0 12px 40px rgba(0,0,0,0.12);
        display: flex;
        align-items: center;
        gap: 0.85rem;
        min-width: 180px;
    }
    .hero-float-card.card-1 { top: 10%; right: -8%; }
    .hero-float-card.card-2 { bottom: 18%; left: -8%; }
    .float-card-icon {
        width: 42px; height: 42px;
        background: var(--grad);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    .float-card-text h4 {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 0.15rem;
    }
    .float-card-text p {
        font-size: 0.75rem;
        color: var(--gray);
        margin: 0;
    }

    /* ============================================================
       PROMO BANNER
    ============================================================ */
    .promo-banner {
        background: linear-gradient(135deg, #FF6B9D 0%, #FF8FB3 45%, #4A90E2 100%);
        padding: 6rem 5%;
        position: relative;
        overflow: hidden;
    }
    .promo-banner::before {
        content: '';
        position: absolute;
        top: -60px; right: -60px;
        width: 340px; height: 340px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
        pointer-events: none;
    }
    .promo-banner::after {
        content: '';
        position: absolute;
        bottom: -80px; left: -40px;
        width: 280px; height: 280px;
        background: rgba(255,255,255,0.06);
        border-radius: 50%;
        pointer-events: none;
    }
    .promo-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 5rem;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    .promo-content h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
        letter-spacing: -1px;
        margin-bottom: 1.2rem;
    }
    .promo-content h2 .highlight {
        background: rgba(255,255,255,0.25);
        padding: 0.2rem 1.2rem;
        border-radius: var(--radius-pill);
        display: inline-block;
    }
    .promo-content > p {
        color: rgba(255,255,255,0.85);
        font-size: 1.05rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }
    .promo-features {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        margin-bottom: 2.2rem;
    }
    .promo-feature {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        color: rgba(255,255,255,0.9);
        font-size: 0.95rem;
        font-weight: 500;
    }
    .promo-feature-icon {
        width: 22px; height: 22px;
        background: rgba(255,255,255,0.25);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: 700;
        color: #fff;
        flex-shrink: 0;
    }
    .promo-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
    .promo-discount-card {
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: var(--radius-xl);
        padding: 3rem 2.5rem;
        text-align: center;
    }
    .discount-badge {
        display: inline-block;
        background: #fff;
        color: var(--pink);
        padding: 0.45rem 1.2rem;
        border-radius: var(--radius-pill);
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-bottom: 1.2rem;
    }
    .discount-percentage {
        font-size: clamp(4rem, 7vw, 6rem);
        font-weight: 800;
        color: #fff;
        line-height: 1;
        letter-spacing: -3px;
    }
    .discount-text {
        font-size: 1.4rem;
        color: rgba(255,255,255,0.9);
        font-weight: 600;
        margin-bottom: 0.8rem;
    }
    .discount-conditions {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.7);
        line-height: 1.6;
        margin-bottom: 1.8rem;
    }
    .discount-timer {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    .timer-item { text-align: center; }
    .timer-value {
        display: block;
        background: rgba(255,255,255,0.2);
        color: #fff;
        font-size: 1.6rem;
        font-weight: 800;
        padding: 0.6rem 0.8rem;
        border-radius: var(--radius-sm);
        min-width: 58px;
        letter-spacing: -0.5px;
    }
    .timer-label {
        display: block;
        font-size: 0.7rem;
        color: rgba(255,255,255,0.7);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 0.35rem;
    }

    /* ============================================================
       PROGRAMS
    ============================================================ */
    .programs {
        padding: 7rem 5%;
        background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    }
    .programs-inner { max-width: var(--max-w); margin: 0 auto; }
    .programs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .program-card {
        background: #fff;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: 0 4px 24px rgba(0,0,0,0.07);
        transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(0,0,0,0.05);
        position: relative;
    }
    .program-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 4px;
        background: var(--grad-3);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
        z-index: 1;
    }
    .program-card:hover::before { transform: scaleX(1); }
    .program-card:nth-child(2)::before { background: var(--grad-cool); }
    .program-card:nth-child(3)::before { background: var(--grad-warm); }
    .program-card:hover {
        transform: translateY(-10px) scale(1.01);
        box-shadow: 0 24px 70px rgba(255,107,157,0.15);
    }
    .program-image {
        position: relative;
        overflow: hidden;
        height: 220px;
    }
    .program-image img {
        width: 100%; height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .program-card:hover .program-image img { transform: scale(1.07); }
    .program-tag {
        position: absolute;
        top: 1rem; left: 1rem;
        background: var(--grad-pink);
        color: #fff;
        padding: 0.3rem 0.9rem;
        border-radius: var(--radius-pill);
        font-size: 0.75rem;
        font-weight: 700;
    }
    .program-content {
        padding: 1.8rem;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .program-content h3 {
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 0.6rem;
        letter-spacing: -0.3px;
    }
    .program-content > p {
        color: var(--gray);
        font-size: 0.92rem;
        line-height: 1.65;
        margin-bottom: 1.2rem;
    }
    .program-price {
        background: linear-gradient(135deg, rgba(255,107,157,0.07), rgba(74,144,226,0.07));
        border-radius: var(--radius-sm);
        padding: 0.85rem 1rem;
        display: flex;
        align-items: baseline;
        gap: 0.5rem;
        margin-bottom: 1.2rem;
    }
    .price-label { font-size: 0.8rem; color: var(--gray); font-weight: 500; }
    .price-value { font-size: 1.1rem; font-weight: 700; color: var(--pink); }
    .price-value span { font-size: 0.8rem; color: var(--gray); font-weight: 400; }
    .btn-whatsapp-quote {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: #fff;
        padding: 0.8rem 1.2rem;
        border-radius: var(--radius-pill);
        font-weight: 700;
        font-size: 0.88rem;
        width: 100%;
        margin-bottom: 1.2rem;
        transition: var(--transition);
        box-shadow: 0 4px 15px rgba(37,211,102,0.3);
        letter-spacing: 0.1px;
    }
    .btn-whatsapp-quote:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
    .program-features {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.8rem;
        flex: 1;
    }
    .program-features li {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.88rem;
        color: var(--gray);
    }
    .program-features li::before {
        content: '✓';
        width: 18px; height: 18px;
        background: var(--grad);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.65rem;
        font-weight: 700;
        flex-shrink: 0;
    }
    .program-content .btn { align-self: flex-start; }

    /* ============================================================
       ABOUT
    ============================================================ */
    .about {
        padding: 7rem 5%;
        background: linear-gradient(135deg, #fef9ff 0%, #f0f8ff 50%, #fff5f9 100%);
        position: relative;
    }
    .about::before {
        content: '';
        position: absolute;
        top: -100px; right: -100px;
        width: 400px; height: 400px;
        background: radial-gradient(circle, rgba(255,107,157,0.08) 0%, transparent 70%);
        pointer-events: none;
        animation: orbFloat 20s ease-in-out infinite;
        z-index: 0;
    }
    .about-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 6rem;
        align-items: center;
    }
    .about-image-section { position: relative; }
    .about-image-main {
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: 0 20px 70px rgba(0,0,0,0.12);
    }
    .about-image-main img {
        width: 100%; height: 500px;
        object-fit: cover;
    }
    .about-stat-float {
        position: absolute;
        background: #fff;
        border-radius: var(--radius-md);
        padding: 1rem 1.5rem;
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        text-align: center;
        min-width: 120px;
        animation: floatUpDown 4s ease-in-out infinite;
    }
    .about-stat-float.stat-2 { animation-delay: -2s; }
    @keyframes floatUpDown {
        0%,100% { transform: translateY(0); }
        50%     { transform: translateY(-10px); }
    }
    .about-stat-float.stat-1 { bottom: -2rem; left: -2rem; }
    .about-stat-float.stat-2 { top: -1.5rem; right: -2rem; }
    .stat-float-number {
        font-size: 1.8rem;
        font-weight: 800;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: -1px;
        line-height: 1;
    }
    .stat-float-label {
        font-size: 0.78rem;
        color: var(--gray);
        font-weight: 500;
        margin-top: 0.2rem;
    }
    .about-badge {
        display: inline-block;
        background: linear-gradient(135deg, rgba(255,107,157,0.1), rgba(74,144,226,0.1));
        border: 1px solid rgba(255,107,157,0.2);
        color: var(--pink);
        padding: 0.45rem 1.2rem;
        border-radius: var(--radius-pill);
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 1.2rem;
        letter-spacing: 0.3px;
    }
    .about-content h2 {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        font-weight: 800;
        color: var(--dark);
        line-height: 1.25;
        letter-spacing: -0.8px;
        margin-bottom: 1.5rem;
    }
    .about-description {
        color: var(--gray);
        font-size: 0.97rem;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    .about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.1rem;
        margin: 2rem 0;
    }
    .about-feature-item {
        background: linear-gradient(145deg, #fff 0%, #fdf6fa 100%);
        border-radius: var(--radius-lg);
        padding: 1.6rem 1.4rem 1.4rem;
        transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        box-shadow: 0 2px 16px rgba(255,107,157,0.07), 0 1px 4px rgba(0,0,0,0.04);
    }
    /* gradient border via pseudo-element */
    .about-feature-item::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: var(--radius-lg);
        padding: 1.5px;
        background: linear-gradient(135deg, rgba(255,107,157,0.55), rgba(74,144,226,0.35));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }
    .about-feature-item:nth-child(2)::before { background: linear-gradient(135deg, rgba(139,92,246,0.5), rgba(74,144,226,0.35)); }
    .about-feature-item:nth-child(3)::before { background: linear-gradient(135deg, rgba(52,211,153,0.55), rgba(16,185,129,0.3)); }
    .about-feature-item:nth-child(4)::before { background: linear-gradient(135deg, rgba(74,144,226,0.5), rgba(139,92,246,0.35)); }
    .about-feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(255,107,157,0.14), 0 4px 12px rgba(0,0,0,0.06);
        background: linear-gradient(145deg, #fff5f9 0%, #fff 100%);
    }
    .about-feature-item:nth-child(2):hover { box-shadow: 0 16px 40px rgba(139,92,246,0.13), 0 4px 12px rgba(0,0,0,0.06); background: linear-gradient(145deg, #f9f5ff 0%, #fff 100%); }
    .about-feature-item:nth-child(3):hover { box-shadow: 0 16px 40px rgba(52,211,153,0.13), 0 4px 12px rgba(0,0,0,0.06); background: linear-gradient(145deg, #f0fdf8 0%, #fff 100%); }
    .about-feature-item:nth-child(4):hover { box-shadow: 0 16px 40px rgba(74,144,226,0.13), 0 4px 12px rgba(0,0,0,0.06); background: linear-gradient(145deg, #f0f6ff 0%, #fff 100%); }
    .feature-icon-wrapper {
        width: 48px; height: 48px;
        background: var(--grad-pink);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        flex-shrink: 0;
        margin-bottom: 0.4rem;
        box-shadow: 0 4px 12px rgba(255,107,157,0.3);
    }
    .about-feature-item:nth-child(2) .feature-icon-wrapper { background: var(--grad-cool); box-shadow: 0 4px 12px rgba(139,92,246,0.3); }
    .about-feature-item:nth-child(3) .feature-icon-wrapper { background: linear-gradient(135deg, #34D399, #059669); box-shadow: 0 4px 12px rgba(52,211,153,0.3); }
    .about-feature-item:nth-child(4) .feature-icon-wrapper { background: var(--grad-cool); box-shadow: 0 4px 12px rgba(74,144,226,0.3); }
    .about-feature-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
    .about-feature-item p { font-size: 0.83rem; color: var(--gray); line-height: 1.55; margin: 0; }
    .about-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

    /* ============================================================
       INSTRUCTORS
    ============================================================ */
    .instructors {
        padding: 7rem 5%;
        background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    }
    .instructors-inner { max-width: var(--max-w); margin: 0 auto; }
    .instructors-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .instructor-card {
        background: #fff;
        border-radius: var(--radius-xl);
        padding: 2.5rem 2rem 2rem;
        text-align: center;
        box-shadow: 0 4px 24px rgba(0,0,0,0.07);
        border: 1px solid rgba(0,0,0,0.05);
        transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        isolation: isolate;
    }
    .instructor-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: var(--radius-xl);
        background: var(--grad-3);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
        margin: -2px;
    }
    .instructor-card:hover::before { opacity: 1; }
    .instructor-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 24px 70px rgba(255,107,157,0.18);
    }
    .instructor-card:hover h3 { color: #fff; }
    .instructor-card:hover .instructor-bio { color: rgba(255,255,255,0.92); }
    .instructor-card:hover .instructor-stats { background: rgba(255,255,255,0.18); }
    .instructor-card:hover .stat-item-instructor p { color: rgba(255,255,255,0.85); }
    .instructor-card:hover .stat-item-instructor h4 { -webkit-text-fill-color: #fff; color: #fff; background: none; }
    .instructor-card:hover .cert-badge { background: rgba(255,255,255,0.2); color: #fff; border-color: rgba(255,255,255,0.35); }
    .instructor-card:hover .social-link-instructor { background: rgba(255,255,255,0.2); color: #fff; }
    .instructor-card h3, .instructor-card p, .instructor-card span,
    .instructor-card div, .instructor-card button, .instructor-card ul { position: relative; z-index: 1; }
    .instructor-status {
        position: absolute;
        top: 1.2rem; right: 1.2rem;
        width: 10px; height: 10px;
        background: #22c55e;
        border-radius: 50%;
        border: 2px solid #fff;
        box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
    }
    .instructor-photo-wrapper {
        position: relative;
        width: 140px; height: 140px;
        margin: 0 auto 1.5rem;
    }
    .instructor-photo-wrapper::before {
        content: '';
        position: absolute;
        inset: -4px;
        background: var(--grad);
        border-radius: 50%;
        z-index: 0;
    }
    .instructor-photo {
        position: relative;
        width: 100%; height: 100%;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid #fff;
        z-index: 1;
    }
    .instructor-photo img {
        width: 100%; height: 100%;
        object-fit: cover;
        display: block;
    }
    .instructor-card h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 0.5rem;
        letter-spacing: -0.3px;
    }
    .instructor-specialty {
        display: inline-block;
        background: var(--grad);
        color: #fff;
        padding: 0.3rem 1rem;
        border-radius: var(--radius-pill);
        font-size: 0.75rem;
        font-weight: 600;
        margin-bottom: 1rem;
        letter-spacing: 0.2px;
    }
    .instructor-bio {
        font-size: 0.87rem;
        color: var(--gray);
        line-height: 1.65;
        margin-bottom: 1.5rem;
    }
    .instructor-stats {
        display: flex;
        gap: 2rem;
        justify-content: center;
        background: var(--light);
        border-radius: var(--radius-md);
        padding: 1rem;
        width: 100%;
        margin-bottom: 1.5rem;
    }
    .stat-item-instructor h4 {
        font-size: 1.3rem;
        font-weight: 800;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: -0.5px;
        line-height: 1;
        margin-bottom: 0.2rem;
    }
    .stat-item-instructor p { font-size: 0.75rem; color: var(--gray); }
    .instructor-certs {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    .cert-badge {
        background: rgba(255,107,157,0.08);
        color: var(--pink);
        border: 1px solid rgba(255,107,157,0.2);
        padding: 0.3rem 0.8rem;
        border-radius: var(--radius-pill);
        font-size: 0.75rem;
        font-weight: 600;
    }
    .instructor-social {
        display: flex;
        gap: 0.75rem;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    .social-link-instructor {
        width: 36px; height: 36px;
        border-radius: 50%;
        background: var(--light);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        transition: var(--transition);
        color: var(--dark);
    }
    .social-link-instructor:hover { background: var(--pink); }
    .instructor-contact-btn {
        width: 100%;
        background: var(--grad);
        color: #fff;
        padding: 0.8rem;
        border-radius: var(--radius-pill);
        font-size: 0.88rem;
        font-weight: 600;
        transition: var(--transition);
        cursor: pointer;
        margin-top: auto;
    }
    .instructor-contact-btn:hover { opacity: 0.9; transform: translateY(-2px); }

    /* ============================================================
       SCHEDULE
    ============================================================ */
    .schedule {
        padding: 7rem 5%;
        background: linear-gradient(180deg, #f5f8ff 0%, #fff 100%);
        position: relative;
    }
    .schedule::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0; right: 0;
        height: 300px;
        background: radial-gradient(ellipse at 50% 100%, rgba(74,144,226,0.07) 0%, transparent 70%);
        pointer-events: none;
    }
    .schedule-inner { max-width: var(--max-w); margin: 0 auto; }
    .week-navigation {
        display: flex;
        gap: 0.5rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        margin-bottom: 2rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .week-navigation::-webkit-scrollbar { display: none; }
    .day-tab {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-pill);
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--gray);
        background: var(--light);
        border: 2px solid transparent;
        white-space: nowrap;
        transition: var(--transition);
        cursor: pointer;
    }
    .day-tab:hover { border-color: var(--pink); color: var(--pink); }
    .day-tab.active {
        background: var(--grad);
        color: #fff;
        box-shadow: 0 4px 15px var(--shadow-pink);
    }
    .day-schedule {
        display: none;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .day-schedule.active { display: grid; }
    .class-card {
        background: #fff;
        border-radius: var(--radius-lg);
        padding: 1.8rem;
        border: 1.5px solid rgba(0,0,0,0.07);
        box-shadow: 0 2px 16px rgba(0,0,0,0.05);
        transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: relative;
        overflow: hidden;
    }
    .class-card::before {
        content: '';
        position: absolute;
        left: 0; top: 0; bottom: 0;
        width: 4px;
        background: var(--grad);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.35s ease;
        border-radius: 0 2px 2px 0;
    }
    .class-card:hover::before { transform: scaleY(1); }
    .class-card:hover {
        border-color: rgba(255,107,157,0.2);
        box-shadow: 0 12px 40px rgba(255,107,157,0.12);
        transform: translateY(-4px) translateX(2px);
    }
    .class-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }
    .class-time-badge {
        background: linear-gradient(135deg, rgba(255,107,157,0.1), rgba(74,144,226,0.1));
        color: var(--pink);
        padding: 0.35rem 0.9rem;
        border-radius: var(--radius-pill);
        font-size: 0.82rem;
        font-weight: 700;
    }
    .class-spots {
        font-size: 0.75rem;
        font-weight: 600;
        padding: 0.3rem 0.75rem;
        border-radius: var(--radius-pill);
        background: rgba(34,197,94,0.1);
        color: #16a34a;
    }
    .class-spots.limited { background: rgba(234,179,8,0.1); color: #b45309; }
    .class-spots.full { background: rgba(239,68,68,0.1); color: #dc2626; }
    .class-name {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--dark);
        letter-spacing: -0.2px;
    }
    .class-instructor {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    .instructor-avatar {
        width: 38px; height: 38px;
        border-radius: 50%;
        background: var(--grad);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 700;
        flex-shrink: 0;
    }
    .instructor-info strong { font-size: 0.88rem; font-weight: 600; display: block; }
    .instructor-info span { font-size: 0.78rem; color: var(--gray); }
    .class-details {
        display: flex;
        gap: 1.2rem;
        flex-wrap: wrap;
    }
    .class-detail-item {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.8rem;
        color: var(--gray);
        font-weight: 500;
    }
    .class-detail-icon { font-size: 0.9rem; }
    .class-action {
        display: flex;
        gap: 0.75rem;
        align-items: center;
        margin-top: auto;
    }
    .btn-book {
        flex: 1;
        background: var(--grad);
        color: #fff;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-pill);
        font-size: 0.85rem;
        font-weight: 600;
        transition: var(--transition);
        cursor: pointer;
        border: none;
    }
    .btn-book:hover { opacity: 0.9; transform: translateY(-1px); }
    .btn-book:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
    .btn-info {
        width: 38px; height: 38px;
        border-radius: 50%;
        background: var(--light);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        transition: var(--transition);
        cursor: pointer;
        border: none;
        flex-shrink: 0;
    }
    .btn-info:hover { background: rgba(255,107,157,0.1); }

    /* ============================================================
       TESTIMONIALS
    ============================================================ */
    .testimonials {
        padding: 7rem 5%;
        background: linear-gradient(135deg, #fff5f9 0%, #f0f4ff 50%, #f8f0ff 100%);
        overflow: hidden;
        position: relative;
    }
    .testimonials::before {
        content: '';
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%,-50%);
        width: 800px; height: 800px;
        background: radial-gradient(circle, rgba(255,107,157,0.05) 0%, rgba(139,92,246,0.04) 40%, transparent 70%);
        pointer-events: none;
    }
    .testimonials-inner { max-width: var(--max-w); margin: 0 auto; }
    .testimonials-carousel { overflow: hidden; margin: 0 -0.5rem; }
    .testimonials-track {
        display: flex;
        gap: 1.5rem;
        padding: 0.5rem;
        will-change: transform;
    }
    .testimonial-card {
        flex: 0 0 calc(33.333% - 1rem);
        background: #fff;
        border-radius: var(--radius-xl);
        padding: 2.2rem 2rem;
        box-shadow: 0 4px 24px rgba(0,0,0,0.07);
        border: 1px solid rgba(255,107,157,0.1);
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        transition: all 0.35s ease;
        position: relative;
        overflow: hidden;
    }
    .testimonial-card::after {
        content: '"';
        position: absolute;
        bottom: -20px; right: 20px;
        font-size: 8rem;
        font-family: Georgia, serif;
        color: rgba(255,107,157,0.05);
        line-height: 1;
        pointer-events: none;
        transition: color 0.3s;
    }
    .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 50px rgba(255,107,157,0.15);
        border-color: rgba(255,107,157,0.2);
    }
    .testimonial-card:hover::after { color: rgba(255,107,157,0.08); }
    .quote-icon {
        width: 44px; height: 44px;
        background: var(--grad);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: #fff;
        font-family: Georgia, serif;
        line-height: 1;
        padding-bottom: 4px;
    }
    .stars { display: flex; gap: 0.2rem; }
    .star { color: #f59e0b; font-size: 0.95rem; }
    .testimonial-text {
        font-size: 0.92rem;
        color: var(--gray);
        line-height: 1.75;
        flex: 1;
    }
    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0,0,0,0.06);
    }
    .author-avatar-wrapper {
        width: 48px; height: 48px;
        border-radius: 50%;
        background: var(--grad);
        padding: 2px;
        flex-shrink: 0;
    }
    .author-avatar {
        width: 100%; height: 100%;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(255,107,157,0.15), rgba(74,144,226,0.15));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--pink);
        border: 2px solid #fff;
        border-radius: 50%;
    }
    .author-info h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 0.1rem; }
    .author-info p { font-size: 0.8rem; color: var(--gray); margin: 0; }
    .verified-badge {
        display: inline-block;
        background: rgba(34,197,94,0.1);
        color: #16a34a;
        padding: 0.2rem 0.6rem;
        border-radius: var(--radius-pill);
        font-size: 0.7rem;
        font-weight: 600;
        margin-top: 0.25rem;
    }
    .carousel-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    .carousel-arrow {
        width: 48px; height: 48px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid rgba(255,107,157,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: var(--pink);
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    }
    .carousel-arrow:hover { background: var(--pink); color: #fff; border-color: var(--pink); }
    .carousel-dots { display: flex; gap: 0.5rem; align-items: center; }
    .carousel-dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        background: rgba(255,107,157,0.25);
        cursor: pointer;
        transition: var(--transition);
    }
    .carousel-dot.active { width: 24px; border-radius: 4px; background: var(--pink); }
    .carousel-cta { text-align: center; margin-top: 2.5rem; }
    .carousel-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        background: var(--grad);
        color: #fff;
        padding: 1rem 2.5rem;
        border-radius: var(--radius-pill);
        font-size: 1rem;
        font-weight: 600;
        transition: var(--transition);
        box-shadow: 0 6px 20px var(--shadow-pink);
    }
    .carousel-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,157,0.4); }

    /* ============================================================
       GALLERY
    ============================================================ */
    .gallery {
        padding: 7rem 5%;
        background: linear-gradient(135deg, #fafafa 0%, #f0f4ff 50%, #fff5f9 100%);
        position: relative;
    }
    .gallery-inner { max-width: var(--max-w); margin: 0 auto; }
    .gallery-filters {
        display: flex;
        gap: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 2.5rem;
    }
    .filter-btn {
        padding: 0.65rem 1.6rem;
        border-radius: var(--radius-pill);
        font-size: 0.88rem;
        font-weight: 600;
        color: var(--gray);
        background: #fff;
        border: 2px solid rgba(0,0,0,0.08);
        cursor: pointer;
        transition: var(--transition);
    }
    .filter-btn:hover, .filter-btn.active {
        background: var(--grad);
        color: #fff;
        border-color: transparent;
        box-shadow: 0 4px 15px var(--shadow-pink);
    }
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 220px;
        gap: 1rem;
    }
    .gallery-item {
        border-radius: var(--radius-md);
        overflow: hidden;
        position: relative;
        cursor: pointer;
    }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item.tall { grid-row: span 2; }
    .gallery-item img {
        width: 100%; height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        display: block;
    }
    .gallery-item:hover img { transform: scale(1.07); }
    .gallery-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
        opacity: 0;
        transition: opacity 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1.2rem;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-title { color: #fff; font-size: 0.95rem; font-weight: 700; }
    .gallery-category { color: rgba(255,255,255,0.75); font-size: 0.8rem; }
    .gallery-zoom {
        position: absolute;
        top: 0.75rem; right: 0.75rem;
        width: 34px; height: 34px;
        background: rgba(255,255,255,0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        opacity: 0;
        transition: opacity 0.3s;
    }
    .gallery-item:hover .gallery-zoom { opacity: 1; }
    .gallery-item.hide { display: none; }
    /* Lightbox */
    .lightbox {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.92);
        z-index: 2000;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }
    .lightbox.active { display: flex; }
    .lightbox-content {
        position: relative;
        max-width: 900px;
        width: 100%;
    }
    .lightbox-content img {
        width: 100%;
        border-radius: var(--radius-lg);
        max-height: 80vh;
        object-fit: contain;
    }
    .lightbox-close {
        position: absolute;
        top: -3rem; right: 0;
        width: 38px; height: 38px;
        background: rgba(255,255,255,0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.3rem;
        cursor: pointer;
        transition: var(--transition);
    }
    .lightbox-close:hover { background: var(--pink); }
    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px; height: 44px;
        background: rgba(255,255,255,0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        transition: var(--transition);
    }
    .lightbox-nav:hover { background: var(--pink); }
    .lightbox-prev { left: -3.5rem; }
    .lightbox-next { right: -3.5rem; }
    .lightbox-caption {
        position: absolute;
        bottom: -2.5rem;
        left: 0; right: 0;
        text-align: center;
        color: rgba(255,255,255,0.8);
        font-size: 0.9rem;
    }

    /* ============================================================
       FAQ
    ============================================================ */
    .faq {
        padding: 7rem 5%;
        background: #fff;
    }
    .faq-inner { max-width: var(--max-w); margin: 0 auto; }
    .faq-container {
        max-width: 780px;
        margin: 0 auto;
    }
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
    }
    .faq-item {
        background: #fff;
        border: 1.5px solid rgba(255,107,157,0.15);
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(0,0,0,0.05);
        transition: var(--transition);
    }
    .faq-item:hover { border-color: rgba(255,107,157,0.3); }
    .faq-item[open] {
        border-color: rgba(255,107,157,0.35);
        box-shadow: 0 6px 24px rgba(255,107,157,0.1);
        background: linear-gradient(135deg, rgba(255,107,157,0.02) 0%, rgba(74,144,226,0.02) 100%);
    }
    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 1.3rem 1.6rem;
        cursor: pointer;
        font-weight: 600;
        font-size: 0.98rem;
        color: var(--dark);
        list-style: none;
        user-select: none;
        transition: color 0.2s;
    }
    .faq-question::-webkit-details-marker { display: none; }
    .faq-item[open] .faq-question { color: var(--pink); }
    .faq-icon {
        width: 28px; height: 28px;
        border-radius: 50%;
        background: rgba(255,107,157,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--pink);
        flex-shrink: 0;
        transition: var(--transition);
        line-height: 1;
        font-weight: 300;
    }
    .faq-item[open] .faq-icon {
        background: var(--grad);
        color: #fff;
        transform: rotate(45deg);
    }
    .faq-answer {
        padding: 0 1.6rem 1.3rem;
        border-top: 1px solid rgba(255,107,157,0.1);
    }
    .faq-answer p {
        color: var(--gray);
        line-height: 1.8;
        font-size: 0.93rem;
        padding-top: 1rem;
        margin: 0;
    }
    .faq-answer a { color: var(--pink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

    /* ============================================================
       CONTACT
    ============================================================ */
    .contact {
        padding: 7rem 5%;
        background: linear-gradient(135deg, #f9fffe 0%, #f5f8ff 50%, #fff9fc 100%);
        position: relative;
    }
    .contact::before {
        content: '';
        position: absolute;
        bottom: -80px; right: -80px;
        width: 350px; height: 350px;
        background: radial-gradient(circle, rgba(74,144,226,0.08) 0%, transparent 70%);
        pointer-events: none;
    }
    .contact-inner { max-width: var(--max-w); margin: 0 auto; }
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.3fr;
        gap: 3rem;
        align-items: start;
    }
    .contact-cards { display: flex; flex-direction: column; gap: 1rem; }
    .contact-link-card {
        display: flex;
        background: #fff;
        border-radius: var(--radius-md);
        padding: 1.3rem 1.6rem;
        border: 1.5px solid rgba(0,0,0,0.07);
        box-shadow: 0 2px 12px rgba(0,0,0,0.05);
        transition: var(--transition);
        text-decoration: none;
        color: inherit;
    }
    .contact-link-card:hover {
        border-color: rgba(255,107,157,0.35);
        box-shadow: 0 8px 30px rgba(255,107,157,0.15);
        transform: translateX(6px) scale(1.01);
        background: linear-gradient(135deg, rgba(255,107,157,0.02), rgba(74,144,226,0.02));
    }
    .contact-link-content {
        display: flex;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    .contact-icon {
        width: 50px; height: 50px;
        background: linear-gradient(135deg, rgba(255,107,157,0.1), rgba(74,144,226,0.1));
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    .contact-text { flex: 1; }
    .contact-label { font-size: 0.76rem; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.2rem; }
    .contact-value { font-size: 0.97rem; font-weight: 600; color: var(--dark); }
    .contact-arrow { color: var(--pink); font-size: 1.1rem; transition: transform 0.2s; }
    .contact-link-card:hover .contact-arrow { transform: translateX(3px); }
    .contact-info-card {
        background: #fff;
        border-radius: var(--radius-md);
        padding: 1.3rem 1.6rem;
        border: 1.5px solid rgba(0,0,0,0.07);
        box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }
    .contact-info-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; }
    .contact-info-title { font-size: 0.95rem; font-weight: 700; color: var(--dark); }
    .contact-info-content { font-size: 0.88rem; color: var(--gray); line-height: 1.8; }
    .social-media-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
    .social-icon {
        width: 42px; height: 42px;
        border-radius: 50%;
        background: var(--light);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        transition: var(--transition);
    }
    .social-icon svg { width: 18px; height: 18px; }
    .social-icon.instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
    .social-icon.facebook:hover { background: #1877f2; color: #fff; }
    .social-icon.youtube:hover { background: #ff0000; color: #fff; }
    .social-icon.tiktok:hover { background: #000; color: #fff; }
    .contact-map {
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        position: relative;
        height: 100%;
        min-height: 520px;
    }
    .map-overlay {
        position: absolute;
        top: 1.2rem; left: 1.2rem;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: var(--radius-sm);
        padding: 0.85rem 1.2rem;
        z-index: 1;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }
    .map-overlay h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; }
    .map-overlay p { font-size: 0.78rem; color: var(--gray); }
    .contact-map iframe { width: 100%; height: 100%; min-height: 520px; border: none; display: block; }

    /* ============================================================
       FOOTER
    ============================================================ */
    .footer {
        background: linear-gradient(135deg, #2D3748, #1A202C);
        color: #fff;
        padding: 5rem 5% 2rem;
    }
    .footer-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.8fr 1fr 1fr 1fr;
        gap: 3rem;
        padding-bottom: 3rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin-bottom: 2rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 800;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
        display: inline-block;
    }
    .footer-desc {
        color: rgba(255,255,255,0.6);
        font-size: 0.9rem;
        line-height: 1.75;
    }
    .footer-column h4 {
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: rgba(255,255,255,0.9);
        margin-bottom: 1.3rem;
    }
    .footer-column ul { display: flex; flex-direction: column; gap: 0.65rem; }
    .footer-column ul li a {
        color: rgba(255,255,255,0.55);
        font-size: 0.88rem;
        transition: color 0.2s;
    }
    .footer-column ul li a:hover { color: var(--pink); }
    .footer-column ul li {
        color: rgba(255,255,255,0.55);
        font-size: 0.88rem;
    }
    .footer-bottom {
        max-width: var(--max-w);
        margin: 0 auto;
        text-align: center;
        color: rgba(255,255,255,0.35);
        font-size: 0.82rem;
    }

    /* ============================================================
       ANIMATIONS
    ============================================================ */
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInScale {
        from { opacity: 0; transform: scale(0.9) translateY(20px); }
        to   { opacity: 1; transform: scale(1) translateY(0); }
    }
    @keyframes slideInLeft {
        from { opacity: 0; transform: translateX(-50px); }
        to { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideInRight {
        from { opacity: 0; transform: translateX(50px); }
        to { opacity: 1; transform: translateX(0); }
    }
    @keyframes pulse {
        0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
        50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
    }
    @keyframes shine {
        0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }
    @keyframes countUp {
        from { opacity: 0; transform: translateY(20px) scale(0.8); }
        to   { opacity: 1; transform: translateY(0) scale(1); }
    }
    /* Scroll-reveal base */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
    .reveal-left {
        opacity: 0;
        transform: translateX(-40px);
        transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right {
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }
    /* Stagger delay helpers */
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }
    .delay-5 { transition-delay: 0.5s; }

    .hero-content { animation: slideInLeft 0.9s cubic-bezier(0.4,0,0.2,1) both; }
    .hero-image { animation: slideInRight 0.9s cubic-bezier(0.4,0,0.2,1) 0.15s both; }
    .instructor-status { animation: pulse 2s infinite; }
    .promo-discount-card {
        position: relative;
        overflow: hidden;
    }
    .promo-discount-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 60px; height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
        animation: shine 4s ease-in-out infinite;
    }
    /* Hero float card entrance */
    .hero-float-card.card-1 { animation: slideInRight 0.8s ease 0.6s both; }
    .hero-float-card.card-2 { animation: slideInLeft 0.8s ease 0.8s both; }
    /* Stats pop */
    .hero-stat { animation: countUp 0.6s ease both; }
    .hero-stat:nth-child(1) { animation-delay: 0.9s; }
    .hero-stat:nth-child(2) { animation-delay: 1.0s; }
    .hero-stat:nth-child(3) { animation-delay: 1.1s; }
    /* Hero buttons */
    .hero-buttons .btn:nth-child(1) { animation: fadeInUp 0.6s ease 0.7s both; }
    .hero-buttons .btn:nth-child(2) { animation: fadeInUp 0.6s ease 0.8s both; }

    /* ============================================================
       RESPONSIVE – 1100px
    ============================================================ */
    @media (max-width: 1100px) {
        .programs-grid { grid-template-columns: repeat(2, 1fr); }
        .instructors-grid { grid-template-columns: repeat(2, 1fr); }
        .day-schedule.active { grid-template-columns: repeat(2, 1fr); }
        .footer-container { grid-template-columns: repeat(2, 1fr); }
        .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    }

    /* ============================================================
       RESPONSIVE – 968px (tablet)
    ============================================================ */
    @media (max-width: 968px) {
        .nav-links, .nav-cta { display: none; }
        .mobile-toggle { display: flex; }

        .hero-container {
            grid-template-columns: 1fr;
            gap: 3rem;
            padding: 3rem 5%;
            text-align: center;
        }
        .hero-content p { max-width: 100%; }
        .hero-buttons, .hero-stats { justify-content: center; }
        .hero-image-inner img { height: 420px; }
        .hero-float-card { display: none; }
        .hero-image-wrapper { max-width: 480px; margin: 0 auto; }

        .promo-container { grid-template-columns: 1fr; gap: 3rem; }
        .programs-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
        .about-container { grid-template-columns: 1fr; gap: 3rem; }
        .about-image-main img { height: 380px; }
        .about-stat-float { display: none; }
        .about-content { padding-left: 0; }
        .about-cta { flex-direction: column; }
        .about-cta .btn { width: 100%; }
        .instructors-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
        .day-schedule.active { grid-template-columns: 1fr; }
        .testimonial-card { flex: 0 0 calc(50% - 0.75rem); }
        .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
        .gallery-item.wide { grid-column: span 2; }
        .gallery-item.tall { grid-row: span 1; }
        .contact-grid { grid-template-columns: 1fr; }
        .contact-map { min-height: 400px; }
        .contact-map iframe { min-height: 400px; }
        .footer-container { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    }

    /* ============================================================
       RESPONSIVE – 640px (mobile)
    ============================================================ */
    @media (max-width: 640px) {
        .hero-content h1 { font-size: 2.2rem; }
        .hero-image-inner img { height: 340px; }
        .hero-stats { gap: 1.5rem; }
        .hero-buttons { flex-direction: column; }
        .hero-buttons .btn { width: 100%; }

        .promo-content h2 { font-size: 2rem; }
        .promo-buttons { flex-direction: column; }
        .promo-buttons .btn { width: 100%; }
        .discount-timer { gap: 0.5rem; }
        .timer-value { font-size: 1.3rem; padding: 0.5rem 0.6rem; min-width: 48px; }

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

        .about-features { grid-template-columns: 1fr; }

        .day-tab { padding: 0.65rem 1.1rem; font-size: 0.82rem; }

        .testimonial-card { flex: 0 0 calc(90vw - 2rem); max-width: 480px; }
        .testimonials-track { gap: 1rem; padding: 0.5rem 0.25rem; }
        .carousel-cta-btn { width: 100%; }

        .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
        .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
        .gallery-filters { gap: 0.5rem; }
        .filter-btn { padding: 0.55rem 1.1rem; font-size: 0.82rem; }

        .lightbox-prev { left: 0.5rem; }
        .lightbox-next { right: 0.5rem; }

        .faq-question { font-size: 0.9rem; padding: 1.1rem 1.3rem; }
        .faq-answer { padding: 0 1.3rem 1.1rem; }

        .footer-container { grid-template-columns: 1fr; gap: 2rem; }
        .footer-bottom { font-size: 0.8rem; }
    }
