
/* =========================================================
   P4 UM PONTIANAK — iOS x Neumorphism Design System
   ========================================================= */
:root {
  --bg: #eef1f4;
  --bg-elevated: #f5f7fa;
  --surface: #eef1f4;
  --surface-white: #ffffff;
  --brand-green-900: #08402d;
  --brand-green-700: #0e6e4e;
  --brand-green-500: #12a374;
  --brand-green-100: #e3f6ef;
  --ios-blue: #007aff;
  --ios-blue-dark: #0a5dc2;
  --ios-indigo: #5856d6;
  --ios-red: #ff3b30;
  --ios-orange: #ff9500;
  --ios-yellow: #ffcc00;
  --ios-teal: #30b0c7;
  --text-primary: #1c1c1e;
  --text-secondary: #6b6f76;
  --text-tertiary: #9a9ea5;
  --text-on-brand: #ffffff;
  --shadow-light: #ffffff;
  --shadow-dark: #c6cbd2;
  --nm-raised: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
  --nm-raised-sm: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
  --nm-inset: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
  --nm-pressed: inset 2px 2px 5px var(--shadow-dark), inset -2px -2px 5px var(--shadow-light);
  --r-xs: 10px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 34px;
  --r-pill: 999px;
  --ease-ios: cubic-bezier(0.32, 0.72, 0, 1);
  --dur-fast: 0.18s;
  --dur-med: 0.32s;
  --dur-slow: 0.5s;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Roboto, sans-serif;
  --font-text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", Roboto, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ── Background Blob (like 404.php) ── */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .22;
  pointer-events: none;
  z-index: 0;
}
.bg-blob-1 {
  width: 500px; height: 500px;
  background: #a5b4fc;
  top: -140px; left: -160px;
  animation: floatBlob 9s ease-in-out infinite;
}
.bg-blob-2 {
  width: 380px; height: 380px;
  background: #f9a8d4;
  bottom: 20%; right: -100px;
  animation: floatBlob 11s ease-in-out infinite reverse;
}
.bg-blob-3 {
  width: 260px; height: 260px;
  background: #6ee7b7;
  top: 45%; left: 55%;
  animation: floatBlob 13s ease-in-out infinite 2s;
}
.bg-blob-4 {
  width: 300px; height: 300px;
  background: #c4b5fd;
  bottom: 5%; left: 10%;
  animation: floatBlob 10s ease-in-out infinite 1s;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(24px, -36px) scale(1.06); }
}

/* Everything sits above blobs */
.navbar, main, footer, .fab-dock,
.modal-overlay, .alert-overlay, .toast-stack,
.statusbar-strip, .skip-link { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   SKIP LINK
   ========================================================= */
.skip-link {
  position: absolute; top: -999px; left: 16px;
  background: var(--ios-blue); color: #fff; padding: 8px 16px;
  border-radius: var(--r-sm); font-size: 14px; font-weight: 600;
  text-decoration: none; z-index: 9999;
}
.skip-link:focus { top: 8px; }

/* =========================================================
   STATUS BAR
   ========================================================= */
.statusbar-strip {
  height: env(safe-area-inset-top, 0px);
  background: transparent;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: sticky; top: 0;
  background: rgba(238,241,244,.82);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 2px 20px rgba(99,102,241,.08);
  z-index: 200;
}
.navbar-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center;
  padding: 0 24px; height: 60px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff; letter-spacing: -.5px;
  box-shadow: var(--nm-raised-sm);
  overflow: hidden;
}
.brand-mark img { width: 30px; height: 30px; object-fit: contain; }
.brand-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-primary); line-height: 1.2; }
.brand-text span { font-size: 11px; color: var(--text-secondary); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--text-secondary);
  text-decoration: none; padding: 6px 12px; border-radius: var(--r-pill);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.nav-links a:hover { background: rgba(99,102,241,.08); color: var(--text-primary); }
.nav-links a.active { background: rgba(18,163,116,.12); color: var(--brand-green-700); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  border: none; background: var(--bg);
  box-shadow: var(--nm-raised-sm); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: box-shadow var(--dur-fast), transform var(--dur-fast);
}
.icon-btn:hover { box-shadow: var(--nm-raised); }
.icon-btn:active { box-shadow: var(--nm-pressed); transform: scale(.97); }
@media (min-width: 769px) { .menu-toggle { display: none; } }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .navbar-inner { padding: 0 16px; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; border: none; cursor: pointer; border-radius: var(--r-pill);
  font-family: var(--font-text); font-weight: 600;
  font-size: 14px; padding: 10px 20px; transition: all var(--dur-fast) var(--ease-ios);
  text-decoration: none; white-space: nowrap;
}
.btn-filled {
  background: linear-gradient(145deg, #12a374, #0e6e4e);
  color: #fff; box-shadow: 0 4px 16px rgba(18,163,116,.35);
}
.btn-filled:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(18,163,116,.45); }
.btn-filled:active { transform: translateY(0); }
.btn-neumorphic {
  background: var(--bg); color: var(--text-primary);
  box-shadow: var(--nm-raised);
}
.btn-neumorphic:hover { box-shadow: var(--nm-raised-sm); }
.btn-neumorphic:active { box-shadow: var(--nm-pressed); }
.btn-plain {
  background: transparent; color: var(--ios-blue);
  box-shadow: none; padding: 10px 14px;
}
.btn-plain:hover { background: rgba(0,122,255,.08); }
.btn-tinted {
  background: rgba(18,163,116,.1); color: var(--brand-green-700);
  box-shadow: none;
}
.btn-tinted:hover { background: rgba(18,163,116,.18); }
.btn-sm { font-size: 13px; padding: 7px 16px; }
.btn-block { width: 100%; }

/* =========================================================
   CARDS (base)
   ========================================================= */
.card {
  background: var(--bg); border-radius: var(--r-lg);
  box-shadow: var(--nm-raised); padding: 24px;
}
.card-white {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 32px rgba(99,102,241,.08);
  padding: 24px;
}

/* =========================================================
   SECTION WRAPPER
   ========================================================= */
.section {
  max-width: 1180px; margin: 0 auto;
  padding: 72px 24px;
}
.section-head {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 16px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; margin: 8px 0 6px;
  line-height: 1.3; color: var(--text-primary);
}
.section-head p { font-size: 14.5px; color: var(--text-secondary); margin: 0; max-width: 520px; }
.section-tag {
  display: inline-block; background: rgba(18,163,116,.12);
  color: var(--brand-green-700); font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--r-pill);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  max-width: 1180px; margin: 0 auto;
  padding: 80px 24px 56px;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 48px; align-items: center;
}
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; color: var(--brand-green-700);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px;
}
.dot { width: 7px; height: 7px; background: var(--brand-green-500); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.4); }
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800;
  line-height: 1.15; margin: 0 0 16px; letter-spacing: -.02em;
}
.accent {
  background: linear-gradient(135deg, #12a374, #0a84ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin: 0 0 28px; max-width: 560px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
/* 3 kartu statistik selalu sejajar satu baris (desktop & mobile) */
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 520px; }
.stat-card {
  background: rgba(255,255,255,.72); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--r-md); padding: 14px 20px;
  box-shadow: var(--nm-raised-sm);
  min-width: 0;
}
.stat-card strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--brand-green-700); }
.stat-card span { font-size: 12px; color: var(--text-secondary); }
@media (max-width: 576px) {
  .hero-stats { gap: 10px; max-width: 100%; }
  .stat-card { padding: 12px 12px; text-align: center; }
  .stat-card strong { font-size: 1.3rem; }
  .stat-card span { font-size: 10.5px; display: block; line-height: 1.3; }
}

/* =========================================================
   DEVICE FRAME (hero visual)
   ========================================================= */
.device-frame {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--r-xl);
  box-shadow: 0 24px 64px rgba(99,102,241,.13), 0 4px 20px rgba(0,0,0,.06);
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.floating-badge {
  position: absolute; top: -14px; right: 20px;
  background: rgba(18,163,116,.92); color: #fff;
  font-size: 11.5px; font-weight: 600; border-radius: var(--r-pill);
  padding: 5px 12px; display: flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 12px rgba(18,163,116,.3);
}
.fb-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: pulse 2s infinite; }
.widget-clock { text-align: center; padding: 10px 0; }
.time { font-size: 2.6rem; font-weight: 800; letter-spacing: -.03em; color: var(--text-primary); line-height: 1; }
.date { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }
.widget-row { display: flex; gap: 12px; }
.widget-mini {
  flex: 1; background: var(--bg); border-radius: var(--r-md);
  box-shadow: var(--nm-raised-sm); padding: 14px; min-width: 0;
}
.wm-icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px; color: #fff;
}
.wm-title { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.wm-sub { font-size: 11px; color: var(--text-secondary); }

/* =========================================================
   ★ VISI-MISI + CAROUSEL SECTION (NEW)
   ========================================================= */
.visi-carousel-section {
  background: transparent;
  padding: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 60px;
}
.vc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .vc-grid { grid-template-columns: 1fr; }
}

/* --- Visi Misi Card --- */
.visimisi-card {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: var(--r-xl);
  box-shadow: 0 16px 48px rgba(99,102,241,.12), 0 4px 16px rgba(0,0,0,.05);
  padding: 28px;
  display: flex; flex-direction: column; gap: 0;
  overflow: hidden;
  position: relative;
}
.visimisi-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #12a374, #0a84ff, #8b5cf6);
}
.vm-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.vm-logo {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: linear-gradient(145deg, #12a374, #0e6e4e);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--nm-raised-sm); flex-shrink: 0;
}
.vm-logo svg { color: #fff; }
.vm-title-wrap strong {
  display: block; font-size: 14.5px; font-weight: 800;
  color: var(--text-primary); line-height: 1.3;
}
.vm-title-wrap span {
  font-size: 12px; color: var(--brand-green-700); font-weight: 600;
}

/* Visi box */
.vm-box {
  background: var(--bg);
  border-radius: var(--r-md);
  box-shadow: var(--nm-inset);
  padding: 16px 18px;
  margin-bottom: 16px;
  position: relative;
}
.vm-label {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand-green-700);
  background: rgba(18,163,116,.12);
  padding: 3px 10px; border-radius: var(--r-pill);
  margin-bottom: 10px;
}
.vm-text {
  font-size: 13.5px; line-height: 1.65; color: var(--text-primary); margin: 0;
  font-style: italic;
}

/* Misi list */
.misi-list {
  display: flex; flex-direction: column; gap: 8px;
}
.misi-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--bg); border-radius: var(--r-sm);
  box-shadow: var(--nm-raised-sm); padding: 10px 14px;
  transition: box-shadow var(--dur-fast);
}
.misi-item:hover { box-shadow: var(--nm-raised); }
.misi-num {
  min-width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(145deg, #12a374, #0e6e4e);
  color: #fff; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.misi-text { font-size: 12.5px; line-height: 1.6; color: var(--text-primary); }

/* --- Carousel Berita --- */
.berita-carousel-card {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: var(--r-xl);
  box-shadow: 0 16px 48px rgba(99,102,241,.12), 0 4px 16px rgba(0,0,0,.05);
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
}
.berita-carousel-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #0a84ff, #8b5cf6, #f9a8d4);
}
.bc-header {
  padding: 20px 24px 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.bc-title {
  display: flex; align-items: center; gap: 10px;
}
.bc-icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: linear-gradient(145deg, #0a84ff, #0a5dc2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--nm-raised-sm); color: #fff; flex-shrink: 0;
}
.bc-label { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.bc-sub { font-size: 11.5px; color: var(--text-secondary); }
.bc-nav-wrap { display: flex; align-items: center; gap: 6px; }
.bc-nav-btn {
  width: 32px; height: 32px; border-radius: var(--r-sm);
  background: var(--bg); box-shadow: var(--nm-raised-sm);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: all var(--dur-fast);
}
.bc-nav-btn:hover { box-shadow: var(--nm-raised); color: var(--text-primary); }
.bc-nav-btn:active { box-shadow: var(--nm-pressed); }

/* Carousel track */
.bc-track-wrap {
  flex: 1;
  overflow: hidden;
  padding: 0 24px 20px;
}
.bc-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.32,0.72,0,1);
  gap: 0;
}
.bc-slide {
  min-width: 100%; width: 100%;
}
.bc-news-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  box-shadow: var(--nm-raised);
  padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
}
.bc-thumb {
  width: 100%; height: 130px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.bc-thumb-1 { background: linear-gradient(135deg, #dbeafe 0%, #ede9fe 100%); }
.bc-thumb-2 { background: linear-gradient(135deg, #e3f6ef 0%, #dbeafe 100%); }
.bc-thumb-3 { background: linear-gradient(135deg, #fce7f3 0%, #ede9fe 100%); }
.bc-thumb-4 { background: linear-gradient(135deg, #fef3c7 0%, #e3f6ef 100%); }
.bc-thumb svg { color: rgba(99,102,241,.35); }
.bc-thumb-badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  font-size: 10.5px; font-weight: 700; color: var(--ios-blue);
  padding: 3px 10px; border-radius: var(--r-pill);
  letter-spacing: .04em;
}
.bc-date { font-size: 11.5px; color: var(--text-tertiary); font-weight: 500; }
.bc-news-title {
  font-size: 14.5px; font-weight: 700; color: var(--text-primary);
  line-height: 1.45; margin: 0;
}
.bc-news-excerpt {
  font-size: 12.5px; color: var(--text-secondary); line-height: 1.65; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.bc-read-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 600; color: var(--ios-blue);
  background: rgba(0,122,255,.08); border: none; cursor: pointer;
  padding: 7px 14px; border-radius: var(--r-pill);
  transition: background var(--dur-fast); align-self: flex-start;
  text-decoration: none;
}
.bc-read-btn:hover { background: rgba(0,122,255,.15); }

/* Dots */
.bc-dots {
  display: flex; justify-content: center; gap: 6px;
  padding: 0 24px 18px;
}
.bc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--shadow-dark); border: none; cursor: pointer; padding: 0;
  transition: all var(--dur-fast);
}
.bc-dot.active {
  width: 20px; border-radius: var(--r-pill);
  background: var(--ios-blue);
}

/* =========================================================
   APP GRID (Layanan)
   ========================================================= */
.app-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.app-icon-card {
  background: var(--bg); border-radius: var(--r-lg);
  box-shadow: var(--nm-raised); padding: 18px 14px;
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; border: none; cursor: pointer; text-align: center;
  transition: all var(--dur-fast) var(--ease-ios);
}
.app-icon-card:hover { transform: translateY(-4px); box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light); }
.app-icon-card:active { transform: scale(.97); box-shadow: var(--nm-pressed); }
.app-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.15); color: #fff;
}
.app-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.app-desc { font-size: 11px; color: var(--text-secondary); }

/* =========================================================
   LIST GROUP
   ========================================================= */
.list-group {
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--r-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  overflow: hidden;
}
.list-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: background var(--dur-fast);
}
.list-row:last-child { border-bottom: none; }
.list-row:hover { background: rgba(18,163,116,.04); }
.list-icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.list-row-body { flex: 1; min-width: 0; }
.list-row-body strong { display: block; font-size: 13.5px; font-weight: 600; }
.list-row-body span { font-size: 12px; color: var(--text-secondary); }

/* =========================================================
   CHIPS
   ========================================================= */
.chip { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: var(--r-pill); }
.chip-blue { background: rgba(0,122,255,.12); color: var(--ios-blue); }
.chip-orange { background: rgba(255,149,0,.12); color: var(--ios-orange); }
.chip-red { background: rgba(255,59,48,.12); color: var(--ios-red); }

/* =========================================================
   SEGMENTED CONTROL
   ========================================================= */
.segmented {
  display: flex; background: var(--bg); border-radius: var(--r-pill);
  box-shadow: var(--nm-inset); padding: 4px; gap: 2px;
  flex-shrink: 0;
}
.segmented button {
  border: none; background: transparent; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  padding: 7px 16px; cursor: pointer; transition: all var(--dur-fast);
  white-space: nowrap;
}
.segmented button.active {
  background: rgba(255,255,255,.9); color: var(--text-primary);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/* =========================================================
   TABLE
   ========================================================= */
.table-wrap {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--r-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  overflow: hidden;
}
table { width: 100%; border-collapse: collapse; }
thead { background: linear-gradient(145deg, #12a374, #0e6e4e); }
thead th { color: #fff; font-size: 13px; font-weight: 600; padding: 12px 16px; text-align: left; }
tbody tr { border-bottom: 1px solid rgba(0,0,0,.05); transition: background var(--dur-fast); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(18,163,116,.04); }
td { font-size: 13.5px; padding: 12px 16px; color: var(--text-primary); }
td:first-child { color: var(--text-secondary); font-weight: 600; }
@media (max-width: 600px) {
  td, th { padding: 10px 12px; font-size: 12.5px; }
}

/* =========================================================
   DIVISI CARDS
   ========================================================= */
.divisi-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.divisi-card {
  background: var(--bg); border-radius: var(--r-xl);
  box-shadow: var(--nm-raised); padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow var(--dur-fast), transform var(--dur-fast);
}
.divisi-card:hover { transform: translateY(-4px); }
.divisi-num { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-green-500); }
.divisi-card h3 { font-size: 16.5px; font-weight: 700; margin: 0; line-height: 1.35; }
.divisi-card p { font-size: 13.5px; color: var(--text-secondary); margin: 0; line-height: 1.65; flex: 1; }

/* =========================================================
   NEWS GRID
   ========================================================= */
.news-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.news-card {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--r-xl);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
.news-thumb {
  height: 120px; background: linear-gradient(135deg, #dbeafe, #ede9fe);
  display: flex; align-items: center; justify-content: center; color: rgba(99,102,241,.4);
}
.news-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news-date { font-size: 11.5px; color: var(--text-tertiary); font-weight: 500; }
.news-title { font-size: 14.5px; font-weight: 700; line-height: 1.4; color: var(--text-primary); margin: 0; }
.news-excerpt { font-size: 12.5px; color: var(--text-secondary); line-height: 1.65; margin: 0; flex: 1; }
.news-link { font-size: 12.5px; font-weight: 600; color: var(--ios-blue); text-decoration: none; margin-top: 4px; }
.news-link:hover { text-decoration: underline; }

/* =========================================================
   ACCORDION
   ========================================================= */
.accordion {
  display: flex; flex-direction: column; gap: 10px; max-width: 700px;
}
.accordion-item {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--r-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  overflow: hidden;
}
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; background: none; border: none; cursor: pointer;
  font-size: 14.5px; font-weight: 600; color: var(--text-primary);
  text-align: left; gap: 12px; font-family: var(--font-text);
}
.accordion-trigger:hover { color: var(--brand-green-700); }
.chevron { flex-shrink: 0; transition: transform var(--dur-fast); }
.accordion-item.open .chevron { transform: rotate(90deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height var(--dur-med) var(--ease-ios); }
.accordion-panel-inner { padding: 0 20px 16px; font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; }

/* =========================================================
   CONTACT GRID
   ========================================================= */
.contact-grid { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-row {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(18,163,116,.1); color: var(--brand-green-700);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-row strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.contact-row span { font-size: 12.5px; color: var(--text-secondary); }
.map-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--nm-raised); min-height: 240px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 240px; border: none; display: block; }

/* =========================================================
   MODAL / SHEET
   ========================================================= */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px); display: flex; align-items: flex-end;
  justify-content: center; z-index: 900; opacity: 0; pointer-events: none;
  transition: opacity var(--dur-med);
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-sheet {
  background: rgba(248,248,252,.97);
  backdrop-filter: blur(24px);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  width: 100%; max-width: 480px;
  padding: 12px 24px 36px; text-align: center;
  transform: translateY(60px);
  transition: transform var(--dur-med) var(--ease-ios);
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal-sheet { transform: translateY(0); }
.sheet-handle { width: 36px; height: 4px; background: var(--shadow-dark); border-radius: var(--r-pill); margin: 0 auto 18px; }
.modal-icon-hero {
  width: 64px; height: 64px; border-radius: 20px;
  background: linear-gradient(145deg,#12a374,#0e6e4e);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; box-shadow: 0 8px 24px rgba(18,163,116,.3); color: #fff;
}
.modal-sheet h3 { font-size: 1.25rem; font-weight: 700; margin: 0 0 8px; }
.modal-sheet .desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; margin: 0 0 20px; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.modal-form-group { text-align: left; margin-bottom: 14px; }
.modal-form-group label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 6px; }
.modal-input {
  width: 100%; background: var(--bg); border: 1.5px solid transparent;
  border-radius: var(--r-md); padding: 11px 14px;
  font-size: 14px; color: var(--text-primary); font-family: var(--font-text);
  box-shadow: var(--nm-inset); outline: none; transition: border-color var(--dur-fast);
}
.modal-input:focus { border-color: var(--ios-blue); }

/* =========================================================
   MODAL DETAIL DIVISI — kartu tengah, spring scale-in +
   glow gradien berdenyut + konten muncul bertahap (stagger)
   ========================================================= */
.divisi-modal-overlay { align-items: center; } /* override .modal-overlay (bottom-sheet default) */

.divisi-modal-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: rgba(248, 248, 252, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--r-xl);
  padding: 34px 28px 30px;
  box-shadow: 0 30px 70px rgba(10, 10, 20, .35);
  transform: scale(.82) translateY(30px);
  opacity: 0;
  transition: transform .5s cubic-bezier(.34, 1.56, .64, 1), opacity .35s ease;
}
.divisi-modal-overlay.active .divisi-modal-card { transform: scale(1) translateY(0); opacity: 1; }

.divisi-modal-glow {
  position: absolute;
  inset: -40% -40% auto -40%;
  height: 220px;
  background: radial-gradient(closest-side, rgba(18, 163, 116, .35), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  opacity: 0;
  transition: opacity .6s ease .1s;
  z-index: 0;
}
.divisi-modal-overlay.active .divisi-modal-glow { opacity: 1; animation: divisiGlowPulse 3.2s ease-in-out infinite; }
@keyframes divisiGlowPulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50%      { transform: scale(1.12); opacity: 1; }
}

.divisi-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%; border: 0;
  background: rgba(142, 142, 147, .14); color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: transform .2s var(--ease-ios), background .2s;
}
.divisi-modal-close:hover { background: rgba(142, 142, 147, .25); }
.divisi-modal-close:active { transform: scale(.88); }

.divisi-modal-header { position: relative; z-index: 1; text-align: center; }

.divisi-modal-num {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .08em;
  color: var(--brand-green-700); background: rgba(18, 163, 116, .12);
  padding: 4px 12px; border-radius: var(--r-pill); margin-bottom: 14px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s ease .15s, transform .4s var(--ease-ios) .15s;
}
.divisi-modal-overlay.active .divisi-modal-num { opacity: 1; transform: none; }

.divisi-modal-icon {
  width: 66px; height: 66px; border-radius: 22px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
  transform: scale(.4) rotate(-20deg); opacity: 0;
  transition: transform .55s cubic-bezier(.34, 1.56, .64, 1) .2s, opacity .35s ease .2s;
}
.divisi-modal-overlay.active .divisi-modal-icon { transform: scale(1) rotate(0); opacity: 1; }

.divisi-modal-card h3 {
  position: relative; z-index: 1;
  font-size: 1.2rem; font-weight: 800; margin: 0 0 12px; line-height: 1.35;
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s ease .25s, transform .4s var(--ease-ios) .25s;
}
.divisi-modal-overlay.active .divisi-modal-card h3 { opacity: 1; transform: none; }

.divisi-modal-desc {
  position: relative; z-index: 1;
  font-size: 13.5px; color: var(--text-secondary); line-height: 1.75; margin: 0 0 22px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s ease .3s, transform .4s var(--ease-ios) .3s;
}
.divisi-modal-overlay.active .divisi-modal-desc { opacity: 1; transform: none; }

.divisi-modal-programs {
  position: relative; z-index: 1;
  list-style: none; margin: 0 0 24px; padding: 0;
  display: flex; flex-direction: column; gap: 10px; text-align: left;
}
.divisi-modal-programs li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-primary); line-height: 1.5;
  background: var(--bg); border-radius: var(--r-md); padding: 10px 14px;
  opacity: 0; transform: translateX(-14px);
  transition: opacity .4s ease var(--d, 0s), transform .4s var(--ease-ios) var(--d, 0s);
}
.divisi-modal-overlay.active .divisi-modal-programs li { opacity: 1; transform: none; }
.divisi-modal-check {
  flex: 0 0 auto; width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(145deg, #12a374, #0a84ff); color: #fff;
  font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

.divisi-modal-footer {
  position: relative; z-index: 1;
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s ease .5s, transform .4s var(--ease-ios) .5s;
}
.divisi-modal-overlay.active .divisi-modal-footer { opacity: 1; transform: none; }

@media (max-width: 560px) {
  .divisi-modal-card { max-width: 100%; margin: 0 12px; padding: 28px 20px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .divisi-modal-card, .divisi-modal-num, .divisi-modal-icon, .divisi-modal-card h3,
  .divisi-modal-desc, .divisi-modal-programs li, .divisi-modal-footer, .divisi-modal-glow {
    transition: none !important; animation: none !important; opacity: 1 !important; transform: none !important;
  }
}

/* =========================================================
   ALERT (iOS Native Dialog)
   ========================================================= */
.alert-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px); display: flex; align-items: center;
  justify-content: center; z-index: 950; opacity: 0; pointer-events: none;
  transition: opacity var(--dur-fast); padding: 20px;
}
.alert-overlay.active { opacity: 1; pointer-events: auto; }
.alert-box {
  background: rgba(248,248,252,.97);
  backdrop-filter: blur(24px);
  border-radius: var(--r-lg); width: 100%; max-width: 280px;
  overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.2);
  transform: scale(.92);
  transition: transform var(--dur-fast) var(--ease-ios);
}
.alert-overlay.active .alert-box { transform: scale(1); }
.alert-body { padding: 20px 20px 16px; text-align: center; }
.alert-body h4 { font-size: 17px; font-weight: 700; margin: 0 0 6px; }
.alert-body p { font-size: 13px; color: var(--text-secondary); margin: 0; line-height: 1.55; }
.alert-actions { display: flex; border-top: 1px solid rgba(0,0,0,.12); }
.alert-actions button {
  flex: 1; background: none; border: none; cursor: pointer;
  font-size: 17px; font-weight: 400; color: var(--ios-blue);
  padding: 14px; font-family: var(--font-text); transition: background var(--dur-fast);
}
.alert-actions button + button { border-left: 1px solid rgba(0,0,0,.12); }
.alert-actions button.emphasis { font-weight: 700; }
.alert-actions button.destructive { color: var(--ios-red); font-weight: 700; }
.alert-actions button:hover { background: rgba(0,0,0,.04); }

/* =========================================================
   TOAST
   ========================================================= */
.toast-stack {
  position: fixed; top: 80px; right: 16px; z-index: 800;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none; max-width: 340px; width: calc(100vw - 32px);
}
.toast {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(248,248,252,.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  padding: 14px; opacity: 0;
  transform: translateX(24px);
  transition: all var(--dur-med) var(--ease-ios);
  pointer-events: auto;
}
.toast.show { opacity: 1; transform: translateX(0); }
.toast-icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.toast-body { flex: 1; min-width: 0; }
.toast-title { font-size: 13.5px; font-weight: 700; }
.toast-msg { font-size: 12.5px; color: var(--text-secondary); margin-top: 2px; line-height: 1.4; }
.toast-close {
  background: none; border: none; cursor: pointer; color: var(--text-tertiary);
  padding: 2px; display: flex; align-items: center; flex-shrink: 0;
  transition: color var(--dur-fast);
}
.toast-close:hover { color: var(--text-primary); }

/* =========================================================
   FAB DOCK
   ========================================================= */
.fab-dock {
  position: fixed; bottom: 28px; right: 20px;
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 300;
}
.fab-btn {
  width: 52px; height: 52px; border-radius: var(--r-lg);
  background: linear-gradient(145deg, #12a374, #0e6e4e);
  color: #fff; border: none; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(18,163,116,.4), var(--nm-raised-sm);
  text-decoration: none; transition: all var(--dur-fast);
}
.fab-btn:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(18,163,116,.5); }
.fab-btn.secondary { background: var(--bg); color: var(--text-secondary); box-shadow: var(--nm-raised); }
.fab-btn.secondary:hover { box-shadow: var(--nm-raised-sm), 0 4px 12px rgba(0,0,0,.1); }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: rgba(8,64,45,.94);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.7); padding: 48px 24px 0;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; gap: 32px;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand strong { display: block; color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; line-height: 1.65; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.1); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,.7); text-decoration: none;
  transition: background var(--dur-fast);
}
.footer-social a:hover { background: rgba(255,255,255,.2); color: #fff; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; margin: 0 0 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; margin-bottom: 8px; transition: color var(--dur-fast); }
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: 13px; margin: 0 0 8px; }
.footer-bottom {
  max-width: 1180px; margin: 32px auto 0;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0; display: flex; justify-content: space-between;
  font-size: 12px; gap: 12px; flex-wrap: wrap;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease-ios), transform .6s var(--ease-ios); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   EFEK PREMIUM HALAMAN DEPAN
   ========================================================= */

/* Bilah progres baca di atas layar */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  z-index: 2100;
  background: linear-gradient(90deg, #12a374, #0a84ff, #5856d6);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 12px rgba(10,132,255,.45);
}

/* Navbar memadat saat discroll */
.navbar { transition: box-shadow .32s var(--ease-ios), background .32s ease; }
.navbar.scrolled {
  background: rgba(238,241,244,.95);
  box-shadow: 0 10px 30px rgba(28,28,30,.12);
}
.navbar-inner { transition: height .32s var(--ease-ios); }
.navbar.scrolled .navbar-inner { height: 52px; }

/* Judul hero: kata demi kata naik */
.word-in {
  display: inline-block;
  opacity: 0;
  transform: translateY(26px) rotate(2deg);
  animation: wordIn .7s var(--ease-ios) forwards;
}
@keyframes wordIn { to { opacity: 1; transform: translateY(0) rotate(0); } }

/* Teks aksen gradien bergeser (shimmer) */
.accent { background-size: 220% 220%; animation: accentShift 6s ease-in-out infinite; }
@keyframes accentShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Anak grid muncul bertahap (stagger) */
.reveal .stagger-child {
  opacity: 0;
  transform: translateY(22px) scale(.98);
  transition: opacity .55s var(--ease-ios), transform .55s var(--ease-ios);
  transition-delay: var(--d, 0s);
}
.reveal.in .stagger-child { opacity: 1; transform: translateY(0) scale(1); }

/* Hero visual: tilt 3D mengikuti kursor */
.hero-visual { perspective: 900px; }
.device-frame { will-change: transform; transition: transform .25s var(--ease-ios); }

/* Kartu terangkat + kilau menyapu saat hover */
.news-card, .divisi-card, .app-icon-card, .stat-card, .widget-mini {
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-ios), box-shadow .3s var(--ease-ios);
}
.news-card:hover, .divisi-card:hover, .app-icon-card:hover { transform: translateY(-6px) scale(1.015); }
.stat-card:hover, .widget-mini:hover { transform: translateY(-4px); }
.sheen::after {
  content: "";
  position: absolute;
  top: 0; left: -85%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  transition: left .8s var(--ease-ios);
  pointer-events: none;
}
.sheen:hover::after { left: 140%; }

/* Ripple sentuhan iOS pada tombol */
.btn { position: relative; overflow: hidden; }
.ripple-ink {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  transform: scale(0);
  animation: rippleInk .6s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleInk { to { transform: scale(3.4); opacity: 0; } }

/* Garis bawah gradien pada menu (scrollspy) */
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 3px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, #12a374, #0a84ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-ios);
}
.nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); }

/* Badge mengambang di hero berdenyut naik-turun */
.floating-badge { animation: floatBadge 4s ease-in-out infinite; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

@media (prefers-reduced-motion: reduce) {
  .word-in { animation: none; opacity: 1; transform: none; }
  .accent, .floating-badge { animation: none; }
  .sheen::after { display: none; }
}

/* =========================================================
   RESPONSIVE UTILITY
   ========================================================= */
@media (max-width: 600px) {
  .section { padding: 48px 16px; }
  .hero { padding: 48px 16px 40px; }
  .visi-carousel-section { padding: 0 16px 48px; }
}

/* =========================================================
   OVERRIDE FONT MONTSERRAT + LANGUAGE PILL (dinamis)
   ========================================================= */
:root {
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-text: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.lang-pill {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--nm-inset);
  gap: 2px;
}
.lang-pill a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all .25s cubic-bezier(.32,.72,0,1);
}
.lang-pill a.active {
  background: linear-gradient(135deg, #0a84ff, #0a5dc2);
  color: #fff;
  box-shadow: 2px 2px 6px rgba(0,122,255,.35);
}
