/* ========== DESIGN TOKENS ========== */
:root {
  --forest: #2f6656;
  --forest-dark: #1b3d32;
  --eucalyptus: #72ad8f;
  --sage: #b7c9b6;
  --ivory: #f3f3f1;
  --mist: #d9ddd8;
  --clay: #c76f53;
  --apricot: #dd925f;
  --ink: #233b33;
  --muted: #64716e;
  --bg: #eef0ec;
  --surface: #f7f7f4;
  --line: #d3dad1;
  --shadow: 0 18px 42px rgba(47,102,86,0.10);
  --shadow-hover: 0 24px 52px rgba(47,102,86,0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

/* ========== THEME TOKENS ========== */
:root[data-theme="dark"] {
  --forest: #35b88f;
  --forest-dark: #17856c;
  --eucalyptus: #63d7b3;
  --sage: #84a99a;
  --ivory: rgba(255, 255, 255, 0.08);
  --mist: rgba(255, 255, 255, 0.13);
  --ink: #eafaf4;
  --muted: rgba(239, 255, 249, 0.78);
  --bg: linear-gradient(135deg, #031b1a, #062f2c, #041918);
  --surface: rgba(10, 47, 42, 0.85);
  --line: rgba(110, 231, 200, 0.25);
  --page-bg: linear-gradient(135deg, #031b1a, #062f2c, #041918);
  --panel-bg: rgba(6, 30, 28, 0.88);
  --panel-border: rgba(110, 231, 200, 0.25);
  --text-main: #f4fff9;
  --text-muted: rgba(239, 255, 249, 0.82);
  --accent: #6ee7c8;
  --accent-strong: #35b88f;
  --card-bg: rgba(255, 255, 255, 0.06);
  --popup-bg: rgba(8, 35, 32, 0.95);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 28px 62px rgba(110, 231, 200, 0.15);
}

:root[data-theme="light"] {
  --forest: #0b5c47;
  --forest-dark: #064030;
  --eucalyptus: #3fa185;
  --sage: #96b8a8;
  --ivory: #ffffff;
  --mist: #e2e8e5;
  --ink: #07261d;
  --muted: #4a635a;
  --bg: linear-gradient(135deg, #f0f7f4, #e2f0ea, #f5faf8);
  --surface: rgba(255, 255, 255, 0.9);
  --line: rgba(11, 92, 71, 0.15);
  --page-bg: linear-gradient(135deg, #f0f7f4, #e2f0ea, #f5faf8);
  --panel-bg: rgba(255, 255, 255, 0.85);
  --panel-border: rgba(11, 92, 71, 0.12);
  --text-main: #063025;
  --text-muted: #3a5c53;
  --accent: #11a37f;
  --accent-strong: #0c8265;
  --card-bg: rgba(255, 255, 255, 0.7);
  --popup-bg: rgba(255, 255, 255, 0.95);
  --shadow: 0 16px 40px rgba(11, 92, 71, 0.08);
  --shadow-hover: 0 24px 50px rgba(11, 92, 71, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; }

/* ========== SCREEN SYSTEM ========== */
.screen {
  display: none;
  min-height: 100vh;
  flex-direction: column;
  position: relative;
}
.screen.active { display: flex; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ========== WELCOME SCREEN (VIDEO BG) ========== */
.welcome-screen {
  position: relative;
  overflow: hidden;
}
.welcome-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.15) brightness(0.92) contrast(1.05);
}
.welcome-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5, 32, 28, 0.45) 0%,
      rgba(5, 32, 28, 0.30) 30%,
      rgba(5, 32, 28, 0.38) 60%,
      rgba(5, 32, 28, 0.65) 100%
    );
  z-index: 1;
  pointer-events: none;
}
/* Noise texture overlay for subtle film grain */
.welcome-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: overlay;
}
/* Vignette for cinematic focus */
.welcome-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(3, 18, 15, 0.45) 85%, rgba(3, 18, 15, 0.65) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Ambient edge light */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
  filter: blur(46px);
}
.ambient-glow-teal {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(79, 182, 167, 0.22) 0%, rgba(79, 182, 167, 0.08) 40%, transparent 70%);
  bottom: -120px; left: -100px;
  animation: ambientFloatTeal 10s ease-in-out infinite alternate;
}
.ambient-glow-blue {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(100, 160, 255, 0.15) 0%, rgba(100, 160, 255, 0.05) 40%, transparent 70%);
  top: -80px; right: -80px;
  animation: ambientFloatBlue 12s ease-in-out infinite alternate-reverse;
}
@keyframes ambientFloatTeal {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50%  { transform: translate(20px, -15px) scale(1.06); opacity: 1; }
  100% { transform: translate(-10px, -25px) scale(1.12); opacity: 0.85; }
}
@keyframes ambientFloatBlue {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50%  { transform: translate(-15px, 10px) scale(1.08); opacity: 0.95; }
  100% { transform: translate(10px, 20px) scale(1.05); opacity: 0.75; }
}

.welcome-header {
  position: relative; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 2rem;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 32px rgba(0,0,0,0.12);
  animation: heroFadeDown 0.8s ease both;
}
.welcome-brand {
  display: flex; align-items: center; gap: 0.75rem;
}
.welcome-logo-main {
  width: 48px; height: 48px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3), 0 0 24px rgba(79,182,167,0.15);
  border: 1.5px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}
.welcome-logo-main:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35), 0 0 30px rgba(79,182,167,0.25);
}
.welcome-brand-text {
  font-size: 1.5rem; font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35), 0 0 30px rgba(79,182,167,0.1);
}
.welcome-logos-top {
  display: flex; gap: 0.85rem; align-items: center;
}
.welcome-logos-top img {
  height: 40px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
  opacity: 0.85;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.welcome-logos-top img:hover {
  opacity: 1;
  transform: scale(1.08) translateY(-1px);
  filter: drop-shadow(0 6px 16px rgba(79,182,167,0.35));
}
.welcome-content {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; z-index: 10;
  padding: 2rem;
  text-align: center;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 10px 22px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px) saturate(125%);
  -webkit-backdrop-filter: blur(10px) saturate(125%);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.05em;
  margin-bottom: 1.4rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12), 0 0 20px rgba(79,182,167,0.06);
  animation: heroFadeDown 0.9s ease both;
  animation-delay: 0.15s;
  position: relative;
  overflow: hidden;
}
/* Shimmer effect on badge */
.hero-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: badgeShimmer 4s ease-in-out 2s infinite;
}
@keyframes badgeShimmer {
  0%   { left: -100%; }
  50%  { left: 100%; }
  100% { left: 100%; }
}

.welcome-title {
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  color: #fff;
  text-shadow:
    0 4px 30px rgba(0,0,0,0.4),
    0 0 60px rgba(79,182,167,0.18),
    0 0 120px rgba(79,182,167,0.08),
    0 0 200px rgba(79,182,167,0.04);
  letter-spacing: 0.14em;
  margin-bottom: 0.6rem;
  line-height: 1;
  animation: heroFadeUp 1s ease both, titleFloat 5s ease-in-out 1.5s infinite alternate;
  animation-delay: 0.3s;
}
@keyframes titleFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-5px); }
}
.welcome-subtitle {
  color: rgba(255,255,255,0.92);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  max-width: 540px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  letter-spacing: 0.02em;
  line-height: 1.6;
  animation: heroFadeUp 1s ease both;
  animation-delay: 0.5s;
}

/* Glowing accent line */
.hero-accent-line {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(79,182,167,0.4), #4fb6a7, rgba(79,182,167,0.4), transparent);
  border-radius: 2px;
  margin-bottom: 1.8rem;
  box-shadow: 0 0 18px rgba(79,182,167,0.45), 0 0 45px rgba(79,182,167,0.18);
  animation: heroFadeUp 1s ease both, accentGlow 3.5s ease-in-out infinite alternate;
  animation-delay: 0.6s, 1.6s;
}
@keyframes accentGlow {
  from { box-shadow: 0 0 16px rgba(79,182,167,0.35), 0 0 40px rgba(79,182,167,0.12); width: 90px; opacity: 0.85; }
  to   { box-shadow: 0 0 24px rgba(79,182,167,0.6), 0 0 55px rgba(79,182,167,0.22); width: 110px; opacity: 1; }
}

/* Staggered entry animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* CTA Button */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.4rem;
  padding: 13px 30px;
  background: linear-gradient(135deg, #4fb6a7, #6dd5c3, #8ae0d2, #4fb6a7);
  background-size: 300% 300%;
  color: #062f2b;
  border: none;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(79,182,167,0.35), 0 0 24px rgba(79,182,167,0.18);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.03em;
  animation: heroFadeUp 1s ease both, ctaGradient 6s ease infinite;
  animation-delay: 1s, 1.5s;
  z-index: 10;
  position: relative;
}
@keyframes ctaGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-cta-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 44px rgba(79,182,167,0.5), 0 0 35px rgba(79,182,167,0.28);
  filter: brightness(1.06);
}
.hero-cta-btn:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 6px 24px rgba(79,182,167,0.35);
}
.hero-cta-btn svg {
  transition: transform 0.3s ease;
}
.hero-cta-btn:hover svg {
  transform: translateX(4px);
}

/* Floating Mini CTA below nav */
.hero-floating-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  padding: 13px 30px;
  background: linear-gradient(135deg, #4fb6a7, #6dd5c3, #8ae0d2, #4fb6a7);
  background-size: 300% 300%;
  color: #062f2b;
  border: none;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(79,182,167,0.35), 0 0 24px rgba(79,182,167,0.18);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.03em;
  animation: heroFadeUp 1s ease both, ctaGradient 6s ease infinite;
  animation-delay: 1s, 1.5s;
  z-index: 10;
  position: relative;
}
.hero-floating-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 44px rgba(79,182,167,0.5), 0 0 35px rgba(79,182,167,0.28);
  filter: brightness(1.06);
}
.hero-floating-cta:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 6px 24px rgba(79,182,167,0.35);
}

/* Special Peta Interaktif nav button with teal accent */
.gnav-btn-cta {
  background: rgba(79,182,167,0.12);
  border-color: rgba(79,182,167,0.3) !important;
  color: #fff !important;
}
.gnav-btn-cta:hover {
  background: rgba(79,182,167,0.25);
  border-color: rgba(79,182,167,0.5) !important;
  box-shadow: 0 4px 24px rgba(79,182,167,0.25), 0 0 16px rgba(79,182,167,0.12);
}
/* ========== GLASS NAVIGATION ========== */
.glass-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  box-shadow:
    0 16px 40px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -1px 0 rgba(255,255,255,0.05);
  position: relative;
  z-index: 20;
  pointer-events: auto;
  margin-top: 1.2rem;
  animation: heroFadeUp 1s ease both;
  animation-delay: 0.75s;
  transition: all 0.35s ease;
}

.gnav-group {
  position: relative;
  pointer-events: auto;
}

.gnav-btn {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
  white-space: nowrap;
  letter-spacing: 0.4px;
  position: relative;
  pointer-events: auto;
}
.gnav-btn:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,182,167,0.2), 0 2px 10px rgba(255,255,255,0.1);
  color: #fff;
}
.gnav-btn.active {
  background: rgba(79,182,167,0.2);
  border-color: rgba(79,182,167,0.4);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 24px rgba(79,182,167,0.3), 0 4px 16px rgba(0,0,0,0.15);
}
.gnav-btn.active::before { content: '✨'; margin-right: 6px; font-size: 0.8rem; opacity: 0.8; }
.gnav-btn.active::after { content: '✨'; margin-left: 6px; font-size: 0.8rem; opacity: 0.8; }

/* ========== GLASS DROPDOWN ========== */
.gnav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px) scale(0.95);
  width: 320px;
  max-width: 90vw;
  padding: 18px;
  background: rgba(10, 32, 28, 0.75);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(110, 231, 200, 0.2);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05) inset;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 30;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gnav-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Diamond indicator */
.gnav-dropdown::before {
  content: '◈';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: rgba(79,182,167,0.6);
  text-shadow: 0 0 8px rgba(79,182,167,0.5);
}

/* Dropdown items */
.gnav-drop-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gnav-drop-item:hover {
  background: rgba(79, 182, 167, 0.15);
  border-color: rgba(110, 231, 200, 0.3);
  transform: translateX(4px);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 8px rgba(79, 182, 167, 0.15);
}

.gnav-drop-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.gnav-drop-item:hover .gnav-drop-icon {
  transform: scale(1.1);
  opacity: 1;
}

.gnav-drop-icon-wrap {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.gnav-drop-item:hover .gnav-drop-icon-wrap {
  background: rgba(110, 231, 200, 0.15);
  transform: scale(1.1);
}

.gnav-drop-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}

.gnav-drop-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.gnav-drop-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(239, 255, 249, 0.65);
  line-height: 1.3;
}
  white-space: normal;
}

/* ========== FOOTER ========== */
.welcome-footer, .screen-footer {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center;
  padding: 1.5rem 2rem;
  gap: 0.85rem;
}
.welcome-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: heroFadeUp 1s ease both;
  animation-delay: 1.1s;
}
.screen-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  margin-top: auto;
}
.footer-logos {
  display: flex; align-items: center; gap: 1.5rem;
}
.footer-logos img {
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
}
.footer-logos img:nth-child(2) {
  height: 50px;
  width: auto;
}
.welcome-footer .footer-logos {
  padding: 10px 24px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  gap: 1.8rem;
}
.welcome-footer .footer-logos img {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
  opacity: 0.85;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.welcome-footer .footer-logos img:hover {
  opacity: 1;
  transform: scale(1.08);
  filter: drop-shadow(0 4px 16px rgba(79,182,167,0.35));
}
.footer-credit {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.welcome-footer .footer-credit {
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ========== SCREEN TOPBAR ========== */
.screen-topbar {
  position: sticky; top: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: var(--panel-bg);
  backdrop-filter: blur(12px) saturate(125%);
  -webkit-backdrop-filter: blur(12px) saturate(125%);
  border-bottom: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}
.back-btn {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(110, 231, 200, 0.15);
}
.back-btn:hover { 
  background: var(--accent-strong); 
  transform: translateX(-4px); 
  box-shadow: 0 6px 16px rgba(110, 231, 200, 0.3);
}
.topbar-title {
  font-size: 1.1rem; font-weight: 800;
  color: var(--text-main);
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.topbar-logos {
  display: flex; gap: 0.5rem; align-items: center;
}
.topbar-logos img {
  height: 34px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

:root[data-theme="dark"] .seputar-screen,
:root[data-theme="dark"] .tentang-screen {
  background:
    radial-gradient(circle at 15% 10%, rgba(110, 231, 200, 0.14), transparent 34%),
    radial-gradient(circle at 85% 22%, rgba(221, 146, 95, 0.10), transparent 28%),
    linear-gradient(135deg, #061f1b 0%, #0b302a 54%, #061714 100%);
}

:root[data-theme="dark"] .seputar-card,
:root[data-theme="dark"] .carousel-card,
:root[data-theme="dark"] .team-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(110, 231, 200, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.30);
}

:root[data-theme="dark"] .seputar-hero h2,
:root[data-theme="dark"] .seputar-card h3,
:root[data-theme="dark"] .tentang-content h2,
:root[data-theme="dark"] .carousel-card h4,
:root[data-theme="dark"] .team-card h4 {
  color: var(--text-main);
}

:root[data-theme="dark"] .seputar-hero p,
:root[data-theme="dark"] .seputar-card p,
:root[data-theme="dark"] .tentang-sub,
:root[data-theme="dark"] .carousel-card span,
:root[data-theme="dark"] .team-card span,
:root[data-theme="dark"] .footer-credit {
  color: var(--text-muted);
}

:root[data-theme="dark"] .screen-footer {
  background: rgba(5, 27, 24, 0.92);
  border-top-color: var(--panel-border);
}

/* ========== SEPUTAR ECHOLEQ ========== */
.seputar-screen { background: var(--bg); }
.seputar-content {
  flex: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
.seputar-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}
.seputar-logo {
  width: 120px; height: 120px;
  border-radius: 24px;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  box-shadow: 0 16px 40px rgba(47,102,86,0.2);
}
.seputar-hero h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--forest);
}
.seputar-hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.seputar-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.seputar-card {
  background: rgba(247,247,244,0.85);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.seputar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.seputar-card-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}
.seputar-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 0.6rem;
}
.seputar-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ========== PETA INTERAKTIF ========== */
.peta-screen { background: var(--page-bg); }
.peta-container {
  flex: 1;
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: calc(100vh - 120px);
}
.peta-sidebar {
  background: var(--panel-bg);
  border-right: 1px solid var(--panel-border);
  padding: 1.05rem;
  overflow-y: auto;
  max-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}
.sidebar-section {
  background: var(--card-bg);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 1.05rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.sidebar-section h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  line-height: 1.28;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  padding: 0.6rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(110, 231, 200, 0.1);
}
.stat-card span {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.stat-card strong {
  font-size: 1.3rem;
  color: var(--accent);
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 38px;
  padding: 0.4rem 0.8rem 0.4rem 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  color: #eafaf4;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}
.theme-toggle-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #facc15;
  transition: transform 0.3s ease;
}
.theme-toggle:hover .theme-toggle-icon {
  transform: rotate(15deg);
}
.theme-toggle-text {
  white-space: nowrap;
}
:root[data-theme="light"] .theme-toggle {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: #12372f;
}
:root[data-theme="light"] .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.08);
}
:root[data-theme="light"] .theme-toggle-icon {
  background: rgba(0, 0, 0, 0.1);
  color: #334155;
}
.layer-toggle {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-main);
  transition: color 0.2s;
}
.layer-toggle input { accent-color: var(--accent); width: 18px; height: 18px; }
.legend { display: flex; flex-direction: column; gap: 0.4rem; }
.legend {
  background: rgba(6, 30, 27, 0.72);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  padding: 0.85rem;
}
.legend-title {
  margin-top: 0.35rem;
  color: var(--text-main);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.legend-title:first-child { margin-top: 0; }
.legend-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 750;
  color: var(--text-main);
  line-height: 1.35;
}
.legend-item small {
  display: block;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 1px;
}
.legend-color {
  width: 16px; height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.08);
}
.legend-mitigation-priority {
  width: 16px; height: 16px; border-radius: 4px; background: #e63946; flex-shrink: 0;
}
.legend-mitigation-safe {
  width: 16px; height: 16px; border-radius: 4px; background: #2a9d8f; flex-shrink: 0;
}
.custom-noise-popup .leaflet-popup-content-wrapper,
.custom-priority-popup .leaflet-popup-content-wrapper {
  background: var(--popup-bg);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--panel-border);
  color: var(--text-main);
}
.custom-noise-popup .leaflet-popup-content,
.custom-priority-popup .leaflet-popup-content {
  margin: 0;
}
.custom-noise-popup .leaflet-popup-tip,
.custom-priority-popup .leaflet-popup-tip {
  background: var(--popup-bg);
}
.legend-very-high { background: #D62828; box-shadow: 0 0 10px rgba(214, 40, 40, 0.36); }
.legend-high { background: #F77F00; box-shadow: 0 0 9px rgba(247, 127, 0, 0.28); }
.legend-medium { background: #FCBF49; box-shadow: 0 0 8px rgba(252, 191, 73, 0.22); }
.legend-low { background: #80ED99; box-shadow: 0 0 8px rgba(128, 237, 153, 0.24); }
.legend-very-low { background: #2DC653; box-shadow: 0 0 10px rgba(45, 198, 83, 0.28); }
.legend-mitigation-priority,
.legend-mitigation-safe {
  width: 22px;
  height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
}
.legend-mitigation-priority { background: #ff3a3a; border: 1px solid rgba(255,255,255,0.38); box-shadow: 0 0 0 2px rgba(255, 58, 58, 0.18); }
.legend-mitigation-safe { background: #23d66f; border: 1px solid rgba(255,255,255,0.34); box-shadow: 0 0 0 2px rgba(35, 214, 111, 0.16); }
.legend-boundary {
  width: 24px;
  height: 16px;
  border: 2px solid #4fb6a7;
  border-radius: 4px;
  background: rgba(79, 182, 167, 0.08);
  flex-shrink: 0;
}
.legend-line {
  width: 22px; height: 4px;
  border-radius: 2px;
  background: repeating-linear-gradient(90deg, #263831 0 8px, #f3f3f1 8px 12px);
  flex-shrink: 0;
}
.method-select-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0.6rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--panel-border);
  font-size: 0.84rem;
  color: var(--text-muted);
}
.method-select-row select {
  width: 100%;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  color: var(--text-main);
  font-weight: 700;
}
.map-note-section p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.68;
}
.boundary-source-note {
  margin-top: 0.55rem;
  color: var(--forest) !important;
}
.peta-main {
  position: relative;
  min-height: 640px;
}
.hidden,
.map-hidden {
  display: none !important;
}
.map-mode-chooser {
  position: absolute;
  inset: 1rem;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-content: center;
}
.map-mode-card {
  min-height: 220px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.65rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.84);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.map-mode-card:hover,
.map-mode-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(47,102,86,0.34);
  box-shadow: var(--shadow-hover);
}
.map-mode-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ivory);
  font-size: 1.45rem;
}
.map-mode-card h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.02rem;
}
.map-mode-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}
.map-mode-sidebar {
  display: grid;
  gap: 0.55rem;
}
.map-mode-sidebar-btn {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  color: var(--forest);
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease;
}
.map-mode-sidebar-btn:hover,
.map-mode-sidebar-btn:focus-visible {
  transform: translateY(-1px);
  background: #fff;
}
#map {
  position: absolute; inset: 0;
  background: #d8e5df;
  z-index: 1;
}
#map::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 420;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 24%, rgba(214, 40, 40, 0.08), transparent 26%),
    radial-gradient(circle at 66% 72%, rgba(45, 198, 83, 0.08), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(15, 118, 110, 0.035));
  mix-blend-mode: screen;
  opacity: 0.78;
}
#map::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 421;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 30%, rgba(6, 31, 27, 0.05)),
    radial-gradient(ellipse at center, transparent 46%, rgba(4, 18, 15, 0.16) 100%);
  opacity: 0.62;
}

#map .leaflet-tile-pane {
  filter: saturate(0.92) brightness(1.04) contrast(0.96);
}

#map .noise-idw-overlay {
  transition: all 0.8s ease-in-out;
  filter: saturate(1.04) contrast(1.02);
  mix-blend-mode: normal;
  transform-origin: center;
  outline: 1px solid rgba(255, 255, 255, 0.28);
  will-change: opacity, filter;
}
:root[data-theme="dark"] #map .noise-idw-overlay {
  mix-blend-mode: normal;
  filter: saturate(1.06) contrast(1.04) brightness(1.02);
}

#map .leaflet-control-zoom,
#map .leaflet-control-attribution {
  border: 1px solid rgba(130, 246, 217, 0.26) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
}

#map .leaflet-control-zoom a {
  background: rgba(248, 255, 252, 0.94);
  color: #0f3f36;
  border-bottom-color: rgba(15, 63, 54, 0.12);
  font-weight: 900;
}

#map .leaflet-control-zoom a:hover,
#map .leaflet-control-zoom a:focus-visible {
  background: #ffffff;
  color: #087a63;
}
#map.map-loading::after {
  content: "Memuat layer peta...";
  position: absolute;
  top: 16px;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  z-index: 700;
  width: max-content;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(20,68,58,0.12);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  opacity: 1;
  mix-blend-mode: normal;
  box-shadow: 0 10px 28px rgba(20,68,58,0.14);
}

.noise-analysis-card {
  width: 300px;
  max-width: calc(100vw - 64px);
  padding: 0.85rem 1rem;
  color: #eafaf4;
  background: rgba(10, 36, 30, 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(130, 246, 217, 0.3);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(110, 231, 200, 0.05);
}

.custom-noise-popup .leaflet-popup-content-wrapper {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.custom-noise-popup .leaflet-popup-tip {
  background: rgba(10, 36, 30, 0.9) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(130, 246, 217, 0.3);
}
.floating-card .leaflet-popup-tip-container {
  display: none !important;
}
.noise-popup-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}
.noise-popup-kicker {
  font-size: 0.76rem;
  font-weight: 800;
  color: rgba(234, 250, 244, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.noise-class-badge {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}
.noise-class-very-low { background: #2DC653; }
.noise-class-low { background: #80ED99; color: #123321; }
.noise-class-medium { background: #FCBF49; color: #241706; }
.noise-class-high { background: #F77F00; }
.noise-class-very-high { background: #D62828; }
.noise-popup-main {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.35rem;
}
.noise-popup-main strong {
  font-size: 1.85rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 12px rgba(255,255,255,0.3);
}
.noise-popup-main span {
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(234, 250, 244, 0.6);
}
.noise-popup-status-row {
  margin-bottom: 0.45rem;
}
.noise-popup-distance {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.55rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.2);
  color: #eafaf4;
  font-size: 0.8rem;
  margin-bottom: 0.45rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.rail-icon {
  width: 20px;
  height: 12px;
  display: inline-block;
  color: transparent;
  border-top: 3px solid rgba(255,255,255,0.7);
  border-bottom: 3px solid rgba(255,255,255,0.7);
  background: repeating-linear-gradient(90deg, transparent 0 4px, rgba(255,255,255,0.7) 4px 6px, transparent 6px 10px);
  border-radius: 3px;
  flex: 0 0 auto;
}
.noise-popup-copy {
  display: grid;
  gap: 0.35rem;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.55rem;
}
.noise-popup-copy p,
.noise-popup-note p,
.priority-popup p {
  margin: 0;
  color: rgba(234, 250, 244, 0.8);
  font-size: 0.78rem;
  line-height: 1.45;
}
.noise-popup-copy strong,
.priority-popup strong {
  color: #fff;
}
.noise-popup-actions {
  display: grid;
  grid-template-columns: 1fr;
}
.noise-audio-btn {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0.38rem 0.65rem;
  background: var(--forest);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}
.noise-audio-btn:hover {
  transform: translateY(-1px);
  background: var(--forest-dark);
}
.noise-audio-btn.is-playing {
  background: #ef4444;
}
.noise-audio-btn.is-playing:hover {
  background: #b91c1c;
}
.noise-popup-note {
  width: 270px;
  max-width: calc(100vw - 64px);
  padding: 0.9rem 1rem;
}
.priority-legend {
  background: rgba(5, 31, 28, 0.76);
}
.priority-class-block {
  margin-bottom: 0.85rem;
}
.priority-class-block:last-child {
  margin-bottom: 0;
}
.priority-class-heading {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
  color: var(--text-main);
  font-size: 0.96rem;
  line-height: 1.35;
}
.priority-swatch {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex: 0 0 auto;
}
.priority-swatch-red { background: #ff3a3a; box-shadow: 0 0 0 2px rgba(255, 58, 58, 0.20); }
.priority-swatch-green { background: #23d66f; box-shadow: 0 0 0 2px rgba(35, 214, 111, 0.18); }
.priority-class-block p {
  margin: 0 0 0.35rem 1.55rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.62;
}
.priority-class-block .priority-rec {
  color: var(--accent);
  font-weight: 700;
}
.priority-overlay-img {
  image-rendering: auto;
  mix-blend-mode: normal;
  filter: saturate(1.18) brightness(1.04);
  transform: translateZ(0);
}
.priority-popup {
  width: 260px;
  max-width: calc(100vw - 64px);
  padding: 0.9rem 1rem;
}
.priority-popup-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}
.priority-popup-red .priority-popup-badge { background: #ef4444; }
.priority-popup-green .priority-popup-badge { background: #22c55e; }
.priority-popup p + p {
  margin-top: 0.45rem;
}

/* ========== POINT DETAIL PANEL ========== */
.point-detail-db {
  padding: 0.75rem;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.point-detail-info {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}
.point-detail-info strong {
  color: var(--ink);
}

/* Sound Player in Detail Panel */
.sound-player {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: linear-gradient(135deg, #1b3d32, #2f6656);
  border-radius: var(--radius-sm);
  color: #fff;
}
.sound-player-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.sound-player-db {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.sound-play-btn {
  width: 100%;
  padding: 0.6rem;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.sound-play-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.02);
}
.sound-play-btn.playing {
  background: rgba(215,48,39,0.6);
  border-color: rgba(215,48,39,0.8);
}
.sound-volume-info {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.7;
  text-align: center;
}

/* ========== SOLUSI KAMI ========== */
.solusi-screen {
  background:
    radial-gradient(circle at 12% 12%, rgba(79, 182, 167, 0.22), transparent 34%),
    linear-gradient(135deg, #0b2824 0%, #173d35 48%, #0f221f 100%);
}
.solusi-content {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
.solusi-intro { text-align: center; margin-bottom: 2rem; }
.solusi-intro h2 {
  font-size: 2rem; font-weight: 800; color: #f6fffb; margin-bottom: 0.75rem;
}
.solusi-intro p { color: rgba(255,255,255,0.72); max-width: 700px; margin: 0 auto; line-height: 1.6; }
.solution-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.solution-card {
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.55rem;
  padding: 1rem;
  text-align: left;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  backdrop-filter: blur(8px) saturate(125%);
  -webkit-backdrop-filter: blur(8px) saturate(125%);
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.solution-card:hover,
.solution-card:focus-visible,
.solution-card.active {
  transform: translateY(-2px);
  background: rgba(79, 182, 167, 0.20);
  border-color: rgba(79, 229, 203, 0.72);
  box-shadow: 0 18px 44px rgba(0,0,0,0.24), 0 0 24px rgba(79, 229, 203, 0.18);
}
.solution-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 1.35rem;
}
.solution-card-title {
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.35;
}
.solution-badge {
  display: inline-flex;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: rgba(245, 170, 65, 0.18);
  border: 1px solid rgba(245, 170, 65, 0.42);
  color: #ffd284;
  font-size: 0.7rem;
  font-weight: 800;
}
.solution-detail-panel {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  padding: 18px;
  margin-top: 18px;
  animation: fadeSlide 0.25s ease;
  color: white;
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.solution-detail-panel h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.65rem;
}
.solution-detail-panel p {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  line-height: 1.7;
}
.solution-plant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.8rem;
}
.solution-plant-list span {
  display: inline-flex;
  padding: 0.35rem 0.58rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.84);
  font-size: 0.78rem;
  font-weight: 700;
}
.solution-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin: 1.15rem 0 2rem;
}
.solution-cta {
  min-height: 42px;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.solution-cta:hover,
.solution-cta:focus-visible {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.22);
  box-shadow: 0 14px 30px rgba(0,0,0,0.2);
}
.solution-cta.primary {
  background: linear-gradient(135deg, #2f6656, #4fb6a7);
  border-color: rgba(79, 229, 203, 0.45);
  box-shadow: 0 12px 28px rgba(79, 182, 167, 0.22);
}
.solution-simulation-bridge {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  margin: 1.35rem auto 2.1rem;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 20%, rgba(118, 215, 180, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(126%);
  color: white;
}
.solution-simulation-bridge::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  pointer-events: none;
}
.bridge-kicker {
  display: inline-flex;
  margin-bottom: 0.46rem;
  padding: 0.32rem 0.58rem;
  border: 1px solid rgba(196, 244, 221, 0.30);
  border-radius: 999px;
  background: rgba(12, 37, 31, 0.25);
  color: #d9f8e8;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.solution-simulation-bridge h2 {
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.12;
}
.solution-simulation-bridge p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}
.bridge-metrics {
  display: grid;
  gap: 0.48rem;
  min-width: 165px;
}
.bridge-metrics span {
  display: inline-flex;
  justify-content: center;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}
.solusi-sim-intro {
  margin-top: 2.4rem;
}
.sim-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.sim-controls-panel { display: flex; flex-direction: column; gap: 1rem; }
.sim-control-card, .sim-result-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.slider-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.75rem;
}
.slider-head strong { font-size: 1rem; }
.slider-value { color: var(--forest); font-weight: 800; font-size: 1.5rem; }
.sim-control-card input[type="range"] {
  width: 100%; accent-color: var(--forest);
  height: 8px;
}
.preset-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem; margin-top: 0.85rem;
}
.preset-btn {
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background: var(--ivory);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.82rem;
  transition: all 0.2s;
}
.preset-btn:hover, .preset-btn.active {
  background: var(--forest); color: #fff; border-color: var(--forest);
}
.sim-result-card h3 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--ink); }
.result-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.result-item {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  text-align: center;
}
.result-item span { display: block; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.result-item strong { font-size: 1.1rem; color: var(--forest); }
.result-note { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.sim-3d-container {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 500px;
  position: relative;
}
#sim-canvas {
  width: 100%; height: 100%;
  min-height: 500px;
  display: block;
}
.sim-controls-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(27,61,50,0.75);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  pointer-events: none;
  z-index: 5;
  opacity: 0.9;
  transition: opacity 0.5s ease;
}

/* ========== TENTANG KAMI ========== */
.tentang-screen { background: var(--bg); }
.tentang-content {
  flex: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.tentang-content h2 {
  font-size: 2rem; font-weight: 800; color: var(--forest); margin-bottom: 0.5rem;
}
.tentang-sub {
  color: var(--muted); font-size: 1rem; margin-bottom: 2rem;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}
.team-card {
  width: 180px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.team-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--eucalyptus);
  box-shadow: 0 8px 24px rgba(47,102,86,0.15);
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-card h4 {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0.25rem; color: var(--ink);
}
.team-card span {
  font-size: 0.82rem; color: var(--muted); font-weight: 500;
}

/* ========== MAP CLICK INTERPOLATION POPUP ========== */
.map-click-popup {
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-width: 220px;
}
.map-click-popup .popup-db-badge {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.map-click-popup .popup-info {
  font-size: 0.82rem;
  color: #64716e;
  line-height: 1.7;
}
.map-click-popup .popup-info strong {
  color: #233b33;
}
.map-click-popup .popup-sound-btn {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s;
}
.map-click-popup .popup-sound-btn:hover {
  background: var(--forest-dark);
}

/* ========== TENTANG KAMI / CAROUSEL ========== */
.tentang-content {
  padding: 2rem 2.5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.tentang-content h2 {
  font-size: 2.2rem;
  color: var(--forest);
  margin-bottom: 0.3rem;
}
.tentang-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.team-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 1.5rem 0 2rem;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.team-carousel-track {
  display: flex;
  gap: 1.8rem;
  width: max-content;
  animation: carouselScroll 25s linear infinite;
}
.team-carousel-wrapper:hover .team-carousel-track {
  animation-play-state: paused;
}

@keyframes carouselScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-card {
  flex: 0 0 240px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1rem 1.2rem;
  text-align: center;
  box-shadow: 0 4px 18px rgba(47,102,86,0.08);
  transition: transform 0.4s cubic-bezier(.25,.8,.25,1), box-shadow 0.4s ease;
  cursor: pointer;
}
.carousel-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 40px rgba(47,102,86,0.18), 0 8px 16px rgba(0,0,0,0.06);
  border-color: var(--eucalyptus);
}

.carousel-photo {
  width: 200px;
  height: 250px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 0 auto 0.8rem;
  border: 3px solid var(--line);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.carousel-card:hover .carousel-photo {
  border-color: var(--forest);
  box-shadow: 0 6px 20px rgba(47,102,86,0.22);
}
.carousel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(.25,.8,.25,1);
}
.carousel-card:hover .carousel-photo img {
  transform: scale(1.08);
}

.carousel-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.carousel-card span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ========== TENTANG ITS MODALS ========== */
.its-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 20, 16, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}
.its-modal-overlay.open {
  display: flex;
}

.its-modal-card {
  display: none;
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px) saturate(125%);
  -webkit-backdrop-filter: blur(10px) saturate(125%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.06) inset;
  padding: 2.2rem 2rem 2rem;
  color: #f0efe8;
  animation: itsModalIn 0.45s cubic-bezier(.25,.8,.25,1) forwards;
}
.its-modal-card.active { display: block; }

/* Scrollbar inside modal */
.its-modal-card::-webkit-scrollbar { width: 6px; }
.its-modal-card::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); border-radius: 3px; }
.its-modal-card::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.22); border-radius: 3px; }

@keyframes itsModalIn {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Close button */
.its-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  font-size: 1.35rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
  line-height: 1;
}
.its-modal-close:hover {
  background: rgba(255, 80, 80, 0.45);
  color: #fff;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 18px rgba(255, 80, 80, 0.3);
}

/* Header */
.its-modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-top: 0.5rem;
}
.its-modal-icon {
  display: inline-block;
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  animation: itsIconPulse 2.5s ease-in-out infinite alternate;
}
.its-modal-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 18px;
  margin-bottom: 0.6rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.3), 0 0 20px rgba(114,173,143,0.15);
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  animation: itsIconPulse 2.5s ease-in-out infinite alternate;
}
@keyframes itsIconPulse {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.08) translateY(-4px); }
}
.its-modal-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
  letter-spacing: 0.01em;
}

/* Description */
.its-modal-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.2rem;
  text-align: justify;
}

/* Highlight grid */
.its-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.its-highlight-list {
  grid-template-columns: repeat(2, 1fr);
}
.its-highlight-chip {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: all 0.3s ease;
  cursor: default;
}
.its-highlight-chip span {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.its-highlight-chip:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), 0 0 20px rgba(255,255,255,0.06);
}
.its-highlight-chip-accent {
  background: linear-gradient(135deg, rgba(47,102,86,0.35), rgba(114,173,143,0.25));
  border-color: rgba(114,173,143,0.4);
}
.its-highlight-chip-accent:hover {
  background: linear-gradient(135deg, rgba(47,102,86,0.5), rgba(114,173,143,0.35));
  box-shadow: 0 8px 24px rgba(47,102,86,0.25), 0 0 20px rgba(114,173,143,0.15);
}

/* Clickable chips - interactive behavior */
.its-chip-clickable {
  cursor: pointer;
  position: relative;
}
.its-chip-clickable::after {
  content: 'â€º';
  margin-left: auto;
  font-size: 1rem;
  opacity: 0.4;
  transition: all 0.3s ease;
}
.its-chip-clickable:hover::after {
  opacity: 0.8;
  transform: translateX(2px);
}
.its-chip-clickable.chip-active {
  background: rgba(79, 182, 167, 0.22);
  border-color: rgba(79, 182, 167, 0.55);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(79, 182, 167, 0.2), 0 0 16px rgba(79, 182, 167, 0.1);
}
.its-chip-clickable.chip-active::after {
  content: 'â€¹';
  opacity: 0.8;
}
.its-topic-card {
  cursor: pointer;
  min-height: 54px;
}
.its-topic-card.chip-active, .its-topic-card.active {
  border-color: rgba(118, 255, 216, 0.8);
  background: rgba(118, 255, 216, 0.16);
  box-shadow: 0 0 24px rgba(118, 255, 216, 0.18);
  transform: translateY(-2px);
  color: #fff;
}
.its-topic-card:focus-visible {
  outline: 2px solid rgba(79, 229, 203, 0.78);
  outline-offset: 3px;
}

/* Detail panel - hidden by default, shown on chip click */
.its-detail-panel {
  display: none;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  padding: 18px;
  margin-top: 18px;
  color: white;
}
.its-detail-panel.open {
  display: block;
  animation: fadeSlide 0.25s ease;
}
.its-topic-detail-panel, .topic-detail-panel {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  padding: 18px;
  margin-top: 18px;
  color: white;
  min-height: 76px;
}
.its-topic-detail-panel.open, .topic-detail-panel.has-content {
  animation: fadeSlide 0.25s ease;
}
.its-topic-detail-panel h4, .topic-detail-panel h4 {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.its-topic-detail-panel p, .topic-detail-panel p {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  line-height: 1.7;
}

.topic-placeholder {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin: 0;
}

.topic-detail-content {
  animation: detailFade 0.25s ease;
}

@keyframes detailFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.its-detail-panel h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.its-detail-panel p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}
@keyframes itsFadeSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hint text shown when no detail is open */
.its-detail-hint {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-top: 10px;
  margin-bottom: 14px;
  transition: opacity 0.3s ease;
}
.its-detail-hint.hidden { display: none; }

/* Output box (Field Camp) */
.its-output-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid rgba(114, 173, 143, 0.7);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
}
.its-output-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin-bottom: 0.4rem;
}
.its-output-box p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}

/* Media section */
.its-media-section {
  margin-bottom: 1.5rem;
}
.its-media-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0.7rem;
}
.its-media-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.its-media-card:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 80, 80, 0.35);
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.its-media-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff4444, #cc0000);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255, 68, 68, 0.35);
  transition: transform 0.3s ease;
}
.its-media-card:hover .its-media-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 68, 68, 0.5);
}
.its-media-info {
  flex: 1;
  display: flex; flex-direction: column;
}
.its-media-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}
.its-media-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.1rem;
}
.its-media-btn {
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.its-media-card:hover .its-media-btn {
  background: rgba(255,255,255,0.28);
  color: #fff;
}

/* CTA buttons */
.its-modal-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.its-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.its-cta-primary {
  background: linear-gradient(135deg, #2f6656, #72ad8f);
  color: #fff;
  border-color: rgba(114, 173, 143, 0.4);
  box-shadow: 0 6px 24px rgba(47,102,86,0.35);
}
.its-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(47,102,86,0.5), 0 0 20px rgba(114,173,143,0.2);
  filter: brightness(1.1);
}
.its-cta-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.22);
}
.its-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  color: #fff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .gnav-btn { font-size: 0.84rem; padding: 10px 16px; }
  .glass-nav { gap: 0.25rem; padding: 7px 10px; }
}
@media (max-width: 768px) {
  .glass-nav {
    flex-wrap: wrap; border-radius: 20px;
    gap: 0.25rem; padding: 8px 10px;
    max-width: 95vw;
  }
  .gnav-btn { font-size: 0.78rem; padding: 9px 13px; }
  .welcome-title { font-size: clamp(2.8rem, 10vw, 3.8rem); letter-spacing: 0.1em; }
  .welcome-subtitle { font-size: 1rem; max-width: 90vw; }
  .hero-badge { font-size: 0.72rem; padding: 8px 16px; }
  .welcome-header { padding: 0.75rem 1.2rem; }
  .welcome-logos-top img { height: 32px; }
  .welcome-content { padding: 1.5rem 1rem; }
  .hero-cta-btn { padding: 11px 24px; font-size: 0.86rem; }
  .hero-floating-cta { padding: 11px 24px; font-size: 0.86rem; }
  .gnav-dropdown {
    min-width: 200px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
  }
  .gnav-dropdown.open {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  .peta-container { grid-template-columns: 1fr; }
  .peta-sidebar { max-height: none; }
  .peta-main { min-height: 520px; }
  .map-mode-chooser { grid-template-columns: 1fr; align-content: start; }
  .solution-card-grid { grid-template-columns: 1fr 1fr; }
  .solution-simulation-bridge { grid-template-columns: 1fr; }
  .bridge-metrics { grid-template-columns: 1fr; }
  .sim-layout { grid-template-columns: 1fr; }
  .seputar-cards { grid-template-columns: 1fr; }
  .screen-topbar { padding: 0.5rem 1rem; }
  .topbar-title { font-size: 0.95rem; }
  .topbar-right { gap: 0.45rem; }
  .theme-toggle { padding: 0.36rem 0.7rem; font-size: 0.78rem; }
  .topbar-logos img { height: 28px; width: 28px; }
  .carousel-card { flex: 0 0 180px; padding: 1.2rem 0.8rem 1rem; }
  .carousel-photo { width: 100px; height: 100px; }
  .welcome-footer .footer-logos { gap: 1.2rem; padding: 8px 16px; }
  .welcome-footer .footer-logos img { height: 40px; }
  /* Modal responsive */
  .its-modal-overlay { padding: 1rem; }
  .its-modal-card { padding: 1.5rem 1.2rem; max-height: 92vh; border-radius: 18px; }
  .its-modal-title { font-size: 1.3rem; }
  .its-highlight-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .its-highlight-list { grid-template-columns: 1fr; }
  .its-modal-cta { flex-direction: column; }
  .its-cta-btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .glass-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    gap: 4px;
    padding: 6px;
  }
  .gnav-btn {
    font-size: 0.74rem; padding: 9px 10px;
    text-align: center; border-radius: 12px;
  }
  .gnav-btn.active::before, .gnav-btn.active::after { display: none; }
  .gnav-dropdown {
    position: fixed;
    top: auto; bottom: 1rem;
    left: 5vw !important; right: 5vw;
    width: 90vw;
    transform: none;
    border-radius: 18px;
  }
  .gnav-dropdown.open { transform: none; }
  .welcome-title { font-size: clamp(2.2rem, 12vw, 3rem); }
  .welcome-subtitle { font-size: 0.92rem; }
  .hero-badge { font-size: 0.68rem; padding: 7px 14px; }
  .hero-cta-btn { padding: 10px 20px; font-size: 0.82rem; }
  .hero-floating-cta { padding: 10px 20px; font-size: 0.82rem; }
  .welcome-footer .footer-logos img { height: 36px; }
  .ambient-glow-teal { width: 280px; height: 280px; }
  .ambient-glow-blue { width: 220px; height: 220px; }
  .solution-card-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 104px; }
  .solution-cta-row { flex-direction: column; }
  .solution-cta { width: 100%; }
  .screen-topbar { gap: 0.55rem; }
  .theme-toggle { width: 38px; height: 38px; justify-content: center; padding: 0; }
  .theme-toggle span:last-child { display: none; }
  .topbar-logos { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* ========== PREMIUM EXPO LANDING REFRESH ========== */
.welcome-screen {
  isolation: isolate;
  background: #061d19;
}

.welcome-video-bg {
  filter: saturate(1.08) brightness(0.82) contrast(1.08);
  transform: scale(1.015);
  pointer-events: none;
}

.welcome-overlay {
  background:
    linear-gradient(180deg, rgba(5, 21, 18, 0.62) 0%, rgba(6, 31, 27, 0.36) 34%, rgba(5, 23, 20, 0.72) 72%, rgba(3, 14, 12, 0.88) 100%),
    linear-gradient(115deg, rgba(9, 48, 40, 0.82) 0%, rgba(9, 48, 40, 0.18) 40%, rgba(205, 144, 63, 0.14) 100%);
  pointer-events: none;
}

.welcome-overlay::after {
  opacity: 0.34;
  background-size: 240px 240px;
}

.welcome-vignette {
  background:
    radial-gradient(ellipse at 50% 43%, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0) 34%, rgba(2, 13, 11, 0.60) 88%),
    linear-gradient(90deg, rgba(2, 12, 10, 0.48), transparent 26%, transparent 74%, rgba(2, 12, 10, 0.42));
  pointer-events: none;
}

.welcome-tech-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.34;
  background:
    linear-gradient(90deg, rgba(211, 245, 231, 0.10) 1px, transparent 1px),
    linear-gradient(180deg, rgba(211, 245, 231, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 0%, black 42%, transparent 78%);
}

.welcome-tech-grid::before,
.welcome-tech-grid::after {
  content: "";
  position: absolute;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border: 1px solid rgba(201, 238, 222, 0.14);
  border-radius: 50%;
  transform: rotate(18deg);
}

.welcome-tech-grid::before {
  left: -10vw;
  bottom: 3vh;
}

.welcome-tech-grid::after {
  right: -13vw;
  top: 11vh;
}

.ambient-glow {
  z-index: 4;
  border-radius: 0;
  filter: blur(34px);
  opacity: 0.72;
  pointer-events: none;
}

.ambient-glow-teal {
  width: 64vw;
  height: 32vh;
  left: -20vw;
  bottom: -7vh;
  background: linear-gradient(90deg, rgba(76, 199, 164, 0.30), rgba(76, 199, 164, 0.08), transparent);
  animation: edgeGlowTeal 12s ease-in-out infinite alternate;
}

.ambient-glow-blue {
  width: 48vw;
  height: 30vh;
  right: -17vw;
  top: -7vh;
  background: linear-gradient(110deg, transparent, rgba(95, 165, 181, 0.16), rgba(235, 178, 92, 0.12));
  animation: edgeGlowAmber 14s ease-in-out infinite alternate;
}

@keyframes edgeGlowTeal {
  from { transform: translate3d(0, 0, 0); opacity: 0.54; }
  to { transform: translate3d(4vw, -1vh, 0); opacity: 0.82; }
}

@keyframes edgeGlowAmber {
  from { transform: translate3d(0, 0, 0); opacity: 0.44; }
  to { transform: translate3d(-3vw, 2vh, 0); opacity: 0.70; }
}

.particle-field {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.particle-field span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(222, 255, 239, 0.58);
  box-shadow: 0 0 14px rgba(119, 213, 183, 0.42);
  animation: particleDrift 18s linear infinite;
}

.particle-field span:nth-child(1) { left: 9%; top: 72%; animation-duration: 19s; animation-delay: -4s; }
.particle-field span:nth-child(2) { left: 18%; top: 34%; animation-duration: 23s; animation-delay: -9s; }
.particle-field span:nth-child(3) { left: 31%; top: 63%; animation-duration: 21s; animation-delay: -2s; }
.particle-field span:nth-child(4) { left: 43%; top: 28%; animation-duration: 26s; animation-delay: -13s; }
.particle-field span:nth-child(5) { left: 57%; top: 68%; animation-duration: 20s; animation-delay: -7s; }
.particle-field span:nth-child(6) { left: 66%; top: 42%; animation-duration: 24s; animation-delay: -11s; }
.particle-field span:nth-child(7) { left: 77%; top: 75%; animation-duration: 22s; animation-delay: -5s; }
.particle-field span:nth-child(8) { left: 86%; top: 31%; animation-duration: 27s; animation-delay: -15s; }
.particle-field span:nth-child(9) { left: 93%; top: 58%; animation-duration: 18s; animation-delay: -8s; }
.particle-field span:nth-child(10) { left: 24%; top: 82%; animation-duration: 25s; animation-delay: -16s; }

@keyframes particleDrift {
  from { transform: translate3d(0, 28px, 0); opacity: 0; }
  16% { opacity: 0.62; }
  84% { opacity: 0.44; }
  to { transform: translate3d(22px, -110px, 0); opacity: 0; }
}

.welcome-header {
  position: relative;
  z-index: 50;
  pointer-events: auto;
  min-height: 76px;
  padding: 1rem clamp(1.2rem, 3.4vw, 3rem);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  border-bottom-color: rgba(255,255,255,0.12);
  box-shadow: 0 10px 36px rgba(0,0,0,0.16), inset 0 -1px 0 rgba(255,255,255,0.05);
}

.welcome-logo-main {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border-color: rgba(255,255,255,0.24);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28), 0 0 22px rgba(104, 213, 178, 0.16);
}

.welcome-brand-text {
  font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.38rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.welcome-logos-top {
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(12px) saturate(125%);
}

.welcome-logos-top img {
  height: 38px;
  opacity: 0.9;
}

.welcome-content {
  position: relative;
  z-index: 50;
  pointer-events: auto;
  padding: 2.25rem 1.2rem 1.8rem;
}

.welcome-content::before,
.welcome-content::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(760px, 82vw);
  height: 1px;
  pointer-events: none;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(223, 255, 242, 0.35), transparent);
}

.welcome-content::before { top: 12%; }
.welcome-content::after { bottom: 13%; opacity: 0.55; }

.hero-badge {
  padding: 0.62rem 1.15rem;
  border-color: rgba(219,255,241,0.24);
  background: rgba(255,255,255,0.085);
  color: rgba(248,255,251,0.86);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 16px 42px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.10);
}

.welcome-title {
  font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(4.8rem, 12vw, 9.2rem);
  letter-spacing: 0.09em;
  text-shadow:
    0 10px 38px rgba(0,0,0,0.46),
    0 0 56px rgba(109, 221, 185, 0.17);
  animation: heroFadeUp 1s ease both;
  animation-delay: 0.22s;
}

.welcome-subtitle {
  max-width: 720px;
  color: rgba(247, 255, 251, 0.82);
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
  font-weight: 600;
  text-shadow: 0 3px 18px rgba(0,0,0,0.32);
}

.hero-accent-line {
  width: 128px;
  height: 2px;
  margin-bottom: 1.65rem;
  background: linear-gradient(90deg, transparent, rgba(221, 255, 241, 0.55), rgba(105, 218, 182, 0.95), rgba(236, 181, 94, 0.52), transparent);
  box-shadow: 0 0 20px rgba(105, 218, 182, 0.38);
}

.glass-nav {
  gap: 0.28rem;
  padding: 0.55rem;
  border: 1px solid rgba(226, 255, 245, 0.20);
  background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.075));
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow: 0 24px 70px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.15);
}

.glass-nav::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.045);
  pointer-events: none;
}

.gnav-btn {
  min-height: 45px;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  color: rgba(246,255,251,0.87);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
}

.gnav-btn:hover {
  background: rgba(255,255,255,0.14);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14), 0 0 18px rgba(112, 219, 184, 0.14);
}

.gnav-btn.active {
  background: rgba(255,255,255,0.18);
  border-color: rgba(222,255,243,0.28);
}

.gnav-btn.active::before,
.gnav-btn.active::after {
  display: none;
}

.gnav-btn-cta {
  background: rgba(80, 176, 165, 0.16);
  border-color: rgba(139, 231, 205, 0.28) !important;
}

.gnav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) scale(0.96);
  min-width: 260px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(8, 43, 38, 0.72);
  border: 1px solid rgba(110, 231, 200, 0.28);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
}

.gnav-dropdown.open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

.dropdown-its {
  background: linear-gradient(145deg, rgba(255,250,232,0.24), rgba(255,255,255,0.10));
}

.dropdown-echoleq {
  background: linear-gradient(145deg, rgba(57,160,138,0.28), rgba(255,255,255,0.08));
}

.dropdown-map {
  background: linear-gradient(145deg, rgba(62,146,166,0.28), rgba(255,255,255,0.08));
}

.dropdown-solution {
  min-width: 292px;
  background: linear-gradient(145deg, rgba(225,157,71,0.30), rgba(58,105,83,0.16), rgba(255,255,255,0.08));
  border-color: rgba(255,212,142,0.34);
}

.gnav-drop-item {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 18px;
  border-radius: 16px;
  border: none;
  color: #eafaf4;
  background: rgba(255,255,255,0.08);
  font-size: 0.84rem;
  font-weight: 750;
  text-align: center;
  transition: 0.25s ease;
  margin-bottom: 6px;
}

.gnav-drop-item:last-child {
  margin-bottom: 0;
}

.gnav-drop-item:hover {
  background: rgba(110, 231, 200, 0.16);
  transform: translateY(-2px);
}

.gnav-feature-item {
  justify-content: flex-start;
  background: linear-gradient(135deg, rgba(255,210,133,0.26), rgba(105,218,182,0.14));
  border-color: rgba(255,217,151,0.32);
  font-weight: 900;
}

.gnav-feature-item:hover {
  box-shadow: 0 12px 26px rgba(151, 93, 30, 0.20), 0 0 20px rgba(255, 204, 118, 0.16);
}

.drop-badge {
  min-width: 34px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.24);
  color: #ffe1aa;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.35rem;
  flex-wrap: wrap;
  animation: heroFadeUp 1s ease both;
  animation-delay: 0.96s;
}

.hero-floating-cta,
.hero-secondary-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226,255,245,0.22);
  border-radius: 999px;
  padding: 0.76rem 1.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.hero-floating-cta {
  margin-top: 0;
  color: #082b25;
  background: linear-gradient(135deg, #bdeed6, #78d4b1);
  box-shadow: 0 16px 36px rgba(89, 206, 166, 0.26);
  animation: none;
}

.hero-secondary-cta {
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.075);
  backdrop-filter: blur(12px) saturate(130%);
}

.hero-floating-cta:hover,
.hero-secondary-cta:hover {
  transform: translateY(-3px);
  border-color: rgba(232,255,247,0.36);
}

.hero-floating-cta:hover {
  box-shadow: 0 22px 48px rgba(89, 206, 166, 0.34), 0 0 22px rgba(124, 220, 188, 0.20);
}

.hero-secondary-cta:hover {
  background: rgba(255,255,255,0.14);
  box-shadow: 0 16px 36px rgba(0,0,0,0.22);
}

.welcome-footer {
  padding: 1.35rem 2rem 1.25rem;
}

.welcome-footer .footer-logos {
  padding: 0.68rem 1.25rem;
  border-radius: 20px;
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.075);
  backdrop-filter: blur(16px) saturate(130%);
  box-shadow: 0 18px 48px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
}

.welcome-footer .footer-logos img {
  height: 48px;
}

.welcome-footer .footer-logos img:hover {
  transform: translateY(-2px) scale(1.06);
}

.welcome-footer .footer-credit {
  color: rgba(255,255,255,0.58);
  font-size: 0.78rem;
}

.map-mode-chooser {
  grid-template-columns: repeat(2, minmax(0, 300px));
  justify-content: center;
}

@media (max-width: 768px) {
  .welcome-title {
    font-size: clamp(3rem, 13vw, 4.6rem);
    letter-spacing: 0.06em;
  }

  .welcome-header {
    padding: 0.8rem 1rem;
  }

  .welcome-logos-top {
    padding: 0.32rem 0.42rem;
  }

  .welcome-logos-top img {
    height: 30px;
  }

  .glass-nav {
    max-width: min(95vw, 560px);
    border-radius: 22px;
  }

  .gnav-btn {
    min-height: 40px;
  }

  .hero-cta-row {
    margin-top: 1rem;
  }

  .map-mode-chooser {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .welcome-content::before,
  .welcome-content::after,
  .welcome-tech-grid::before,
  .welcome-tech-grid::after {
    display: none;
  }

  .glass-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 18px;
  }

  .hero-cta-row {
    width: min(92vw, 360px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-floating-cta,
  .hero-secondary-cta {
    width: 100%;
  }

  .welcome-footer .footer-logos {
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .particle-field span,
  .ambient-glow-teal,
  .ambient-glow-blue,
  .hero-badge::after {
    animation: none !important;
  }
}

/* ========== VEGETATION INTERACTIVE UI ========== */
#veg-interactive-container {
  margin-top: 1.5rem;
  background: var(--panel-bg, rgba(8, 43, 38, 0.88));
  border: 1px solid var(--panel-border, rgba(110, 231, 200, 0.22));
  border-radius: var(--radius, 16px);
  padding: 1.5rem;
  box-shadow: var(--shadow, 0 20px 50px rgba(0, 0, 0, 0.35));
  backdrop-filter: blur(12px);
}

.veg-display-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .veg-display-grid {
    grid-template-columns: 1fr;
  }
}

.veg-display-info h4 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent, #6ee7c8);
  margin-bottom: 0.75rem;
}

.veg-display-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted, rgba(234, 250, 244, 0.72));
  margin-bottom: 1.25rem;
}

.veg-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  background: var(--card-bg, rgba(255, 255, 255, 0.08));
  padding: 1rem;
  border-radius: var(--radius-sm, 10px);
  border: 1px solid var(--panel-border, rgba(110, 231, 200, 0.22));
}

.veg-stat span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted, rgba(234, 250, 244, 0.72));
  margin-bottom: 0.2rem;
}

.veg-stat strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main, #eafaf4);
}

.veg-chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.veg-chip {
  padding: 0.4rem 1.1rem;
  background: var(--card-bg, rgba(255, 255, 255, 0.08));
  border: 1px solid var(--panel-border, rgba(110, 231, 200, 0.22));
  border-radius: 99px;
  color: var(--text-main, #eafaf4);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.veg-chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 12px rgba(110, 231, 200, 0.1);
}

.veg-chip.active {
  background: var(--accent, #6ee7c8);
  color: var(--page-bg, #061f1b);
  border-color: var(--accent, #6ee7c8);
  box-shadow: 0 4px 12px rgba(110, 231, 200, 0.3);
}

.veg-display-image {
  border-radius: var(--radius-sm, 10px);
  overflow: hidden;
  border: 1px solid var(--panel-border, rgba(110, 231, 200, 0.22));
  box-shadow: var(--shadow, 0 20px 50px rgba(0, 0, 0, 0.35));
  aspect-ratio: 4/3;
  width: 100%;
}

.veg-display-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.veg-display-image:hover img {
  transform: scale(1.05);
}

/* ========== VEGETATION MITIGATION SLIDER ========== */
.veg-slider-section {
  background: linear-gradient(135deg, rgba(30, 80, 60, 0.35), rgba(10, 50, 44, 0.55)) !important;
  border-color: rgba(110, 231, 200, 0.35) !important;
  position: relative;
  overflow: hidden;
}
.veg-slider-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(110, 231, 200, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: vegGlow 4s ease-in-out infinite alternate;
}
@keyframes vegGlow {
  from { opacity: 0.4; transform: scale(1); }
  to { opacity: 1; transform: scale(1.15); }
}
.veg-slider-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}
.veg-slider-wrap {
  margin-bottom: 1rem;
}
.veg-slider-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.veg-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(90deg, #ef4444 0%, #facc15 35%, #4ade80 65%, #22c55e 100%);
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.veg-slider:hover {
  box-shadow: 0 0 16px rgba(110, 231, 200, 0.35);
}
.veg-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6ee7c8, #35b88f);
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3), 0 0 20px rgba(110, 231, 200, 0.4);
  cursor: grab;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.veg-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35), 0 0 28px rgba(110, 231, 200, 0.55);
}
.veg-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.05);
}
.veg-slider::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6ee7c8, #35b88f);
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3), 0 0 20px rgba(110, 231, 200, 0.4);
  cursor: grab;
}
.veg-slider-ticks {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 2px 0;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.7;
}
.veg-indicators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}
.veg-ind-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(110, 231, 200, 0.18);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  text-align: center;
  transition: all 0.35s ease;
}
.veg-ind-card:hover {
  border-color: rgba(110, 231, 200, 0.4);
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}
.veg-ind-card span {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}
.veg-ind-card strong {
  font-size: 1rem;
  color: var(--accent);
  transition: color 0.4s ease;
}
.veg-status-badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: all 0.4s ease;
}
.status-safe {
  background: rgba(34, 197, 94, 0.25);
  color: #4ade80;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.2);
}
.status-medium {
  background: rgba(250, 204, 21, 0.2);
  color: #facc15;
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.15);
}
.status-priority {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.2);
  animation: priorityPulse 2s ease-in-out infinite;
}
@keyframes priorityPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(239, 68, 68, 0.2); }
  50% { box-shadow: 0 0 22px rgba(239, 68, 68, 0.4); }
}
.veg-audio-btn {
  width: 100%;
  padding: 0.6rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(110, 231, 200, 0.25);
  color: var(--text-main);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.veg-audio-btn i {
  margin-right: 0.4rem;
}
.veg-audio-btn:hover {
  background: rgba(110, 231, 200, 0.15);
  border-color: rgba(110, 231, 200, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(110, 231, 200, 0.2);
}
.veg-audio-btn.is-playing {
  background: rgba(110, 231, 200, 0.2);
  border-color: rgba(110, 231, 200, 0.5);
  box-shadow: 0 0 20px rgba(110, 231, 200, 0.25);
  animation: audioPulse 1.5s ease-in-out infinite;
}
@keyframes audioPulse {
  0%, 100% { box-shadow: 0 0 16px rgba(110, 231, 200, 0.2); }
  50% { box-shadow: 0 0 28px rgba(110, 231, 200, 0.45); }
}

.veg-corridor-line {
  transition: all 0.8s ease-in-out;
  mix-blend-mode: normal;
}
.veg-corridor-core {
  mix-blend-mode: normal;
}

/* Procedural vegetation markers on map */
.tree-icon,
.veg-dynamic-icon,
.veg-tree-icon {
  background: none !important;
  border: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.18));
  pointer-events: none;
}
.veg-plant {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(16px) scale(0.12);
  transform-origin: bottom center;
  transition: transform 0.58s cubic-bezier(0.18, 0.9, 0.24, 1.22), opacity 0.42s ease;
  will-change: transform, opacity;
}
.veg-tree-crown {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 40%;
  background: radial-gradient(circle at 35% 25%, #86efac, #16a34a 50%, #14532d 100%);
  box-shadow: inset -1px -1px 3px rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 4px;
  left: 5px;
}
.veg-tree-crown::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 5px;
  width: 3px;
  height: 5px;
  background: #78350f;
  z-index: -1;
  border-radius: 1px;
}
.veg-plant-bush,
.veg-plant-grass {
  width: 24px;
  height: 24px;
}
.veg-bush-dot {
  position: absolute;
  bottom: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #bbf7d0, #22c55e 48%, #15803d 100%);
  box-shadow: inset -2px -2px 4px rgba(5, 46, 22, 0.26);
}
.veg-bush-dot.dot-a { left: 2px; }
.veg-bush-dot.dot-b { right: 2px; transform: scale(0.92); }
.veg-bush-dot.dot-c { left: 6px; bottom: 9px; transform: scale(0.78); background: radial-gradient(circle at 34% 25%, #dcfce7, #4ade80 52%, #16a34a 100%); }
.veg-grass {
  position: absolute;
  bottom: 4px;
  width: 5px;
  height: 18px;
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, #86efac, #16a34a 70%, #166534);
  transform-origin: bottom center;
}
.veg-grass.blade-a { left: 7px; transform: rotate(-24deg); }
.veg-grass.blade-b { left: 11px; height: 21px; transform: rotate(2deg); }
.veg-grass.blade-c { left: 15px; transform: rotate(25deg); }
.veg-shadow {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 18px;
  height: 5px;
  border-radius: 50%;
  background: rgba(5, 23, 18, 0.28);
  transform: translateX(-50%);
  filter: blur(1px);
  z-index: -1;
}
@keyframes vegFadeIn {
  from { opacity: 0; transform: scale(0.3); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes vegSway {
  0%, 100% { margin-left: 0; }
  50% { margin-left: 1.5px; }
}

.veg-dynamic-icon {
  pointer-events: none;
}
.veg-plant {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
  transform-origin: bottom center;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

/* ========== NOISE IDW OVERLAY SMOOTH TRANSITION ========== */
.noise-idw-overlay {
  transition: opacity 0.45s ease-out;
  image-rendering: auto;
  will-change: opacity;
}

/* ========== RESPONSIVE MOBILE LAYOUT ========== */
.mobile-sidebar-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s;
  z-index: 1000;
}
.mobile-sidebar-toggle:active { transform: scale(0.95); }

.mobile-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 900px) {
  /* Typography */
  html, body {
    font-size: clamp(14px, 2.5vw, 16px);
  }

  /* Navigation & Topbar */
  .mobile-sidebar-toggle { display: block; }
  .topbar-logos img:nth-child(2), .topbar-logos img:nth-child(3) { display: none; /* Sembunyikan logo ITS/SBY di mobile topbar agar tidak sesak */ }
  .theme-toggle-text { display: none; }
  .theme-toggle { padding: 0.4rem; border-radius: 50%; min-width: 38px; }
  
  /* Map Layout */
  .peta-container {
    display: block; /* Hilangkan grid */
    position: relative;
    height: calc(100vh - 60px);
    min-height: auto;
  }
  .peta-main {
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
  }
  #map {
    height: 100% !important;
  }
  
  /* Sidebar Mobile (Collapsible) */
  .peta-sidebar {
    position: fixed;
    top: 60px; /* Di bawah topbar */
    left: -100%; /* Sembunyi ke kiri */
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    z-index: 1050;
    background: var(--panel-bg);
    max-height: calc(100vh - 60px);
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 10px 0 30px rgba(0,0,0,0.3);
    padding-bottom: 2rem;
  }
  .peta-sidebar.active {
    left: 0;
  }
  
  /* Controls Enlarge for Touch */
  input[type="range"] {
    height: 12px;
  }
  input[type="range"]::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
  }
  .btn, .layer-toggle, .map-mode-card {
    padding: 1rem;
    font-size: 1rem;
  }
  .legend-color, .legend-mitigation-priority, .legend-mitigation-safe, .legend-boundary {
    width: 24px; height: 24px;
  }
  
  /* Map Controls (Zoom) Overlay Adjustments */
  .leaflet-control-zoom a {
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    font-size: 1.2rem !important;
  }
  
  /* Welcome Screen */
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .welcome-footer {
    padding: 1rem;
  }
  .footer-logos {
    gap: 0.8rem;
  }
  .footer-logos img {
    height: 35px;
  }

  /* Veg Chart Mobile */
  .veg-analytics-container { padding: 1.5rem 1rem; }
  .veg-chart-wrapper { padding: 1.5rem 1rem; }
  .veg-bar-row { flex-direction: column; align-items: flex-start; margin-bottom: 15px; }
  .veg-bar-label { position: relative; left: 0; text-align: left; margin-bottom: 6px; }
  .veg-bar-track { width: 100%; }
}

@media screen and (max-width: 480px) {
  .peta-sidebar { width: 100vw; max-width: 100vw; }
}

/* ========== VEGETATION ANALYTICS CHART & TABLE ========== */
.veg-analytics-container {
  margin-top: 2rem;
  background: rgba(18, 22, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 3.5rem 3rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.veg-analytics-container::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at top right, rgba(110, 231, 200, 0.08), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.veg-analytics-header {
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.veg-analytics-header h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  background: linear-gradient(135deg, #ffffff, #a0d8c5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.veg-analytics-header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* CHART */
.veg-chart-wrapper {
  position: relative;
  margin-bottom: 5rem;
  padding: 3rem 2.5rem 3rem 160px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 8px 32px rgba(0,0,0,0.4);
  z-index: 1;
}
.veg-chart-wrapper::after {
  content: ''; 
  position: absolute; 
  left: 140px; 
  top: 3rem; 
  bottom: 3rem; 
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0.15) 80%, transparent);
}
.veg-chart {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.veg-bar-wrap {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding-right: 75px;
}
.veg-bar-label {
  position: absolute;
  left: -140px;
  width: 120px;
  font-size: 1rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  letter-spacing: 0.01em;
}
.veg-bar-track {
  flex: 1;
  height: 22px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.6);
}
.veg-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.25));
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  transform-origin: left center;
}
.veg-bar-glow {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: inherit;
  filter: blur(14px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}
.veg-bar-value {
  position: absolute;
  right: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.4s ease;
  letter-spacing: 0.02em;
}

/* Hover & Active States */
.veg-bar-wrap:hover .veg-bar-label, .veg-bar-wrap.active .veg-bar-label {
  color: #ffffff;
  transform: translateX(-5px);
  text-shadow: 0 0 12px rgba(255,255,255,0.2);
}
.veg-bar-wrap:hover .veg-bar-fill {
  transform: scaleY(1.3);
}
.veg-bar-wrap:hover .veg-bar-glow, .veg-bar-wrap.active .veg-bar-glow {
  opacity: 0.8;
}
.veg-bar-wrap:hover .veg-bar-value, .veg-bar-wrap.active .veg-bar-value {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(255,255,255,0.6);
  transform: translateX(6px) scale(1.05);
}

/* Custom Themes for Specific Vegetation */
.theme-bambu { background: linear-gradient(90deg, #06b6d4, #6ee7b7); box-shadow: 0 0 20px rgba(6, 182, 212, 0.35); }
.theme-trembesi { background: linear-gradient(90deg, #10b981, #06b6d4); box-shadow: 0 0 20px rgba(16, 185, 129, 0.35); }
.theme-ketapang { background: linear-gradient(90deg, #84cc16, #14b8a6); box-shadow: 0 0 20px rgba(132, 204, 22, 0.35); }
/* Default Theme for others */
.theme-tabebuya, .theme-pucukmerah, .theme-bougenville, .theme-semak { background: linear-gradient(90deg, #6366f1, #a855f7); box-shadow: 0 0 20px rgba(99, 102, 241, 0.25); }

/* TOOLTIP */
.veg-chart-tooltip {
  position: absolute;
  background: rgba(10, 14, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.4rem;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08);
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px) scale(0.92);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 50;
  min-width: 280px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.veg-chart-tooltip.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.veg-chart-tooltip h4 {
  color: #ffffff;
  margin-bottom: 0.85rem;
  font-size: 1.25rem;
  font-weight: 900;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.75rem;
}
.vt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  font-size: 0.95rem;
}
.vt-row span { color: rgba(255, 255, 255, 0.65); font-weight: 500; }
.vt-row strong { color: #ffffff; font-weight: 800; }

/* IMAGE SHOWCASE */
.veg-image-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: inset 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
  min-height: 250px;
}
.vis-image-col {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.vis-image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
  pointer-events: none;
}
.vis-img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: block;
}
.vis-image-col:hover .vis-img {
  transform: scale(1.05);
}
.vis-info-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vis-info-col h4 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.vis-info-col p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.vis-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: auto;
}
.vis-stat {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  flex: 1;
}
.vis-stat span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.vis-stat strong {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 800;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* TABLE */
.veg-table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}
.veg-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
.veg-table th {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
  padding: 1.4rem 1.6rem;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.veg-table td {
  padding: 1.3rem 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.veg-table tr:last-child td {
  border-bottom: none;
}
.veg-table tr:hover td {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}
.veg-table tr.selected-row td {
  background: rgba(110, 231, 200, 0.08);
  color: #ffffff;
}

.eff-badge {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.eff-sangat-tinggi { background: rgba(6, 182, 212, 0.15); color: #6ee7b7; border: 1px solid rgba(110, 231, 183, 0.4); }
.eff-tinggi { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(52, 211, 153, 0.4); }
.eff-sedang { background: rgba(132, 204, 22, 0.15); color: #a3e635; border: 1px solid rgba(163, 230, 53, 0.4); }
.eff-rendah { background: rgba(99, 102, 241, 0.15); color: #a5b4fc; border: 1px solid rgba(165, 180, 252, 0.4); }

/* Responsive */
@media (max-width: 768px) {
  .veg-analytics-container { padding: 2.5rem 1.5rem; }
  .veg-chart-wrapper {
    padding: 2rem 1.5rem;
  }
  .veg-chart-wrapper::after { display: none; }
  .veg-bar-label {
    position: relative;
    left: 0;
    width: 100%;
    text-align: left;
    margin-bottom: 0.6rem;
  }
  .veg-bar-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
    gap: 0.3rem;
  }
  .veg-bar-track { width: 100%; }
  .veg-bar-value { position: relative; right: auto; margin-top: 0.5rem; align-self: flex-end; }
  .veg-bar-wrap:hover .veg-bar-label, .veg-bar-wrap.active .veg-bar-label { transform: none; }
  .veg-bar-wrap:hover .veg-bar-value, .veg-bar-wrap.active .veg-bar-value { transform: none; }
  
  .veg-image-showcase {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .vis-img {
    max-height: 200px;
  }
}

/* ========== ACADEMIC CARD (ITS & Geomatika) ========== */
.academic-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--card-bg);
  border: 1px solid var(--panel-border);
  border-radius: 32px;
  padding: 40px;
  margin-top: 60px;
  margin-bottom: 60px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  transition: all 0.35s ease;
}
.academic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.25), 0 0 40px rgba(79,182,167,0.1);
}
.card-logo img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.card-text {
  flex: 1;
}
.card-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
}
.card-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.academic-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.35s ease;
}
.academic-link:hover {
  background: var(--accent-strong);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(79,182,167,0.3);
}

/* ========== MODERN TEAM SHOWCASE ========== */
.team-showcase {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--panel-border);
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(79,182,167,0.12);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  text-align: center;
  transition: all 0.35s ease;
}
.team-header-center {
  margin-bottom: 2rem;
}
.team-header-center .section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}
.team-header-center .section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.modern-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.modern-slider-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: modernSlide 30s linear infinite;
  touch-action: pan-x;
}
.modern-slider-track:hover {
  animation-play-state: paused;
}
@keyframes modernSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

.modern-team-card {
  width: 200px;
  background: var(--card-bg);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modern-team-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 32px rgba(79,182,167,0.2), 0 0 16px rgba(79,182,167,0.1);
  border-color: rgba(79,182,167,0.4);
}
.modern-photo-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  position: relative;
  transition: all 0.35s ease;
}
.modern-team-card:hover .modern-photo-wrap {
  border-color: rgba(79,182,167,0.5);
  box-shadow: 0 10px 24px rgba(79,182,167,0.25);
}
.modern-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.modern-team-card:hover .modern-photo-wrap img {
  transform: scale(1.08);
}
.modern-team-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .academic-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1.2rem;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .card-logo img {
    width: 120px;
    height: 120px;
  }
  .team-showcase {
    padding: 1.5rem;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .modern-slider-wrapper {
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  }
  .modern-team-card {
    width: 140px;
    padding: 1rem;
  }
  .modern-photo-wrap {
    width: 76px;
    height: 76px;
    margin-bottom: 0.8rem;
  }
  .modern-team-card h4 {
    font-size: 0.9rem;
  }
}

/* ========== MOBILE NAV ========== */
.mobile-nav-toggle {
  display: none;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 10px 20px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 50;
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
  margin-top: 1rem;
}
.mobile-nav-toggle:hover {
  background: rgba(255,255,255,0.2);
}
.mobile-nav-toggle.active {
  background: rgba(79,182,167,0.3);
  border-color: rgba(79,182,167,0.6);
}

@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 1rem auto 0;
  }
  .glass-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 90%;
    max-width: 320px;
    padding: 1.5rem;
    border-radius: 24px;
    background: rgba(10, 32, 28, 0.85);
    backdrop-filter: blur(20px) saturate(150%);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(130, 246, 217, 0.2);
    z-index: 45;
  }
  .glass-nav.mobile-open {
    display: flex;
    animation: fadeInNav 0.35s ease forwards;
  }
  @keyframes fadeInNav {
    from { opacity: 0; transform: translateX(-50%) translateY(0); }
    to { opacity: 1; transform: translateX(-50%) translateY(10px); }
  }
  .gnav-group {
    width: 100%;
  }
  .gnav-btn {
    width: 100%;
    text-align: left;
    padding: 14px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 8px;
  }
  .gnav-btn:hover {
    background: rgba(255,255,255,0.1);
  }
  .gnav-dropdown {
    position: static;
    transform: none !important;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 16px;
    display: none;
    background: rgba(0,0,0,0.2);
    box-shadow: inset 0 4px 12px rgba(0,0,0,0.2);
    border: none;
  }
  .gnav-dropdown.open {
    display: flex;
    animation: none;
  }
  .gnav-dropdown::before {
    display: none;
  }
  .gnav-drop-item {
    padding: 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    text-align: left;
  }
  .gnav-drop-item:hover {
    background: rgba(79,182,167,0.15);
    box-shadow: none;
    transform: translateX(4px);
  }
}

/* ========== STARTUP CARD SYSTEM ========== */
.tentang-screen {
  background: linear-gradient(135deg, #031b1a, #062f2c, #041918);
}
:root[data-theme="light"] .tentang-screen {
  background: linear-gradient(160deg, #f0f7f4, #e2f0ea, #f5faf8);
}
.tentang-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

/* --- Startup Card --- */
.startup-card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2.8rem;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(110,231,200,0.12);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.45s cubic-bezier(.175,.885,.32,1.275), box-shadow 0.45s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: tabFadeIn 0.5s ease both;
}
.startup-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(110,231,200,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.startup-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 40px rgba(110,231,200,0.08);
  border-color: rgba(110,231,200,0.3);
}

/* --- Logo Wrap --- */
.s-card-left { flex-shrink: 0; }
.s-card-logo-wrap {
  width: 140px; height: 140px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(110,231,200,0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.s-card-logo-wrap img {
  width: 100px; height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.startup-card:hover .s-card-logo-wrap {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(110,231,200,0.15);
}

/* --- Card Text --- */
.s-card-right { flex: 1; min-width: 0; }
.s-card-title {
  font-size: 1.6rem; font-weight: 900; letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #ffffff, #82f6d9);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.s-card-desc {
  font-size: 0.98rem; line-height: 1.75;
  color: rgba(239,255,249,0.8);
  margin-bottom: 1.5rem;
}
.s-card-subtitle {
  font-size: 1rem; color: rgba(239,255,249,0.6);
  margin-bottom: 1.5rem;
}

/* --- Chips --- */
.s-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem; }
.s-chip {
  padding: 6px 16px;
  background: rgba(110,231,200,0.08);
  border: 1px solid rgba(110,231,200,0.25);
  border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
  color: #6ee7c8;
  transition: all 0.3s ease;
  cursor: default;
}
.s-chip:hover {
  background: rgba(110,231,200,0.2);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 16px rgba(110,231,200,0.25);
  color: #fff;
}

/* --- Mini Info Cards --- */
.s-mini-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.s-mini-card {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(110,231,200,0.1);
  border-radius: 14px;
  font-size: 0.82rem; font-weight: 600;
  color: rgba(239,255,249,0.85);
  transition: all 0.3s ease;
}
.s-mini-card i { color: #6ee7c8; font-size: 0.9rem; }
.s-mini-card:hover {
  background: rgba(110,231,200,0.08);
  border-color: rgba(110,231,200,0.25);
  transform: translateY(-2px);
}

/* --- Buttons --- */
.s-card-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.s-btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(110,231,200,0.15), rgba(79,182,167,0.35));
  border: 1px solid rgba(110,231,200,0.4);
  border-radius: 999px;
  color: #fff; font-weight: 700; font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(79,182,167,0.2);
  transition: all 0.35s cubic-bezier(.175,.885,.32,1.275);
}
.s-btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(110,231,200,0.35);
  background: linear-gradient(135deg, rgba(110,231,200,0.25), rgba(79,182,167,0.5));
}
.s-btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 12px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(110,231,200,0.2);
  border-radius: 999px;
  color: #6ee7c8; font-weight: 700; font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.35s ease;
}
.s-btn-secondary:hover {
  background: rgba(110,231,200,0.12);
  border-color: rgba(110,231,200,0.4);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(110,231,200,0.2);
}

/* --- Vertical Card (Tim) --- */
.startup-card-vertical {
  padding: 2.5rem;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(110,231,200,0.12);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: tabFadeIn 0.5s ease both;
}
.s-card-header { text-align: center; margin-bottom: 2rem; }
.team-role {
  display: block; font-size: 0.75rem; font-weight: 600;
  color: #6ee7c8; margin-top: 4px; letter-spacing: 0.3px;
}
.team-contact-section { text-align: center; margin-top: 2rem; }
.academic-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: all 0.4s ease;
}
.academic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.3);
  border-color: rgba(130, 246, 217, 0.25);
}
.academic-card .card-logo img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25));
}
.academic-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #fff, #b7c9b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.academic-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.academic-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: rgba(79, 182, 167, 0.15);
  border: 1px solid rgba(79, 182, 167, 0.3);
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.academic-link:hover {
  background: rgba(79, 182, 167, 0.3);
  box-shadow: 0 8px 24px rgba(79, 182, 167, 0.2);
  transform: translateX(4px);
}
.focus-badge {
  display: inline-flex;
  padding: 10px 20px;
  background: rgba(110, 231, 200, 0.1);
  border-left: 3px solid #6ee7c8;
  border-radius: 6px;
  font-weight: 600;
  color: #6ee7c8;
  font-size: 0.95rem;
}

/* TEAM IG BUTTON */
.ig-neon-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 14px 28px;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 32px rgba(131, 58, 180, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.ig-neon-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045, #6ee7c8);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}
.ig-neon-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(131, 58, 180, 0.4), 0 0 20px rgba(110, 231, 200, 0.3);
  background: rgba(30, 30, 30, 0.8);
}
.ig-neon-btn:hover::before {
  opacity: 1;
}
.ig-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}
.ig-neon-btn:hover .ig-icon-wrap {
  transform: scale(1.15) rotate(5deg);
}

@media (max-width: 768px) {
  .academic-card { flex-direction: column; text-align: center; padding: 1.8rem; gap: 1rem; }
}

/* ========== ITS PREMIUM CARD ========== */
.its-premium-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(130, 246, 217, 0.15);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2), 0 0 30px rgba(79, 182, 167, 0.05);
  border-radius: 32px;
  padding: 42px;
  margin-top: 50px;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 28px;
  align-items: center;
  transition: all 0.4s ease;
}
.its-premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.3), 0 0 40px rgba(79, 182, 167, 0.15);
  border-color: rgba(130, 246, 217, 0.35);
}
.its-premium-card .card-logo img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25));
}
.its-btn-official {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 14px 28px;
  background: rgba(79, 182, 167, 0.15);
  border: 1px solid rgba(79, 182, 167, 0.4);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 182, 167, 0.1);
}
.its-btn-official:hover {
  background: rgba(79, 182, 167, 0.35);
  box-shadow: 0 8px 24px rgba(79, 182, 167, 0.3);
  transform: translateX(4px);
}

/* ========== GEOMATIKA PREMIUM CARD ========== */
.geomatika-premium-card {
  background: rgba(10, 25, 20, 0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(110, 231, 200, 0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), inset 0 0 40px rgba(110, 231, 200, 0.05);
  border-radius: 32px;
  padding: 42px;
  margin-top: 50px;
  margin-bottom: 3.5rem;
  display: flex;
  gap: 28px;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.geomatika-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 50px rgba(110, 231, 200, 0.15);
  border-color: rgba(110, 231, 200, 0.5);
}
.geomatika-premium-card .card-logo img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(110, 231, 200, 0.2));
}
.geomatika-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #6ee7c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.geomatika-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(239, 255, 249, 0.85);
  margin-bottom: 1.8rem;
}

/* Geo Chips */
.geo-chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.geo-chip {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(110, 231, 200, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6ee7c8;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.geo-chip:hover {
  background: rgba(110, 231, 200, 0.2);
  box-shadow: 0 0 15px rgba(110, 231, 200, 0.3);
  transform: translateY(-2px);
  color: #fff;
}

/* Geo Buttons */
.geo-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.geo-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 14px 28px;
  background: linear-gradient(135deg, rgba(110, 231, 200, 0.2), rgba(79, 182, 167, 0.4));
  border: 1px solid rgba(110, 231, 200, 0.5);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(79, 182, 167, 0.25);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.geo-btn-primary:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 12px 32px rgba(110, 231, 200, 0.4);
  background: linear-gradient(135deg, rgba(110, 231, 200, 0.3), rgba(79, 182, 167, 0.6));
}

.geo-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(110, 231, 200, 0.2);
  border-radius: 999px;
  color: #6ee7c8;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.geo-btn-secondary:hover {
  background: rgba(110, 231, 200, 0.15);
  border-color: rgba(110, 231, 200, 0.4);
  color: #fff;
  box-shadow: 0 0 20px rgba(110, 231, 200, 0.2);
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .its-premium-card, .geomatika-premium-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 20px;
  }
  .geo-chips-container, .geo-action-buttons {
    justify-content: center;
  }
}

/* ========== TENTANG TABS ========== */
.tentang-tab-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px;
  border-radius: 999px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(110,231,200,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  max-width: 700px;
  margin-inline: auto;
}
.t-tab-btn {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(239,255,249,0.5);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(.175,.885,.32,1.275);
  white-space: nowrap;
}
.t-tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.t-tab-btn.active {
  background: linear-gradient(135deg, rgba(110,231,200,0.2), rgba(79,182,167,0.35));
  color: #fff;
  box-shadow: 0 4px 20px rgba(110,231,200,0.25);
  border-color: rgba(110,231,200,0.3);
  transform: scale(1.03);
}
.t-tab-pane {
  display: none;
  animation: tabFadeIn 0.5s ease forwards;
}
.t-tab-pane.active {
  display: block;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
  .tentang-tab-nav {
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 8px;
    gap: 6px;
  }
  .t-tab-btn {
    flex: 1 1 calc(50% - 6px);
    padding: 10px 12px;
    font-size: 0.8rem;
  }
}



/* ========== THEME TOGGLE PREMIUM ========== */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--text-main);
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: rgba(255, 255, 255, 0.4);
}
.theme-toggle-icon {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}
.theme-toggle:hover .theme-toggle-icon {
  transform: rotate(180deg);
}

:root[data-theme="light"] .theme-toggle {
  background: rgba(11, 92, 71, 0.08);
  border-color: rgba(11, 92, 71, 0.15);
  box-shadow: 0 4px 15px rgba(11, 92, 71, 0.05);
}
:root[data-theme="light"] .theme-toggle:hover {
  background: rgba(11, 92, 71, 0.12);
  border-color: rgba(11, 92, 71, 0.25);
  box-shadow: 0 8px 25px rgba(11, 92, 71, 0.1);
}

/* =========================================
   ULTIMATE MOBILE RESPONSIVE FIXES
   ========================================= */
@media (max-width: 992px) {
  /* Fix Navbar Overflow & Layout */
  .glass-nav {
    display: flex !important; /* Force visible without toggle */
    flex-wrap: wrap;
    justify-content: center;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 0 !important;
    gap: 8px !important;
    border-radius: 16px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
  .gnav-group {
    width: auto !important;
    flex: 1 1 calc(50% - 8px);
    min-width: 140px;
  }
  .gnav-btn {
    width: 100%;
    padding: 10px 8px !important;
    font-size: 0.85rem !important;
    border-radius: 12px !important;
    text-align: center;
    justify-content: center;
  }
  .gnav-dropdown {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.95) !important;
    width: 90vw !important;
    max-width: 320px;
    z-index: 9999 !important;
  }
  .gnav-dropdown.open {
    transform: translate(-50%, -50%) scale(1) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6) !important;
  }

  /* Fix Hero Section */
  .welcome-content {
    padding: 0 1rem !important;
    margin-top: 2rem !important;
    width: 100%;
    box-sizing: border-box;
  }
  .welcome-title {
    font-size: 2.5rem !important;
    line-height: 1.1 !important;
    margin-bottom: 0.5rem !important;
  }
  .welcome-subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
    padding: 0 10px;
  }
  .hero-badge {
    font-size: 0.75rem !important;
    padding: 6px 12px !important;
    white-space: normal !important;
    text-align: center;
  }

  /* Mobile Responsive Fixes for Startup Card */
  .startup-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.2rem !important;
    gap: 1.2rem !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(110,231,200,0.08) !important;
    backdrop-filter: blur(20px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(120%) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
  }
  .s-card-actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }
  .s-card-actions a {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
  .s-chips {
    justify-content: center;
  }
  .s-mini-cards {
    grid-template-columns: 1fr;
  }
  .s-card-logo-wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto;
  }
  .s-card-logo-wrap img {
    width: 60px;
    height: 60px;
  }
  .startup-card-vertical {
    padding: 1.5rem 1rem !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(110,231,200,0.08) !important;
    backdrop-filter: blur(20px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(120%) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
  }

  /* Fix Seputar ECHOLEQ Grid */
  .seputar-cards {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .seputar-card {
    padding: 1.2rem !important;
  }
}

/* Light Mode Overrides for Startup Cards & Tabs */
:root[data-theme="light"] .s-card-title {
  background: linear-gradient(135deg, var(--forest-dark), var(--accent-strong));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
:root[data-theme="light"] .s-card-desc,
:root[data-theme="light"] .s-card-subtitle {
  color: var(--text-muted);
}
:root[data-theme="light"] .startup-card,
:root[data-theme="light"] .startup-card-vertical {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(11, 92, 71, 0.15);
  box-shadow: 0 20px 50px rgba(11, 92, 71, 0.1);
}
:root[data-theme="light"] .s-card-logo-wrap {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(11, 92, 71, 0.15);
  box-shadow: 0 8px 30px rgba(11, 92, 71, 0.1);
}
:root[data-theme="light"] .s-chip {
  background: rgba(11, 92, 71, 0.06);
  border-color: rgba(11, 92, 71, 0.25);
  color: var(--accent-strong);
}
:root[data-theme="light"] .s-chip:hover {
  background: rgba(11, 92, 71, 0.12);
  color: var(--forest-dark);
}
:root[data-theme="light"] .s-mini-card {
  background: rgba(11, 92, 71, 0.03);
  border-color: rgba(11, 92, 71, 0.15);
  color: var(--text-muted);
}
:root[data-theme="light"] .s-mini-card:hover {
  background: rgba(11, 92, 71, 0.08);
  border-color: rgba(11, 92, 71, 0.25);
}
:root[data-theme="light"] .s-btn-secondary {
  background: rgba(11, 92, 71, 0.05);
  border-color: rgba(11, 92, 71, 0.3);
  color: var(--accent-strong);
}
:root[data-theme="light"] .s-btn-secondary:hover {
  background: rgba(11, 92, 71, 0.15);
  color: var(--forest-dark);
}
:root[data-theme="light"] .tentang-tab-nav {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(11, 92, 71, 0.2);
  box-shadow: 0 8px 32px rgba(11, 92, 71, 0.1);
}
:root[data-theme="light"] .t-tab-btn {
  color: var(--text-muted);
}
:root[data-theme="light"] .t-tab-btn:hover {
  background: rgba(11, 92, 71, 0.06);
  color: var(--text-main);
}
:root[data-theme="light"] .t-tab-btn.active {
  background: rgba(11, 92, 71, 0.12);
  color: var(--forest-dark);
  border-color: rgba(11, 92, 71, 0.3);
  box-shadow: 0 4px 15px rgba(11, 92, 71, 0.05);
}

/* ========== RESPONSIVE MOBILE TOTAL ========== */
.mobile-menu-btn {
  display: none;
}
.mobile-menu-overlay {
  display: none;
}

@media (max-width: 768px) {
  /* OPTIMASI MOBILE */
  html, body {
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* MENU MOBILE */
  .glass-nav {
    display: none !important;
  }
  
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
  }
  
  .mobile-menu-overlay {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 25, 24, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 40px;
    overflow-y: auto;
    box-sizing: border-box;
  }
  .mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    padding: 0 2rem;
  }
  .m-menu-item {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
  }
  .m-menu-item:hover, .m-menu-item:active {
    color: var(--accent);
  }

  /* HERO SECTION MOBILE */
  .welcome-title {
    font-size: clamp(52px, 12vw, 84px) !important;
    line-height: 1.1;
    margin-bottom: 0.2rem !important;
  }
  .welcome-subtitle {
    text-align: center;
    width: 100%;
    font-size: 0.95rem !important;
    padding: 0 5px;
    margin-bottom: 1rem !important;
    line-height: 1.4;
  }
  .hero-badge {
    font-size: 0.65rem !important;
    padding: 4px 10px !important;
    margin-bottom: 0.8rem !important;
  }
  .welcome-content {
    padding: 1rem 0.5rem !important;
    min-height: auto;
    justify-content: center;
    margin-top: 1rem !important;
  }
  .welcome-header {
    padding: 0.6rem 1rem;
    height: auto;
  }
  .welcome-logo img {
    height: 35px !important;
  }
  .welcome-logos-top {
    display: none;
  }
  
  /* FOOTER LOGOS MOBILE */
  .welcome-footer {
    padding: 1rem !important;
    margin-bottom: 1rem;
  }
  .footer-logos {
    gap: 15px !important;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-logos img {
    height: 28px !important;
    opacity: 0.7;
  }
  
  /* BUTTONS MOBILE */
  .ig-neon-btn, .s-btn-primary, .s-btn-secondary, .geo-btn-primary, .geo-btn-secondary, .its-btn-official {
    padding: 10px 16px !important;
    font-size: 0.85rem !important;
  }
  .ig-icon-wrap {
    font-size: 1rem !important;
  }

  /* CARD MOBILE */
  .seputar-cards, .solution-card-grid {
    grid-template-columns: 1fr !important;
  }
  .seputar-card, .solution-card, .startup-card {
    width: 100% !important;
    padding: 1.2rem !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    box-sizing: border-box;
  }
  .s-card-left {
    width: 100% !important;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
  }
  .s-card-logo-wrap {
    width: 100px !important;
    height: 100px !important;
  }

  /* TAB MOBILE */
  .tentang-tab-nav {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding-bottom: 10px;
    justify-content: flex-start !important;
    width: 100%;
  }
  .t-tab-btn {
    scroll-snap-align: start;
    flex: 0 0 auto;
    padding: 10px 15px !important;
    font-size: 0.85rem !important;
  }

  /* PROFIL TIM MOBILE */
  .modern-slider-track {
    display: flex;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding: 10px 0;
    animation: none !important; 
    width: auto !important;
  }
  .modern-team-card {
    scroll-snap-align: center;
    flex: 0 0 75% !important;
    min-width: 200px;
  }
  .modern-slider-wrapper {
    overflow: hidden;
  }

  /* PERBAIKI BUG TOUCH MOBILE & VISUAL STYLE */
  .screen, .welcome-screen {
    pointer-events: auto;
  }
  .ambient-glow {
    opacity: 0.25 !important;
    filter: blur(50px) !important;
  }
  .welcome-vignette {
    opacity: 0.8 !important;
  }
  .welcome-overlay, .welcome-vignette, .ambient-glow, .particle-field {
    pointer-events: none !important; 
    z-index: 1; 
  }
  .welcome-content, .welcome-header, .welcome-footer, .screen-topbar, .screen-footer {
    z-index: 10;
    pointer-events: auto;
  }
  button, a {
    pointer-events: auto !important;
    position: relative;
    z-index: 20;
  }

  /* Peta Layout Fix */
  .peta-container {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column-reverse !important;
  }
  .peta-sidebar {
    max-height: 40vh !important;
    width: 100% !important;
  }
  .peta-main {
    height: 60vh !important;
    width: 100% !important;
  }
  .topbar-logos {
    display: none;
  }
  
  .screen-topbar {
    padding: 0.75rem 1rem;
  }
  
  /* Fix spacing issues on mobile */
  .tentang-content, .seputar-content, .solusi-content {
    padding: 1.2rem 1rem !important;
  }

  /* MOBILE DROPDOWN ADJUSTMENTS */
  .gnav-dropdown {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px !important;
    border-radius: 16px !important;
    box-sizing: border-box;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .gnav-drop-item {
    padding: 8px 12px !important;
    gap: 10px !important;
  }
  .gnav-drop-icon, .gnav-drop-icon-wrap {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.95rem !important;
  }
  .gnav-drop-title {
    font-size: 0.85rem !important;
  }
  .gnav-drop-desc {
    font-size: 0.68rem !important;
  }

  /* MOBILE MENU ACCORDION */
  .m-menu-accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .m-accordion-trigger {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
  }
  .accordion-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    opacity: 0.8;
  }
  .m-submenu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .m-submenu.open {
    padding: 12px 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 1px solid rgba(110, 231, 200, 0.15);
  }
  .m-submenu-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #fff;
    text-align: left;
    transition: all 0.25s ease;
  }
  .m-submenu-item:active {
    background: rgba(110, 231, 200, 0.1);
    border-color: rgba(110, 231, 200, 0.3);
  }
  .m-submenu-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
  }
  .m-submenu-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(239, 255, 249, 0.7);
  }
}

/* User Requested Structural Rules & Click fixes */
body {
  overflow-x: hidden;
}

.dropdown-menu, .gnav-dropdown {
  overflow-y: auto;
  max-height: 70vh;
}

.dropdown-menu, .gnav-dropdown.open {
  pointer-events: auto;
}

.navbar, .welcome-header, .screen-topbar {
  z-index: 9999 !important;
}

/* ========== VIDEO MODEL BARRIER VEGETASI ========== */
.video-barrier-section {
  margin-top: 1rem;
  background: rgba(18, 22, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 2rem 2.5rem;
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
}

.video-barrier-header {
  max-width: 800px;
  width: 100%;
}

.video-barrier-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  background: linear-gradient(135deg, #ffffff, #a0d8c5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.video-barrier-header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 auto;
}

.video-barrier-player {
  width: 85%;
  max-width: 900px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: #000;
  aspect-ratio: 16/9;
  position: relative;
}

.video-barrier-player video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .video-barrier-section {
    padding: 2.5rem 1.5rem;
    margin-top: 2rem;
    border-radius: 24px;
    gap: 1.5rem;
  }
  .video-barrier-player {
    width: 100%;
    border-radius: 14px;
  }
}
