      :root {
        --blue: #1A5FD4;
        --blue-dark: #0D3E8F;
        --blue-light: #3B82F6;
        --blue-pale: #EBF2FF;
        --blue-mid: #DBEAFE;
        --black: #0F1724;
        --dark: #F0F6FF;
        --mid: #FFFFFF;
        --gray: #E8F0FE;
        --light: #1E2E4A;
        --red: #DC2626;
        --white: #FFFFFF;
        --accent: #0EA5E9;
      }
      *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
      html { scroll-behavior: smooth; }
      body {
        background: var(--white);
        color: var(--light);
        font-family: 'DM Sans', sans-serif;
        overflow-x: hidden;
        cursor: none;
      }
      .cursor {
        width: 12px; height: 12px;
        background: var(--blue);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: transform 0.1s ease, width 0.3s, height 0.3s;
      }
      .cursor-ring {
        width: 36px; height: 36px;
        border: 1.5px solid var(--blue);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: left 0.15s ease, top 0.15s ease;
        opacity: 0.4;
      }
      .ticker-wrap {
        background: var(--blue);
        overflow: hidden;
        padding: 8px 0;
        position: relative;
        z-index: 100;
      }
      .ticker-track {
        display: flex;
        gap: 60px;
        width: max-content;
        animation: ticker 30s linear infinite;
      }
      .ticker-item {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 14px;
        letter-spacing: 2px;
        color: var(--white);
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 16px;
      }
      .ticker-item::before { content: 'â—†'; font-size: 8px; color: rgba(255,255,255,0.5); }
      @keyframes ticker {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
      }
      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 60px;
        position: sticky;
        top: 0;
        z-index: 200;
        background: rgba(255,255,255,0.92);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(26,95,212,0.1);
        box-shadow: 0 1px 20px rgba(26,95,212,0.06);
      }
      .logo {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 28px;
        letter-spacing: 4px;
        color: var(--blue);
      }
      .logo span { color: var(--blue-dark); }
      .nav-links {
        display: flex;
        gap: 36px;
        list-style: none;
      }
      .nav-links a {
        text-decoration: none;
        color: rgba(30,46,74,0.55);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: color 0.2s;
      }
      .nav-links a:hover,
      .nav-links a.active { color: var(--blue); }
      .nav-cta {
        background: var(--blue);
        color: var(--white) !important;
        padding: 8px 20px;
        border-radius: 2px;
        font-weight: 700 !important;
      }
      .nav-cta:hover { background: var(--blue-dark); color: var(--white) !important; }

      /* PER RUANGAN */
  .ruangan-section{
    background: var(--blue-pale);
  }

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

  .ruang-card{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    border-left:5px solid var(--blue);
    transition:0.3s;
  }

  .ruang-card:hover{
    transform:translateY(-8px);
  }

  .ruang-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:var(--black);
  }

  .ruang-card p{
    font-size:14px;
    line-height:1.8;
    color:rgba(30,46,74,0.75);
    margin-bottom:10px;
  }

  @media(max-width:900px){
    .ruangan-grid{
      grid-template-columns:1fr;
    }
  }

      /* HERO */
      .hero {
        min-height: 90vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
      }
      .hero-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 80px 60px 80px 60px;
        position: relative;
        z-index: 2;
      }
      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255,255,255,0.15);
        border: 1px solid rgba(255,255,255,0.3);
        color: var(--white);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 2px;
        margin-bottom: 32px;
        width: fit-content;
        animation: fadeUp 0.6s ease both;
      }
      .hero-badge::before {
        content: '';
        width: 6px; height: 6px;
        background: #7DD3FC;
        border-radius: 50%;
        animation: pulse 2s infinite;
      }
      @keyframes pulse {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.5; transform: scale(1.4); }
      }
      .hero-title {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(70px, 8vw, 120px);
        line-height: 0.9;
        letter-spacing: 2px;
        margin-bottom: 8px;
        color: var(--white);
        animation: fadeUp 0.7s 0.1s ease both;
      }
      .hero-title .accent { color: #7DD3FC; }
      .hero-subtitle {
        font-size: 15px;
        color: rgba(255,255,255,0.65);
        line-height: 1.7;
        max-width: 420px;
        margin: 24px 0 40px;
        animation: fadeUp 0.7s 0.2s ease both;
      }
      .hero-actions {
        display: flex;
        gap: 16px;
        animation: fadeUp 0.7s 0.3s ease both;
      }
      .btn-primary {
        background: var(--white);
        color: var(--blue-dark);
        border: none;
        padding: 14px 32px;
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        cursor: none;
        border-radius: 2px;
        transition: background 0.2s, transform 0.2s;
      }
      .btn-primary:hover { background: #EBF2FF; transform: translateY(-2px); }
      .btn-outline {
        background: transparent;
        color: var(--white);
        border: 1px solid rgba(255,255,255,0.35);
        padding: 14px 32px;
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        cursor: none;
        border-radius: 2px;
        transition: border-color 0.2s, background 0.2s;
      }
      .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
      .hero-right {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .hero-visual {
        position: relative;
        width: 380px;
        height: 380px;
      }
      .hero-ring {
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.15);
        animation: spin 20s linear infinite;
      }
      .hero-ring:nth-child(1) { inset: 0; }
      .hero-ring:nth-child(2) { inset: 30px; animation-direction: reverse; animation-duration: 15s; }
      .hero-ring:nth-child(3) { inset: 60px; animation-duration: 25s; }
      @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
      .hero-center-icon {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 100px;
        animation: float 4s ease-in-out infinite;
      }
      @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-12px); }
      }
      .hero-dot {
        position: absolute;
        width: 8px; height: 8px;
        background: rgba(255,255,255,0.5);
        border-radius: 50%;
      }
      .hero-dot:nth-child(4) { top: 10%; left: 50%; }
      .hero-dot:nth-child(5) { top: 50%; right: 0; }
      .hero-dot:nth-child(6) { bottom: 15%; left: 20%; }
      .hero-stats {
        position: absolute;
        bottom: 60px;
        left: 60px;
        display: flex;
        gap: 40px;
        animation: fadeUp 0.7s 0.5s ease both;
      }
      .stat { text-align: left; }
      .stat-num {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 42px;
        color: #7DD3FC;
        line-height: 1;
      }
      .stat-label {
        font-size: 11px;
        color: rgba(255,255,255,0.45);
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-top: 4px;
      }
      @keyframes fadeUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
      }
      .divider { height: 1px; background: rgba(26,95,212,0.08); margin: 0 60px; }
      section { padding: 100px 60px; }
      .section-tag {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 16px;
      }
      .section-title {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(42px, 5vw, 72px);
        line-height: 1;
        letter-spacing: 1px;
        margin-bottom: 20px;
        color: var(--black);
      }
      .section-desc {
        color: rgba(30,46,74,0.5);
        font-size: 15px;
        line-height: 1.8;
        max-width: 520px;
      }

      /* PILAR */
      .pilar-section { background: var(--blue-pale); }
      .pilar-header { margin-bottom: 60px; }
      .pilar-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
      }
      .pilar-card {
        background: var(--white);
        padding: 48px 40px;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s, box-shadow 0.3s;
      }
      .pilar-card.visible { opacity: 1; transform: translateY(0); }
      .pilar-card:hover { background: var(--white); box-shadow: 0 12px 40px rgba(26,95,212,0.12); }
      .pilar-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 3px;
        background: var(--blue);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
      }
      .pilar-card:hover::before { transform: scaleX(1); }
      .pilar-icon { font-size: 40px; margin-bottom: 24px; display: block; }
      .pilar-num {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 80px;
        color: rgba(26,95,212,0.06);
        position: absolute;
        top: 10px; right: 20px;
        line-height: 1;
      }
      .pilar-title {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 12px;
        color: var(--black);
      }
      .pilar-text {
        font-size: 14px;
        color: rgba(30,46,74,0.55);
        line-height: 1.7;
      }

      /* STRUKTUR ORGANISASI */
      .struktur-section { background: var(--white); }
      .struktur-header { margin-bottom: 60px; text-align: center; display: flex; flex-direction: column; align-items: center; }
      .struktur-container { display: flex; flex-direction: column; align-items: center; }
      .struktur-card {
        background: var(--blue-pale);
        padding: 30px 40px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        border: 1px solid rgba(26,95,212,0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        width: 100%;
      }
      .struktur-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(26,95,212,0.15);
      }
      .struktur-card.level-1 { max-width: 400px; border-top: 4px solid var(--blue); }
      .struktur-card.level-2 { max-width: 400px; border-top: 4px solid var(--blue-light); }
      .struktur-card.level-3 { border-top: 4px solid var(--accent); }
      .struktur-role {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 24px;
        color: var(--blue-dark);
        margin-bottom: 8px;
        letter-spacing: 1px;
      }
      .struktur-name {
        font-weight: 700;
        font-size: 16px;
        color: var(--black);
      }
      .struktur-desc {
        font-size: 14px;
        color: rgba(30,46,74,0.6);
        line-height: 1.6;
        margin-top: 10px;
      }
      .struktur-line {
        width: 2px;
        height: 40px;
        background-color: var(--blue);
      }
      .struktur-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        width: 100%;
        margin-top: 20px;
      }

      /* DENAH SECTION */
      .denah-section { background: var(--white); }
      .denah-container {
        margin-top: 48px;
        border: 2px solid rgba(26,95,212,0.12);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 8px 40px rgba(26,95,212,0.1);
      }
      .denah-img {
        width: 100%;
        display: block;
        transition: transform 0.4s ease;
      }
      .denah-container:hover .denah-img { transform: scale(1.01); }
      .denah-legend {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 32px;
        background: var(--blue-pale);
        padding: 28px 32px;
        border-radius: 8px;
      }
      .legend-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
      }
      .legend-icon {
        font-size: 22px;
        flex-shrink: 0;
        margin-top: 2px;
      }
      .legend-title {
        font-weight: 700;
        font-size: 14px;
        color: var(--black);
        margin-bottom: 3px;
      }
      .legend-text {
        font-size: 12px;
        color: rgba(30,46,74,0.5);
        line-height: 1.5;
      }

      /* VIDEO SECTION */
      .video-section { background: var(--white); }
      .video-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-top: 60px;
      }
      .video-card {
        background: var(--blue-pale);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        transition: transform 0.3s, box-shadow 0.3s;
        border: 1px solid rgba(26,95,212,0.1);
      }
      .video-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(26,95,212,0.15);
      }
      .video-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
        background: var(--black);
      }
      .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
      .video-info {
        padding: 24px;
        border-left: 4px solid var(--blue);
      }
      .video-title {
        font-family: 'DM Sans', sans-serif;
        font-weight: 700;
        font-size: 18px;
        color: var(--black);
      }

      /* DANGER BANNER */
      .danger-banner {
        background: var(--blue-dark);
        padding: 60px;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 60px;
      }
      .danger-title {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(36px, 4vw, 60px);
        line-height: 1;
        letter-spacing: 1px;
        color: var(--white);
      }
      .danger-sub {
        color: rgba(255,255,255,0.6);
        font-size: 15px;
        margin-top: 12px;
        max-width: 500px;
      }
      .danger-btn {
        background: var(--white);
        color: var(--blue-dark);
        border: none;
        padding: 16px 36px;
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        cursor: none;
        border-radius: 2px;
        white-space: nowrap;
        transition: transform 0.2s, background 0.2s;
      }
      .danger-btn:hover { transform: scale(1.04); background: #EBF2FF; }

      /* TIPS */
      .tips-section { background: var(--white); }
      .tips-layout {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 80px;
        align-items: start;
        margin-top: 60px;
      }
      .tips-list { display: flex; flex-direction: column; gap: 4px; }
      .tip-item {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        padding: 24px;
        border-left: 2px solid transparent;
        cursor: none;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, background 0.3s;
      }
      .tip-item.visible { opacity: 1; transform: translateX(0); }
      .tip-item:hover { border-left-color: var(--blue); background: var(--blue-pale); }
      .tip-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
      .tip-title { font-weight: 700; font-size: 16px; margin-bottom: 6px; color: var(--black); }
      .tip-text { font-size: 14px; color: rgba(30,46,74,0.5); line-height: 1.6; }

      /* REGULASI SECTION */
      .regulasi-section { background: var(--blue-pale); }
      .regulasi-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-top: 60px;
      }
      .regulasi-card {
        background: var(--white);
        border-radius: 4px;
        padding: 36px 32px;
        border-left: 4px solid var(--blue);
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s;
      }
      .regulasi-card.visible { opacity: 1; transform: translateY(0); }
      .regulasi-card:hover { box-shadow: 0 8px 30px rgba(26,95,212,0.12); }
      .regulasi-num {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 13px;
        letter-spacing: 3px;
        color: var(--blue);
        margin-bottom: 10px;
      }
      .regulasi-title {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 22px;
        margin-bottom: 10px;
        color: var(--black);
      }
      .regulasi-text {
        font-size: 14px;
        color: rgba(30,46,74,0.55);
        line-height: 1.7;
      }

      /* COUNTER */
      .counter-section { background: var(--blue); padding: 80px 60px; }
      .counter-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background: rgba(255,255,255,0.1);
      }
      .counter-card { background: var(--blue); padding: 40px; text-align: center; }
      .counter-num {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 72px;
        color: var(--white);
        line-height: 1;
      }
      .counter-label {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.5);
        margin-top: 8px;
      }

      /* APD SECTION */
      .apd-section { background: var(--white); }
      .apd-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        margin-top: 60px;
      }
      .apd-card {
        background: var(--blue-pale);
        border-radius: 8px;
        overflow: hidden;
        cursor: none;
        opacity: 0;
        transform: scale(0.9);
        transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s;
        border: 1px solid rgba(26,95,212,0.1);
      }
      .apd-card.visible { opacity: 1; transform: scale(1); }
      .apd-card:hover { transform: translateY(-8px) !important; box-shadow: 0 16px 40px rgba(26,95,212,0.15); }
      .apd-img-wrap {
        width: 100%;
        aspect-ratio: 1/1;
        overflow: hidden;
        background: var(--white);
      }
      .apd-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
      }
      .apd-card:hover .apd-img-wrap img { transform: scale(1.08); }
      .apd-info { padding: 20px 16px; }
      .apd-name { font-weight: 700; font-size: 14px; color: var(--black); margin-bottom: 6px; }
      .apd-desc { font-size: 12px; color: rgba(30,46,74,0.5); line-height: 1.5; }

      /* DOKUMENTASI SECTION */
      .dokumentasi-section { background: var(--white); text-align: center; }
      .dokumentasi-actions { display: flex; justify-content: center; gap: 20px; margin-top: 40px; flex-wrap: wrap; }
      .btn-primary-alt {
        background: var(--blue);
        color: var(--white);
        border: none;
        padding: 14px 32px;
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        cursor: none;
        border-radius: 2px;
        transition: background 0.2s, transform 0.2s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
      }
      .btn-primary-alt:hover { background: var(--blue-dark); transform: translateY(-2px); }
      .btn-outline-alt {
        background: transparent;
        color: var(--blue);
        border: 2px solid var(--blue);
        padding: 12px 30px;
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        cursor: none;
        border-radius: 2px;
        transition: all 0.2s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
      }
      .btn-outline-alt:hover { background: var(--blue-pale); }

      .btn-download-sm {
        background: rgba(26,95,212,0.1);
        color: var(--blue-dark);
        border: 1px solid rgba(26,95,212,0.2);
        padding: 8px 16px;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        border-radius: 4px;
        transition: all 0.2s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 16px;
      }
      .btn-download-sm:hover {
        background: var(--blue);
        color: var(--white);
      }

      /* FOOTER */
      footer {
        background: var(--black);
        border-top: 1px solid rgba(26,95,212,0.1);
        padding: 60px;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 60px;
      }
      .footer-logo {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 36px;
        letter-spacing: 4px;
        color: #7DD3FC;
        margin-bottom: 16px;
      }
      .footer-desc {
        font-size: 14px;
        color: rgba(255,255,255,0.35);
        line-height: 1.7;
        max-width: 300px;
      }
      .footer-col h4 {
        font-weight: 700;
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #7DD3FC;
        margin-bottom: 20px;
      }
      .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
      .footer-col a {
        text-decoration: none;
        font-size: 14px;
        color: rgba(255,255,255,0.4);
        transition: color 0.2s;
      }
      .footer-col a:hover { color: var(--white); }
      .footer-bottom {
        background: var(--black);
        padding: 20px 60px;
        border-top: 1px solid rgba(255,255,255,0.04);
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .footer-bottom p {
        font-size: 12px;
        color: rgba(255,255,255,0.2);
        letter-spacing: 1px;
      }
      .footer-bottom span { color: #7DD3FC; }
      #scrollTop {
        position: fixed;
        bottom: 40px;
        right: 40px;
        width: 44px; height: 44px;
        background: var(--blue);
        color: var(--white);
        border: none;
        border-radius: 2px;
        font-size: 18px;
        cursor: none;
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 500;
        transition: transform 0.2s;
      }
      #scrollTop:hover { transform: translateY(-4px); }
      #scrollTop.show { display: flex; }

      @media (max-width: 900px) {
        nav { padding: 16px 24px; }
        .nav-links { display: none; }
        section { padding: 60px 24px; }
        .hero { grid-template-columns: 1fr; min-height: auto; padding: 60px 24px; }
        .hero-right { display: none; }
        .hero-stats { position: relative; bottom: auto; left: auto; margin-top: 40px; }
        .pilar-grid { grid-template-columns: 1fr; }
        .struktur-grid { grid-template-columns: 1fr; }
        .tips-layout { grid-template-columns: 1fr; gap: 40px; }
        .counter-grid { grid-template-columns: repeat(2, 1fr); }
        .apd-grid { grid-template-columns: repeat(2, 1fr); }
        .regulasi-grid { grid-template-columns: 1fr; }
        .denah-legend { grid-template-columns: 1fr 1fr; }
        .video-grid { grid-template-columns: 1fr; }
        .danger-banner { grid-template-columns: 1fr; padding: 40px 24px; gap: 30px; }
        footer { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; }
        .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 8px; }
      }
