/* ============================================
   TRANSFORMASI DIGITAL POLIBATAM - STYLE
   Futuristic Dark Theme with Glass Morphism
   ============================================ */

/* === CSS Variables === */
:root {
    /* Brand Colors - derived from Polibatam & TransDigital logos */
    --navy: #0F2137;
    --navy-deep: #091625;
    --navy-light: #1B3A5C;
    --blue: #2E9FD3;
    --blue-light: #5BC0EB;
    --blue-bright: #3DB8E8;
    --cyan: #00D4FF;
    --orange: #E8702A;
    --orange-glow: #FF8C42;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-100: #F0F4F8;
    --gray-200: #D9E2EC;
    --gray-300: #BCCCDC;
    --gray-400: #9FB3C8;
    --gray-500: #627D98;
    --gray-600: #486581;
    --gray-700: #334E68;
    --gray-800: #243B53;
    --gray-900: #102A43;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2E9FD3 0%, #00D4FF 50%, #5BC0EB 100%);
    --gradient-accent: linear-gradient(135deg, #E8702A 0%, #FF8C42 100%);
    --gradient-dark: linear-gradient(180deg, #091625 0%, #0F2137 50%, #1B3A5C 100%);
    --gradient-card: linear-gradient(135deg, rgba(46, 159, 211, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    --gradient-hero: radial-gradient(ellipse at 30% 50%, rgba(46, 159, 211, 0.15) 0%, transparent 60%),
                     radial-gradient(ellipse at 70% 20%, rgba(232, 112, 42, 0.08) 0%, transparent 40%);

    /* Glass */
    --glass-bg: rgba(15, 33, 55, 0.6);
    --glass-border: rgba(91, 192, 235, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--navy-deep);
    color: var(--gray-200);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(46, 159, 211, 0.3);
    color: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* === Particle Canvas === */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* === Container === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-medium);
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(9, 22, 37, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(46, 159, 211, 0.3));
}

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

.nav-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.nav-subtitle {
    font-size: 11px;
    color: var(--blue-light);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
    transition: color var(--transition-fast);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-medium);
    border-radius: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--navy-deep);
    box-shadow: 0 4px 20px rgba(46, 159, 211, 0.3),
                0 0 40px rgba(0, 212, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(46, 159, 211, 0.4),
                0 0 60px rgba(0, 212, 255, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-200);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(91, 192, 235, 0.1);
    border-color: var(--blue-light);
    color: var(--white);
    transform: translateY(-2px);
}

/* === Gradient Text === */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Glass Card === */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-medium);
}

.glass-card:hover {
    border-color: rgba(91, 192, 235, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(46, 159, 211, 0.08);
    transform: translateY(-4px);
}

/* === Section Styles === */
.section {
    padding: var(--section-padding);
    position: relative;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(46, 159, 211, 0.1);
    border: 1px solid rgba(46, 159, 211, 0.2);
    color: var(--blue-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-400);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
    gap: 60px;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(46, 159, 211, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 159, 211, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 70%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(46, 159, 211, 0.12);
    top: 10%;
    left: -10%;
    animation: float-glow 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(232, 112, 42, 0.08);
    top: 20%;
    right: -5%;
    animation: float-glow 10s ease-in-out infinite reverse;
}

.hero-glow-3 {
    width: 300px;
    height: 300px;
    background: rgba(0, 212, 255, 0.06);
    bottom: 10%;
    left: 30%;
    animation: float-glow 12s ease-in-out infinite 2s;
}

@keyframes float-glow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    flex: 1;
    max-width: 620px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(46, 159, 211, 0.08);
    border: 1px solid rgba(46, 159, 211, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--cyan);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-line {
    display: block;
}

.hero-title .gradient-text {
    font-size: clamp(48px, 8vw, 82px);
}

.hero-description {
    font-size: 17px;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 32px;
    background: rgba(15, 33, 55, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Hero Visual - Orb */
.hero-visual {
    flex-shrink: 0;
    z-index: 2;
}

.hero-orb {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: orbit-spin linear infinite;
}

.orb-ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(46, 159, 211, 0.15);
    animation-duration: 20s;
}

.orb-ring-2 {
    width: 80%;
    height: 80%;
    border-color: rgba(0, 212, 255, 0.1);
    animation-duration: 15s;
    animation-direction: reverse;
    border-style: dashed;
}

.orb-ring-3 {
    width: 60%;
    height: 60%;
    border-color: rgba(232, 112, 42, 0.1);
    animation-duration: 12s;
}

/* Orbiting dots on rings */
.orb-ring-1::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--blue);
}

.orb-ring-2::before {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 20%;
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan);
}

.orb-ring-3::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -3px;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--orange);
}

@keyframes orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orb-logo {
    width: 160px;
    height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(46, 159, 211, 0.3));
    animation: logo-breathe 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes logo-breathe {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(46, 159, 211, 0.3)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 50px rgba(46, 159, 211, 0.5)); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--blue-light), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.3; height: 20px; }
}

.scroll-indicator span {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ================================
   ABOUT SECTION
   ================================ */
.section-about {
    background: var(--gradient-hero);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.about-card {
    padding: 36px 28px;
    text-align: center;
}

.about-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(46, 159, 211, 0.1);
    border: 1px solid rgba(46, 159, 211, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--blue-light);
    transition: all var(--transition-medium);
}

.about-card:hover .about-card-icon {
    background: rgba(46, 159, 211, 0.2);
    box-shadow: 0 0 25px rgba(46, 159, 211, 0.15);
    transform: scale(1.1);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
}

.logos-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 32px;
    background: rgba(15, 33, 55, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    height: 60px;
    object-fit: contain;
    filter: brightness(1);
    transition: all var(--transition-medium);
}

.partner-logo:hover {
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(46, 159, 211, 0.3));
    transform: scale(1.05);
}

.logo-divider-v {
    width: 1px;
    height: 48px;
    background: var(--glass-border);
}

/* ================================
   STRATEGY SECTION
   ================================ */
.section-strategy {
    background: linear-gradient(180deg, transparent 0%, rgba(46, 159, 211, 0.03) 50%, transparent 100%);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.strategy-card {
    position: relative;
    padding: 36px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-medium);
    cursor: default;
}

.strategy-card:hover {
    border-color: rgba(46, 159, 211, 0.3);
    transform: translateY(-4px);
}

.strategy-card:hover .strategy-glow {
    opacity: 1;
}

.strategy-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.strategy-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(46, 159, 211, 0.2), rgba(0, 212, 255, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.strategy-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.strategy-content p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ================================
   BIDANG SECTION
   ================================ */
.section-bidang {
    background: var(--gradient-hero);
}

.bidang-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bidang-card {
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
}

.bidang-card-wide {
    grid-column: span 3;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.bidang-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(46, 159, 211, 0.1);
    border: 1px solid rgba(46, 159, 211, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--blue-light);
    transition: all var(--transition-medium);
}

.bidang-card-wide .bidang-icon {
    margin: 0 auto 20px;
}

.bidang-icon svg {
    width: 28px;
    height: 28px;
}

.bidang-card:hover .bidang-icon {
    background: rgba(46, 159, 211, 0.2);
    box-shadow: 0 0 20px rgba(46, 159, 211, 0.15);
    transform: scale(1.1) rotate(5deg);
}

.bidang-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.bidang-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

.bidang-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.bidang-card:hover .bidang-hover-line {
    transform: scaleX(1);
}

/* ================================
   ROADMAP / TIMELINE
   ================================ */
.section-roadmap {
    background: linear-gradient(180deg, transparent 0%, rgba(46, 159, 211, 0.02) 50%, transparent 100%);
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue), rgba(46, 159, 211, 0.1));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--blue);
    border: 3px solid var(--navy-deep);
    box-shadow: 0 0 20px rgba(46, 159, 211, 0.4);
    animation: timeline-pulse 3s ease-in-out infinite;
}

@keyframes timeline-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(46, 159, 211, 0.4); }
    50% { box-shadow: 0 0 30px rgba(46, 159, 211, 0.6), 0 0 60px rgba(46, 159, 211, 0.2); }
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-light);
    margin-top: 8px;
    letter-spacing: 1px;
}

.timeline-card {
    width: calc(50% - 60px);
    padding: 28px;
}

.timeline-item:not(.timeline-item-right) .timeline-card {
    margin-right: auto;
}

.timeline-item-right .timeline-card {
    margin-left: auto;
}

.timeline-phase {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(46, 159, 211, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.timeline-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.timeline-list {
    list-style: none;
}

.timeline-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-300);
    margin-bottom: 10px;
    line-height: 1.5;
}

.timeline-list li:last-child {
    margin-bottom: 0;
}

.timeline-list svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--blue-light);
}

/* === KPI Section === */
.kpi-section {
    text-align: center;
}

.kpi-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
}

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

.kpi-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.kpi-progress {
    position: relative;
    width: 100px;
    height: 100px;
}

.kpi-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.kpi-circle-bg {
    fill: none;
    stroke: rgba(46, 159, 211, 0.1);
    stroke-width: 4;
}

.kpi-circle-fill {
    fill: none;
    stroke: url(#kpi-gradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 263.89;
    stroke-dashoffset: 263.89;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.kpi-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.kpi-label {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.4;
}

/* ================================
   PENDEKATAN PELAKSANAAN
   ================================ */
.section-pendekatan {
    background: linear-gradient(180deg, transparent 0%, rgba(46, 159, 211, 0.03) 50%, transparent 100%);
}

.pendekatan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pendekatan-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.pendekatan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gradient-primary);
    transition: height var(--transition-medium);
    border-radius: 0 2px 2px 0;
}

.pendekatan-card:hover::before {
    height: 100%;
}

.pendekatan-card:hover {
    border-color: rgba(46, 159, 211, 0.3);
    transform: translateY(-4px);
}

.pendekatan-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(46, 159, 211, 0.1);
    border: 1px solid rgba(46, 159, 211, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-light);
    transition: all var(--transition-medium);
}

.pendekatan-icon svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
    flex-shrink: 0;
}

.pendekatan-card:hover .pendekatan-icon {
    background: rgba(46, 159, 211, 0.2);
    box-shadow: 0 0 20px rgba(46, 159, 211, 0.15);
    transform: scale(1.1);
}

.pendekatan-content h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.pendekatan-content p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ================================
   TEAM SECTION
   ================================ */
.section-team {
    background: var(--gradient-hero);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: all var(--transition-medium);
}

.team-card:hover {
    border-color: rgba(46, 159, 211, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(46, 159, 211, 0.08);
}

.team-card-lead {
    border-color: rgba(232, 112, 42, 0.3);
}

.team-card-lead:hover {
    border-color: rgba(232, 112, 42, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(232, 112, 42, 0.1);
}

.team-photo-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
}

.team-photo-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--blue), var(--cyan)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ring-rotate 6s linear infinite;
}

.team-card-lead .team-photo-ring {
    background: linear-gradient(135deg, var(--orange), var(--orange-glow)) border-box;
}

@keyframes ring-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--navy-deep);
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-role {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(46, 159, 211, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: center;
}

.team-card-lead .team-role {
    background: rgba(232, 112, 42, 0.15);
    color: var(--orange-glow);
}

.team-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
}

.team-nik {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    position: relative;
    padding: 80px 0 0;
    background: linear-gradient(180deg, transparent 0%, rgba(9, 22, 37, 0.8) 20%);
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(46, 159, 211, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(46, 159, 211, 0.2));
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--blue-light);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--blue-light);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
}

/* ================================
   ANIMATIONS ON SCROLL
   ================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 24px 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-orb {
        width: 280px;
        height: 280px;
    }

    .orb-logo {
        width: 120px;
        height: 120px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

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

    .kpi-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

    .timeline-card {
        width: calc(50% - 40px);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(9, 22, 37, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-medium);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 20px;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: clamp(36px, 8vw, 52px);
    }

    .hero-title .gradient-text {
        font-size: clamp(40px, 10vw, 60px);
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-orb {
        width: 220px;
        height: 220px;
    }

    .orb-logo {
        width: 90px;
        height: 90px;
    }

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

    .bidang-card-wide {
        grid-column: span 1;
    }

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

    .timeline-line {
        left: 20px;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-item,
    .timeline-item-right {
        padding-left: 56px;
    }

    .timeline-card,
    .timeline-item-right .timeline-card {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

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

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

    .footer-brand p {
        max-width: 100%;
    }

    .footer-contact p {
        justify-content: center;
    }

    .logos-display {
        flex-direction: column;
        gap: 24px;
    }

    .logo-divider-v {
        width: 48px;
        height: 1px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 11px;
    }

    .hero-description {
        font-size: 15px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .section-title {
        font-size: clamp(26px, 6vw, 36px);
    }

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