        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --blue-950: #0D1B3E;
            --blue-900: #1E2D5A;
            --blue-800: #1E3A8A;
            --blue-700: #1D4ED8;
            --blue-600: #2563EB;
            --blue-500: #3B82F6;
            --blue-400: #60A5FA;
            --blue-300: #93C5FD;
            --blue-100: #DBEAFE;
            --blue-50: #EFF6FF;
            --white: #FFFFFF;
            --yellow-100: #FEF08A;
            --yellow-300: #FDE047;
            --yellow-400: #FACC15;
            --yellow-500: #EAB308;
            --yellow-600: #CA8A04;
            --gray-50: #F8FAFC;
            --gray-100: #F1F5F9;
            --gray-200: #E2E8F0;
            --gray-500: #64748B;
            --gray-700: #334155;
            --gray-900: #0F172A;
            --shadow-sm: 0 1px 3px rgba(30, 58, 138, .08), 0 1px 2px rgba(30, 58, 138, .04);
            --shadow-md: 0 4px 16px rgba(30, 58, 138, .10), 0 2px 6px rgba(30, 58, 138, .06);
            --shadow-lg: 0 12px 40px rgba(30, 58, 138, .14), 0 4px 12px rgba(30, 58, 138, .08);
            --shadow-xl: 0 24px 64px rgba(30, 58, 138, .18);
            --radius: 16px;
            --radius-sm: 8px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --radius-full: 999px;
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background: var(--white);
            color: var(--gray-900);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.25;
            color: var(--gray-900);
        }

        /* ── NAVBAR ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 5vw;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #1e3a8a;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: #1e3a8a;
            box-shadow: var(--shadow-md);
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .nav-logo {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
            display: grid;
            place-items: center;
            font-size: 20px;
            font-weight: 900;
            color: white;
            letter-spacing: -1px;
            box-shadow: 0 4px 12px rgba(37, 99, 235, .4);
        }

        .nav-brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.15;
        }

        .nav-brand-text strong {
            font-size: 15px;
            font-weight: 800;
            color: white;
            letter-spacing: -.3px;
            transition: color 0.3s ease;
        }

        .nav-brand-text span {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav.scrolled .nav-brand-text strong {
            color: white;
        }

        nav.scrolled .nav-brand-text span {
            color: rgba(255, 255, 255, 0.7);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
        }

        .nav-links a {
            padding: 8px 16px;
            border-radius: var(--radius-full);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            color: white !important;
            transition: all 0.25s ease;
        }

        .nav-links a:hover {
            color: #ffffff !important;
            background: #eab308 !important;
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
            box-shadow: 0 2px 8px rgba(234, 179, 8, 0.4);
        }

        .nav-links a.active {
            color: #ffffff !important;
            background: #eab308 !important;
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.35);
            box-shadow: 0 2px 10px rgba(234, 179, 8, 0.45);
        }

        nav.scrolled .nav-links a {
            color: white !important;
        }

        nav.scrolled .nav-links a:hover {
            color: #ffffff !important;
            background: #eab308 !important;
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
            box-shadow: 0 2px 8px rgba(234, 179, 8, 0.4);
        }

        nav.scrolled .nav-links a.active {
            color: #ffffff !important;
            background: #eab308 !important;
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.35);
            box-shadow: 0 2px 10px rgba(234, 179, 8, 0.45);
        }

        .nav-cta {
            padding: 10px 22px;
            border-radius: var(--radius-full);
            background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
            color: white;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(37, 99, 235, .35);
            transition: all .25s;
        }

        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, .45);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
        }

        .hamburger span {
            width: 22px;
            height: 2px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        nav.scrolled .hamburger span {
            background: white;
        }

        /* ── HERO SLIDER ── */
        #beranda {
            position: relative;
            height: 100vh;
            min-height: 600px;
            width: 100%;
            overflow: hidden;
            background: #0f172a;
            padding: 0 !important;
        }

        .hero-slider-track {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
            z-index: 1;
        }

        .hero-slide::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(30, 58, 138, 0.35) 0%, rgba(15, 23, 42, 0.85) 100%);
            z-index: 2;
        }

        .hero-slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }

        .hero-slide .hero-content {
            position: relative;
            z-index: 3;
            padding: 80px 5vw;
            max-width: 800px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            color: white;
        }

        /* Slide Content Animations */
        .hero-slide .hero-eyebrow,
        .hero-slide .hero-headline,
        .hero-slide .hero-sub,
        .hero-slide .hero-actions {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .hero-slide.active .hero-eyebrow {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.2s;
        }

        .hero-slide.active .hero-headline {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.4s;
        }

        .hero-slide.active .hero-sub {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.6s;
        }

        .hero-slide.active .hero-actions {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.8s;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 8px 16px;
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .3px;
            width: fit-content;
        }

        .hero-eyebrow svg {
            width: 14px;
            height: 14px;
        }

        .hero-slide .hero-headline {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 900;
            line-height: 1.15;
            color: white;
            letter-spacing: -1.5px;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.45);
        }

        .hero-slide .hero-headline em {
            font-style: normal;
            background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-slide .hero-sub {
            font-size: clamp(0.95rem, 2vw, 1.15rem);
            color: rgba(255, 255, 255, 0.9);
            max-width: 650px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            line-height: 1.65;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* Nav controls */
        .hero-slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: white;
            font-size: 16px;
            cursor: pointer;
            display: grid;
            place-items: center;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .hero-slider-nav:hover {
            background: var(--blue-600);
            border-color: var(--blue-500);
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .hero-slider-nav.prev {
            left: 24px;
        }

        .hero-slider-nav.next {
            right: 24px;
        }

        /* Dots indicator */
        .hero-slider-dots {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .hero-slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .hero-slider-dot.active {
            background: white;
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius-full);
            background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
            color: var(--blue-950);
            font-weight: 800;
            font-size: 15px;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(234, 179, 8, .4);
            transition: all .25s;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(234, 179, 8, .5);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius-full);
            border: 2px solid var(--blue-200);
            color: var(--blue-700);
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            background: rgba(255, 255, 255, .8);
            backdrop-filter: blur(8px);
            transition: all .25s;
        }

        .btn-secondary:hover {
            border-color: var(--blue-400);
            background: var(--blue-50);
        }

        .hero-trust {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            background: rgba(255, 255, 255, .8);
            backdrop-filter: blur(12px);
            border-radius: 12px;
            border: 1px solid var(--gray-200);
            max-width: 380px;
        }

        .trust-avatars {
            display: flex;
        }

        .trust-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 3px solid white;
            margin-left: -10px;
            background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
            display: grid;
            place-items: center;
            font-size: 12px;
            font-weight: 700;
            color: white;
        }

        .trust-avatar:first-child {
            margin-left: 0;
        }

        .trust-text {
            font-size: 13px;
            color: var(--gray-700);
            line-height: 1.4;
        }

        .trust-text strong {
            color: var(--blue-700);
        }

        /* ── SECTION COMMON ── */
        section {
            padding: 96px 5vw;
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--blue-100);
            color: var(--blue-700);
            padding: 6px 14px;
            border-radius: var(--radius-full);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .5px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 900;
            letter-spacing: -1.5px;
            color: var(--gray-900);
            line-height: 1.15;
        }

        .section-title em {
            font-style: italic;
            font-family: 'Playfair Display', serif;
            color: var(--blue-600);
        }

        .section-desc {
            font-size: 16px;
            color: var(--gray-500);
            line-height: 1.7;
            max-width: 560px;
            margin-top: 12px;
        }

        /* ── STATS STRIP ── */
        .stats-strip {
            background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
            padding: 56px 5vw;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2px;
        }

        .stat-item {
            text-align: center;
            padding: 32px 16px;
            border-right: 1px solid rgba(255, 255, 255, .1);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-num {
            font-size: clamp(2.4rem, 5vw, 3.2rem);
            font-weight: 900;
            color: white;
            letter-spacing: -2px;
            line-height: 1;
        }

        .stat-num span {
            color: var(--blue-300);
        }

        .stat-lbl {
            font-size: 13px;
            color: rgba(255, 255, 255, .65);
            margin-top: 8px;
            font-weight: 500;
        }

        /* ── AKADEMIK ── */
        #akademik {
            background: var(--gray-50);
        }

        .akademik-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            margin-top: 64px;
        }

        .level-card {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: transform .3s, box-shadow .3s;
        }

        .level-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
        }

        .level-card-header {
            padding: 40px 36px;
            position: relative;
            overflow: hidden;
        }

        .level-sd .level-card-header {
            background: linear-gradient(135deg, #1E3A8A, #2563EB);
        }

        .level-smp .level-card-header {
            background: linear-gradient(135deg, #0D1B3E, #1E3A8A);
        }

        .level-card-header::after {
            content: '';
            position: absolute;
            right: -40px;
            top: -40px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .06);
        }

        .level-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(255, 255, 255, .2);
            border-radius: var(--radius-full);
            font-size: 11px;
            font-weight: 700;
            color: white;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .level-card-header h3 {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            letter-spacing: -1px;
            line-height: 1.1;
        }

        .level-card-header p {
            font-size: 14px;
            color: rgba(255, 255, 255, .7);
            margin-top: 8px;
        }

        .level-grade {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 20px;
            background: rgba(255, 255, 255, .15);
            border-radius: var(--radius-full);
            padding: 8px 16px;
            font-size: 13px;
            color: rgba(255, 255, 255, .9);
            font-weight: 500;
        }

        .level-card-body {
            background: white;
            padding: 32px 36px;
        }

        .subject-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 24px;
        }

        .subject-tag {
            padding: 6px 14px;
            border-radius: var(--radius-full);
            background: var(--blue-50);
            color: var(--blue-700);
            font-size: 12px;
            font-weight: 600;
        }

        .ekstrakurikuler-title {
            font-size: 13px;
            font-weight: 700;
            color: var(--gray-700);
            margin-bottom: 10px;
        }

        .ekskul-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .ekskul-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            border-radius: var(--radius-sm);
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            font-size: 12px;
            color: var(--gray-700);
            font-weight: 500;
        }

        .ekskul-icon {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            background: var(--blue-100);
            display: grid;
            place-items: center;
            font-size: 13px;
        }

        /* ── BERITA ── */
        #berita {
            background: white;
        }

        .berita-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 48px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .berita-all {
            color: var(--blue-600);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .berita-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr;
            gap: 24px;
        }

        .news-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--gray-200);
            background: white;
            transition: all .25s;
            cursor: pointer;
        }

        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--blue-200);
        }

        .news-card.featured {
            grid-row: span 2;
            display: flex;
            flex-direction: column;
        }

        .news-img {
            aspect-ratio: 16/9;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .news-card.featured .news-img {
            aspect-ratio: unset;
            flex: 1;
        }

        .news-img-emoji {
            font-size: 56px;
        }

        .news-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, .5) 0%, transparent 60%);
        }

        .news-cat {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 5px 12px;
            border-radius: var(--radius-full);
            background: rgba(255, 255, 255, .9);
            font-size: 11px;
            font-weight: 700;
            color: var(--blue-700);
        }

        .news-body {
            padding: 20px;
        }

        .news-date {
            font-size: 11px;
            color: var(--gray-500);
            font-weight: 500;
            margin-bottom: 8px;
        }

        .news-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--gray-900);
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .news-card.featured .news-title {
            font-size: 20px;
        }

        .news-excerpt {
            font-size: 13px;
            color: var(--gray-500);
            line-height: 1.6;
        }

        /* ── PPDB ── */
        #ppdb {
            background: linear-gradient(160deg, var(--blue-950) 0%, var(--blue-800) 100%);
            position: relative;
            overflow: hidden;
        }

        #ppdb::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(96, 165, 250, .2), transparent 70%);
            top: -200px;
            right: -200px;
            pointer-events: none;
        }

        .ppdb-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .ppdb-content .section-eyebrow {
            background: rgba(255, 255, 255, .15);
            color: white;
        }

        .ppdb-content .section-title {
            color: white;
        }

        .ppdb-content .section-title em {
            color: var(--blue-300);
        }

        .ppdb-content .section-desc {
            color: rgba(255, 255, 255, .7);
        }

        .ppdb-steps {
            margin-top: 36px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .ppdb-step {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            border-radius: var(--radius);
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .1);
            backdrop-filter: blur(8px);
        }

        .step-num {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--blue-500), var(--blue-300));
            display: grid;
            place-items: center;
            font-size: 16px;
            font-weight: 900;
            color: white;
        }

        .step-content h4 {
            font-size: 14px;
            font-weight: 700;
            color: white;
            margin-bottom: 4px;
        }

        .step-content p {
            font-size: 13px;
            color: rgba(255, 255, 255, .6);
            line-height: 1.5;
        }

        .ppdb-form-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: 40px;
            box-shadow: var(--shadow-xl);
        }

        .ppdb-form-card h3 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

        .ppdb-form-card p {
            font-size: 13px;
            color: var(--gray-500);
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--gray-700);
            margin-bottom: 6px;
        }

        .form-input,
        .form-select {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid var(--gray-200);
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--gray-900);
            font-family: 'Inter', sans-serif;
            transition: border-color .2s, box-shadow .2s;
            outline: none;
            background: white;
        }

        .form-input:focus,
        .form-select:focus {
            border-color: var(--blue-400);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, .15);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .ppdb-submit {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
            color: white;
            border: none;
            border-radius: var(--radius-full);
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(37, 99, 235, .4);
            transition: all .25s;
            margin-top: 8px;
        }

        .ppdb-submit:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 28px rgba(37, 99, 235, .5);
        }

        .ppdb-deadline {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            padding: 12px 16px;
            background: var(--blue-50);
            border-radius: var(--radius-sm);
            font-size: 12px;
            color: var(--blue-700);
            font-weight: 600;
        }

        /* ── TENTANG KAMI ── */
        #tentang {
            background: var(--gray-50);
        }

        .tentang-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 64px;
        }

        .tentang-visual {
            position: relative;
        }

        .tentang-img-main {
            border-radius: var(--radius-xl);
            overflow: hidden;
            aspect-ratio: 4/5;
            background: linear-gradient(135deg, var(--blue-700), var(--blue-400));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            box-shadow: var(--shadow-xl);
        }

        .tentang-img-float {
            position: absolute;
            bottom: -20px;
            right: -30px;
            background: white;
            border-radius: var(--radius-lg);
            padding: 20px 24px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 180px;
        }

        .float-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--blue-100);
            display: grid;
            place-items: center;
            font-size: 22px;
        }

        .float-text strong {
            font-size: 20px;
            font-weight: 900;
            color: var(--blue-700);
        }

        .float-text span {
            display: block;
            font-size: 11px;
            color: var(--gray-500);
            margin-top: 2px;
        }

        .nilai-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 32px;
        }

        .nilai-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 20px;
            background: white;
            border-radius: var(--radius);
            border: 1px solid var(--gray-200);
            transition: all .25s;
        }

        .nilai-item:hover {
            border-color: var(--blue-200);
            box-shadow: var(--shadow-md);
        }

        .nilai-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--blue-100);
            display: grid;
            place-items: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .nilai-text h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--gray-900);
        }

        .nilai-text p {
            font-size: 13px;
            color: var(--gray-500);
            margin-top: 4px;
            line-height: 1.5;
        }

        /* ── GURU SLIDER COMPACT ── */
        .guru-section {
            background: white;
            padding: 60px 0;
        }

        .guru-slider-container {
            max-width: 900px;
            margin: 32px auto 0;
            position: relative;
            padding: 0 16px;
        }

        .guru-slider-wrapper {
            position: relative;
            overflow: hidden;
            padding: 12px 6px;
        }

        .guru-slider-track {
            display: flex;
            gap: 20px;
            transition: transform .45s cubic-bezier(.4, 0, .2, 1);
            will-change: transform;
        }

        .guru-card-compact {
            min-width: 220px;
            border-radius: 16px;
            overflow: hidden;
            background: white;
            border: 1.5px solid var(--gray-200);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
            padding: 22px 16px 18px;
            text-align: center;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            transition: all .25s ease;
        }

        .guru-card-compact:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
            border-color: var(--blue-300);
        }

        .guru-card-badge {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--blue-700);
            background: var(--blue-50);
            padding: 3px 12px;
            border-radius: 99px;
            margin-bottom: 14px;
            border: 1px solid var(--blue-100);
        }

        .guru-avatar-compact {
            width: 76px;
            height: 76px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            position: relative;
            overflow: hidden;
            border: 3px solid var(--blue-50);
            box-shadow: 0 4px 10px rgba(30, 58, 138, 0.15);
        }

        .guru-avatar-compact img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
        }

        .guru-avatar-initial {
            font-size: 28px;
            font-weight: 800;
            color: white;
            line-height: 1;
        }

        .guru-info-compact {
            width: 100%;
        }

        .guru-name-compact {
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--gray-900);
            margin: 0 0 6px;
        }

        .guru-role-badge {
            font-size: 0.78rem;
            color: var(--blue-600);
            font-weight: 600;
            line-height: 1.35;
            background: var(--gray-50);
            border-radius: 8px;
            padding: 4px 8px;
            display: inline-block;
            margin-top: 2px;
            border: 1px solid var(--gray-200);
        }

        .guru-exp-compact {
            font-size: 0.72rem;
            color: var(--gray-500);
            margin-top: 8px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .guru-slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-top: 20px;
        }

        .guru-slider-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1.5px solid var(--gray-300);
            background: white;
            color: var(--blue-900);
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all .2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .guru-slider-btn:hover {
            background: var(--blue-900);
            color: white;
            border-color: var(--blue-900);
            transform: scale(1.05);
        }

        .guru-slider-dots {
            display: flex;
            gap: 6px;
            align-items: center;
        }

        .guru-slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gray-300);
            cursor: pointer;
            transition: all .3s;
        }

        .guru-slider-dot.active {
            width: 22px;
            border-radius: 10px;
            background: var(--blue-800);
        }

        /* ── KONTAK ── */
        #kontak {
            background: white;
        }

        .kontak-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            margin-top: 64px;
            align-items: start;
        }

        .kontak-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .kontak-card {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 24px;
            border-radius: var(--radius);
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            transition: all .25s;
        }

        .kontak-card:hover {
            border-color: var(--blue-200);
            background: var(--blue-50);
        }

        .kontak-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--blue-100);
            display: grid;
            place-items: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .kontak-text h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

        .kontak-text p {
            font-size: 13px;
            color: var(--gray-500);
            line-height: 1.5;
        }

        .kontak-map {
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--blue-50);
            border: 1px solid var(--blue-100);
            height: 280px;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .map-placeholder {
            text-align: center;
            background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
            inset: 0;
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .map-placeholder .map-icon {
            font-size: 48px;
        }

        .map-placeholder p {
            font-size: 14px;
            color: var(--blue-600);
            font-weight: 600;
        }

        .map-placeholder small {
            font-size: 12px;
            color: var(--gray-500);
        }

        .kontak-form-card {
            background: var(--gray-50);
            border-radius: var(--radius-xl);
            padding: 40px;
            border: 1px solid var(--gray-200);
        }

        .kontak-form-card h3 {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 24px;
        }

        .kontak-submit {
            width: 100%;
            padding: 13px;
            background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
            color: white;
            border: none;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(37, 99, 235, .35);
            transition: all .25s;
        }

        .kontak-submit:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, .45);
        }

        .form-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid var(--gray-200);
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--gray-900);
            font-family: 'Inter', sans-serif;
            outline: none;
            resize: vertical;
            min-height: 100px;
            transition: border-color .2s, box-shadow .2s;
        }

        .form-textarea:focus {
            border-color: var(--blue-400);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, .15);
        }

        /* ── FOOTER ── */
        footer {
            background: var(--gray-900);
            color: white;
            padding: 64px 5vw 32px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
        }

        .footer-brand .nav-brand-text strong {
            color: white;
        }

        .footer-brand .nav-brand-text span {
            color: rgba(255, 255, 255, .5);
        }

        .footer-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, .5);
            line-height: 1.65;
            margin-top: 16px;
        }

        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .social-btn {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(255, 255, 255, .1);
            display: grid;
            place-items: center;
            font-size: 14px;
            transition: all .2s;
            text-decoration: none;
        }

        .social-btn:hover {
            background: var(--blue-600);
            transform: translateY(-2px);
        }

        .footer-col h4 {
            font-size: 13px;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
            letter-spacing: .3px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col a {
            font-size: 13px;
            color: rgba(255, 255, 255, .5);
            text-decoration: none;
            transition: color .2s;
        }

        .footer-col a:hover {
            color: var(--blue-300);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 28px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-bottom p {
            font-size: 12px;
            color: rgba(255, 255, 255, .35);
        }

        /* ── FASILITAS ── */
        #fasilitas {
            background: var(--blue-950);
            position: relative;
            overflow: hidden;
        }

        #fasilitas::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(59, 130, 246, .12), transparent 70%);
            bottom: -300px;
            left: -200px;
            pointer-events: none;
        }

        .fasilitas-header {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .fasilitas-header .section-eyebrow {
            background: rgba(255, 255, 255, .12);
            color: rgba(255, 255, 255, .9);
        }

        .fasilitas-header .section-title {
            color: white;
        }

        .fasilitas-header .section-title em {
            color: var(--blue-300);
        }

        .fasilitas-header .section-desc {
            color: rgba(255, 255, 255, .6);
            margin: 12px auto 0;
            text-align: center;
        }

        .fasilitas-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 56px;
            position: relative;
            z-index: 1;
        }

        .fasilitas-card {
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .08);
            backdrop-filter: blur(12px);
            transition: all .3s;
            cursor: default;
            position: relative;
            overflow: hidden;
        }

        .fasilitas-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, .1), transparent);
            opacity: 0;
            transition: opacity .3s;
        }

        .fasilitas-card:hover {
            transform: translateY(-6px);
            border-color: rgba(96, 165, 250, .3);
            background: rgba(255, 255, 255, .08);
        }

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

        .fasilitas-icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
            display: grid;
            place-items: center;
            font-size: 26px;
            margin-bottom: 16px;
            box-shadow: 0 8px 20px rgba(37, 99, 235, .35);
        }

        .fasilitas-card h4 {
            font-size: 15px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .fasilitas-card p {
            font-size: 13px;
            color: rgba(255, 255, 255, .5);
            line-height: 1.55;
        }

        .fasilitas-tag {
            display: inline-block;
            margin-top: 12px;
            padding: 4px 10px;
            background: rgba(59, 130, 246, .2);
            border-radius: var(--radius-full);
            font-size: 11px;
            color: var(--blue-300);
            font-weight: 600;
        }

        /* ── GALERI ── */
        #galeri {
            background: white;
        }

        .galeri-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 48px;
        }

        .galeri-filter {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 8px 18px;
            border-radius: var(--radius-full);
            border: 1.5px solid var(--gray-200);
            background: white;
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-600);
            cursor: pointer;
            transition: all .2s;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--blue-600);
            color: white;
            border-color: var(--blue-600);
        }

        .galeri-masonry {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 180px;
            gap: 16px;
        }

        .galeri-item {
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
            transition: transform .3s, box-shadow .3s;
        }

        .galeri-item:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-xl);
            z-index: 2;
        }

        .galeri-item.tall {
            grid-row: span 2;
        }

        .galeri-item.wide {
            grid-column: span 2;
        }

        .galeri-emoji {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(32px, 5vw, 56px);
        }

        .galeri-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 23, 42, .7) 0%, transparent 60%);
            opacity: 0;
            transition: opacity .3s;
            display: flex;
            align-items: flex-end;
            padding: 16px;
        }

        .galeri-item:hover .galeri-overlay {
            opacity: 1;
        }

        .galeri-label {
            font-size: 13px;
            font-weight: 600;
            color: white;
        }

        .galeri-cat-tag {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            background: rgba(255, 255, 255, .85);
            font-size: 10px;
            font-weight: 700;
            color: var(--blue-700);
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(10, 10, 20, .92);
            backdrop-filter: blur(20px);
            align-items: center;
            justify-content: center;
        }

        .lightbox.open {
            display: flex;
        }

        .lightbox-inner {
            text-align: center;
            max-width: 600px;
            padding: 40px;
        }

        .lightbox-emoji {
            font-size: 120px;
            margin-bottom: 20px;
        }

        .lightbox-title {
            font-size: 22px;
            font-weight: 800;
            color: white;
            margin-bottom: 8px;
        }

        .lightbox-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, .6);
        }

        .lightbox-close {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .2);
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: grid;
            place-items: center;
            transition: all .2s;
        }

        .lightbox-close:hover {
            background: rgba(255, 255, 255, .2);
        }

        /* ── TESTIMONIAL ── */
        #testimoni {
            background: var(--gray-50);
            overflow: hidden;
        }

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

        .testimoni-header .section-desc {
            margin: 12px auto 0;
            text-align: center;
        }

        .slider-wrapper {
            position: relative;
            overflow: hidden;
        }

        .slider-track {
            display: flex;
            gap: 24px;
            transition: transform .5s cubic-bezier(.4, 0, .2, 1);
            will-change: transform;
        }

        .testi-card {
            min-width: calc((100% - 48px) / 3);
            border-radius: var(--radius-lg);
            padding: 32px;
            background: white;
            border: 1px solid var(--gray-200);
            box-shadow: var(--shadow-sm);
            flex-shrink: 0;
            transition: box-shadow .3s;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testi-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: var(--blue-200);
        }

        .testi-stars {
            color: #FBBF24;
            font-size: 16px;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }

        .testi-text {
            font-size: 14px;
            color: var(--gray-700);
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 20px;
            flex-grow: 1;
            white-space: normal;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .testi-text::before {
            content: '"';
            font-size: 40px;
            color: var(--blue-200);
            line-height: 0;
            vertical-align: -16px;
            margin-right: 4px;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testi-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
            display: grid;
            place-items: center;
            font-size: 18px;
            font-weight: 800;
            color: white;
            flex-shrink: 0;
        }

        .testi-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--gray-900);
        }

        .testi-role {
            font-size: 12px;
            color: var(--gray-500);
            margin-top: 2px;
        }

        .testi-badge {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 4px;
            background: var(--blue-100);
            color: var(--blue-700);
            font-size: 10px;
            font-weight: 700;
            margin-top: 4px;
        }

        .slider-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 40px;
        }

        .slider-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid var(--blue-200);
            background: white;
            color: var(--blue-600);
            font-size: 18px;
            cursor: pointer;
            display: grid;
            place-items: center;
            transition: all .2s;
        }

        .slider-btn:hover {
            background: var(--blue-600);
            color: white;
            border-color: var(--blue-600);
        }

        .slider-dots {
            display: flex;
            gap: 6px;
        }

        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gray-300);
            transition: all .3s;
            cursor: pointer;
        }

        .slider-dot.active {
            background: var(--blue-600);
            width: 24px;
            border-radius: 4px;
        }

        /* ── PENCAPAIAN TIMELINE ── */
        #pencapaian {
            background: white;
        }

        .timeline-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .timeline-header .section-desc {
            margin: 12px auto;
            text-align: center;
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--blue-500), var(--blue-200));
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            align-items: center;
            gap: 32px;
            margin-bottom: 48px;
            position: relative;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-card {
            flex: 1;
            background: white;
            border-radius: var(--radius);
            padding: 24px;
            border: 1px solid var(--gray-200);
            box-shadow: var(--shadow-sm);
            transition: all .25s;
        }

        .timeline-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: var(--blue-200);
        }

        .timeline-year {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
            display: grid;
            place-items: center;
            z-index: 1;
            box-shadow: 0 4px 16px rgba(37, 99, 235, .4);
        }

        .timeline-year span {
            font-size: 13px;
            font-weight: 800;
            color: white;
            text-align: center;
            line-height: 1.2;
        }

        .timeline-card h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 6px;
        }

        .timeline-card p {
            font-size: 13px;
            color: var(--gray-500);
            line-height: 1.6;
        }

        .timeline-icon {
            font-size: 24px;
            margin-bottom: 8px;
        }

        /* ── FLOATING BUTTONS ── */
        .floating-group {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 900;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-end;
        }

        .wa-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #25D366;
            display: grid;
            place-items: center;
            font-size: 26px;
            box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
            text-decoration: none;
            transition: all .25s;
            animation: waPulse 2s ease-in-out infinite;
        }

        .wa-btn:hover {
            transform: scale(1.1);
        }

        @keyframes waPulse {

            0%,
            100% {
                box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
            }

            50% {
                box-shadow: 0 8px 36px rgba(37, 211, 102, .7), 0 0 0 8px rgba(37, 211, 102, .1);
            }
        }

        .back-top {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--blue-700);
            border: none;
            cursor: pointer;
            display: grid;
            place-items: center;
            font-size: 18px;
            color: white;
            box-shadow: var(--shadow-md);
            transition: all .25s;
            opacity: 0;
            pointer-events: none;
        }

        .back-top.visible {
            opacity: 1;
            pointer-events: all;
        }

        .back-top:hover {
            background: var(--blue-800);
            transform: translateY(-2px);
        }

        /* WA Tooltip */
        .wa-tooltip {
            position: absolute;
            right: 68px;
            bottom: 0;
            background: white;
            border-radius: 10px;
            padding: 10px 14px;
            box-shadow: var(--shadow-lg);
            white-space: nowrap;
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-800);
            border: 1px solid var(--gray-200);
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s;
        }

        .wa-tooltip::after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background: white;
            border-right: 1px solid var(--gray-200);
            border-top: 1px solid var(--gray-200);
            rotate: 45deg;
        }

        .floating-group:hover .wa-tooltip {
            opacity: 1;
        }

        /* ── PPDB BANNER ── */
        .ppdb-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 800;
            background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
            padding: 14px 5vw;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            transform: translateY(100%);
            transition: transform .5s cubic-bezier(.4, 0, .2, 1);
            box-shadow: 0 -4px 24px rgba(30, 58, 138, .3);
        }

        .ppdb-banner.show {
            transform: translateY(0);
        }

        .banner-text {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .banner-badge {
            background: rgba(255, 255, 255, .2);
            padding: 4px 10px;
            border-radius: var(--radius-full);
            font-size: 11px;
            font-weight: 700;
            color: white;
            letter-spacing: .5px;
            flex-shrink: 0;
        }

        .banner-msg {
            font-size: 14px;
            color: white;
            font-weight: 500;
        }

        .banner-msg strong {
            font-weight: 800;
        }

        .banner-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .banner-cta {
            padding: 9px 20px;
            border-radius: var(--radius-full);
            background: white;
            color: var(--blue-700);
            font-size: 13px;
            font-weight: 700;
            text-decoration: none;
            transition: all .2s;
        }

        .banner-cta:hover {
            background: var(--blue-50);
        }

        .banner-close {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, .3);
            background: transparent;
            color: white;
            font-size: 16px;
            cursor: pointer;
            display: grid;
            place-items: center;
            transition: all .2s;
        }

        .banner-close:hover {
            background: rgba(255, 255, 255, .1);
        }

        /* ── COUNTER ANIMATION ── */
        .stat-num.counting {
            opacity: 1;
        }

        /* ── MOBILE NAV ── */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 999;
            background: white;
            padding: 24px 5vw;
            flex-direction: column;
            gap: 4px;
            overflow-y: auto;
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            padding: 14px 16px;
            border-radius: var(--radius-sm);
            font-size: 16px;
            font-weight: 500;
            color: var(--gray-700);
            text-decoration: none;
            transition: all .2s;
        }

        .mobile-menu a:hover {
            background: var(--blue-50);
            color: var(--blue-700);
        }

        .mobile-menu .nav-cta {
            margin-top: 16px;
            text-align: center;
            display: block;
        }

        /* ── SCROLL REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .6s ease, transform .6s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: none;
        }

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

            .stat-item:nth-child(2) {
                border-right: none;
            }

            .berita-grid {
                grid-template-columns: 1fr 1fr;
            }

            .news-card.featured {
                grid-column: 1 / -1;
            }

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

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

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

            .galeri-masonry {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 150px;
            }
        }

        @media (max-width: 768px) {

            .nav-links,
            .nav-cta {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            #beranda {
                height: 70vh;
                min-height: 480px;
                padding-top: 0;
            }

            .hero-slider-nav {
                display: none;
            }

            .hero-slide .hero-content {
                padding: 44px 5vw 20px;
                gap: 20px;
            }

            .hero-slide .hero-headline {
                font-size: 2.2rem;
                line-height: 1.2;
            }

            .hero-slide .hero-sub {
                font-size: 1.05rem;
                line-height: 1.6;
            }

            .hero-sub {
                margin: 0 auto;
            }

            .hero-actions {
                width: 100%;
                flex-direction: column;
                gap: 12px;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
                font-size: 16px;
                padding: 14px 24px;
            }

            .nav-brand-text span {
                display: none;
            }

            .nav-brand-text strong {
                font-size: 15px !important;
                white-space: normal;
                line-height: 1.2;
                max-width: 220px;
            }

            .nav-brand {
                gap: 8px !important;
            }

            .akademik-grid,
            .ppdb-inner,
            .tentang-grid,
            .kontak-grid {
                grid-template-columns: 1fr;
            }

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

            .stat-item {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, .1);
            }

            .berita-grid {
                grid-template-columns: 1fr;
            }

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

            .footer-top {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand {
                justify-content: center;
                margin-bottom: 16px;
            }

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

            .ppdb-banner {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
                padding: 16px 20px;
                gap: 12px;
            }

            .banner-text {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 8px;
            }

            .banner-actions {
                justify-content: center;
                width: 100%;
            }

            .banner-cta {
                flex: 1;
                text-align: center;
            }

            .fasilitas-grid {
                grid-template-columns: 1fr;
            }

            .galeri-masonry {
                grid-template-columns: 1fr;
                grid-auto-rows: auto;
            }

            .galeri-item.wide,
            .galeri-item.tall {
                grid-column: span 1 !important;
                grid-row: span 1 !important;
                height: 220px;
            }

            .stat-lbl {
                font-size: 14px;
            }
            .level-badge {
                font-size: 13px;
            }
            .level-grade {
                font-size: 13px;
            }
            .subject-tag {
                font-size: 13px;
            }
            .ekstrakurikuler-title {
                font-size: 14px;
            }
            .ekskul-item {
                font-size: 13px;
            }
            .guru-role {
                font-size: 14px;
            }
            .fasilitas-tag {
                font-size: 13px;
            }
            .news-card p {
                font-size: 14.5px;
            }
        }

        @media (max-width: 480px) {
            .guru-grid {
                grid-template-columns: 1fr;
            }
            .stats-strip {
                grid-template-columns: 1fr;
            }
            .hero-slide .hero-headline {
                font-size: 1.8rem;
            }
            .hero-slide .hero-sub {
                font-size: 0.95rem;
            }
            .section-title {
                font-size: 1.7rem;
            }
        }

        /* ── PORTFOLIO SISWA ── */
        .portfolio-filters .filter-btn.active {
            background: var(--blue-600) !important;
            color: white !important;
        }
        .portfolio-item-card {
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .portfolio-item-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }
        .portfolio-item-card:hover img {
            transform: scale(1.05);
        }
