/* ==========================================================================
   Broadcasting Management System (BcMS) - Modern Fluid Stylesheet (LIGHT THEME)
   Primary Color Scheme: Putih (#ffffff), Biru Navy (#0f172a/#1e3a8a), Kuning (#f59e0b/#fbbf24)
   Fully Fluid Typography (clamp), Elastic Layouts (Grid/Flex), Zero Overflow
   Compatible with All Viewports (Desktop, Tablet, Smartphone) & Browser Zoom
   ========================================================================== */

:root {
    /* 0. Sistem 4 Variabel Terpusat (Light Mode) */
    --bg-primary: #f8fafc;
    /* Abu-abu muda untuk latar utama */
    --bg-card: #ffffff;
    /* Putih bersih untuk Card / Kontainer */
    --text-primary: #0f172a;
    /* Biru Navy pekat untuk teks utama */
    --accent: #fbbf24;
    /* Kuning keemasan untuk aksen */
    --accent-color: var(--accent);

    /* 1. Latar Belakang (Abu-abu Muda & Putih Bersih) */
    --lp-bg-main: #f8fafc;
    /* Abu-abu muda untuk latar utama halaman */
    --lp-bg-surface: #ffffff;
    /* Putih bersih untuk Card, Navbar, Form */
    --lp-bg-card: #ffffff;
    /* Putih bersih untuk Card melayang */
    --lp-bg-card-hover: #f1f5f9;
    --lp-bg-glass: rgba(255, 255, 255, 0.85);

    /* 2. Border Halus Bersih */
    --lp-border: #e2e8f0;
    --lp-border-light: #cbd5e1;
    --lp-border-hover: #f59e0b;

    /* 3. Teks & Elemen Utama (Navy Blue) */
    --lp-text-primary: #0f172a;
    /* Biru Navy pekat untuk kontras maksimal */
    --lp-text-secondary: #334155;
    /* Slate navy untuk paragraf/deskripsi */
    --lp-text-muted: #64748b;
    /* Abu-abu muted informatif */

    /* 4. Aksen & Sorotan (Yellow & Navy Blue) */
    --lp-accent-navy: #1e3a8a;
    /* Deep Classic Navy */
    --lp-accent-blue: #2563eb;
    /* Royal Blue */
    --lp-accent-cyan: #0284c7;
    /* Cyan pekat */
    --lp-accent-yellow: #f59e0b;
    /* Kuning Keemasan Utama (Amber Gold) */
    --lp-accent-yellow-light: #fbbf24;
    --lp-accent-yellow-dark: #d97706;
    --lp-accent-purple: #7c3aed;
    --lp-accent-pink: #db2777;
    --lp-accent-green: #10b981;

    /* 5. Gradien Berkarakter */
    --lp-gradient-primary: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --lp-gradient-navy: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #2563eb 100%);
    --lp-gradient-glow: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    --lp-gradient-instagram: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);

    /* Radius & Transisi */
    --lp-radius-sm: 0.5rem;
    --lp-radius-md: 0.875rem;
    --lp-radius-lg: 1.25rem;
    --lp-radius-full: 9999px;

    /* 6. Box Shadow Halus di atas Latar Putih */
    --lp-shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.07), 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    --lp-shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
    --lp-shadow-lg: 0 12px 28px -6px rgba(15, 23, 42, 0.1), 0 8px 12px -6px rgba(15, 23, 42, 0.04);
    --lp-shadow-glow: 0 0 35px rgba(245, 158, 11, 0.22);
    --lp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   DARK MODE SYSTEM FOR LANDING & DIVISI (body.dark-mode)
   ========================================================================== */
body.dark-mode,
html.dark-mode body {
    /* Pergeseran 4 Warna Utama */
    --bg-primary: #020617;
    /* Biru Navy sangat gelap */
    --bg-card: #1e293b;
    /* Biru Navy medium */
    --text-primary: #f8fafc;
    /* Abu-abu sangat muda/Putih */
    --accent: #fbbf24;
    /* Kuning keemasan */
    --accent-color: var(--accent);

    --lp-bg-main: var(--bg-primary);
    --lp-bg-surface: var(--bg-card);
    --lp-bg-card: var(--bg-card);
    --lp-bg-card-hover: #0f172a;
    --lp-bg-glass: rgba(15, 23, 42, 0.85);
    --lp-text-primary: var(--text-primary);
    --lp-text-secondary: #cbd5e1;
    --lp-text-muted: #94a3b8;
    --lp-border: #334155;
    --lp-border-light: #475569;
    --lp-border-hover: var(--accent);
}

body,
.landing-navbar,
.landing-footer,
.division-card,
.curriculum-box,
.ig-card,
.about-card,
.hero-stats-bar,
.hero-stat-item {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* UI Tombol Toggle Dark Mode (Floating Action Button - FAB) */
.theme-toggle-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--lp-accent-yellow, #fbbf24);
    color: #0f172a;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25), 0 0 10px rgba(251, 191, 36, 0.35);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.25s ease,
        background-color 0.4s ease,
        color 0.4s ease;
    touch-action: manipulation;
    outline: none;
}

.theme-toggle-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.35), 0 0 18px rgba(251, 191, 36, 0.6);
}

.theme-toggle-fab:active {
    transform: scale(0.95);
}

/* ==========================================================================
   GLOBAL RESET, BOX-SIZING & OVERFLOW PREVENTION
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    color-scheme: light;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body.landing-page {
    padding-top: 4.75rem;
    background-color: var(--lp-bg-main);
    color: var(--lp-text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    isolation: isolate;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Media Element Protection & Elastic Responsiveness */
img,
picture,
video,
canvas,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   GLOBAL FIXED AMBIENT BACKGROUND (CONTINUOUS & PERSISTENT ON SCROLL)
   ========================================================================== */
.global-ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* Background Ambient Glow Gradients (Warm Amber & Soft Navy) */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
    will-change: transform;
}

.ambient-glow-1 {
    width: min(600px, 85vw);
    height: min(600px, 85vw);
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12), transparent 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.ambient-glow-2 {
    width: min(450px, 70vw);
    height: min(450px, 70vw);
    background: radial-gradient(circle, rgba(30, 58, 138, 0.08), transparent 70%);
    top: 40%;
    left: -100px;
}

.ambient-glow-3 {
    width: min(500px, 75vw);
    height: min(500px, 75vw);
    background: radial-gradient(circle, rgba(2, 132, 199, 0.08), transparent 70%);
    bottom: 10%;
    right: -100px;
}

/* Ambient Orbs (Idle Asymmetric Drift Animation) */
.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.ambient-orb.orb-1 {
    width: min(480px, 65vw);
    height: min(480px, 65vw);
    background: radial-gradient(circle, rgba(245, 158, 11, 0.22) 0%, rgba(245, 158, 11, 0.05) 50%, transparent 70%);
    top: 15%;
    left: 8%;
    animation: orb-drift 15s infinite ease-in-out;
}

.ambient-orb.orb-2 {
    width: min(520px, 70vw);
    height: min(520px, 70vw);
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, rgba(14, 165, 233, 0.04) 50%, transparent 70%);
    top: 55%;
    right: 8%;
    animation: orb-drift 20s infinite ease-in-out reverse;
}

@keyframes orb-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(45px, -35px) scale(1.06);
    }

    50% {
        transform: translate(-35px, 40px) scale(0.96);
    }

    75% {
        transform: translate(25px, 25px) scale(1.04);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* ==========================================================================
   CONTAINERS & FLUID SECTION HEADERS
   ========================================================================== */
.landing-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 1.5rem);
    position: relative;
    z-index: 1;
}

.landing-section {
    padding: clamp(3.5rem, 7vw, 6.25rem) 0;
    position: relative;
    width: 100%;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    border-radius: var(--lp-radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.3);
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    max-width: 48.75rem;
    margin: 0 auto clamp(2rem, 5vw, 3.5rem) auto;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--lp-text-primary);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.section-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: var(--lp-text-secondary);
    line-height: 1.7;
}

/* ==========================================================================
   NAVIGATION BAR (SMART STICKY & GLASSMORPHISM)
   ========================================================================== */
.landing-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--lp-bg-glass, rgba(255, 255, 255, 0.85));
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--lp-border, rgba(255, 255, 255, 0.12));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease-in-out, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Class pembantu untuk menyembunyikan navbar saat scroll ke bawah */
.nav-hidden {
    transform: translateY(-100%) !important;
    box-shadow: none !important;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.75rem;
    padding: 0.5rem 0;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    color: var(--lp-text-primary);
    flex-shrink: 0;
}

.nav-logo {
    width: 2.75rem;
    height: 2.75rem;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(15, 23, 42, 0.15));
}

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

.nav-brand-title {
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--lp-text-primary);
    line-height: 1.2;
}

.nav-brand-subtitle {
    font-size: 0.72rem;
    font-weight: 700;
    color: #b45309;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: clamp(1rem, 2.5vw, 2rem);
}

.nav-link {
    text-decoration: none;
    color: var(--lp-text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--lp-transition);
    position: relative;
    padding: 0.375rem 0;
}

.nav-link:hover {
    color: var(--lp-accent-navy);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lp-accent-yellow);
    transition: var(--lp-transition);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-wrap: wrap;
}

.nav-toggle-btn {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--lp-border);
    color: var(--text-primary);
    width: 2.625rem;
    height: 2.625rem;
    min-height: 44px;
    min-width: 44px;
    border-radius: var(--lp-radius-sm);
    font-size: 1.2rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--lp-transition);
}

.nav-toggle-btn:hover {
    background: var(--bg-primary);
    border-color: var(--lp-accent-yellow);
    color: var(--accent);
}

/* ==========================================================================
   BUTTONS (FLUID & TOUCH-TARGET ERGONOMIC)
   ========================================================================== */
.btn-lp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.8125rem 1.625rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--lp-radius-md);
    text-decoration: none;
    cursor: pointer;
    transition: var(--lp-transition);
    border: 1px solid transparent;
    min-height: 46px;
    min-width: 44px;
    touch-action: manipulation;
}

/* Tombol Utama: Kuning Cerah dengan Teks Navy Gelap Tebal */
.btn-lp-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #0f172a;
    border: 1px solid #d97706;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
    animation: pulse-glow 2.5s infinite ease-in-out;
    will-change: transform, box-shadow;
}

.btn-lp-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: #0f172a;
    box-shadow: 0 8px 22px rgba(245, 158, 11, 0.45);
    filter: brightness(1.03);
    animation-play-state: paused;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 25px rgba(245, 158, 11, 0.75), 0 0 45px rgba(245, 158, 11, 0.35);
    }
}

/* Tombol Sekunder: Putih Bersih dengan Border & Teks Navy */
.btn-lp-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1.5px solid var(--text-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.btn-lp-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-card);
    border-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
}

.btn-lp-instagram {
    background: var(--lp-gradient-instagram);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(220, 39, 67, 0.28);
    font-weight: 700;
}

.btn-lp-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(220, 39, 67, 0.45);
    filter: brightness(1.05);
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero-section {
    padding: clamp(4rem, 8vw, 6.875rem) 0 clamp(3rem, 6vw, 5.625rem) 0;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at 50% 10%, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
}

.hero-content {
    max-width: 55rem;
    margin: 0 auto;
}

.hero-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.4375rem 1.125rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--lp-radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--lp-accent-green);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-ring 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.hero-headline {
    font-size: clamp(2.25rem, 5.5vw + 1rem, 4.25rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.125rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 4px 12px rgba(15, 23, 42, 0.12));
}

.hero-slogan-wrapper {
    margin-bottom: 1.375rem;
}

.hero-slogan {
    display: inline-block;
    font-size: clamp(1.1rem, 2vw + 0.5rem, 1.45rem);
    font-weight: 800;
    color: #d97706;
    /* Kuning Keemasan pekat */
    letter-spacing: -0.01em;
    position: relative;
    padding: 0 0.75rem;
}

.hero-subheadline {
    font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.15rem);
    color: var(--lp-text-secondary);
    max-width: 45rem;
    margin: 0 auto 2.375rem auto;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.125rem;
    flex-wrap: wrap;
    margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

/* Hero Stats Bar (Fluid Grid) */
.hero-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
    gap: 1.25rem;
    max-width: 51.25rem;
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 1.5rem) clamp(1.25rem, 3vw, 1.875rem);
    background: var(--bg-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-md);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-stat-value {
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
}

.hero-stat-label {
    font-size: 0.82rem;
    color: var(--lp-text-muted);
    font-weight: 600;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   2. TENTANG KAMI SECTION
   ========================================================================== */
.about-section {
    background-color: transparent;
    border-top: 1px solid var(--lp-border);
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: clamp(1.75rem, 5vw, 3rem);
    box-shadow: var(--lp-shadow-md);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a 0%, #f59e0b 100%);
}

.about-main-text {
    font-size: clamp(1rem, 1.5vw + 0.3rem, 1.18rem);
    color: var(--lp-text-primary);
    line-height: 1.85;
    text-align: center;
    max-width: 60rem;
    margin: 0 auto 2.5rem auto;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
    gap: 1.5rem;
    margin-top: 2.25rem;
    padding-top: 2.25rem;
    border-top: 1px solid var(--lp-border);
}

.about-pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.125rem;
    border-radius: var(--lp-radius-md);
    background: var(--bg-card);
    border: 1px solid var(--lp-border);
    transition: var(--lp-transition);
}

.about-pillar-item:hover {
    background: var(--bg-card);
    border-color: var(--lp-accent-yellow);
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-md);
}

.pillar-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--lp-radius-sm);
    background: rgba(245, 158, 11, 0.14);
    color: #d97706;
    /* Kuning Keemasan */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pillar-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-text-primary);
    margin-bottom: 0.25rem;
}

.pillar-content p {
    font-size: 0.85rem;
    color: var(--lp-text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   3. DIVISI UTAMA SECTION (FLUID RESPONSIVE GRID)
   ========================================================================== */
.divisions-section {
    background-color: transparent;
    border-top: 1px solid var(--lp-border);
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1.5rem;
}

.division-card {
    background: var(--bg-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: clamp(1.5rem, 3vw, 2rem) 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: var(--lp-shadow-sm);
    transition: var(--lp-transition);
    cursor: pointer;
}

.division-card:hover {
    transform: translateY(-6px);
    border-color: var(--lp-accent-yellow);
    box-shadow: var(--lp-shadow-lg), 0 0 20px rgba(245, 158, 11, 0.18);
}

.division-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-accent, var(--lp-accent-navy));
    opacity: 0.9;
    transition: var(--lp-transition);
}

.division-card:hover::before {
    opacity: 1;
    height: 5px;
    background: var(--lp-accent-yellow);
}

.division-card.theme-foto {
    --card-accent: #1e3a8a;
}

.division-card.theme-video {
    --card-accent: #0f172a;
}

.division-card.theme-presenter {
    --card-accent: #d97706;
}

.division-card.theme-desain {
    --card-accent: #b45309;
}

.division-icon-badge {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: var(--lp-radius-md);
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    transition: var(--lp-transition);
}

.division-card:hover .division-icon-badge {
    transform: scale(1.08);
    background: #f59e0b;
    color: #0f172a;
    border-color: #d97706;
}

/* ==========================================================================
   IDLE FLOATING ANIMATION (4 DIVISI ICONS)
   ========================================================================== */
@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.division-icon-badge i {
    display: inline-block;
    animation: float-icon 4s ease-in-out infinite;
    will-change: transform;
}

/* Staggered Delays untuk ritme organik alami */
.divisions-grid .division-card:nth-child(1) .division-icon-badge i,
.division-card.theme-foto .division-icon-badge i {
    animation-delay: 0s;
}

.divisions-grid .division-card:nth-child(2) .division-icon-badge i,
.division-card.theme-video .division-icon-badge i {
    animation-delay: 0.8s;
}

.divisions-grid .division-card:nth-child(3) .division-icon-badge i,
.division-card.theme-presenter .division-icon-badge i {
    animation-delay: 1.6s;
}

.divisions-grid .division-card:nth-child(4) .division-icon-badge i,
.division-card.theme-desain .division-icon-badge i {
    animation-delay: 2.4s;
}


.division-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #b45309;
    margin-bottom: 0.625rem;
}

.division-title {
    font-size: clamp(1.2rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--lp-text-primary);
    margin-bottom: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.division-title i {
    color: var(--card-accent, #d97706);
    font-size: 1.1rem;
}

.division-desc {
    font-size: 0.92rem;
    color: var(--lp-text-secondary);
    line-height: 1.65;
    flex-grow: 1;
}

.division-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--lp-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #d97706;
    text-decoration: none;
}

.division-footer span {
    font-weight: 700;
}

.division-footer i {
    color: #d97706;
    transition: var(--lp-transition);
}

.division-card:hover .division-footer i {
    transform: translateX(4px);
}

/* ==========================================================================
   4. INTEGRASI SOSIAL MEDIA (INSTAGRAM FEED GRID)
   ========================================================================== */
.instagram-section {
    background-color: transparent;
    border-top: 1px solid var(--lp-border);
}

.instagram-box {
    background: var(--bg-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    box-shadow: var(--lp-shadow-md);
}

.ig-profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--lp-border);
    margin-bottom: 1.875rem;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.ig-profile-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ig-avatar-ring {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    padding: 3px;
    background: var(--lp-gradient-instagram);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ig-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-card);
    object-fit: contain;
    border: 2px solid var(--bg-card);
}

.ig-handle-block {
    display: flex;
    flex-direction: column;
}

.ig-handle-title {
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    font-weight: 700;
    color: var(--lp-text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ig-verified-icon {
    color: #0284c7;
    font-size: 0.95rem;
}

.ig-handle-subtitle {
    font-size: 0.82rem;
    color: var(--lp-text-secondary);
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
    gap: 1.125rem;
    margin-bottom: 2.25rem;
}

.ig-card {
    position: relative;
    border-radius: var(--lp-radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--bg-card);
    border: 1px solid var(--lp-border);
    cursor: pointer;
    box-shadow: var(--lp-shadow-sm);
}

.ig-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ig-card:hover img {
    transform: scale(1.08);
}

.ig-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.78);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transition: var(--lp-transition);
    padding: 1rem;
    text-align: center;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.ig-card:hover .ig-overlay {
    opacity: 1;
}

.ig-stats {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
}

.ig-stats span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.ig-caption {
    font-size: 0.78rem;
    color: #e2e8f0;
    line-height: 1.4;
    max-height: 3.125rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ig-cta-wrapper {
    text-align: center;
    margin-top: 0.625rem;
}

/* ==========================================================================
   5. FOOTER (OFF-WHITE WITH NAVY TEXT & YELLOW ACCENTS)
   ========================================================================== */
.landing-footer {
    --text-primary: #f8fafc;
    --accent-color: var(--accent, #fbbf24);
    background: #0f172a;
    /* Biru Navy Gelap Struktural */
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    padding: clamp(3rem, 6vw, 4.375rem) 0 2.1875rem 0;
    position: relative;
    z-index: 1;
    color: var(--text-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: 2.5rem;
    margin-bottom: 3.125rem;
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 2.625rem;
    height: 2.625rem;
    object-fit: contain;
}

.footer-logo-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    /* Putih Bersih di atas Navy */
}

.footer-desc {
    font-size: 0.9rem;
    color: #cbd5e1;
    /* Abu-abu terang kontras di atas Navy */
    line-height: 1.7;
    max-width: 22.5rem;
}

.footer-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #fbbf24;
    /* Kuning Keemasan */
    font-weight: 700;
    background: rgba(245, 158, 11, 0.15);
    padding: 0.25rem 0.65rem;
    border-radius: var(--lp-radius-full);
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.footer-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    /* Putih di atas Navy */
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1.75rem;
    height: 2.5px;
    background: #fbbf24;
    /* Garis aksen kuning */
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    text-decoration: none;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--lp-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: #fbbf24;
    /* Hover Kuning Keemasan */
    transform: translateX(4px);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--accent-color, #fbbf24);
    /* Ikon kuning keemasan */
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Link Kontak (Email & Alamat) Berbasis Variabel Tema */
.contact-link,
.footer-contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.contact-link:hover,
.footer-contact-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 1.875rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-managed {
    color: #cbd5e1;
    font-weight: 500;
}

.footer-managed a,
.footer-managed span {
    color: #60a5fa;
    transition: var(--lp-transition);
}

.footer-managed a:hover {
    color: #fbbf24 !important;
    text-decoration: underline !important;
}

/* ==========================================================================
   6. HALAMAN DETAIL DIVISI (divisi.html - ZIG-ZAG ALTERNATING SECTIONS)
   ========================================================================== */
.divisi-hero {
    padding: clamp(3.5rem, 6vw, 5.625rem) 0 clamp(2rem, 4vw, 3.75rem) 0;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at 50% 10%, rgba(245, 158, 11, 0.06) 0%, transparent 65%);
}

.divisi-hero-title {
    font-size: clamp(2.1rem, 4.5vw + 0.8rem, 3.4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.divisi-hero-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #fbbf24;
    border-radius: 2px;
    margin: 0.85rem auto 0 auto;
}

.divisi-nav-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.divisi-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    background: var(--bg-card);
    border: 1.5px solid var(--lp-border);
    border-radius: var(--lp-radius-full);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    min-height: 46px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    transition: var(--lp-transition);
}

.divisi-pill-btn:hover {
    background: #fbbf24;
    border-color: #f59e0b;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.35);
}

.zigzag-section {
    padding: 4.5rem 2rem;
    position: relative;
    border-top: 1px solid var(--lp-border);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.zigzag-section:nth-of-type(even) {
    background-color: var(--bg-primary);
}

.zigzag-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.5rem;
    width: 100%;
}

/* Seksi Genap: Posisi gambar di kanan, teks di kiri pada layar desktop */
.zigzag-row.zigzag-reverse,
.zigzag-row.flex-row-reverse {
    flex-direction: row-reverse;
}

/* ── Gaya Gambar & Kartu Divisi ── */
.zigzag-media {
    flex: 1 1 45%;
    max-width: 520px;
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--lp-border);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zigzag-media:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
}

.zigzag-media img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.zigzag-media:hover img {
    transform: scale(1.04);
}

/* ── Container Logo Divisi Vektor (Pengganti Gambar) ── */
.divisi-icon-media {
    background: radial-gradient(circle at center, rgba(251, 191, 36, 0.08) 0%, rgba(15, 23, 42, 0.4) 70%), var(--bg-card);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divisi-icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 0 20px rgba(251, 191, 36, 0.15);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.3s ease;
    position: relative;
    z-index: 2;
}

.divisi-icon-circle i {
    font-size: 3.5rem;
    color: var(--accent);
    transition: transform 0.35s ease, color 0.3s ease;
}

/* Hover Animation: Membesar dengan Transform Scale(1.1) */
.zigzag-media:hover .divisi-icon-circle,
.divisi-icon-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(251, 191, 36, 0.35);
    border-color: #fde047;
}

.zigzag-media:hover .divisi-icon-circle i,
.divisi-icon-circle:hover i {
    transform: scale(1.08);
    color: #fde047;
}

.zigzag-media-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--lp-bg-glass);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-full);
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 700;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.1);
}

.zigzag-media-badge i {
    color: #f59e0b;
}

/* ── Konten Teks Deskripsi Divisi ── */
.zigzag-content {
    flex: 1 1 50%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.zigzag-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.95rem;
    border-radius: var(--lp-radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.875rem;
    align-self: flex-start;
}

.zigzag-badge.badge-foto {
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    border: 1px solid rgba(30, 58, 138, 0.25);
}

.zigzag-badge.badge-video {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.zigzag-badge.badge-presenter {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.zigzag-badge.badge-desain {
    background: rgba(217, 119, 6, 0.12);
    color: #92400e;
    border: 1px solid rgba(217, 119, 6, 0.25);
}

.zigzag-title {
    font-size: clamp(1.75rem, 3vw + 0.4rem, 2.35rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

/* Garis aksen kuning keemasan di bawah judul divisi */
.zigzag-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3.5px;
    background: #fbbf24;
    border-radius: 2px;
}

.zigzag-desc {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    color: var(--lp-text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.curriculum-box {
    background: var(--bg-card);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05);
}

.curriculum-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.curriculum-title i {
    color: #fbbf24;
}

.curriculum-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.curriculum-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--lp-text-secondary);
    line-height: 1.6;
}

.curriculum-item i {
    font-size: 0.95rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    color: #fbbf24;
    /* Aksen Kuning Keemasan */
}

.curriculum-item strong {
    color: var(--text-primary);
    font-weight: 700;
}

.division-tools-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.division-tool-tag {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    background: var(--bg-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-full);
    color: var(--text-primary);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.division-tool-tag:hover {
    background: var(--bg-primary);
    border-color: #fbbf24;
    color: #b45309;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {

    /* 1. Sistem Tipografi & Skala (CSS Clamp & Relatif) */
    .hero-headline {
        font-size: clamp(2rem, 7.5vw, 2.85rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 0.85rem !important;
    }

    .hero-slogan {
        font-size: clamp(0.95rem, 3.8vw, 1.25rem) !important;
    }

    .hero-subheadline {
        font-size: clamp(0.875rem, 2.8vw, 1.02rem) !important;
        margin-bottom: 1.75rem !important;
    }

    .section-title {
        font-size: clamp(1.45rem, 4.8vw, 2rem) !important;
        line-height: 1.25 !important;
    }

    .section-subtitle {
        font-size: clamp(0.85rem, 2.5vw, 0.98rem) !important;
    }

    .pipeline-title,
    .lens-intro-title {
        font-size: clamp(1.35rem, 4.5vw, 1.85rem) !important;
    }

    .pipeline-subtitle,
    .lens-intro-desc {
        font-size: clamp(0.82rem, 2.5vw, 0.95rem) !important;
    }

    .dash-title {
        font-size: clamp(1.15rem, 3.8vw, 1.55rem) !important;
    }

    .dash-subtitle {
        font-size: clamp(0.8rem, 2.5vw, 0.88rem) !important;
    }

    .nav-brand-title {
        font-size: clamp(0.95rem, 3vw, 1.12rem) !important;
    }

    .nav-brand-subtitle {
        font-size: 0.68rem !important;
    }

    /* 2. Pengurangan Padding & Margin Global (Lebih Padat di Layar HP) */
    .landing-section {
        padding: clamp(2.25rem, 5vw, 3.5rem) 0 !important;
    }

    .landing-container {
        padding: 0 clamp(0.875rem, 3vw, 1.25rem) !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .section-header {
        margin: 0 auto clamp(1.5rem, 4vw, 2.25rem) auto !important;
    }

    .hero-section {
        margin-top: 25px !important;
        padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem) 0 !important;
    }

    /* 3. Reorganisasi Layout Menyamping Menjadi Tersusun ke Bawah (Column) */
    .divisions-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .division-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .hero-cta-group {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.875rem !important;
        margin-bottom: 2rem !important;
    }

    .hero-cta-group .btn-lp {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
    }

    .hero-stats-bar {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        width: 100% !important;
        padding: 1.25rem 1rem !important;
        box-sizing: border-box !important;
    }

    .about-pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-top: 1.5rem !important;
        padding-top: 1.5rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .dash-features-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .dash-card-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }

    .dash-qr-preview-block {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.75rem !important;
    }

    .dash-qr-meta {
        text-align: center !important;
    }

    /* 4. Proteksi Lebar Elemen & Pencegahan Layar Bocor ke Samping */
    .giant-lens-wrapper {
        width: clamp(170px, 46vw, 220px) !important;
        height: clamp(170px, 46vw, 220px) !important;
        max-width: min(85vw, 220px) !important;
        max-height: min(85vw, 220px) !important;
    }

    .dashboard-preview-card {
        width: 100% !important;
        max-width: min(90vw, 100%) !important;
        box-sizing: border-box !important;
    }

    .login-card,
    body.login-body main.login-card {
        width: 100% !important;
        max-width: min(90vw, 440px) !important;
        box-sizing: border-box !important;
    }

    /* 5. Navbar Mobile Optimization: Sembunyikan CTA, Sejajarkan Logo & Hamburger, Padding 15px 20px */
    .landing-navbar {
        padding: 15px 20px !important;
    }

    .landing-navbar .landing-container {
        padding: 0 !important;
        max-width: 100% !important;
    }

    .landing-navbar .nav-wrapper {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        min-height: auto !important;
        padding: 0 !important;
        gap: 0.75rem !important;
    }

    /* Skala Ukuran Logo & Teks Navbar */
    .landing-navbar .nav-brand {
        display: flex !important;
        align-items: center !important;
        gap: 0.625rem !important;
        transform: scale(0.85);
        transform-origin: left center;
        flex-shrink: 1 !important;
        min-width: 0 !important;
    }

    .landing-navbar .nav-logo {
        width: 2.25rem !important;
        height: 2.25rem !important;
        flex-shrink: 0 !important;
    }

    .landing-navbar .nav-brand-title {
        font-size: clamp(0.82rem, 3.2vw, 0.98rem) !important;
        line-height: 1.15 !important;
        white-space: nowrap !important;
    }

    .landing-navbar .nav-brand-subtitle {
        font-size: 0.6rem !important;
        letter-spacing: 0.04em !important;
    }

    .landing-navbar .nav-actions {
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        flex-shrink: 0 !important;
    }

    /* Sembunyikan Tombol CTA Navbar pada Layar HP */
    .landing-navbar .btn-lp,
    .landing-navbar #btnNavLogin,
    .landing-navbar .nav-actions .btn-lp {
        display: none !important;
    }

    .nav-toggle-btn {
        display: flex !important;
    }

    .nav-menu {
        position: fixed;
        top: 66px !important;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 1.875rem 1.5rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--lp-border);
        box-shadow: 0 15px 30px rgba(15, 23, 42, 0.12);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: var(--lp-transition);
        z-index: 999;
    }

    .nav-menu.is-active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .about-card {
        padding: 1.5rem 1.25rem;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .instagram-box {
        padding: 1.5rem 1.125rem;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .ig-profile-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    /* Divisi Zig-zag Responsive Stacking: Matikan zigzag, urutan gambar di atas, teks di bawah rata tengah */
    .zigzag-section {
        padding: 3rem 1.25rem;
    }

    .zigzag-row,
    .zigzag-row.zigzag-reverse,
    .zigzag-row.flex-row-reverse {
        flex-direction: column !important;
        gap: 2.25rem !important;
        width: 100% !important;
    }

    .zigzag-media {
        order: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
    }

    .zigzag-content {
        order: 2 !important;
        width: 100% !important;
        text-align: center !important;
        align-items: center !important;
    }

    .zigzag-badge {
        margin: 0 auto 0.875rem auto !important;
        align-self: center !important;
    }

    .zigzag-title {
        text-align: center !important;
    }

    .zigzag-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .zigzag-desc {
        text-align: center !important;
    }

    .curriculum-box {
        text-align: left !important;
        width: 100% !important;
    }

    .division-tools-wrap {
        justify-content: center !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .landing-container {
        padding: 0 1rem;
    }

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

    .btn-lp {
        width: 100%;
    }

    .divisi-nav-pills {
        flex-direction: column;
        width: 100%;
    }

    .divisi-pill-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   INTERACTIVE STORY SECTIONS (OPTIMIZED PERFORMANCE - STATIC FLOW)
   Alur Kerja Pipeline & Preview Dasbor BcMS
   Theme Variables: --bg-primary, --bg-card, --text-primary, --accent
   ========================================================================== */

/* 1. Base Story Section */
.pin-master-container {
    position: relative;
    width: 100%;
    overflow: visible;
    z-index: 1;
    background-color: transparent;
}

.story-section,
.pipeline-section,
.lens-zoom-section {
    position: relative;
    width: 100%;
    height: auto;
    min-height: unset;
    overflow: visible;
    z-index: 1;
    background-color: transparent;
    box-sizing: border-box;
    padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.hero-system-title {
    display: block;
    font-size: clamp(1rem, 2.2vw, 1.45rem);
    font-weight: 600;
    color: var(--accent);
    margin-top: 0.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ==========================================================================
   SCENE 1: THE BROADCAST PIPELINE
   ========================================================================== */
.pipeline-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--lp-border);
    overflow: visible;
    z-index: 1;
}

.pipeline-pin-container {
    position: relative;
    width: 100%;
    height: auto;
    min-height: unset;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2.5rem;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.pipeline-header {
    text-align: center;
    max-width: 720px;
    z-index: 5;
}

.pipeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.25);
    padding: 0.35rem 0.95rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.pipeline-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.pipeline-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: var(--lp-text-secondary);
    line-height: 1.5;
    margin: 0;
}

.pipeline-track-wrapper {
    position: relative;
    width: 100%;
    max-width: 1050px;
    height: 220px;
    margin: auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pipeline-svg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 40px;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.pipeline-track-base {
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 6px;
    stroke-linecap: round;
    fill: none;
}

body:not(.dark-mode) .pipeline-track-base {
    stroke: rgba(15, 23, 42, 0.12);
}

.pipeline-track-active {
    stroke: var(--accent);
    stroke-width: 8px;
    stroke-linecap: round;
    fill: none;
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.85));
}

.pipeline-line-track {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 8px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    transform: translateY(-50%);
    z-index: 2;
    overflow: hidden;
}

body:not(.dark-mode) .pipeline-line-track {
    background: rgba(15, 23, 42, 0.12);
}

.pipeline-progress-bar {
    width: 100%;
    height: 100%;
    background: var(--accent);
    transform-origin: left center;
    transform: scaleX(1);
    border-radius: 9999px;
    box-shadow: 0 0 16px rgba(251, 191, 36, 0.85);
}

.pipeline-nodes-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
}

.pipeline-node {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.node-icon-circle {
    width: clamp(56px, 7vw, 76px);
    height: clamp(56px, 7vw, 76px);
    border-radius: 50%;
    background: var(--bg-card);
    border: 2.5px solid rgba(251, 191, 36, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.3rem, 2.5vw, 1.85rem);
    color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.node-label {
    margin-top: 0.85rem;
    pointer-events: auto;
}

.node-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.06em;
    background: rgba(251, 191, 36, 0.12);
    padding: 2px 7px;
    border-radius: 9999px;
}

.node-name {
    font-size: clamp(0.9rem, 1.6vw, 1.15rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0.35rem 0 0.15rem;
    white-space: nowrap;
}

.node-sub {
    font-size: 0.75rem;
    color: var(--lp-text-muted);
    display: block;
    white-space: nowrap;
}

.pipeline-scroll-hint {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--lp-text-muted);
    font-size: 0.85rem;
    z-index: 5;
    margin-bottom: 0.5rem;
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 2px solid var(--accent);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

.mouse-wheel {
    width: 3px;
    height: 6px;
    background: var(--accent);
    border-radius: 2px;
    animation: mouseWheelScroll 1.5s infinite;
}

@keyframes mouseWheelScroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(8px);
        opacity: 0;
    }
}

/* ==========================================================================
   SCENE 2 & 3: THE LENS & THE DASHBOARD REVEAL
   ========================================================================== */
.lens-zoom-section {
    position: relative;
    height: auto;
    min-height: unset;
    overflow: visible;
    z-index: 1;
    background-color: transparent;
}

.lens-pin-container {
    position: relative;
    width: 100%;
    height: auto;
    min-height: unset;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.lens-intro-overlay {
    position: relative;
    text-align: center;
    z-index: 10;
    width: 100%;
    max-width: 680px;
}

.lens-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.25);
    padding: 0.35rem 0.95rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.lens-intro-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.lens-intro-desc {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: var(--lp-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Kamera Raksasa di Bawah Teks (Mengikuti Aliran Dokumen Normal) */
.giant-lens-wrapper {
    position: relative;
    margin: 0.25rem auto 0.75rem;
    width: clamp(140px, 16vw, 180px);
    height: clamp(140px, 16vw, 180px);
    z-index: 4;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lens-aperture-rim {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 14px;
    background: conic-gradient(from 0deg, #475569, #1e293b, #64748b, #1e293b, #475569);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 35px rgba(251, 191, 36, 0.25), inset 0 0 25px rgba(251, 191, 36, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lens-breathe 4s infinite ease-in-out;
    will-change: transform, box-shadow;
}

.lens-body {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--bg-primary) 35%, var(--bg-card) 70%, rgba(30, 41, 59, 0.6) 100%);
    border: 3.5px solid rgba(251, 191, 36, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.lens-glass-reflection {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 45%;
    height: 45%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.35) 0%, transparent 70%);
    pointer-events: none;
}

.lens-dark-aperture {
    width: 55%;
    height: 55%;
    border-radius: 50%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.lens-center-icon {
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    color: var(--accent);
    filter: drop-shadow(0 0 14px rgba(251, 191, 36, 0.8));
    animation: lens-glow-standby 4s infinite ease-in-out;
    will-change: opacity, filter;
}

@keyframes lens-breathe {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 35px rgba(251, 191, 36, 0.25), inset 0 0 25px rgba(251, 191, 36, 0.35);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.42), 0 0 55px rgba(251, 191, 36, 0.45), inset 0 0 35px rgba(251, 191, 36, 0.55);
    }
}

@keyframes lens-glow-standby {

    0%,
    100% {
        opacity: 0.7;
        filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.6));
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 24px rgba(251, 191, 36, 0.95));
    }
}

/* Transisi Backdrop (Adaptif ke tema aktif) */
.deep-dive-backdrop {
    display: none !important;
}

/* SCENE 3: Antarmuka Dashboard Terungkap */
.dashboard-reveal-wrapper {
    position: relative;
    inset: auto;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
}

.dashboard-preview-card {
    background: var(--lp-bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid rgba(251, 191, 36, 0.4);
    border-radius: 1.5rem;
    max-width: 820px;
    width: 100%;
    padding: clamp(1.75rem, 4vw, 2.75rem);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(251, 191, 36, 0.15);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

body.dark-mode .dashboard-preview-card {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(251, 191, 36, 0.18);
}

.dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--lp-border);
}

.dash-status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lp-text-secondary);
}

.dash-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
}

.dash-version-pill {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(251, 191, 36, 0.12);
    padding: 3px 10px;
    border-radius: 9999px;
}

.dash-headline-row {
    margin-bottom: 0.5rem;
}

.dash-title {
    font-size: clamp(1.3rem, 2.8vw, 1.85rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.4rem;
}

.dash-subtitle {
    font-size: 0.9rem;
    color: var(--lp-text-muted);
    margin: 0;
    line-height: 1.5;
}

.dash-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.dash-feature-block {
    background: var(--bg-card);
    border: 1px solid var(--lp-border);
    border-radius: 1rem;
    padding: 1.25rem;
}

.dash-feature-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--lp-text-secondary);
    display: block;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dash-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dash-mini-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    background: rgba(251, 191, 36, 0.15);
    color: var(--accent);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.dash-qr-preview-block {
    background: var(--bg-card);
    border: 1px solid var(--lp-border);
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.dash-qr-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: var(--bg-primary);
    border: 1.5px dashed var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.dash-laser-line {
    position: absolute;
    top: 20%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #ef4444;
    box-shadow: 0 0 6px #ef4444;
    animation: qrLaserScan 1.8s infinite ease-in-out;
}

.dash-qr-meta strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.dash-qr-meta span {
    font-size: 0.8rem;
    color: var(--lp-text-muted);
    line-height: 1.4;
    display: block;
}

.dash-card-footer {
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

/* Tombol Masuk ke Sistem Memancarkan Efek Cahaya Glow Kuning Berdenyut */
.btn-lp-glow-pulse {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #020617;
    font-weight: 800;
    font-size: 1.15rem;
    padding: 1.1rem 2.8rem;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    will-change: transform, box-shadow;
    animation: pulse-glow 2.5s infinite ease-in-out;
    transition: transform 0.3s ease;
}

.btn-lp-glow-pulse:hover {
    color: #000000;
    transform: scale(1.04);
    animation-play-state: paused;
}

@keyframes buttonGlowPulse {
    0% {
        box-shadow: 0 0 15px rgba(251, 191, 36, 0.5), 0 0 30px rgba(251, 191, 36, 0.25);
        transform: scale(1);
    }

    100% {
        box-shadow: 0 0 35px rgba(251, 191, 36, 0.95), 0 0 70px rgba(251, 191, 36, 0.55), 0 0 100px rgba(251, 191, 36, 0.35);
        transform: scale(1.04);
    }
}

@keyframes qrLaserScan {

    0%,
    100% {
        top: 15%;
        opacity: 0.3;
    }

    50% {
        top: 80%;
        opacity: 1;
    }
}

/* ==========================================================================
   INTERACTIVE STORY SECTIONS: RESPONSIVE MOBILE & TABLET (< 800px)
   ========================================================================== */
@media (max-width: 799px) {
    .pipeline-pin-container {
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }

    .pipeline-track-wrapper {
        height: 250px !important;
        margin: 1.25rem 0 !important;
    }

    .pipeline-node .node-icon-circle {
        width: clamp(44px, 9vw, 54px) !important;
        height: clamp(44px, 9vw, 54px) !important;
        font-size: clamp(1.05rem, 2.5vw, 1.35rem) !important;
    }

    .node-sub {
        display: none !important;
    }

    .pipeline-node .node-tag {
        font-size: 0.65rem !important;
        padding: 1px 6px !important;
    }

    .pipeline-node .node-name {
        font-size: clamp(0.72rem, 2.2vw, 0.85rem) !important;
    }

    .pipeline-scroll-hint {
        display: none !important;
    }

    .lens-pin-container {
        gap: 1.75rem !important;
        padding: 0 1rem !important;
    }

    .giant-lens-wrapper {
        width: clamp(120px, 32vw, 150px) !important;
        height: clamp(120px, 32vw, 150px) !important;
        margin-top: 0 !important;
    }

    .dashboard-preview-card {
        width: 100% !important;
        max-width: min(92vw, 650px) !important;
        padding: clamp(1.25rem, 4vw, 1.75rem) !important;
        margin: 0 auto !important;
    }

    .dash-features-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .btn-lp-glow-pulse {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.95rem 1.75rem !important;
        font-size: 1rem !important;
    }
}

/* ==========================================================================
   AKSESIBILITAS: REDUCED MOTION SUPPORT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {

    .btn-lp-primary,
    .btn-lp-glow-pulse,
    .lens-aperture-rim,
    .lens-center-icon,
    .ambient-orb,
    .division-icon-badge i {
        animation: none !important;
    }
}