
    /* ========== 1. CSS Variables ========== */
    :root {
        --primary: #0a4d8c;
        --primary-dark: #042449;
        --primary-light: #e8f2fb;
        --secondary: #1e3a5f;
        --accent: #2563eb;
        --accent-light: #60a5fa;
        --gold: #d4af37;
        --white: #ffffff;
        --gray-50: #f8fafc;
        --gray-100: #f1f5f9;
        --gray-200: #e2e8f0;
        --gray-300: #cbd5e1;
        --gray-600: #475569;
        --gray-700: #334155;
        --gray-800: #1e293b;
        --text: #0f172a;
        --text-light: #64748b;
        --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        --gradient-primary: linear-gradient(135deg, #0a4d8c 0%, #1e3a5f 100%);
        --gradient-accent: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
        --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f59e0b 100%);
    }

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

    body {
        background: linear-gradient(180deg, var(--gray-50) 0%, var(--gray-100) 100%);
        font-family: 'Prompt', 'Inter', system-ui, -apple-system, sans-serif;
        overflow-x: hidden;
    }

    /* ========== 2. Background Orbs ========== */
    .bg-orb {
        position: fixed;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.3;
        z-index: 0;
        pointer-events: none;
    }

    .bg-orb-1 {
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, var(--accent-light), transparent);
        top: -200px;
        right: -100px;
    }

    .bg-orb-2 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, var(--primary-light), transparent);
        bottom: -200px;
        left: -150px;
    }

    .bg-orb-3 {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
        top: 40%;
        right: 10%;
    }

    /* ========== 3. Hero Section ========== */
    .hero-section {
        position: relative;
        background: var(--gradient-primary);
        padding: 60px 0 80px;
        overflow: hidden;
        z-index: 1;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(to top, var(--gray-50), transparent);
        z-index: 2;
    }

    .hero-floating {
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255,255,255,0.08), transparent);
        border-radius: 50%;
        top: -150px;
        left: -100px;
        animation: float 20s infinite ease-in-out;
    }

    .hero-floating-2 {
        position: absolute;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255,255,255,0.05), transparent);
        border-radius: 50%;
        bottom: -80px;
        right: 10%;
        animation: float 15s infinite ease-in-out reverse;
    }

    @keyframes float {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        50% { transform: translate(30px, 20px) rotate(5deg); }
    }

    .hero-content {
        position: relative;
        z-index: 3;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255,255,255,0.12);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
        color: var(--accent-light);
        padding: 6px 20px;
        border-radius: 100px;
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: 3rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 16px;
        letter-spacing: -0.02em;
    }

    .hero-title span {
        background: linear-gradient(135deg, var(--accent-light), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        color: rgba(255,255,255,0.85);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* ========== 4. Management Section ========== */
    .management-section {
        position: relative;
        padding: 60px 0 80px;
        z-index: 2;
    }

    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-tag {
        display: inline-block;
        background: linear-gradient(135deg, var(--primary-light), rgba(37, 99, 235, 0.1));
        color: var(--primary);
        padding: 6px 16px;
        border-radius: 100px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 16px;
    }

    .section-divider {
        width: 80px;
        height: 4px;
        background: var(--gradient-accent);
        margin: 0 auto;
        border-radius: 4px;
    }

    /* Management Chart Container */
    .management-container {
        background: var(--white);
        border-radius: 32px;
        box-shadow: var(--shadow-xl);
        overflow: hidden;
        transition: var(--transition);
        border: 1px solid var(--gray-200);
        cursor: pointer;
    }

    .management-container:hover {
        box-shadow: var(--shadow-2xl);
    }

    .management-image-wrapper {
        position: relative;
        width: 100%;
        background: linear-gradient(135deg, var(--gray-50), var(--white));
        padding: 20px;
    }

    .management-image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;
        transition: var(--transition);
    }

    .management-container:hover .management-image-wrapper img {
        transform: scale(1.01);
    }

    /* Zoom Overlay */
    .zoom-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: var(--transition);
        border-radius: 20px;
    }

    .management-container:hover .zoom-overlay {
        opacity: 1;
    }

    .zoom-icon {
        width: 50px;
        height: 50px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: var(--primary);
        transition: var(--transition);
    }

    .management-container:hover .zoom-icon {
        transform: scale(1.1);
    }

    /* Language Toggle Notice */
    .lang-notice {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 30px;
        padding: 16px 24px;
        background: linear-gradient(135deg, var(--primary-light), var(--white));
        border-radius: 60px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        border: 1px solid var(--gray-200);
    }

    .lang-notice-icon {
        width: 36px;
        height: 36px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 18px;
    }

    .lang-notice-text {
        font-size: 0.85rem;
        color: var(--text-light);
    }

    .lang-notice-text strong {
        color: var(--primary);
    }

    /* Language Visibility */
    [data-key="img_en_section"] {
        display: none;
    }

    body.th [data-key="img_th_section"] {
        display: block !important;
    }
    body.th [data-key="img_en_section"] {
        display: none !important;
    }

    body.en [data-key="img_th_section"] {
        display: none !important;
    }
    body.en [data-key="img_en_section"] {
        display: block !important;
    }

    /* ========== 5. Lightbox Modal ========== */
    .lightbox-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 1000;
        cursor: pointer;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .lightbox-modal.active {
        display: flex !important;
        align-items: center;
        justify-content: center;
        opacity: 1;
    }

    .lightbox-content {
        max-width: 100%;
        max-height: 100%;
        position: relative;
        animation: zoomIn 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    @keyframes zoomIn {
        from {
            transform: scale(0.8);
            opacity: 0;
        }
        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    .lightbox-image {
        max-width: 95vw;
        max-height: 95vh;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 12px;
        box-shadow: var(--shadow-2xl);
    }

    .lightbox-close {
        position: absolute;
        top: 20px;
        right: 30px;
        color: var(--white);
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
        transition: var(--transition);
        z-index: 1001;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
    }

    .lightbox-close:hover {
        background: rgba(255,255,255,0.2);
        transform: scale(1.1);
    }

    /* ========== 6. Responsive ========== */
    @media (max-width: 991px) {
        .hero-title { font-size: 2rem; }
        .hero-section { padding: 50px 0 70px; }
        .section-title { font-size: 1.5rem; }
        .management-image-wrapper { padding: 16px; }
        .zoom-icon { width: 40px; height: 40px; font-size: 20px; }
    }

    @media (max-width: 767px) {
        .hero-section { padding: 40px 0 60px; }
        .hero-title { font-size: 1.4rem; }
        .hero-badge { font-size: 0.7rem; padding: 4px 14px; }
        .hero-subtitle { font-size: 0.9rem; }
        .management-section { padding: 40px 0 60px; }
        .management-image-wrapper { padding: 12px; }
        .management-image-wrapper img { border-radius: 12px; }
        .zoom-overlay { border-radius: 12px; }
        .zoom-icon { width: 35px; height: 35px; font-size: 18px; }
        .lang-notice { padding: 12px 20px; margin-top: 24px; }
        .lang-notice-icon { width: 30px; height: 30px; font-size: 14px; }
        .lang-notice-text { font-size: 0.75rem; }
        .lightbox-close { font-size: 30px; width: 40px; height: 40px; top: 15px; right: 20px; }
    }

    @media (max-width: 480px) {
        .hero-title { font-size: 1.2rem; }
        .zoom-icon { width: 30px; height: 30px; font-size: 16px; }
        .lightbox-image { max-width: 98vw; max-height: 90vh; }
    }