:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: rgba(99, 102, 241, 0.12);
    --secondary: #06b6d4;
    --accent: #ec4899;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --glass-border: rgba(226, 232, 240, 0.8);
    --shadow-glow: rgba(99, 102, 241, 0.15);
    --shadow-card: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-main);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
/* ==========================================================================
   Header & Navigation - Light Academic Theme
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid #e2e8f0;
    padding: 14px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.site-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

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

.site-logo .logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    gap: 2px;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: -0.5px;
    color: #0f172a;
}

.logo-dot {
    color: #0284c7;
    font-size: 2.2rem;
    line-height: 0;
    font-weight: 900;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-list > li {
    position: relative;
}

.nav-list a {
    display: inline-block;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-list a:hover,
.nav-list li.current-menu-item > a,
.nav-list li.active > a {
    color: #0284c7;
    background: #e0f2fe;
}

/* Sub-menu Styling */
.nav-list ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #ffffff;
    backdrop-filter: blur(12px);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.nav-list li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.nav-list ul a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    border-radius: 0;
    color: #475569;
}

.nav-list ul a:hover {
    background: #e0f2fe;
    color: #0284c7;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-portal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #ffffff !important;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
    transition: all 0.3s ease;
}

.btn-portal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.45);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #0f172a;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-toggle .icon-close { display: none; }
.mobile-menu-toggle.active .icon-bars { display: none; }
.mobile-menu-toggle.active .icon-close { display: block; }

/* ==========================================================================
   Hero Section - Split Analytics Layout
   ========================================================================== */
/* ==========================================================================
   Hero Section - Bright & Modern Academic Theme
   ========================================================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0 100px;
    background: #f8fafc url('../images/hero-bg.png') no-repeat center center/cover;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 54%, rgba(255, 255, 255, 0.85) 75%, rgba(224, 242, 254, 0.4) 100%);
    z-index: 1;
}

.hero-particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
}

.hero-ambient-glow.glow-1 {
    width: 500px;
    height: 500px;
    background: #818cf8;
    top: -120px;
    left: -120px;
}

.hero-ambient-glow.glow-2 {
    width: 450px;
    height: 450px;
    background: #38bdf8;
    bottom: -120px;
    right: -120px;
}

.hero-container-split {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    text-align: left;
    padding: 40px 0 60px;
}

/* Left Column */
.hero-col-content {
    max-width: 620px;
}

.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    color: #0284c7 !important;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
}

.pulse-dot-cyan {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0284c7;
    box-shadow: 0 0 10px #0284c7;
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
}

.hero .hero-title,
.hero h1.hero-title,
.hero-title,
.hero-title * {
    font-size: clamp(2.2rem, 3.6vw, 3.4rem);
    line-height: 1.16 !important;
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
    margin-bottom: 20px;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
    text-shadow: none !important;
}

.hero .hero-title .hero-accent-txt,
.hero-title .hero-accent-txt,
.hero-accent-txt {
    background: linear-gradient(135deg, #0284c7 0%, #4f46e5 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: #0284c7 !important;
    display: inline-block !important;
}

.hero .hero-lead,
.hero p.hero-lead,
.hero-lead {
    font-size: 1.08rem !important;
    color: #334155 !important;
    -webkit-text-fill-color: #334155 !important;
    line-height: 1.65 !important;
    margin-bottom: 32px !important;
    font-weight: 600 !important;
    text-shadow: none !important;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #0284c7, #0369a1) !important;
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.35);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(2, 132, 199, 0.5);
    color: #ffffff !important;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #ffffff !important;
    border: 2px solid #0284c7 !important;
    color: #0284c7 !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.12);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: #0284c7 !important;
    border-color: #0284c7 !important;
    color: #ffffff !important;
    transform: translateY(-3px);
}

.hero-quick-tickers {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #e2e8f0;
}

.quick-ticker-item {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.ticker-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: #0284c7 !important;
    line-height: 1;
}

.ticker-val small {
    font-size: 0.9rem;
    color: #64748b !important;
}

.ticker-lbl {
    font-size: 0.78rem;
    color: #334155 !important;
    margin-top: 4px;
    font-weight: 700;
}

.quick-ticker-divider {
    width: 1px;
    height: 32px;
    background: #cbd5e1;
}

/* Right Column Visual Analytics Card */
.hero-col-visual {
    position: relative;
}

.hero-analytics-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
    position: relative;
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 14px;
    gap: 10px;
    flex-wrap: wrap;
}

.card-brand-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0284c7;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.98rem;
}

.hero-tab-switcher {
    display: flex;
    background: #f1f5f9;
    padding: 3px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
}

.hero-tab-btn {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Inter', sans-serif;
}

.hero-tab-btn:hover {
    color: #0f172a;
}

.hero-tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
}

.hero-chart-container {
    height: 270px;
    position: relative;
    width: 100%;
    margin-bottom: 5px;
}

/* Floating Interactive Badges */
.hero-float-card {
    position: absolute;
    background: #ffffff;
    backdrop-filter: blur(14px);
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    z-index: 10;
    animation: floatSlow 6s ease-in-out infinite;
}

.hero-float-card.card-top-right {
    top: -24px;
    right: -24px;
}

.hero-float-card.card-bottom-left {
    bottom: -28px;
    left: -24px;
    animation-delay: -3s;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.float-card-icon.bg-cyan {
    background: #e0f2fe;
    color: #0284c7;
    border: 1px solid #bae6fd;
}

.float-card-icon.bg-emerald {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.float-card-text {
    display: flex;
    flex-direction: column;
}

.float-card-label {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 600;
}

.float-card-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 800;
}

/* Responsive adjustments for hero split */
@media (max-width: 992px) {
    .hero-container-split {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-col-content {
        max-width: 100%;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-quick-tickers {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-float-card.card-top-right {
        top: -10px;
        right: 0;
    }
    .hero-float-card.card-bottom-left {
        bottom: -10px;
        left: 0;
    }
    .hero-quick-tickers {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.hero p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    max-width: 760px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.6);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 7px;
    background-color: var(--secondary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ==========================================================================
   Section Components
   ========================================================================== */
.section-header {
    margin-bottom: 50px;
}

.section-header.text-center {
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.2rem;
    color: var(--text-main);
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background: #ffffff;
}

.services-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 36px 30px;
    background: #f8fafc;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 45px -10px rgba(99, 102, 241, 0.15);
}

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

.service-icon-box {
    width: 68px;
    height: 68px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.service-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 700;
    transition: gap 0.3s ease;
}

.service-card:hover .service-footer-link {
    gap: 12px;
    color: var(--primary-dark);
}

/* ==========================================================================
   KPI Cards Section
   ========================================================================== */
.kpis-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.kpi-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.kpi-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kpi-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px -10px rgba(99, 102, 241, 0.2);
}

.kpi-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.kpi-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.kpi-trend-badge {
    font-size: 0.72rem;
    font-weight: 800;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}

.kpi-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.kpi-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ==========================================================================
   Dashboard & Charts Section
   ========================================================================== */
.dashboard-section {
    padding: 80px 0 100px;
    background: var(--bg-light);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card-span-2 {
    grid-column: span 2;
}

.glass-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.glass-card:hover {
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
}

.card-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.card-title {
    font-size: 1.15rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-icon {
    color: var(--primary);
    font-size: 1.1rem;
}

.card-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.chart-wrapper {
    position: relative;
    height: 300px;
    width: 100%;
}

/* Report List */
.report-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-item {
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.25s ease;
}

.report-item:last-child {
    border-bottom: none;
}

.report-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
}

.report-link:hover {
    background: var(--bg-light);
    transform: translateX(6px);
}

.report-item-title {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.98rem;
    margin-bottom: 4px;
}

.report-item-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.report-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

.report-link:hover .report-arrow {
    background: var(--primary);
    color: #ffffff;
    transform: translateX(3px);
}

.reports-footer-action {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.btn-more-reports {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    background: var(--primary);
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
}

.btn-more-reports:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.35);
}

.btn-more-reports i {
    transition: transform 0.3s ease;
}

.btn-more-reports:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   Partners Marquee
   ========================================================================== */
.partners-section {
    padding: 60px 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.partners-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 36px;
}

.partner-marquee-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.partner-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scrollPartner 35s linear infinite;
    width: max-content;
}

.partner-track:hover {
    animation-play-state: paused;
}

.partner-item {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #94a3b8;
    white-space: nowrap;
    transition: color 0.3s ease;
    cursor: default;
}

.partner-item:hover {
    color: var(--primary);
}

@keyframes scrollPartner {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 30px)); }
}

/* ==========================================================================
   News Section
   ========================================================================== */
.news-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    background: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.12);
}

.news-thumb-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #0f172a;
}

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

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

.news-thumb-fallback {
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 3.5rem;
}

.news-date-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.news-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    margin-bottom: 10px;
}

.news-category {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-title {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.news-title a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card:hover .news-title a {
    color: var(--primary);
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-footer {
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.news-card:hover .news-read-more {
    gap: 12px;
    color: var(--primary-dark);
}

.news-empty-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    color: var(--text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */
/* ==========================================================================
   Footer - Light Academic Theme
   ========================================================================== */
.site-footer {
    background: #f1f5f9;
    color: #334155;
    padding: 80px 0 0;
    position: relative;
    border-top: 1px solid #e2e8f0;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 16px;
}

.footer-logo-title .accent-dot {
    color: #0284c7;
}

.footer-logo-img {
    height: 42px;
    width: auto;
    margin-bottom: 18px;
}

.footer-desc {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.site-footer .footer-social {
    display: flex;
    gap: 10px;
}

.site-footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #475569;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.site-footer .social-icon:hover {
    background: #0284c7;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

.site-footer h4 {
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.site-footer .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-menu li {
    margin-bottom: 12px;
}

.site-footer .footer-menu a {
    color: #475569;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-footer .footer-menu a i {
    font-size: 0.7rem;
    color: #0284c7;
    transition: transform 0.3s ease;
}

.site-footer .footer-menu a:hover {
    color: #0284c7;
    transform: translateX(4px);
}

.site-footer .footer-menu a:hover i {
    transform: translateX(3px);
}

.site-footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: #475569;
    font-size: 0.92rem;
}

.site-footer .contact-item i {
    color: #0284c7;
    margin-top: 4px;
    font-size: 1.1rem;
}

.site-footer .contact-item a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer .contact-item a:hover {
    color: #0284c7;
}

.footer-bottom-bar {
    background: #e2e8f0;
    border-top: 1px solid #cbd5e1;
    padding: 20px 0;
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
    color: #475569;
    font-weight: 500;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 9998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.6);
}

/* WhatsApp float */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 90px;
    background: #25d366;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    z-index: 9999;
    transition: all 0.3s ease;
}

.wa-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    background: #20ba5a;
    color: #ffffff;
}

.wa-float i { font-size: 1.4rem; }

/* ==========================================================================
   Reveal Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 992px) {
    .kpi-container { grid-template-columns: repeat(2, 1fr); }
    .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
    .card-span-2 { grid-column: span 1; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: block; }
    
    .main-navigation {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: #0f172a;
        padding: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-list a {
        display: block;
        padding: 12px 16px;
    }
    
    .hero-content {
        padding: 40px 24px;
    }
    
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .kpi-container { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
    .wa-float span { display: none; }
    .wa-float { padding: 12px; border-radius: 50%; right: 20px; bottom: 20px; }
    .back-to-top { right: 70px; bottom: 20px; }
}
