/* ==========================================================================
       CSS RESET & DESIGN TOKENS
       Berdasarkan Brand Guidelines STDI & Design Pattern Contoh HTML (shadcn/ui style)
       ========================================================================== */
    :root {
      /* Brand Blue Group */
      --color-primary: #0047BB;       /* Cobalt Blue (Primer) */
      --color-royal-dark: #001489;    /* Electric Royal (Sekunder Dark) */
      --color-horizon-light: #6CACE4; /* Cool Horizon (Sekunder Light) */

      /* Brand Gold Group */
      --color-gold-bronze: #CBA052;   /* Golden Bronze (Sekunder Gold Primer) */
      --color-gold-earth: #886B25;    /* Golden Earth (Sekunder Dark) */
      --color-gold-chalky: #ECD898;   /* Chalky (Sekunder Light) */

      /* Neutrals & Surfaces */
      --color-frosted-black: #101820; /* Frosted Black (Teks Utama & Dark Bg) */
      --color-grey-olive: #8A8D8F;    /* Grey Olive (Muted/Sekunder) */
      --color-bright-snow: #F8F8F8;   /* Bright Snow (Background Utama) */
      --color-shade-light: #E2E8F0;   /* Shade Light (Borders & Dividers) */
      --color-card-light: #FFFFFF;    /* Pure White (Card Surfaces & Navbar) */
      --color-shade-dark: #182430;    /* Dark Slate (Sub-Footer) */
      --color-card-dark: #2A3847;     /* Dark Card Tint */

      /* Semantic Theming Tokens (ikut berubah di dark mode) */
      --color-body-text: #334155;      /* Teks paragraf/isi */
      --color-on-primary: #FFFFFF;     /* Teks di atas --color-primary */
      --color-on-brand: #FFFFFF;       /* Teks di atas latar biru/brand */
      --color-on-gold: #101820;        /* Teks di atas emas (selalu gelap) */
      --color-header-bg: rgba(255, 255, 255, 0.98);
      --color-glass-bg: rgba(255, 255, 255, 0.88);

      /* Program Studi Color Accents */
      --prodi-hki: #0047BB;
      --prodi-ih: #6CACE4;
      --prodi-hes: #CBA052;
      --prodi-bsa: #886B25;

      /* Typography */
      --font-heading: 'Readex Pro', sans-serif;
      --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      --font-arabic: 'Noto Naskh Arabic', serif;

      /* Gradients */
      --grad-blue: linear-gradient(135deg, #6CACE4 0%, #0047BB 50%, #001489 100%);
      --grad-gold: linear-gradient(135deg, #ECD898 0%, #CBA052 50%, #886B25 100%);
      --grad-featured-overlay: linear-gradient(180deg, rgba(0, 71, 187, 0) 0%, rgba(0, 20, 137, 0.85) 60%, #001489 100%);
      --grad-card-surface: linear-gradient(145deg, #0047BB 0%, #001489 100%);

      /* Spacing Scale */
      --space-2xs: 4px;
      --space-xs: 8px;
      --space-sm: 16px;
      --space-md: 24px;
      --space-lg: 40px;
      --space-xl: 64px;
      --space-2xl: 96px;

      /* Border Radii (shadcn token replication) */
      --radius-full: 9999px;
      --radius-card: 26px;
      --radius-surface: 18px;
      --radius-sm: 12px;
      --radius-badge: 22px;

      /* Shadows */
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
      --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.03), 0 0 0 1px rgba(16, 24, 32, 0.05);
      --shadow-hover: 0 16px 24px -4px rgba(0, 0, 0, 0.09), 0 0 0 1px rgba(16, 24, 32, 0.06);
      --shadow-btn: 0 4px 14px rgba(0, 71, 187, 0.22);
      --shadow-btn-hover: 0 6px 20px rgba(0, 71, 187, 0.32);

      /* Header Height */
      --header-height: 76px;

      /* Layout Widths */
      --container-max: 1200px;
      --container-wide: 1360px;
      --container-current: var(--container-max);
      --container-current-wide: var(--container-wide);
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      background-color: var(--color-bright-snow);
      color: var(--color-frosted-black);
    }

    body {
      font-family: var(--font-body);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      background-color: var(--color-bright-snow);
      overflow-x: hidden;
    }

    /* Headings strictly follow Brand Guidelines rule: Readex Pro + UPPERCASE */
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      text-transform: uppercase;
      letter-spacing: 0.02em;
      line-height: 1.25;
      font-weight: 700;
      color: var(--color-frosted-black);
    }

    p {
      color: var(--color-body-text);
      font-size: 0.9375rem;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: color 0.15s ease;
    }

    img, svg {
      display: block;
      max-width: 100%;
    }

    /* Inline Lucide-style SVG icons */
    .icon {
      width: 1.25rem;
      height: 1.25rem;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    .container {
      width: 100%;
      max-width: var(--container-current);
      margin-left: auto;
      margin-right: auto;
      padding-left: var(--space-md);
      padding-right: var(--space-md);
    }

    .container-wide {
      width: 100%;
      max-width: var(--container-current-wide);
      margin-left: auto;
      margin-right: auto;
      padding-left: var(--space-md);
      padding-right: var(--space-md);
    }

    /* ==========================================================================
       REUSABLE COMPONENTS (Buttons, Badges, Cards, Dividers)
       ========================================================================== */
    /* Badges */
    .badge-gold {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 14px;
      background-color: var(--color-gold-chalky);
      color: var(--color-on-gold);
      border: 1px solid var(--color-gold-bronze);
      border-radius: var(--radius-full);
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .badge-blue {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      background-color: var(--color-primary);
      color: var(--color-on-primary);
      border-radius: var(--radius-full);
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.03em;
    }

    .badge-soft {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 3px 12px;
      background-color: var(--color-shade-light);
      color: var(--color-frosted-black);
      border-radius: var(--radius-badge);
      font-size: 0.75rem;
      font-weight: 600;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: var(--radius-full);
      padding: 9px 22px;
      font-size: 0.875rem;
      font-weight: 600;
      font-family: var(--font-body);
      cursor: pointer;
      border: 1.5px solid transparent;
      transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
      white-space: nowrap;
      text-decoration: none;
    }

    .btn-primary {
      background-color: var(--color-primary);
      color: var(--color-card-light);
      border-color: var(--color-primary);
      box-shadow: var(--shadow-btn);
    }
    .btn-primary:hover {
      background-color: var(--color-royal-dark);
      border-color: var(--color-royal-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-btn-hover);
    }
    .btn-primary:active {
      transform: translateY(1px);
    }

    .btn-secondary {
      background-color: var(--color-card-light);
      color: var(--color-frosted-black);
      border-color: var(--color-shade-light);
    }
    .btn-secondary:hover {
      background-color: var(--color-bright-snow);
      border-color: var(--color-primary);
      color: var(--color-primary);
      transform: translateY(-2px);
    }

    .btn-outline-gold {
      background-color: transparent;
      color: var(--color-frosted-black);
      border-color: var(--color-gold-bronze);
    }
    .btn-outline-gold:hover {
      background-color: rgba(203, 160, 82, 0.1);
      color: var(--color-gold-earth);
      transform: translateY(-2px);
    }

    .btn-outline-blue {
      background-color: transparent;
      color: var(--color-primary);
      border-color: var(--color-primary);
    }
    .btn-outline-blue:hover {
      background-color: rgba(0, 71, 187, 0.08);
      color: var(--color-royal-dark);
      transform: translateY(-2px);
    }

    .btn:focus-visible {
      outline: none;
      box-shadow: 0 0 0 3px rgba(236, 216, 152, 0.45);
    }

    /* Cards */
    .stdi-card {
      background: var(--color-card-light);
      border-radius: var(--radius-card);
      padding: var(--space-lg);
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(16, 24, 32, 0.04);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .stdi-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(203, 160, 82, 0.2);
    }

    .glass-card {
      background: var(--color-glass-bg);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid var(--color-shade-light);
      border-radius: var(--radius-card);
      box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.07);
    }

    .surface-card {
      background: var(--color-card-light);
      border-radius: var(--radius-surface);
      padding: var(--space-md);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--color-shade-light);
      transition: all 0.2s ease;
    }
    .surface-card:hover {
      transform: translateY(-2px);
      border-color: var(--color-horizon-light);
    }

    /* Dividers */
    .divider-hairline {
      height: 1px;
      background-color: var(--color-shade-light);
      border: none;
      margin: var(--space-lg) 0;
    }

    .divider-accent {
      width: 48px;
      height: 3px;
      background-color: var(--color-gold-bronze);
      border-radius: var(--radius-full);
      margin: var(--space-sm) auto;
    }
    .divider-accent:last-child {
      margin-bottom: 0;
    }

    .section-header {
      margin-bottom: var(--space-lg);
    }
    .section-header.text-center {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .section-header h2 {
      font-size: clamp(1.6rem, 3vw, 2.25rem);
      margin-top: var(--space-xs);
      margin-bottom: var(--space-xs);
    }
    .section-header p {
      max-width: 680px;
      color: var(--color-body-text);
      font-size: 1rem;
    }

    /* ==========================================================================
       SECTION 2: HERO SECTION
       ========================================================================== */
    .hero-section {
      position: relative;
      padding-top: clamp(48px, 8vw, 96px);
      padding-bottom: clamp(56px, 10vw, 112px);
      background: linear-gradient(45deg, #6CACE4 0%, #0047BB 50%, #001489 100%);
      color: #FFFFFF;
      text-align: center;
      overflow: hidden;
    }

    .hero-content {
      max-width: 920px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-section .badge-gold {
      background-color: rgba(236, 216, 152, 0.2);
      color: #FFFFFF;
      border-color: rgba(236, 216, 152, 0.6);
      backdrop-filter: blur(8px);
    }

    .hero-headline {
      font-size: clamp(2.1rem, 4.5vw, 3.75rem);
      margin-top: var(--space-md);
      margin-bottom: var(--space-sm);
      letter-spacing: -0.01em;
      line-height: 1.15;
      color: #FFFFFF;
    }
    .hero-headline .text-gold {
      color: var(--color-gold-chalky);
    }

    .hero-subheadline {
      font-size: clamp(1.05rem, 2vw, 1.25rem);
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.92);
      max-width: 780px;
      margin-bottom: var(--space-lg);
    }

    .hero-cta-group {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-sm);
      flex-wrap: wrap;
    }

    .hero-cta-group .btn-primary {
      border: 1.5px solid rgba(255, 255, 255, 0.45);
      backdrop-filter: blur(4px);
    }
    .hero-cta-group .btn-primary:hover {
      border-color: #FFFFFF;
      background-color: var(--color-royal-dark);
      color: var(--color-on-primary);
    }

    /* ==========================================================================
       SECTION 3: TENTANG & CORE VALUES
       ========================================================================== */
    .about-section {
      padding-top: var(--space-xl);
      padding-bottom: var(--space-xl);
      background-color: var(--color-card-light);
      border-top: 1px solid var(--color-shade-light);
      border-bottom: 1px solid var(--color-shade-light);
    }

    .about-lead {
      font-size: 1.0625rem;
      color: var(--color-body-text);
      line-height: 1.7;
      text-align: center;
      max-width: 820px;
      margin: 0 auto;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-md);
    }

    .value-card {
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .value-icon-wrapper {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-surface);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-md);
    }
    .value-card:nth-child(1) .value-icon-wrapper {
      background: rgba(203, 160, 82, 0.14);
      color: var(--color-gold-earth);
    }
    .value-card:nth-child(2) .value-icon-wrapper {
      background: rgba(0, 71, 187, 0.1);
      color: var(--color-primary);
    }
    .value-card:nth-child(3) .value-icon-wrapper {
      background: rgba(0, 20, 137, 0.1);
      color: var(--color-royal-dark);
    }

    .value-title {
      font-size: 1.35rem;
      margin-bottom: var(--space-xs);
    }
    .value-copy {
      color: var(--color-body-text);
      font-size: 0.9375rem;
      line-height: 1.65;
    }

    /* ==========================================================================
       SECTION 4: STATISTIK KAMPUS (HIGHLIGHT ANGKA)
       ========================================================================== */
    .stats-section {
      padding-top: var(--space-xl);
      padding-bottom: var(--space-xl);
      background: var(--grad-gold);
      position: relative;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-md);
    }

    .stat-card {
      text-align: center;
      padding: var(--space-lg) var(--space-md);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.7);
    }

    .stat-number {
      font-family: var(--font-heading);
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      color: var(--color-primary);
      line-height: 1.1;
      margin-bottom: var(--space-2xs);
    }

    .stat-label {
      font-size: 1rem;
      font-weight: 600;
      color: var(--color-frosted-black);
      line-height: 1.4;
    }

    /* ==========================================================================
       SECTION 5: PROGRAM STUDI
       ========================================================================== */
    .prodi-section {
      padding-top: var(--space-2xl);
      padding-bottom: var(--space-2xl);
      background-color: var(--color-bright-snow);
    }

    .prodi-category-title {
      font-size: 1.15rem;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: var(--space-md);
      padding-bottom: var(--space-xs);
      border-bottom: 2px solid var(--color-shade-light);
      color: var(--color-frosted-black);
    }
    .prodi-category-title::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 9999px;
      background-color: var(--color-gold-bronze);
    }

    .prodi-grid {
      display: grid;
      gap: var(--space-md);
      margin-bottom: var(--space-xl);
    }
    .prodi-grid-s1 {
      grid-template-columns: repeat(2, 1fr);
    }
    .prodi-grid-idad {
      grid-template-columns: repeat(2, 1fr);
    }

    .prodi-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .prodi-card-header {
      margin-bottom: var(--space-sm);
    }
    .prodi-header-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: var(--space-xs);
    }
    .prodi-badge {
      display: inline-block;
      margin-bottom: 0;
    }
    .prodi-abbr {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 0.8125rem;
      letter-spacing: 0.04em;
      color: var(--color-primary);
      background-color: rgba(0, 71, 187, 0.08);
      border: 1px solid rgba(0, 71, 187, 0.18);
      padding: 2px 10px;
      border-radius: var(--radius-full);
      line-height: 1.4;
      flex-shrink: 0;
    }
    .prodi-title-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 4px;
    }
    .prodi-card-title {
      font-size: 1.2rem;
      line-height: 1.35;
      margin: 0;
    }
    .prodi-title-ar {
      font-family: var(--font-arabic);
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--color-gold-earth);
      line-height: 1.3;
      white-space: nowrap;
    }
    .prodi-card-copy {
      color: var(--color-body-text);
      font-size: 0.9rem;
      line-height: 1.65;
      margin-bottom: var(--space-md);
    }
    .prodi-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: var(--space-sm);
      border-top: 1px solid var(--color-shade-light);
      margin-top: auto;
    }
    .prodi-link {
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      font-family: inherit;
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--color-primary);
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: color 0.15s ease, transform 0.15s ease;
    }
    .prodi-link:hover {
      color: var(--color-royal-dark);
      text-decoration: underline;
      transform: translateX(2px);
    }
    .prodi-link:focus-visible {
      outline: 2px solid var(--color-gold-bronze);
      outline-offset: 2px;
      border-radius: var(--radius-sm);
    }

    /* Modal Detail Program Studi */
    .prodi-modal-backdrop {
      position: fixed;
      inset: 0;
      background-color: rgba(16, 24, 32, 0.72);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      z-index: 1100;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }
    .prodi-modal-backdrop.is-open {
      opacity: 1;
      visibility: visible;
    }
    .prodi-modal-dialog {
      background-color: var(--color-card-light);
      width: 100%;
      max-width: 780px;
      max-height: min(90vh, 840px);
      border-radius: var(--radius-card);
      border: 1px solid rgba(203, 160, 82, 0.35);
      box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.28);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transform: scale(0.95);
      transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .prodi-modal-backdrop.is-open .prodi-modal-dialog {
      transform: scale(1);
    }
    .prodi-modal-header {
      background: linear-gradient(135deg, #002D72 0%, #0047BB 100%);
      color: #ffffff;
      padding: 20px 24px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
    }
    .prodi-modal-header-content {
      flex: 1;
    }
    .prodi-modal-badges {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      flex-wrap: wrap;
    }
    .prodi-modal-badge-jenjang {
      font-family: var(--font-heading);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      background: rgba(255, 255, 255, 0.18);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.3);
      padding: 2px 10px;
      border-radius: var(--radius-full);
    }
    .prodi-modal-badge-abbr {
      font-family: var(--font-heading);
      font-size: 0.75rem;
      font-weight: 700;
      background: var(--color-gold-chalky);
      color: var(--color-on-gold);
      padding: 2px 8px;
      border-radius: var(--radius-full);
    }
    .prodi-modal-title-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }
    .prodi-modal-title {
      font-size: 1.35rem;
      line-height: 1.25;
      margin: 0;
      color: #ffffff;
    }
    .prodi-modal-title-ar {
      font-family: var(--font-arabic);
      color: var(--color-gold-chalky);
      font-size: 1.25rem;
      font-weight: 600;
      line-height: 1.2;
      direction: rtl;
    }
    .prodi-modal-close-btn {
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: #ffffff;
      border-radius: var(--radius-full);
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      transition: background-color 0.2s ease, transform 0.15s ease;
    }
    .prodi-modal-close-btn:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: scale(1.06);
    }
    .prodi-modal-close-btn:focus-visible {
      outline: 2px solid var(--color-gold-chalky);
      outline-offset: 2px;
    }
    .prodi-modal-body {
      padding: 22px 24px;
      overflow-y: auto;
      overscroll-behavior: contain;
      display: flex;
      flex-direction: column;
      gap: 18px;
      background-color: var(--color-bright-snow);
      color: var(--color-body-text);
      font-size: 0.925rem;
      line-height: 1.65;
    }
    .prodi-modal-akreditasi-box {
      background: var(--color-card-light);
      border-left: 1px solid var(--color-shade-light);
      border-top: 1px solid var(--color-shade-light);
      border-right: 1px solid var(--color-shade-light);
      border-bottom: 1px solid var(--color-shade-light);
      border-radius: var(--radius-sm);
      padding: 12px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }
    .prodi-modal-akreditasi-status {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--color-primary);
    }
    .prodi-modal-akreditasi-status .badge-akreditasi {
      background: rgba(203, 160, 82, 0.18);
      color: var(--color-gold-earth);
      border: 1px solid var(--color-gold-earth);
      padding: 2px 10px;
      border-radius: var(--radius-full);
      font-weight: 700;
      font-size: 0.8125rem;
      letter-spacing: 0.03em;
    }
    .prodi-modal-sk-link {
      font-size: 0.8125rem;
      color: var(--color-primary);
      text-decoration: underline;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-weight: 600;
    }
    .prodi-modal-sk-link:hover {
      color: var(--color-royal-dark);
    }
    .prodi-modal-card {
      background: var(--color-card-light);
      border: 1px solid var(--color-shade-light);
      border-radius: var(--radius-surface);
      padding: 16px 20px;
      box-shadow: var(--shadow-sm);
    }
    .prodi-modal-card-lead {
      background: linear-gradient(to right, rgba(0, 71, 187, 0.04), rgba(203, 160, 82, 0.05));
      border: 1px solid rgba(0, 71, 187, 0.12);
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--color-body-text);
    }
    .prodi-modal-section-h5 {
      font-size: 1rem;
      color: var(--color-primary);
      margin: 0 0 10px 0;
      display: flex;
      align-items: center;
      gap: 8px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--color-shade-light);
      font-weight: 700;
    }
    .prodi-modal-section-h5 .modal-section-dot {
      width: 8px;
      height: 8px;
      border-radius: 9999px;
      background-color: var(--color-gold-bronze);
      flex-shrink: 0;
    }
    .prodi-modal-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .prodi-modal-list-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.8875rem;
      line-height: 1.6;
    }
    .prodi-modal-list-item-num {
      background: rgba(0, 71, 187, 0.08);
      color: var(--color-primary);
      font-weight: 700;
      font-size: 0.775rem;
      min-width: 22px;
      height: 22px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .prodi-modal-profil-grid {
      display: grid;
      gap: 10px;
      grid-template-columns: 1fr;
    }
    .prodi-modal-profil-item {
      background: var(--color-bright-snow);
      border: 1px solid var(--color-shade-light);
      border-radius: var(--radius-sm);
      padding: 10px 14px;
    }
    .prodi-modal-profil-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--color-primary);
      margin: 0 0 4px 0;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .prodi-modal-profil-desc {
      margin: 0;
      font-size: 0.85rem;
      color: var(--color-body-text);
      line-height: 1.5;
    }
    .prodi-modal-footer {
      padding: 14px 24px;
      background: var(--color-card-light);
      border-top: 1px solid var(--color-shade-light);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    @media (max-width: 640px) {
      .prodi-modal-header {
        padding: 16px 18px;
      }
      .prodi-modal-body {
        padding: 16px 16px;
      }
      .prodi-modal-footer {
        padding: 12px 16px;
        flex-direction: column-reverse;
        gap: 10px;
      }
      .prodi-modal-footer .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
      }
    }

    /* ==========================================================================
       SECTION 6: EKOSISTEM PENDIDIKAN & LAYANAN TERINTEGRASI
       ========================================================================== */
    .ekosistem-section {
      padding-top: var(--space-2xl);
      padding-bottom: var(--space-2xl);
      background-color: var(--color-card-light);
      border-top: 1px solid var(--color-shade-light);
      border-bottom: 1px solid var(--color-shade-light);
    }

    /* Pill-in-Pill Tab Bar */
    .ekosistem-section .section-header {
      margin-bottom: var(--space-md);
    }

    .tab-nav-wrapper {
      display: flex;
      justify-content: center;
      margin-bottom: var(--space-md);
    }

    .tab-list {
      display: inline-flex;
      background-color: var(--color-shade-light);
      padding: 5px;
      border-radius: var(--radius-full);
      gap: 4px;
      max-width: 100%;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .tab-list::-webkit-scrollbar {
      display: none;
    }

    .tab-btn {
      background: transparent;
      border: none;
      padding: 10px 22px;
      border-radius: var(--radius-full);
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--color-grey-olive);
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .tab-btn:hover {
      color: var(--color-frosted-black);
    }
    .tab-btn.is-active {
      background-color: var(--color-card-light);
      color: var(--color-frosted-black);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    .tab-btn.is-active .icon {
      color: var(--color-gold-bronze);
    }

    .tab-panel {
      display: none;
      animation: fadeIn 0.3s ease;
    }
    .tab-panel.is-active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .ekosistem-card {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: var(--space-xl);
      align-items: center;
      padding: clamp(28px, 4vw, 48px);
      background: linear-gradient(145deg, var(--color-card-light) 0%, var(--color-bright-snow) 100%);
      border: 1px solid var(--color-shade-light);
    }

    .ekosistem-info-badge {
      margin-bottom: var(--space-sm);
    }
    .ekosistem-title {
      font-size: clamp(1.4rem, 2.5vw, 1.85rem);
      margin-bottom: var(--space-sm);
      color: var(--color-primary);
    }
    .ekosistem-copy {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--color-body-text);
      margin-bottom: var(--space-md);
    }

    .ekosistem-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .ekosistem-tag-item {
      padding: 6px 14px;
      background-color: var(--color-bright-snow);
      border: 1px solid var(--color-shade-light);
      border-radius: var(--radius-full);
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--color-frosted-black);
    }

    .ekosistem-visual-box {
      background: linear-gradient(135deg, #6CACE4 0%, #0047BB 50%, #001489 100%);
      color: var(--color-on-brand);
      border-radius: var(--radius-surface);
      padding: var(--space-lg);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 240px;
    }

    .ekosistem-visual-icon {
      width: 44px;
      height: 44px;
      margin-bottom: var(--space-sm);
      color: var(--color-gold-chalky);
    }
    .ekosistem-visual-title {
      font-family: var(--font-heading);
      text-transform: uppercase;
      font-size: 1.25rem;
      color: #FFFFFF;
      margin-bottom: 6px;
    }
    .ekosistem-visual-text {
      font-size: 0.9rem;
      color: #E2E8F0;
      line-height: 1.5;
    }

    /* ==========================================================================
       SECTION 7: FASILITAS PENUNJANG AKADEMIK
       ========================================================================== */
    .fasilitas-section {
      padding-top: var(--space-2xl);
      padding-bottom: var(--space-2xl);
      background-color: var(--color-bright-snow);
    }

    .fasilitas-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-md);
    }

    .fasilitas-item {
      position: relative;
      height: 320px;
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      cursor: pointer;
      border: 1px solid rgba(16, 24, 32, 0.05);
    }

    .fasilitas-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .fasilitas-item:hover .fasilitas-img {
      transform: scale(1.06);
    }

    .fasilitas-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(16, 24, 32, 0.1) 0%, rgba(16, 24, 32, 0.4) 40%, rgba(0, 20, 137, 0.92) 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: var(--space-md);
      color: #FFFFFF;
      transition: background 0.3s ease;
    }
    .fasilitas-item:hover .fasilitas-overlay {
      background: linear-gradient(180deg, rgba(16, 24, 32, 0.05) 0%, rgba(0, 71, 187, 0.6) 40%, #001489 100%);
    }

    .fasilitas-title {
      font-size: 1.15rem;
      color: #FFFFFF;
      margin-bottom: 4px;
      text-transform: uppercase;
      font-family: var(--font-heading);
      letter-spacing: 0.01em;
    }
    .fasilitas-label {
      font-size: 0.75rem;
      color: var(--color-gold-chalky);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* ==========================================================================
       SECTION 8: BERITA & INSPIRASI (Warta STDI)
       Mengikuti gaya layout 2-kolom persis contoh HTML:
       Left: 1 Featured Cover Card | Right: 3 Stacked Surface Cards
       ========================================================================== */
    .news-section {
      padding-top: var(--space-2xl);
      padding-bottom: var(--space-2xl);
      background-color: var(--color-card-light);
      border-top: 1px solid var(--color-shade-light);
    }

    .news-grid-highlight {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: var(--space-md);
      align-items: stretch;
      margin-bottom: var(--space-xl);
    }

    /* Left: Featured Cover Card */
    .news-featured-cover {
      position: relative;
      border-radius: var(--radius-card);
      overflow: hidden;
      min-height: 480px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: clamp(24px, 4vw, 40px);
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(16, 24, 32, 0.05);
    }

    .news-featured-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
      z-index: 1;
    }
    .news-featured-cover:hover .news-featured-bg {
      transform: scale(1.04);
    }

    .news-featured-overlay {
      position: absolute;
      inset: 0;
      background: var(--grad-featured-overlay);
      z-index: 2;
    }

    .news-featured-content {
      position: relative;
      z-index: 3;
      color: #FFFFFF;
    }

    .news-featured-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: var(--space-xs);
      flex-wrap: wrap;
      font-size: 0.8125rem;
      color: var(--color-gold-chalky);
    }

    .news-featured-title {
      font-size: clamp(1.3rem, 2.3vw, 1.85rem);
      line-height: 1.3;
      color: #FFFFFF;
      margin-bottom: var(--space-xs);
    }
    .news-featured-title a:hover {
      text-decoration: underline;
    }

    /* Right: Stacked Surface Cards (Blue theme from HTML example) */
    .news-stacked-list {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
      justify-content: space-between;
    }

    .news-surface-card {
      background-color: var(--color-primary);
      border-radius: var(--radius-surface);
      padding: var(--space-md);
      color: #FFFFFF;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
      border: 1px solid rgba(255, 255, 255, 0.1);
      flex: 1;
    }
    .news-surface-card:hover {
      background-color: var(--color-royal-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-btn);
    }

    .news-surface-title {
      font-size: 1.0625rem;
      line-height: 1.4;
      color: #FFFFFF;
      margin-bottom: var(--space-xs);
    }
    .news-surface-title a:hover {
      text-decoration: underline;
    }

    .news-surface-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.75rem;
      color: var(--color-gold-chalky);
      flex-wrap: wrap;
      margin-top: auto;
    }

    .news-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .news-action-bar {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-md);
    }


    /* ==========================================================================
       RESPONSIVE BREAKPOINTS
       Tier 1: Desktop (> 1024px)
       Tier 2: Tablet (481px - 1024px)
       Tier 3: Mobile (< 480px)
       ========================================================================== */

    @media (max-width: 1024px) {
      .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
      }
      .prodi-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .fasilitas-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .news-grid-highlight {
        grid-template-columns: 1fr;
      }
      .news-featured-cover {
        min-height: 420px;
      }
      .ekosistem-card {
        grid-template-columns: 1fr;
        gap: var(--space-md);
      }
      .prodi-grid-s1 {
        grid-template-columns: repeat(2, 1fr);
      }
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .values-grid {
        grid-template-columns: 1fr;
      }
      .stats-grid {
        grid-template-columns: 1fr;
      }
      .prodi-grid-s1,
      .prodi-grid-idad {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .hero-section {
        padding-top: 40px;
        padding-bottom: 56px;
      }
      .hero-headline {
        font-size: 2rem;
      }
      .hero-subheadline {
        font-size: 0.95rem;
      }
      .hero-cta-group {
        flex-direction: column;
        width: 100%;
      }
      .hero-cta-group .btn {
        width: 100%;
      }
      .prodi-grid {
        grid-template-columns: 1fr;
      }
      .fasilitas-grid {
        grid-template-columns: 1fr;
      }
      .fasilitas-item {
        height: 260px;
      }
      .news-featured-cover {
        min-height: 360px;
        padding: var(--space-md);
      }
      .news-featured-title {
        font-size: 1.25rem;
      }
      .tab-btn {
        padding: 8px 16px;
        font-size: 0.8125rem;
      }
      .stdi-card {
        padding: var(--space-md);
      }
      .container, .container-wide {
        padding-left: 16px;
        padding-right: 16px;
      }
    }
    /* ===== Tema Gelap: timpa 14 token warna (0 bom hex) ===== */
    /* ==========================================================================
       TEMA GELAP (DARK) — Palet & Override
       ========================================================================== */
    html[data-theme="dark"] {
      color-scheme: dark;
      /* Aksen brand (versi terang agar kontras di latar gelap) */
      --color-primary: #6FA8E4;
      --color-royal-dark: #9CC3F0;
      --color-horizon-light: #A9CDF2;
      --color-gold-bronze: #D9B87A;
      --color-gold-earth: #CBAF79;
      --color-gold-chalky: #E8CF97;
      /* Teks & permukaan */
      --color-frosted-black: #EAF1FA;
      --color-grey-olive: #9FB0C6;
      --color-bright-snow: #0B1220;
      --color-shade-light: #26344A;
      --color-card-light: #141D2E;
      --color-shade-dark: #05090F;
      --color-card-dark: #1D2A3E;
      /* Token semantik */
      --color-body-text: #C3D0E0;
      --color-on-primary: #0B1220;
      --color-on-brand: #FFFFFF;
      --color-on-gold: #101820;
      --color-header-bg: rgba(11, 18, 32, 0.92);
      --color-glass-bg: rgba(20, 29, 46, 0.82);
      /* Gradien & bayangan versi gelap */
      /* --grad-gold: linear-gradient(135deg, #17253F 0%, #0B1220 100%); */
      --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.45), 0 2px 4px -2px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
      --shadow-hover: 0 16px 24px -4px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    /* Pita statistik: dark elegan dengan angka emas */
    html[data-theme="dark"] .stat-card { border-color: var(--color-shade-light); }
    /* html[data-theme="dark"] .stat-number { color: var(--color-gold-chalky); } */
    html[data-theme="dark"] .stat-label { color: var(--color-frosted-black); }

    /* Kartu berita biru: biru dalam agar teks putih tetap terbaca */
    html[data-theme="dark"] .news-surface-card {
      background-color: #1B3A66;
      border-color: rgba(255, 255, 255, 0.08);
    }
    html[data-theme="dark"] .news-surface-card:hover { background-color: #234A80; }


    html[data-theme="dark"] .stdi-card { border-color: rgba(255, 255, 255, 0.06); }
    html[data-theme="dark"] .tab-btn.is-active { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); }

    /* Icon wrapper: pertegas tint agar terlihat di permukaan gelap */
    html[data-theme="dark"] .value-card:nth-child(1) .value-icon-wrapper {
      background: rgba(216, 184, 122, 0.18);
      color: var(--color-gold-chalky);
    }
    html[data-theme="dark"] .value-card:nth-child(2) .value-icon-wrapper {
      background: rgba(111, 168, 228, 0.16);
      color: var(--color-horizon-light);
    }
    html[data-theme="dark"] .value-card:nth-child(3) .value-icon-wrapper {
      background: rgba(156, 195, 240, 0.16);
      color: var(--color-royal-dark);
    }
    html[data-theme="dark"] .prodi-abbr {
      background-color: rgba(111, 168, 228, 0.14);
      border-color: rgba(111, 168, 228, 0.3);
    }

    @media (prefers-color-scheme: dark) {
      html[data-theme="auto"] {
        color-scheme: dark;
        --color-primary: #6FA8E4;
        --color-royal-dark: #9CC3F0;
        --color-horizon-light: #A9CDF2;
        --color-gold-bronze: #D9B87A;
        --color-gold-earth: #CBAF79;
        --color-gold-chalky: #E8CF97;
        --color-frosted-black: #EAF1FA;
        --color-grey-olive: #9FB0C6;
        --color-bright-snow: #0B1220;
        --color-shade-light: #26344A;
        --color-card-light: #141D2E;
        --color-shade-dark: #05090F;
        --color-card-dark: #1D2A3E;
        --color-body-text: #C3D0E0;
        --color-on-primary: #0B1220;
        --color-on-brand: #FFFFFF;
        --color-on-gold: #101820;
        --color-header-bg: rgba(11, 18, 32, 0.92);
        --color-glass-bg: rgba(20, 29, 46, 0.82);
        /* --grad-gold: linear-gradient(135deg, #17253F 0%, #0B1220 100%); */
        --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.45), 0 2px 4px -2px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
        --shadow-hover: 0 16px 24px -4px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
      }
      html[data-theme="auto"] .stat-card { border-color: var(--color-shade-light); }
      html[data-theme="auto"] .stat-number { color: var(--color-gold-chalky); }
      html[data-theme="auto"] .stat-label { color: var(--color-frosted-black); }
      html[data-theme="auto"] .news-surface-card {
        background-color: #1B3A66;
        border-color: rgba(255, 255, 255, 0.08);
      }
      html[data-theme="auto"] .news-surface-card:hover { background-color: #234A80; }
      html[data-theme="auto"] .stdi-card { border-color: rgba(255, 255, 255, 0.06); }
      html[data-theme="auto"] .tab-btn.is-active { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); }

      html[data-theme="auto"] .value-card:nth-child(1) .value-icon-wrapper {
        background: rgba(216, 184, 122, 0.18);
        color: var(--color-gold-chalky);
      }
      html[data-theme="auto"] .value-card:nth-child(2) .value-icon-wrapper {
        background: rgba(111, 168, 228, 0.16);
        color: var(--color-horizon-light);
      }
      html[data-theme="auto"] .value-card:nth-child(3) .value-icon-wrapper {
        background: rgba(156, 195, 240, 0.16);
        color: var(--color-royal-dark);
      }
      html[data-theme="auto"] .prodi-abbr {
        background-color: rgba(111, 168, 228, 0.14);
        border-color: rgba(111, 168, 228, 0.3);
      }
    }
