    :root {
      --navy-dark: #071938;
      --navy-primary: #0b2f6b;
      --navy-light: #164082;
      --text-main: #1a202c;
      --text-muted: #64748b;
      --bg-light: #f8fafc;
      --accent-blue: #2563eb;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--text-main);
      background-color: #ffffff;
      overflow-x: hidden;
    }

    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--accent-blue);
      outline-offset: 2px;
    }

    section[id] {
      scroll-margin-top: 70px;
    }

    /* TOP BAR */
    .top-bar {
      background-color: var(--navy-dark);
      color: #ffffff;
      font-size: 0.8rem;
      font-weight: 500;
    }

    .top-bar a {
      color: #ffffff;
      text-decoration: none;
    }

    .top-bar a:hover {
      color: #cbd5e1;
    }

    /* NAVBAR */
    .navbar {
      padding-top: 1rem;
      padding-bottom: 1rem;
      background: #ffffff;
    }

    .nav-link {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--text-main) !important;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding-left: 1.2rem !important;
      padding-right: 1.2rem !important;
    }

    .nav-link.active {
      color: var(--navy-primary) !important;
      position: relative;
    }

    .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 1.2rem;
      right: 1.2rem;
      height: 3px;
      background-color: var(--navy-primary);
      border-radius: 2px;
    }

    .btn-minta-nav {
      background-color: var(--navy-primary);
      color: #ffffff;
      font-size: 0.8rem;
      font-weight: 700;
      padding: 0.65rem 1.4rem;
      border-radius: 6px;
      border: none;
      transition: all 0.3s;
      white-space: nowrap;
    }

    .btn-minta-nav:hover {
      background-color: var(--navy-dark);
      color: #ffffff;
    }

    /* HERO SECTION DENGAN GRADASI BIRU */
    .hero-wrapper {
      position: relative;
      background-color: #f8fafc;
      overflow: hidden;
      padding: 70px 0 140px 0;
    }

    .hero-bg-img {
      position: absolute;
      top: 0;
      right: 0;
      width: 60%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 1;
    }

    .hero-overlay-gradient {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg,
          rgba(7, 25, 56, 0.98) 0%,
          rgba(11, 47, 107, 0.92) 45%,
          rgba(11, 47, 107, 0.65) 65%,
          rgba(11, 47, 107, 0) 100%);
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      color: #ffffff;
    }

    .hero-eyebrow {
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      color: #93c5fd;
      text-transform: uppercase;
    }

    .hero-title {
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.5px;
    }

    .hero-desc {
      font-size: 0.95rem;
      color: #e2e8f0;
      max-width: 520px;
      line-height: 1.7;
    }

    .btn-hero-primary {
      background-color: var(--navy-primary);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 0.82rem;
      font-weight: 700;
      padding: 0.8rem 1.6rem;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-hero-outline {
      background-color: transparent;
      color: #ffffff;
      border: 1.5px solid rgba(255, 255, 255, 0.7);
      font-size: 0.82rem;
      font-weight: 700;
      padding: 0.8rem 1.6rem;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    /* FLOATING STATS CARD */
    .stats-container {
      margin-top: -70px;
      position: relative;
      z-index: 10;
    }

    .stats-card {
      background: #ffffff;
      border-radius: 10px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
      padding: 1.5rem 1rem;
    }

    .stats-border-right {
      border-right: 1px solid #edf2f7;
    }

    .stats-num {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--navy-primary);
      line-height: 1;
    }

    .stats-title {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--navy-primary);
    }

    .stats-desc {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.4;
    }

    /* ------------------------------------ */
    /* KONTAK SECTION                       */
    /* ------------------------------------ */
    .kontak-section {
      padding: 80px 0;
      background-color: #ffffff;
    }

    .section-tag-line {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
    }

    .section-tag-line::before {
      content: "";
      display: inline-block;
      width: 22px;
      height: 2px;
      background-color: var(--accent-blue);
      border-radius: 2px;
    }

    .section-tag-line .section-tag {
      color: var(--accent-blue);
    }

    .kontak-info-card {
      background-color: var(--navy-dark);
      border-radius: 16px;
      padding: 2.5rem;
      height: 100%;
      color: #ffffff;
    }

    .kontak-info-title {
      font-size: 1.4rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 1.75rem;
    }

    .kontak-info-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.75rem;
    }

    .kontak-info-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background-color: rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: #ffffff;
    }

    .kontak-info-label {
      font-size: 0.95rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 0.25rem;
    }

    .kontak-info-value {
      font-size: 0.85rem;
      color: #cbd5e1;
      line-height: 1.6;
      margin: 0;
    }

    .btn-wa-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: rgba(37, 211, 102, 0.15);
      border: 1.5px solid #25d366;
      color: #ffffff;
      font-size: 0.82rem;
      font-weight: 700;
      padding: 0.7rem 1.4rem;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-wa-pill:hover {
      background-color: #25d366;
      color: #ffffff;
    }

    .btn-wa-pill i {
      font-size: 1rem;
      color: #25d366;
    }

    .btn-wa-pill:hover i {
      color: #ffffff;
    }

    .kontak-map-wrapper {
      border-radius: 16px;
      overflow: hidden;
      height: 100%;
      min-height: 420px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

    .kontak-map-wrapper iframe {
      width: 100%;
      height: 100%;
      min-height: 420px;
      border: 0;
      display: block;
    }

    /* WHATSAPP BUTTON VARIANTS */
    .btn-wa-solid {
      background-color: #25d366;
      color: #ffffff;
      border: 1px solid #25d366;
      font-size: 0.82rem;
      font-weight: 700;
      padding: 0.8rem 1.6rem;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-wa-solid:hover {
      background-color: #1ebe5b;
      color: #ffffff;
    }

    .btn-wa-solid i {
      font-size: 1.1rem;
    }

    /* FLOATING WHATSAPP BUTTON */
    .wa-float-btn {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 1050;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: #25d366;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
      text-decoration: none;
      animation: wa-pulse 2.2s infinite;
    }

    .wa-float-btn:hover {
      color: #ffffff;
      transform: scale(1.05);
    }

    .wa-float-btn.is-open {
      background-color: var(--navy-dark);
      animation: none;
    }

    .wa-float-btn .wa-fab-icon-open {
      display: none;
    }

    .wa-float-btn.is-open .wa-fab-icon-chat {
      display: none;
    }

    .wa-float-btn.is-open .wa-fab-icon-open {
      display: inline-flex;
    }

    @keyframes wa-pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
      }

      70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }

    @media (max-width: 767px) {
      .wa-float-btn {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        bottom: 16px;
        right: 16px;
      }
    }

    /* WHATSAPP CS POPUP */
    .wa-popup {
      position: fixed;
      bottom: 100px;
      right: 24px;
      width: 340px;
      max-width: calc(100vw - 32px);
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 20px 45px rgba(7, 25, 56, 0.25);
      z-index: 1049;
      overflow: hidden;
      opacity: 0;
      transform: translateY(16px) scale(0.97);
      pointer-events: none;
      transition: all 0.25s ease;
    }

    .wa-popup.is-open {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .wa-popup-header {
      background-color: var(--navy-primary);
      border-bottom: 3px solid var(--accent-blue);
      padding: 1.1rem 1.25rem;
      display: flex;
      align-items: center;
      gap: 0.85rem;
    }

    .wa-popup-header-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .wa-popup-header-icon i {
      color: #ffffff;
      font-size: 1.3rem;
    }

    .wa-popup-header-title {
      color: #ffffff;
      font-weight: 800;
      font-size: 1.05rem;
      margin: 0;
    }

    .wa-popup-header-sub {
      color: #cbd5e1;
      font-size: 0.78rem;
      margin: 0;
    }

    .wa-popup-close {
      margin-left: auto;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.15);
      border: none;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      cursor: pointer;
    }

    .wa-popup-close:hover {
      background-color: rgba(255, 255, 255, 0.28);
    }

    .wa-popup-body {
      padding: 1.1rem;
    }

    .wa-info-banner {
      background-color: #eaf1fc;
      border-radius: 10px;
      padding: 0.75rem 0.9rem;
      font-size: 0.78rem;
      color: var(--navy-primary);
      line-height: 1.5;
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .wa-info-banner i {
      color: var(--accent-blue);
      margin-top: 2px;
      flex-shrink: 0;
    }

    .cs-card {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 0.7rem 0.85rem;
      margin-bottom: 0.75rem;
      transition: all 0.2s ease;
    }

    .cs-card:last-child {
      margin-bottom: 0;
    }

    .cs-card:hover {
      border-color: #25d366;
      background-color: #f7fefa;
    }

    .cs-card-link {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      text-decoration: none;
      flex-grow: 1;
      min-width: 0;
    }

    .cs-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background-color: #f1f5f9;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy-primary);
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .cs-name {
      font-weight: 800;
      color: var(--navy-primary);
      font-size: 0.92rem;
      margin: 0;
    }

    .cs-status {
      font-size: 0.75rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 5px;
      margin: 0;
    }

    .cs-status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background-color: #22c55e;
      display: inline-block;
    }

    .cs-status .cs-status-text {
      color: #16a34a;
      font-weight: 700;
    }

    .cs-call-btn {
      margin-left: auto;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background-color: var(--accent-blue);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1rem;
      text-decoration: none;
    }

    .cs-call-btn:hover {
      background-color: var(--navy-primary);
      color: #ffffff;
    }

    /* ------------------------------------ */
    /* TENTANG KAMI SECTION                 */
    /* ------------------------------------ */
    .about-section {
      padding: 80px 0 40px 0;
    }

    .about-lead {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.8;
      max-width: 900px;
    }

    /* ------------------------------------ */
    /* PRODUK SECTION & CARD DESAIN BARU    */
    /* ------------------------------------ */
    .product-section {
      background-color: #f8fafc;
      padding: 80px 0;
    }

    .section-tag {
      color: var(--accent-blue);
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .section-heading {
      font-size: clamp(1.5rem, 3vw, 1.9rem);
      font-weight: 800;
      color: var(--navy-dark);
    }

    .section-subheading {
      font-size: 0.9rem;
      color: var(--text-muted);
      max-width: 640px;
      line-height: 1.7;
    }

    .btn-lihat-semua {
      border: 1.5px solid var(--navy-primary);
      color: var(--navy-primary);
      font-size: 0.8rem;
      font-weight: 700;
      padding: 0.6rem 1.3rem;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      background-color: #ffffff;
      white-space: nowrap;
    }

    .btn-lihat-semua:hover {
      background-color: var(--navy-primary);
      color: #ffffff;
      box-shadow: 0 4px 12px rgba(11, 47, 107, 0.2);
    }

    /* CARD PRODUK MENJUAL */
    .product-card {
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
      position: relative;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 32px rgba(11, 47, 107, 0.12);
      border-color: #cbd5e1;
    }

    /* Container Gambar + Zoom Effect */
    .product-img-wrapper {
      position: relative;
      height: 180px;
      overflow: hidden;
      background-color: #e2e8f0;
    }

    .product-img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .product-card:hover .product-img {
      transform: scale(1.08);
    }

    /* Gradient Overlay di Atas Gambar */
    .product-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 60%);
      opacity: 0.7;
    }

    /* Badge Highlight Penjualan */
    .product-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(11, 47, 107, 0.85);
      backdrop-filter: blur(4px);
      color: #ffffff;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      z-index: 2;
    }

    /* Content Card */
    .product-body {
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
    }

    .product-header-info {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 0.85rem;
    }

    /* Box Icon Modern */
    .product-icon-box {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: #eff6ff;
      color: var(--navy-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .product-card:hover .product-icon-box {
      background: var(--navy-primary);
      color: #ffffff;
    }

    .product-title {
      font-size: 0.92rem;
      font-weight: 800;
      color: var(--navy-dark);
      line-height: 1.3;
      margin: 0;
    }

    .product-desc {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.55;
      margin: 0 0 0.75rem 0;
    }

    /* Link Action Detail */
    .product-footer-action {
      border-top: 1px solid #f1f5f9;
      padding-top: 0.85rem;
      margin-top: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .product-link-btn {
      color: var(--navy-primary);
      font-size: 0.75rem;
      font-weight: 800;
      text-decoration: none;
      letter-spacing: 0.3px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s ease;
    }

    .product-card:hover .product-link-btn {
      color: var(--accent-blue);
      gap: 10px;
    }

    /* BANNER MENGAPA MEMILIH KAMI */
    .banner-why {
      background: linear-gradient(135deg, #05142e 0%, #0b2f6b 60%, #08214d 100%);
      color: #ffffff;
      padding: 70px 0;
      position: relative;
    }

    .banner-heading {
      font-size: clamp(1.4rem, 3vw, 1.8rem);
      font-weight: 800;
    }

    .why-divider {
      width: 40px;
      height: 3px;
      background-color: #3b82f6;
      margin: 12px auto 40px auto;
    }

    .why-item {
      border-right: 1px solid rgba(255, 255, 255, 0.12);
      padding: 0 1.2rem;
    }

    .why-item:last-child {
      border-right: none;
    }

    .why-icon {
      font-size: 2.2rem;
      color: #ffffff;
      margin-bottom: 12px;
    }

    .why-title {
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .why-desc {
      font-size: 0.75rem;
      color: #cbd5e1;
      margin: 0;
    }

    /* BOTTOM CTA SECTION */
    .bottom-cta {
      background-color: #f1f5f9;
      padding: 45px 0;
    }

    .cta-heading {
      font-size: clamp(1.25rem, 2.5vw, 1.5rem);
      font-weight: 800;
      color: var(--text-main);
    }

    .cta-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin: 0;
    }

    /* FOOTER */
    .site-footer {
      background-color: var(--navy-dark);
      color: #cbd5e1;
      padding: 60px 0 0 0;
      font-size: 0.85rem;
    }

    .site-footer h5 {
      color: #ffffff;
      font-size: 0.95rem;
      font-weight: 800;
      margin-bottom: 1.1rem;
    }

    .site-footer p,
    .site-footer li {
      color: #94a3b8;
      line-height: 1.8;
    }

    .site-footer ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }

    .site-footer a {
      color: #94a3b8;
      text-decoration: none;
    }

    .site-footer a:hover {
      color: #ffffff;
    }

    .footer-desc {
      max-width: 320px;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      margin-right: 8px;
    }

    .footer-social a:hover {
      background: var(--accent-blue);
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: 40px;
      padding: 18px 0;
      font-size: 0.78rem;
      color: #64748b;
    }

    /* ------------------------------------ */
    /* TESTIMONI SECTION                    */
    /* ------------------------------------ */
    .testimoni-section {
      padding: 80px 0;
      background-color: #ffffff;
    }

    .testi-card {
      background: var(--bg-light);
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 1.75rem;
      height: 100%;
      position: relative;
      transition: all 0.3s ease;
    }

    .testi-card:hover {
      box-shadow: 0 16px 32px rgba(11, 47, 107, 0.08);
      transform: translateY(-4px);
      border-color: #cbd5e1;
    }

    .testi-quote-icon {
      font-size: 1.6rem;
      color: var(--accent-blue);
      opacity: 0.35;
      margin-bottom: 0.5rem;
    }

    .testi-stars {
      color: #f59e0b;
      font-size: 0.85rem;
      margin-bottom: 0.75rem;
    }

    .testi-text {
      font-size: 0.85rem;
      color: var(--text-main);
      line-height: 1.75;
      margin-bottom: 1.25rem;
    }

    .testi-profile {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testi-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--navy-primary);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.95rem;
      flex-shrink: 0;
    }

    .testi-name {
      font-size: 0.85rem;
      font-weight: 800;
      color: var(--navy-dark);
      line-height: 1.3;
    }

    .testi-role {
      font-size: 0.72rem;
      color: var(--text-muted);
    }

    /* ------------------------------------ */
    /* FAQ SECTION                          */
    /* ------------------------------------ */
    .faq-section {
      padding: 80px 0;
      background-color: var(--bg-light);
    }

    .accordion-item {
      border: 1px solid #e2e8f0;
      border-radius: 10px !important;
      overflow: hidden;
      margin-bottom: 14px;
      background-color: #ffffff;
    }

    .accordion-button {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--navy-dark);
      padding: 1.1rem 1.3rem;
      background-color: #ffffff;
    }

    .accordion-button:not(.collapsed) {
      color: var(--navy-primary);
      background-color: #eff6ff;
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: none;
      border-color: #e2e8f0;
    }

    .accordion-button::after {
      flex-shrink: 0;
    }

    .accordion-body {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.75;
      padding: 0.2rem 1.3rem 1.3rem 1.3rem;
    }

    /* ------------------------------------ */
    /* ARTIKEL / BLOG SECTION               */
    /* ------------------------------------ */
    .artikel-section {
      padding: 80px 0;
      background-color: #ffffff;
    }

    .artikel-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }

    .artikel-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 32px rgba(11, 47, 107, 0.12);
      border-color: #cbd5e1;
    }

    .artikel-img-wrapper {
      height: 190px;
      overflow: hidden;
      background-color: #e2e8f0;
    }

    .artikel-img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .artikel-card:hover .artikel-img {
      transform: scale(1.08);
    }

    .artikel-body {
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .artikel-meta {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--accent-blue);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 0.5rem;
    }

    .artikel-title {
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--navy-dark);
      line-height: 1.4;
      margin-bottom: 0.6rem;
    }

    .artikel-desc {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1rem;
      flex-grow: 1;
    }

    .artikel-link-btn {
      color: var(--navy-primary);
      font-size: 0.75rem;
      font-weight: 800;
      text-decoration: none;
      letter-spacing: 0.3px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s ease;
      border-top: 1px solid #f1f5f9;
      padding-top: 0.85rem;
    }

    .artikel-card:hover .artikel-link-btn {
      color: var(--accent-blue);
      gap: 10px;
    }

    @media (max-width: 991px) {
      .hero-bg-img {
        width: 100%;
        opacity: 0.3;
      }

      .hero-overlay-gradient {
        background: var(--navy-primary);
      }

      .stats-border-right {
        border-right: none;
        border-bottom: 1px solid #edf2f7;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
      }

      .why-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
      }

      .btn-lihat-semua {
        margin-top: 1rem;
      }
    }

    @media (max-width: 767px) {
      .top-bar .container {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
      }

      .hero-wrapper {
        padding: 40px 0 110px 0;
        text-align: left;
      }

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

      .stats-card {
        padding: 1.25rem 0.75rem;
      }

      .bottom-cta .col-md-4 {
        text-align: left !important;
      }

      .footer-desc {
        max-width: 100%;
      }
    }

    .btn-minta-nav {
      background-color: var(--navy-primary);
      color: #fff;
      font-size: 0.8rem;
      font-weight: 700;
      padding: 0.65rem 1.4rem;
      border-radius: 6px;
      border: none;
      white-space: nowrap;
    }

    .btn-minta-nav:hover {
      background-color: var(--navy-dark);
      color: #fff;
    }

    /* BREADCRUMB STRIP */
    .breadcrumb-strip {
      background: var(--bg-light);
      border-bottom: 1px solid #e2e8f0;
      padding: 12px 0;
    }

    .breadcrumb-strip a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 600;
    }

    .breadcrumb-strip a:hover {
      color: var(--navy-primary);
    }

    .breadcrumb-strip span.current {
      color: var(--navy-primary);
      font-size: 0.78rem;
      font-weight: 700;
    }

    /* HERO PRODUK (LANDING PAGE STYLE) */
    .product-hero {
      background: linear-gradient(135deg, #05142e 0%, #0b2f6b 55%, #08214d 100%);
      padding: 60px 0 70px 0;
      position: relative;
      overflow: hidden;
    }

    .product-hero::after {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
      border-radius: 50%;
    }

    .hero-badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 1rem;
    }

    .hero-mini-badge {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #e2e8f0;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.4px;
      padding: 5px 12px;
      border-radius: 20px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .product-hero-eyebrow {
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      color: #93c5fd;
      text-transform: uppercase;
    }

    .product-hero-title {
      font-size: clamp(1.7rem, 3.6vw, 2.5rem);
      font-weight: 800;
      line-height: 1.2;
      color: #fff;
      margin: 0.5rem 0 1rem 0;
    }

    .product-hero-desc {
      font-size: 0.92rem;
      color: #cbd5e1;
      line-height: 1.75;
      max-width: 520px;
      margin-bottom: 1.4rem;
    }

    .price-box {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 12px;
      padding: 1rem 1.3rem;
      margin-bottom: 1.5rem;
      display: inline-block;
    }

    .price-label {
      font-size: 0.7rem;
      color: #93c5fd;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .price-value {
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.3;
    }

    .price-unit {
      font-size: 0.78rem;
      color: #cbd5e1;
      font-weight: 500;
    }

    .btn-hero-primary {
      background-color: #ffffff;
      color: var(--navy-primary);
      border: none;
      font-size: 0.85rem;
      font-weight: 800;
      padding: 0.85rem 1.7rem;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-hero-primary:hover {
      background-color: #e2e8f0;
      color: var(--navy-primary);
    }

    .btn-hero-outline {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, 0.6);
      font-size: 0.85rem;
      font-weight: 700;
      padding: 0.85rem 1.7rem;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-hero-outline:hover {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
    }

    .hero-img-frame {
      position: relative;
      padding-bottom: 30px;
    }

    .hero-img-inner {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
      border: 6px solid rgba(255, 255, 255, 0.08);
    }

    .hero-img-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 320px;
      display: block;
    }

    .hero-trust-float {
      position: absolute;
      bottom: 0;
      left: 26px;
      right: 26px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
      padding: 0.9rem 1.1rem;
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 5;
    }

    .hero-trust-float i {
      font-size: 1.6rem;
      color: var(--accent-green);
    }

    .hero-trust-float .t-title {
      font-size: 0.82rem;
      font-weight: 800;
      color: var(--navy-dark);
    }

    .hero-trust-float .t-desc {
      font-size: 0.7rem;
      color: var(--text-muted);
    }

    /* STICKY QUICK NAV */
    .quick-nav-wrapper {
      background: #fff;
      border-bottom: 1px solid #e2e8f0;
      position: sticky;
      top: 0;
      z-index: 25;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
      margin-top: 30px;
    }

    .quick-nav-scroll {
      display: flex;
      gap: 4px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .quick-nav-scroll::-webkit-scrollbar {
      display: none;
    }

    .quick-nav-link {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--text-muted);
      text-decoration: none;
      padding: 16px 18px;
      white-space: nowrap;
      border-bottom: 3px solid transparent;
      transition: all 0.2s ease;
    }

    .quick-nav-link:hover,
    .quick-nav-link.active {
      color: var(--navy-primary);
      border-bottom-color: var(--navy-primary);
    }

    /* SECTION HEADINGS */
    .section-tag {
      color: var(--accent-blue);
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .section-heading {
      font-size: clamp(1.35rem, 2.6vw, 1.7rem);
      font-weight: 800;
      color: var(--navy-dark);
    }

    .section-subheading {
      font-size: 0.88rem;
      color: var(--text-muted);
      max-width: 640px;
      line-height: 1.7;
    }

    /* DESKRIPSI PRODUK */
    .deskripsi-section {
      padding: 60px 0 20px 0;
    }

    .deskripsi-lead {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.85;
    }

    .deskripsi-list {
      list-style: none;
      padding: 0;
      margin: 1.2rem 0 0 0;
    }

    .deskripsi-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.85rem;
      color: var(--text-main);
      margin-bottom: 0.7rem;
    }

    .deskripsi-list i {
      color: var(--accent-green);
      font-size: 1rem;
      margin-top: 2px;
    }

    /* KEUNGGULAN */
    .keunggulan-section {
      padding: 60px 0;
      background: var(--bg-light);
    }

    .keunggulan-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 1.6rem;
      height: 100%;
      transition: all 0.3s ease;
    }

    .keunggulan-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 32px rgba(11, 47, 107, 0.1);
      border-color: #cbd5e1;
    }

    .keunggulan-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: #eff6ff;
      color: var(--navy-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 1rem;
    }

    .keunggulan-title {
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--navy-dark);
      margin-bottom: 0.4rem;
    }

    .keunggulan-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin: 0;
    }

    /* SPESIFIKASI TEKNIS */
    .spek-section {
      padding: 60px 0;
    }

    .spek-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.85rem;
    }

    .spek-table tr {
      border-bottom: 1px solid #e2e8f0;
    }

    .spek-table tr:last-child {
      border-bottom: none;
    }

    .spek-table td {
      padding: 0.9rem 0.5rem;
    }

    .spek-table td:first-child {
      color: var(--text-muted);
      font-weight: 600;
      width: 42%;
    }

    .spek-table td:last-child {
      color: var(--navy-dark);
      font-weight: 700;
    }

    .spek-img-wrapper {
      border-radius: 12px;
      overflow: hidden;
      height: 100%;
      min-height: 340px;
    }

    .spek-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 340px;
    }

    /* VARIAN & HARGA */
    .harga-section {
      padding: 60px 0;
      background: var(--bg-light);
    }

    .harga-card {
      background: #fff;
      border: 2px solid #e2e8f0;
      border-radius: 14px;
      padding: 1.8rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: all 0.3s ease;
    }

    .harga-card.popular {
      border-color: var(--navy-primary);
      box-shadow: 0 16px 32px rgba(11, 47, 107, 0.12);
    }

    .harga-card:hover {
      transform: translateY(-6px);
    }

    .harga-popular-tag {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--navy-primary);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      padding: 5px 14px;
      border-radius: 20px;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .harga-tipe {
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--navy-dark);
      margin-bottom: 0.3rem;
    }

    .harga-tipe-desc {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin-bottom: 1.1rem;
    }

    .harga-value {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--navy-primary);
      line-height: 1.2;
    }

    .harga-unit {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin-bottom: 1.2rem;
    }

    .harga-features {
      list-style: none;
      padding: 0;
      margin: 0 0 1.4rem 0;
      flex-grow: 1;
    }

    .harga-features li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 0.8rem;
      color: var(--text-main);
      margin-bottom: 0.6rem;
    }

    .harga-features i {
      color: var(--accent-green);
      margin-top: 2px;
    }

    .btn-harga {
      text-align: center;
      border: 1.5px solid var(--navy-primary);
      color: var(--navy-primary);
      font-size: 0.8rem;
      font-weight: 700;
      padding: 0.7rem 1rem;
      border-radius: 8px;
      text-decoration: none;
      background: #fff;
      transition: all 0.25s ease;
    }

    .btn-harga:hover {
      background: var(--navy-primary);
      color: #fff;
    }

    .harga-card.popular .btn-harga {
      background: var(--navy-primary);
      color: #fff;
    }

    .harga-card.popular .btn-harga:hover {
      background: var(--navy-dark);
    }

    .harga-note {
      font-size: 0.78rem;
      color: var(--text-muted);
      text-align: center;
      margin-top: 1.5rem;
    }

    /* PERBANDINGAN */
    .banding-section {
      padding: 60px 0;
    }

    .banding-table-wrapper {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(11, 47, 107, 0.06);
    }

    .banding-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.85rem;
    }

    .banding-table thead th {
      padding: 1.1rem 1rem;
      font-size: 0.78rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      text-align: center;
      border-bottom: 2px solid #e2e8f0;
    }

    .banding-table thead th:first-child {
      text-align: left;
      color: var(--text-muted);
      background: var(--bg-light);
    }

    .banding-table thead th.col-panel {
      background: var(--navy-primary);
      color: #fff;
    }

    .banding-table thead th.col-lain {
      background: var(--bg-light);
      color: var(--text-muted);
    }

    .banding-table tbody td {
      padding: 0.95rem 1rem;
      text-align: center;
      border-bottom: 1px solid #f1f5f9;
      font-size: 0.82rem;
      color: var(--text-main);
    }

    .banding-table tbody td:first-child {
      text-align: left;
      font-weight: 700;
      color: var(--navy-dark);
    }

    .banding-table tbody td.col-panel {
      background: #eff6ff;
      font-weight: 700;
      color: var(--navy-primary);
    }

    .banding-table tbody tr:last-child td {
      border-bottom: none;
    }

    .banding-icon-yes {
      color: var(--accent-green);
      font-size: 1.1rem;
    }

    .banding-icon-no {
      color: #cbd5e1;
      font-size: 1.1rem;
    }

    .banding-icon-mid {
      color: #f59e0b;
      font-size: 1.1rem;
    }

    .banding-legend {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 1.2rem;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .banding-legend span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* GALERI */
    .galeri-section {
      padding: 60px 0;
    }

    .galeri-item {
      border-radius: 12px;
      overflow: hidden;
      height: 220px;
      position: relative;
    }

    .galeri-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .galeri-item:hover img {
      transform: scale(1.08);
    }

    .galeri-item.tall {
      height: 456px;
    }

    @media (max-width: 767px) {
      .galeri-item.tall {
        height: 220px;
      }
    }

    /* CARA PEMASANGAN */
    .pemasangan-section {
      padding: 60px 0;
      background: var(--bg-light);
    }

    .step-item {
      display: flex;
      gap: 1.1rem;
      margin-bottom: 1.8rem;
    }

    .step-num {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--navy-primary);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.95rem;
      flex-shrink: 0;
    }

    .step-title {
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--navy-dark);
      margin-bottom: 0.3rem;
    }

    .step-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin: 0;
    }

    .pemasangan-img {
      border-radius: 12px;
      overflow: hidden;
      height: 100%;
      min-height: 460px;
    }

    .pemasangan-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 460px;
    }

    /* TESTIMONI */
    .testi-section {
      padding: 60px 0;
    }

    .testi-card {
      background: var(--bg-light);
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 1.6rem;
      height: 100%;
    }

    .testi-stars {
      color: #f59e0b;
      font-size: 0.82rem;
      margin-bottom: 0.7rem;
    }

    .testi-text {
      font-size: 0.83rem;
      color: var(--text-main);
      line-height: 1.7;
      margin-bottom: 1.1rem;
    }

    .testi-profile {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .testi-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--navy-primary);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.85rem;
      flex-shrink: 0;
    }

    .testi-name {
      font-size: 0.82rem;
      font-weight: 800;
      color: var(--navy-dark);
    }

    .testi-role {
      font-size: 0.7rem;
      color: var(--text-muted);
    }

    /* FAQ */
    .faq-section {
      padding: 60px 0;
      background: var(--bg-light);
    }

    .accordion-item {
      border: 1px solid #e2e8f0;
      border-radius: 10px !important;
      overflow: hidden;
      margin-bottom: 12px;
      background: #fff;
    }

    .accordion-button {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--navy-dark);
      padding: 1rem 1.2rem;
      background: #fff;
    }

    .accordion-button:not(.collapsed) {
      color: var(--navy-primary);
      background: #eff6ff;
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: none;
      border-color: #e2e8f0;
    }

    .accordion-body {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.7;
      padding: 0.2rem 1.2rem 1.2rem 1.2rem;
    }

    /* CTA PENUTUP */
    .final-cta {
      background: linear-gradient(135deg, #05142e 0%, #0b2f6b 60%, #08214d 100%);
      padding: 60px 0;
      text-align: center;
    }

    .final-cta-title {
      font-size: clamp(1.3rem, 2.6vw, 1.7rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.7rem;
    }

    .final-cta-desc {
      font-size: 0.9rem;
      color: #cbd5e1;
      max-width: 560px;
      margin: 0 auto 1.6rem auto;
      line-height: 1.7;
    }

    /* STICKY MOBILE CTA */
    .sticky-mobile-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #fff;
      border-top: 1px solid #e2e8f0;
      box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
      padding: 12px 16px;
      z-index: 40;
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .sticky-mobile-cta .m-price {
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--navy-primary);
    }

    .sticky-mobile-cta .m-price small {
      display: block;
      font-size: 0.65rem;
      color: var(--text-muted);
      font-weight: 600;
    }

    .sticky-mobile-cta a {
      background: var(--navy-primary);
      color: #fff;
      font-size: 0.8rem;
      font-weight: 700;
      text-decoration: none;
      padding: 0.7rem 1.2rem;
      border-radius: 8px;
      white-space: nowrap;
    }

    /* FOOTER */
    .site-footer {
      background-color: var(--navy-dark);
      color: #cbd5e1;
      padding: 60px 0 0 0;
      font-size: 0.85rem;
    }

    .site-footer h5 {
      color: #fff;
      font-size: 0.95rem;
      font-weight: 800;
      margin-bottom: 1.1rem;
    }

    .site-footer p,
    .site-footer li {
      color: #94a3b8;
      line-height: 1.8;
    }

    .site-footer ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }

    .site-footer a {
      color: #94a3b8;
      text-decoration: none;
    }

    .site-footer a:hover {
      color: #fff;
    }

    .footer-desc {
      max-width: 320px;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      margin-right: 8px;
    }

    .footer-social a:hover {
      background: var(--accent-blue);
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: 40px;
      padding: 18px 0;
      font-size: 0.78rem;
      color: #64748b;
    }

    @media (max-width: 991px) {
      .hero-img-frame {
        padding-bottom: 0;
      }

      .hero-trust-float {
        position: static;
        margin-top: 1.2rem;
        box-shadow: none;
        border: 1px solid #e2e8f0;
        left: 0;
        right: 0;
      }

      body {
        padding-bottom: 78px;
      }

      .sticky-mobile-cta {
        display: flex;
      }
    }

    @media (max-width: 767px) {
      .top-bar .container {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
      }

      .footer-desc {
        max-width: 100%;
      }
    }

    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--accent-blue);
      outline-offset: 2px;
    }

    section[id] {
      scroll-margin-top: 90px;
    }

    /* TOP BAR + NAVBAR (sama dengan situs utama) */
    .top-bar {
      background-color: var(--navy-dark);
      color: #fff;
      font-size: 0.8rem;
      font-weight: 500;
    }

    .top-bar a {
      color: #fff;
      text-decoration: none;
    }

    .top-bar a:hover {
      color: #cbd5e1;
    }

    .navbar {
      padding-top: 1rem;
      padding-bottom: 1rem;
      background: #fff;
    }

    .nav-link {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--text-main) !important;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding-left: 1.2rem !important;
      padding-right: 1.2rem !important;
    }

    .btn-minta-nav {
      background-color: var(--navy-primary);
      color: #fff;
      font-size: 0.8rem;
      font-weight: 700;
      padding: 0.65rem 1.4rem;
      border-radius: 6px;
      border: none;
      white-space: nowrap;
    }

    .btn-minta-nav:hover {
      background-color: var(--navy-dark);
      color: #fff;
    }

    /* BREADCRUMB STRIP */
    .breadcrumb-strip {
      background: var(--bg-light);
      border-bottom: 1px solid #e2e8f0;
      padding: 12px 0;
    }

    .breadcrumb-strip a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 600;
    }

    .breadcrumb-strip a:hover {
      color: var(--navy-primary);
    }

    .breadcrumb-strip span.current {
      color: var(--navy-primary);
      font-size: 0.78rem;
      font-weight: 700;
    }

    /* HERO PRODUK (LANDING PAGE STYLE) */
    .product-hero {
      background: linear-gradient(135deg, #05142e 0%, #0b2f6b 55%, #08214d 100%);
      padding: 60px 0 70px 0;
      position: relative;
      overflow: hidden;
    }

    .product-hero::after {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
      border-radius: 50%;
    }

    .hero-badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 1rem;
    }

    .hero-mini-badge {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #e2e8f0;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.4px;
      padding: 5px 12px;
      border-radius: 20px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .product-hero-eyebrow {
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      color: #93c5fd;
      text-transform: uppercase;
    }

    .product-hero-title {
      font-size: clamp(1.7rem, 3.6vw, 2.5rem);
      font-weight: 800;
      line-height: 1.2;
      color: #fff;
      margin: 0.5rem 0 1rem 0;
    }

    .product-hero-desc {
      font-size: 0.92rem;
      color: #cbd5e1;
      line-height: 1.75;
      max-width: 520px;
      margin-bottom: 1.4rem;
    }

    .price-box {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 12px;
      padding: 1rem 1.3rem;
      margin-bottom: 1.5rem;
      display: inline-block;
    }

    .price-label {
      font-size: 0.7rem;
      color: #93c5fd;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .price-value {
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.3;
    }

    .price-unit {
      font-size: 0.78rem;
      color: #cbd5e1;
      font-weight: 500;
    }

    .btn-hero-primary {
      background-color: #ffffff;
      color: var(--navy-primary);
      border: none;
      font-size: 0.85rem;
      font-weight: 800;
      padding: 0.85rem 1.7rem;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-hero-primary:hover {
      background-color: #e2e8f0;
      color: var(--navy-primary);
    }

    .btn-hero-outline {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, 0.6);
      font-size: 0.85rem;
      font-weight: 700;
      padding: 0.85rem 1.7rem;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-hero-outline:hover {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
    }

    .hero-img-frame {
      position: relative;
      padding-bottom: 30px;
    }

    .hero-img-inner {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
      border: 6px solid rgba(255, 255, 255, 0.08);
    }

    .hero-img-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 320px;
      display: block;
    }

    .hero-trust-float {
      position: absolute;
      bottom: 0;
      left: 26px;
      right: 26px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
      padding: 0.9rem 1.1rem;
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 5;
    }

    .hero-trust-float i {
      font-size: 1.6rem;
      color: var(--accent-green);
    }

    .hero-trust-float .t-title {
      font-size: 0.82rem;
      font-weight: 800;
      color: var(--navy-dark);
    }

    .hero-trust-float .t-desc {
      font-size: 0.7rem;
      color: var(--text-muted);
    }

    /* STICKY QUICK NAV */
    .quick-nav-wrapper {
      background: #fff;
      border-bottom: 1px solid #e2e8f0;
      position: sticky;
      top: 0;
      z-index: 25;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
      margin-top: 30px;
    }

    .quick-nav-scroll {
      display: flex;
      gap: 4px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .quick-nav-scroll::-webkit-scrollbar {
      display: none;
    }

    .quick-nav-link {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--text-muted);
      text-decoration: none;
      padding: 16px 18px;
      white-space: nowrap;
      border-bottom: 3px solid transparent;
      transition: all 0.2s ease;
    }

    .quick-nav-link:hover,
    .quick-nav-link.active {
      color: var(--navy-primary);
      border-bottom-color: var(--navy-primary);
    }

    /* SECTION HEADINGS */
    .section-tag {
      color: var(--accent-blue);
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .section-heading {
      font-size: clamp(1.35rem, 2.6vw, 1.7rem);
      font-weight: 800;
      color: var(--navy-dark);
    }

    .section-subheading {
      font-size: 0.88rem;
      color: var(--text-muted);
      max-width: 640px;
      line-height: 1.7;
    }

    /* DESKRIPSI PRODUK */
    .deskripsi-section {
      padding: 60px 0 20px 0;
    }

    .deskripsi-lead {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.85;
    }

    .deskripsi-list {
      list-style: none;
      padding: 0;
      margin: 1.2rem 0 0 0;
    }

    .deskripsi-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.85rem;
      color: var(--text-main);
      margin-bottom: 0.7rem;
    }

    .deskripsi-list i {
      color: var(--accent-green);
      font-size: 1rem;
      margin-top: 2px;
    }

    /* KEUNGGULAN */
    .keunggulan-section {
      padding: 60px 0;
      background: var(--bg-light);
    }

    .keunggulan-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 1.6rem;
      height: 100%;
      transition: all 0.3s ease;
    }

    .keunggulan-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 32px rgba(11, 47, 107, 0.1);
      border-color: #cbd5e1;
    }

    .keunggulan-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: #eff6ff;
      color: var(--navy-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 1rem;
    }

    .keunggulan-title {
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--navy-dark);
      margin-bottom: 0.4rem;
    }

    .keunggulan-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin: 0;
    }

    /* SPESIFIKASI TEKNIS */
    .spek-section {
      padding: 60px 0;
    }

    .spek-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.85rem;
    }

    .spek-table tr {
      border-bottom: 1px solid #e2e8f0;
    }

    .spek-table tr:last-child {
      border-bottom: none;
    }

    .spek-table td {
      padding: 0.9rem 0.5rem;
    }

    .spek-table td:first-child {
      color: var(--text-muted);
      font-weight: 600;
      width: 42%;
    }

    .spek-table td:last-child {
      color: var(--navy-dark);
      font-weight: 700;
    }

    .spek-img-wrapper {
      border-radius: 12px;
      overflow: hidden;
      height: 100%;
      min-height: 340px;
    }

    .spek-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 340px;
    }

    /* VARIAN & HARGA */
    .harga-section {
      padding: 60px 0;
      background: var(--bg-light);
    }

    .harga-card {
      background: #fff;
      border: 2px solid #e2e8f0;
      border-radius: 14px;
      padding: 1.8rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: all 0.3s ease;
    }

    .harga-card.popular {
      border-color: var(--navy-primary);
      box-shadow: 0 16px 32px rgba(11, 47, 107, 0.12);
    }

    .harga-card:hover {
      transform: translateY(-6px);
    }

    .harga-popular-tag {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--navy-primary);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      padding: 5px 14px;
      border-radius: 20px;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .harga-tipe {
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--navy-dark);
      margin-bottom: 0.3rem;
    }

    .harga-tipe-desc {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin-bottom: 1.1rem;
    }

    .harga-value {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--navy-primary);
      line-height: 1.2;
    }

    .harga-unit {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin-bottom: 1.2rem;
    }

    .harga-features {
      list-style: none;
      padding: 0;
      margin: 0 0 1.4rem 0;
      flex-grow: 1;
    }

    .harga-features li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 0.8rem;
      color: var(--text-main);
      margin-bottom: 0.6rem;
    }

    .harga-features i {
      color: var(--accent-green);
      margin-top: 2px;
    }

    .btn-harga {
      text-align: center;
      border: 1.5px solid var(--navy-primary);
      color: var(--navy-primary);
      font-size: 0.8rem;
      font-weight: 700;
      padding: 0.7rem 1rem;
      border-radius: 8px;
      text-decoration: none;
      background: #fff;
      transition: all 0.25s ease;
    }

    .btn-harga:hover {
      background: var(--navy-primary);
      color: #fff;
    }

    .harga-card.popular .btn-harga {
      background: var(--navy-primary);
      color: #fff;
    }

    .harga-card.popular .btn-harga:hover {
      background: var(--navy-dark);
    }

    .harga-note {
      font-size: 0.78rem;
      color: var(--text-muted);
      text-align: center;
      margin-top: 1.5rem;
    }

    /* PERBANDINGAN */
    .banding-section {
      padding: 60px 0;
    }

    .banding-table-wrapper {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(11, 47, 107, 0.06);
    }

    .banding-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.85rem;
    }

    .banding-table thead th {
      padding: 1.1rem 1rem;
      font-size: 0.78rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      text-align: center;
      border-bottom: 2px solid #e2e8f0;
    }

    .banding-table thead th:first-child {
      text-align: left;
      color: var(--text-muted);
      background: var(--bg-light);
    }

    .banding-table thead th.col-panel {
      background: var(--navy-primary);
      color: #fff;
    }

    .banding-table thead th.col-lain {
      background: var(--bg-light);
      color: var(--text-muted);
    }

    .banding-table tbody td {
      padding: 0.95rem 1rem;
      text-align: center;
      border-bottom: 1px solid #f1f5f9;
      font-size: 0.82rem;
      color: var(--text-main);
    }

    .banding-table tbody td:first-child {
      text-align: left;
      font-weight: 700;
      color: var(--navy-dark);
    }

    .banding-table tbody td.col-panel {
      background: #eff6ff;
      font-weight: 700;
      color: var(--navy-primary);
    }

    .banding-table tbody tr:last-child td {
      border-bottom: none;
    }

    .banding-icon-yes {
      color: var(--accent-green);
      font-size: 1.1rem;
    }

    .banding-icon-no {
      color: #cbd5e1;
      font-size: 1.1rem;
    }

    .banding-icon-mid {
      color: #f59e0b;
      font-size: 1.1rem;
    }

    .banding-legend {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 1.2rem;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .banding-legend span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* GALERI */
    .galeri-section {
      padding: 60px 0;
    }

    .galeri-item {
      border-radius: 12px;
      overflow: hidden;
      height: 220px;
      position: relative;
    }

    .galeri-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .galeri-item:hover img {
      transform: scale(1.08);
    }

    .galeri-item.tall {
      height: 456px;
    }

    @media (max-width: 767px) {
      .galeri-item.tall {
        height: 220px;
      }
    }

    /* CARA PEMASANGAN */
    .pemasangan-section {
      padding: 60px 0;
      background: var(--bg-light);
    }

    .step-item {
      display: flex;
      gap: 1.1rem;
      margin-bottom: 1.8rem;
    }

    .step-num {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--navy-primary);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.95rem;
      flex-shrink: 0;
    }

    .step-title {
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--navy-dark);
      margin-bottom: 0.3rem;
    }

    .step-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin: 0;
    }

    .pemasangan-img {
      border-radius: 12px;
      overflow: hidden;
      height: 100%;
      min-height: 460px;
    }

    .pemasangan-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 460px;
    }

    /* TESTIMONI */
    .testi-section {
      padding: 60px 0;
    }

    .testi-card {
      background: var(--bg-light);
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 1.6rem;
      height: 100%;
    }

    .testi-stars {
      color: #f59e0b;
      font-size: 0.82rem;
      margin-bottom: 0.7rem;
    }

    .testi-text {
      font-size: 0.83rem;
      color: var(--text-main);
      line-height: 1.7;
      margin-bottom: 1.1rem;
    }

    .testi-profile {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .testi-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--navy-primary);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.85rem;
      flex-shrink: 0;
    }

    .testi-name {
      font-size: 0.82rem;
      font-weight: 800;
      color: var(--navy-dark);
    }

    .testi-role {
      font-size: 0.7rem;
      color: var(--text-muted);
    }

    /* FAQ */
    .faq-section {
      padding: 60px 0;
      background: var(--bg-light);
    }

    .accordion-item {
      border: 1px solid #e2e8f0;
      border-radius: 10px !important;
      overflow: hidden;
      margin-bottom: 12px;
      background: #fff;
    }

    .accordion-button {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--navy-dark);
      padding: 1rem 1.2rem;
      background: #fff;
    }

    .accordion-button:not(.collapsed) {
      color: var(--navy-primary);
      background: #eff6ff;
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: none;
      border-color: #e2e8f0;
    }

    .accordion-body {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.7;
      padding: 0.2rem 1.2rem 1.2rem 1.2rem;
    }

    /* CTA PENUTUP */
    .final-cta {
      background: linear-gradient(135deg, #05142e 0%, #0b2f6b 60%, #08214d 100%);
      padding: 60px 0;
      text-align: center;
    }

    .final-cta-title {
      font-size: clamp(1.3rem, 2.6vw, 1.7rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.7rem;
    }

    .final-cta-desc {
      font-size: 0.9rem;
      color: #cbd5e1;
      max-width: 560px;
      margin: 0 auto 1.6rem auto;
      line-height: 1.7;
    }

    /* STICKY MOBILE CTA */
    .sticky-mobile-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #fff;
      border-top: 1px solid #e2e8f0;
      box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
      padding: 12px 16px;
      z-index: 40;
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .sticky-mobile-cta .m-price {
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--navy-primary);
    }

    .sticky-mobile-cta .m-price small {
      display: block;
      font-size: 0.65rem;
      color: var(--text-muted);
      font-weight: 600;
    }

    .sticky-mobile-cta a {
      background: var(--navy-primary);
      color: #fff;
      font-size: 0.8rem;
      font-weight: 700;
      text-decoration: none;
      padding: 0.7rem 1.2rem;
      border-radius: 8px;
      white-space: nowrap;
    }

    /* FOOTER */
    .site-footer {
      background-color: var(--navy-dark);
      color: #cbd5e1;
      padding: 60px 0 0 0;
      font-size: 0.85rem;
    }

    .site-footer h5 {
      color: #fff;
      font-size: 0.95rem;
      font-weight: 800;
      margin-bottom: 1.1rem;
    }

    .site-footer p,
    .site-footer li {
      color: #94a3b8;
      line-height: 1.8;
    }

    .site-footer ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }

    .site-footer a {
      color: #94a3b8;
      text-decoration: none;
    }

    .site-footer a:hover {
      color: #fff;
    }

    .footer-desc {
      max-width: 320px;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      margin-right: 8px;
    }

    .footer-social a:hover {
      background: var(--accent-blue);
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: 40px;
      padding: 18px 0;
      font-size: 0.78rem;
      color: #64748b;
    }

    @media (max-width: 991px) {
      .hero-img-frame {
        padding-bottom: 0;
      }

      .hero-trust-float {
        position: static;
        margin-top: 1.2rem;
        box-shadow: none;
        border: 1px solid #e2e8f0;
        left: 0;
        right: 0;
      }

      body {
        padding-bottom: 78px;
      }

      .sticky-mobile-cta {
        display: flex;
      }
    }

    @media (max-width: 767px) {
      .top-bar .container {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
      }

      .footer-desc {
        max-width: 100%;
      }
    }

    /* BREADCRUMB STRIP */
    .breadcrumb-strip {
      background: var(--bg-light);
      border-bottom: 1px solid #e2e8f0;
      padding: 12px 0;
    }

    .breadcrumb-strip a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 600;
    }

    .breadcrumb-strip a:hover {
      color: var(--navy-primary);
    }

    .breadcrumb-strip span.current {
      color: var(--navy-primary);
      font-size: 0.78rem;
      font-weight: 700;
    }

    /* HERO PRODUK (LANDING PAGE STYLE) */
    .product-hero {
      background: linear-gradient(135deg, #05142e 0%, #0b2f6b 55%, #08214d 100%);
      padding: 60px 0 70px 0;
      position: relative;
      overflow: hidden;
    }

    .product-hero::after {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
      border-radius: 50%;
    }

    .hero-badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 1rem;
    }

    .hero-mini-badge {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #e2e8f0;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.4px;
      padding: 5px 12px;
      border-radius: 20px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .product-hero-eyebrow {
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      color: #93c5fd;
      text-transform: uppercase;
    }

    .product-hero-title {
      font-size: clamp(1.7rem, 3.6vw, 2.5rem);
      font-weight: 800;
      line-height: 1.2;
      color: #fff;
      margin: 0.5rem 0 1rem 0;
    }

    .product-hero-desc {
      font-size: 0.92rem;
      color: #cbd5e1;
      line-height: 1.75;
      max-width: 520px;
      margin-bottom: 1.4rem;
    }

    .price-box {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 12px;
      padding: 1rem 1.3rem;
      margin-bottom: 1.5rem;
      display: inline-block;
    }

    .price-label {
      font-size: 0.7rem;
      color: #93c5fd;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .price-value {
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.3;
    }

    .price-unit {
      font-size: 0.78rem;
      color: #cbd5e1;
      font-weight: 500;
    }

    .btn-hero-primary {
      background-color: #ffffff;
      color: var(--navy-primary);
      border: none;
      font-size: 0.85rem;
      font-weight: 800;
      padding: 0.85rem 1.7rem;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-hero-primary:hover {
      background-color: #e2e8f0;
      color: var(--navy-primary);
    }

    .btn-hero-outline {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, 0.6);
      font-size: 0.85rem;
      font-weight: 700;
      padding: 0.85rem 1.7rem;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-hero-outline:hover {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
    }

    .hero-img-frame {
      position: relative;
      padding-bottom: 30px;
    }

    .hero-img-inner {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
      border: 6px solid rgba(255, 255, 255, 0.08);
    }

    .hero-img-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 320px;
      display: block;
    }

    .hero-trust-float {
      position: absolute;
      bottom: 0;
      left: 26px;
      right: 26px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
      padding: 0.9rem 1.1rem;
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 5;
    }

    .hero-trust-float i {
      font-size: 1.6rem;
      color: var(--accent-green, #16a34a);
    }

    .hero-trust-float .t-title {
      font-size: 0.82rem;
      font-weight: 800;
      color: var(--navy-dark);
    }

    .hero-trust-float .t-desc {
      font-size: 0.7rem;
      color: var(--text-muted);
    }

    /* STICKY QUICK NAV - MODERN PILL STYLE */
    .quick-nav-wrapper {
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
      position: sticky;
      top: 0;
      z-index: 1010;
      box-shadow: 0 4px 20px rgba(7, 25, 56, 0.06);
      padding: 8px 0;
    }

    .quick-nav-scroll {
      display: flex;
      align-items: center;
      gap: 6px;
      overflow-x: auto;
      scrollbar-width: none;
      padding: 4px 2px;
    }

    .quick-nav-scroll::-webkit-scrollbar {
      display: none;
    }

    .quick-nav-link {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-muted, #64748b);
      text-decoration: none;
      padding: 8px 18px;
      border-radius: 50px;
      white-space: nowrap;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid transparent;
    }

    .quick-nav-link:hover {
      color: var(--navy-primary);
      background-color: #f1f5f9;
    }

    .quick-nav-link.active {
      color: #ffffff !important;
      background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-light) 100%);
      font-weight: 700;
      box-shadow: 0 4px 14px rgba(11, 47, 107, 0.25);
      border-color: transparent;
    }

    /* SECTION HEADINGS */
    .section-tag {
      color: var(--accent-blue);
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .section-heading {
      font-size: clamp(1.35rem, 2.6vw, 1.7rem);
      font-weight: 800;
      color: var(--navy-dark);
    }

    .section-subheading {
      font-size: 0.88rem;
      color: var(--text-muted);
      max-width: 640px;
      line-height: 1.7;
    }

    /* DESKRIPSI PRODUK */
    .deskripsi-section {
      padding: 60px 0 20px 0;
    }

    .deskripsi-lead {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.85;
    }

    .deskripsi-list {
      list-style: none;
      padding: 0;
      margin: 1.2rem 0 0 0;
    }

    .deskripsi-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.85rem;
      color: var(--text-main);
      margin-bottom: 0.7rem;
    }

    .deskripsi-list i {
      color: var(--accent-green, #16a34a);
      font-size: 1rem;
      margin-top: 2px;
    }

    /* KEUNGGULAN */
    .keunggulan-section {
      padding: 60px 0;
      background: var(--bg-light);
    }

    .keunggulan-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 1.6rem;
      height: 100%;
      transition: all 0.3s ease;
    }

    .keunggulan-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 32px rgba(11, 47, 107, 0.1);
      border-color: #cbd5e1;
    }

    .keunggulan-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: #eff6ff;
      color: var(--navy-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 1rem;
    }

    .keunggulan-title {
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--navy-dark);
      margin-bottom: 0.4rem;
    }

    .keunggulan-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin: 0;
    }

    /* SPESIFIKASI TEKNIS */
    .spek-section {
      padding: 60px 0;
    }

    .spek-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.85rem;
    }

    .spek-table tr {
      border-bottom: 1px solid #e2e8f0;
    }

    .spek-table tr:last-child {
      border-bottom: none;
    }

    .spek-table td {
      padding: 0.9rem 0.5rem;
    }

    .spek-table td:first-child {
      color: var(--text-muted);
      font-weight: 600;
      width: 42%;
    }

    .spek-table td:last-child {
      color: var(--navy-dark);
      font-weight: 700;
    }

    .spek-img-wrapper {
      border-radius: 12px;
      overflow: hidden;
      height: 100%;
      min-height: 340px;
    }

    .spek-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 340px;
    }

    /* VARIAN & HARGA */
    .harga-section {
      padding: 60px 0;
      background: var(--bg-light);
    }

    .harga-card {
      background: #fff;
      border: 2px solid #e2e8f0;
      border-radius: 14px;
      padding: 1.8rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: all 0.3s ease;
    }

    .harga-card.popular {
      border-color: var(--navy-primary);
      box-shadow: 0 16px 32px rgba(11, 47, 107, 0.12);
    }

    .harga-card:hover {
      transform: translateY(-6px);
    }

    .harga-popular-tag {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--navy-primary);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      padding: 5px 14px;
      border-radius: 20px;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .harga-tipe {
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--navy-dark);
      margin-bottom: 0.3rem;
    }

    .harga-tipe-desc {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin-bottom: 1.1rem;
    }

    .harga-value {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--navy-primary);
      line-height: 1.2;
    }

    .harga-unit {
      font-size: 0.76rem;
      color: var(--text-muted);
      margin-bottom: 1.2rem;
    }

    .harga-features {
      list-style: none;
      padding: 0;
      margin: 0 0 1.4rem 0;
      flex-grow: 1;
    }

    .harga-features li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 0.8rem;
      color: var(--text-main);
      margin-bottom: 0.6rem;
    }

    .harga-features i {
      color: var(--accent-green, #16a34a);
      margin-top: 2px;
    }

    .btn-harga {
      text-align: center;
      border: 1.5px solid var(--navy-primary);
      color: var(--navy-primary);
      font-size: 0.8rem;
      font-weight: 700;
      padding: 0.7rem 1rem;
      border-radius: 8px;
      text-decoration: none;
      background: #fff;
      transition: all 0.25s ease;
    }

    .btn-harga:hover {
      background: var(--navy-primary);
      color: #fff;
    }

    .harga-card.popular .btn-harga {
      background: var(--navy-primary);
      color: #fff;
    }

    .harga-card.popular .btn-harga:hover {
      background: var(--navy-dark);
    }

    .harga-note {
      font-size: 0.78rem;
      color: var(--text-muted);
      text-align: center;
      margin-top: 1.5rem;
    }

    /* PERBANDINGAN */
    .banding-section {
      padding: 60px 0;
    }

    .banding-table-wrapper {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(11, 47, 107, 0.06);
    }

    .banding-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.85rem;
    }

    .banding-table thead th {
      padding: 1.1rem 1rem;
      font-size: 0.78rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      text-align: center;
      border-bottom: 2px solid #e2e8f0;
    }

    .banding-table thead th:first-child {
      text-align: left;
      color: var(--text-muted);
      background: var(--bg-light);
    }

    .banding-table thead th.col-panel {
      background: var(--navy-primary);
      color: #fff;
    }

    .banding-table thead th.col-lain {
      background: var(--bg-light);
      color: var(--text-muted);
    }

    .banding-table tbody td {
      padding: 0.95rem 1rem;
      text-align: center;
      border-bottom: 1px solid #f1f5f9;
      font-size: 0.82rem;
      color: var(--text-main);
    }

    .banding-table tbody td:first-child {
      text-align: left;
      font-weight: 700;
      color: var(--navy-dark);
    }

    .banding-table tbody td.col-panel {
      background: #eff6ff;
      font-weight: 700;
      color: var(--navy-primary);
    }

    .banding-table tbody tr:last-child td {
      border-bottom: none;
    }

    .banding-icon-yes {
      color: var(--accent-green, #16a34a);
      font-size: 1.1rem;
    }

    .banding-icon-no {
      color: #cbd5e1;
      font-size: 1.1rem;
    }

    .banding-icon-mid {
      color: #f59e0b;
      font-size: 1.1rem;
    }

    .banding-legend {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 1.2rem;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .banding-legend span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* GALERI */
    .galeri-section {
      padding: 60px 0;
    }

    .galeri-item {
      border-radius: 12px;
      overflow: hidden;
      height: 220px;
      position: relative;
    }

    .galeri-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .galeri-item:hover img {
      transform: scale(1.08);
    }

    .galeri-item.tall {
      height: 456px;
    }

    @media (max-width: 767px) {
      .galeri-item.tall {
        height: 220px;
      }
    }

    /* CARA PEMASANGAN */
    .pemasangan-section {
      padding: 60px 0;
      background: var(--bg-light);
    }

    .step-item {
      display: flex;
      gap: 1.1rem;
      margin-bottom: 1.8rem;
    }

    .step-num {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--navy-primary);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.95rem;
      flex-shrink: 0;
    }

    .step-title {
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--navy-dark);
      margin-bottom: 0.3rem;
    }

    .step-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin: 0;
    }

    .pemasangan-img {
      border-radius: 12px;
      overflow: hidden;
      height: 100%;
      min-height: 460px;
    }

    .pemasangan-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 460px;
    }

    /* TESTIMONI */
    .testi-section {
      padding: 60px 0;
    }

    .testi-card {
      background: var(--bg-light);
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 1.6rem;
      height: 100%;
    }

    .testi-stars {
      color: #f59e0b;
      font-size: 0.82rem;
      margin-bottom: 0.7rem;
    }

    .testi-text {
      font-size: 0.83rem;
      color: var(--text-main);
      line-height: 1.7;
      margin-bottom: 1.1rem;
    }

    .testi-profile {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .testi-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--navy-primary);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.85rem;
      flex-shrink: 0;
    }

    .testi-name {
      font-size: 0.82rem;
      font-weight: 800;
      color: var(--navy-dark);
    }

    .testi-role {
      font-size: 0.7rem;
      color: var(--text-muted);
    }

    /* FAQ */
    .faq-section {
      padding: 60px 0;
      background: var(--bg-light);
    }

    .accordion-item {
      border: 1px solid #e2e8f0;
      border-radius: 10px !important;
      overflow: hidden;
      margin-bottom: 12px;
      background: #fff;
    }

    .accordion-button {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--navy-dark);
      padding: 1rem 1.2rem;
      background: #fff;
    }

    .accordion-button:not(.collapsed) {
      color: var(--navy-primary);
      background: #eff6ff;
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: none;
      border-color: #e2e8f0;
    }

    .accordion-body {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.7;
      padding: 0.2rem 1.2rem 1.2rem 1.2rem;
    }

    /* CTA PENUTUP */
    .final-cta {
      background: linear-gradient(135deg, #05142e 0%, #0b2f6b 60%, #08214d 100%);
      padding: 60px 0;
      text-align: center;
    }

    .final-cta-title {
      font-size: clamp(1.3rem, 2.6vw, 1.7rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.7rem;
    }

    .final-cta-desc {
      font-size: 0.9rem;
      color: #cbd5e1;
      max-width: 560px;
      margin: 0 auto 1.6rem auto;
      line-height: 1.7;
    }



    /* PAGE HEADER BANNER */
    .page-header {
      background: linear-gradient(135deg, #05142e 0%, #0b2f6b 60%, #08214d 100%);
      padding: 70px 0 55px 0;
      position: relative;
      overflow: hidden;
    }

    .page-header::after {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
      border-radius: 50%;
    }

    .page-breadcrumb {
      font-size: 0.78rem;
      font-weight: 600;
      color: #93c5fd;
    }

    .page-breadcrumb a {
      color: #cbd5e1;
      text-decoration: none;
    }

    .page-breadcrumb a:hover {
      color: #ffffff;
    }

    .page-title {
      font-size: clamp(1.7rem, 3.5vw, 2.4rem);
      font-weight: 800;
      color: #ffffff;
      margin: 0.6rem 0 0.6rem 0;
    }

    .page-desc {
      font-size: 0.92rem;
      color: #cbd5e1;
      max-width: 640px;
      line-height: 1.7;
      margin: 0;
    }

    /* FILTER + SEARCH BAR */
    .filter-bar-wrapper {
      background-color: #ffffff;
      border-bottom: 1px solid #e2e8f0;
      position: sticky;
      top: 0;
      z-index: 20;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }

    .filter-scroll {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding: 16px 0;
      scrollbar-width: none;
    }

    .filter-scroll::-webkit-scrollbar {
      display: none;
    }

    .filter-btn {
      border: 1.5px solid #e2e8f0;
      background: #ffffff;
      color: var(--text-muted);
      font-size: 0.78rem;
      font-weight: 700;
      padding: 0.5rem 1.1rem;
      border-radius: 30px;
      white-space: nowrap;
      transition: all 0.25s ease;
      cursor: pointer;
    }

    .filter-btn:hover {
      border-color: var(--navy-primary);
      color: var(--navy-primary);
    }

    .filter-btn.active {
      background-color: var(--navy-primary);
      border-color: var(--navy-primary);
      color: #ffffff;
    }

    .search-box {
      position: relative;
      max-width: 260px;
      margin-left: auto;
      flex-shrink: 0;
    }

    .search-box input {
      font-size: 0.8rem;
      border: 1.5px solid #e2e8f0;
      border-radius: 30px;
      padding: 0.5rem 1rem 0.5rem 2.2rem;
      width: 100%;
    }

    .search-box input:focus {
      outline: none;
      border-color: var(--navy-primary);
      box-shadow: 0 0 0 3px rgba(11, 47, 107, 0.08);
    }

    .search-box i {
      position: absolute;
      left: 0.85rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      font-size: 0.85rem;
    }

    /* FEATURED ARTICLE */
    .featured-section {
      padding: 50px 0 20px 0;
    }

    .featured-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
      transition: all 0.3s ease;
    }

    .featured-card:hover {
      box-shadow: 0 20px 40px rgba(11, 47, 107, 0.12);
      border-color: #cbd5e1;
    }

    .featured-img-wrapper {
      flex: 1 1 460px;
      min-height: 320px;
      overflow: hidden;
      background-color: #e2e8f0;
    }

    .featured-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 320px;
      transition: transform 0.5s ease;
    }

    .featured-card:hover .featured-img {
      transform: scale(1.05);
    }

    .featured-body {
      flex: 1 1 360px;
      padding: 2.2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .featured-badge {
      display: inline-block;
      background: #eff6ff;
      color: var(--navy-primary);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 20px;
      margin-bottom: 0.9rem;
      width: fit-content;
    }

    .featured-title {
      font-size: clamp(1.2rem, 2.2vw, 1.55rem);
      font-weight: 800;
      color: var(--navy-dark);
      line-height: 1.35;
      margin-bottom: 0.8rem;
    }

    .featured-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 1.3rem;
    }

    .featured-meta {
      font-size: 0.75rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 1.3rem;
    }

    .featured-meta span {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* ------------------------------------ */
    /* ARTIKEL GRID (index page)            */
    /* ------------------------------------ */
    .artikel-grid-section {
      background-color: var(--bg-light);
      padding: 50px 0 80px 0;
    }

    .section-tag {
      color: var(--accent-blue);
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .section-heading {
      font-size: clamp(1.4rem, 2.8vw, 1.75rem);
      font-weight: 800;
      color: var(--navy-dark);
    }

    .artikel-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }

    .artikel-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 32px rgba(11, 47, 107, 0.12);
      border-color: #cbd5e1;
    }

    .artikel-img-wrapper {
      position: relative;
      height: 190px;
      overflow: hidden;
      background-color: #e2e8f0;
    }

    .artikel-img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .artikel-card:hover .artikel-img {
      transform: scale(1.08);
    }

    .artikel-cat-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(11, 47, 107, 0.85);
      backdrop-filter: blur(4px);
      color: #ffffff;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      z-index: 2;
    }

    .artikel-body {
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .artikel-meta-row {
      font-size: 0.7rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 0.6rem;
    }

    .artikel-meta-row span {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .artikel-title {
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--navy-dark);
      line-height: 1.4;
      margin-bottom: 0.6rem;
    }

    .artikel-desc {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1rem;
      flex-grow: 1;
    }

    .artikel-link-btn {
      color: var(--navy-primary);
      font-size: 0.75rem;
      font-weight: 800;
      text-decoration: none;
      letter-spacing: 0.3px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s ease;
      border-top: 1px solid #f1f5f9;
      padding-top: 0.85rem;
    }

    .artikel-card:hover .artikel-link-btn {
      color: var(--accent-blue);
      gap: 10px;
    }

    /* PAGINATION */
    .pagination-wrapper {
      margin-top: 3rem;
    }

    .page-btn {
      width: 42px;
      height: 42px;
      border-radius: 8px;
      border: 1.5px solid #e2e8f0;
      background: #ffffff;
      color: var(--text-main);
      font-size: 0.85rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.25s ease;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .page-btn:hover:not(.disabled):not(.active) {
      border-color: var(--navy-primary);
      color: var(--navy-primary);
      background-color: #f8fafc;
      transform: translateY(-1px);
    }

    .page-btn.active {
      background-color: var(--navy-primary);
      border-color: var(--navy-primary);
      color: #ffffff;
      box-shadow: 0 4px 12px rgba(11, 47, 107, 0.25);
    }

    .page-btn.disabled {
      background-color: #f1f5f9;
      border-color: #e2e8f0;
      color: #94a3b8;
    }

    /* NEWSLETTER / CTA STRIP */
    .newsletter-section {
      background-color: var(--navy-primary);
      padding: 55px 0;
    }

    .newsletter-heading {
      font-size: clamp(1.2rem, 2.4vw, 1.5rem);
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 0.4rem;
    }

    .newsletter-desc {
      font-size: 0.85rem;
      color: #cbd5e1;
      margin: 0;
    }

    .newsletter-form {
      display: flex;
      gap: 10px;
      max-width: 420px;
      margin-left: auto;
    }

    .newsletter-form input {
      flex: 1;
      border: none;
      border-radius: 6px;
      padding: 0.75rem 1rem;
      font-size: 0.85rem;
    }

    .newsletter-form input:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    }

    .newsletter-form button {
      background-color: var(--navy-dark);
      color: #ffffff;
      border: none;
      border-radius: 6px;
      padding: 0.75rem 1.3rem;
      font-size: 0.8rem;
      font-weight: 700;
      white-space: nowrap;
    }

    .newsletter-form button:hover {
      background-color: #050f24;
    }

    /* FOOTER */
    .site-footer {
      background-color: var(--navy-dark);
      color: #cbd5e1;
      padding: 60px 0 0 0;
      font-size: 0.85rem;
    }

    .site-footer h5 {
      color: #ffffff;
      font-size: 0.95rem;
      font-weight: 800;
      margin-bottom: 1.1rem;
    }

    .site-footer p,
    .site-footer li {
      color: #94a3b8;
      line-height: 1.8;
    }

    .site-footer ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }

    .site-footer a {
      color: #94a3b8;
      text-decoration: none;
    }

    .site-footer a:hover {
      color: #ffffff;
    }

    .footer-desc {
      max-width: 320px;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      margin-right: 8px;
    }

    .footer-social a:hover {
      background: var(--accent-blue);
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: 40px;
      padding: 18px 0;
      font-size: 0.78rem;
      color: #64748b;
    }

    @media (max-width: 991px) {
      .featured-img-wrapper {
        min-height: 240px;
      }

      .featured-img {
        min-height: 240px;
      }

      .newsletter-form {
        margin: 1rem 0 0 0;
        max-width: 100%;
      }
    }

    @media (max-width: 767px) {
      .top-bar .container {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
      }

      .page-header {
        padding: 45px 0 40px 0;
      }

      .filter-scroll {
        flex-wrap: nowrap;
      }

      .search-box {
        margin-left: 0;
        max-width: 100%;
        order: -1;
        margin-bottom: 8px;
      }

      .footer-desc {
        max-width: 100%;
      }
    }

    /* ARTICLE BODY TYPOGRAPHY & TABLE STYLING */
    .article-content-body {
      color: #334155;
      font-size: 1rem;
      line-height: 1.8;
    }

    .article-content-body h1,
    .article-content-body h2,
    .article-content-body h3,
    .article-content-body h4 {
      color: var(--navy-dark);
      font-weight: 800;
      margin-top: 1.8rem;
      margin-bottom: 0.85rem;
      line-height: 1.35;
    }

    .article-content-body h2 {
      font-size: 1.4rem;
      border-bottom: 2px solid #f1f5f9;
      padding-bottom: 0.5rem;
    }

    .article-content-body h3 {
      font-size: 1.2rem;
    }

    .article-content-body p {
      margin-bottom: 1.2rem;
    }

    .article-content-body ul,
    .article-content-body ol {
      margin-bottom: 1.3rem;
      padding-left: 1.5rem;
    }

    .article-content-body li {
      margin-bottom: 0.4rem;
    }

    /* AUTOMATIC TABLE STYLING FOR ARTICLES */
    .article-content-body table {
      width: 100% !important;
      margin: 1.5rem 0 !important;
      border-collapse: separate !important;
      border-spacing: 0 !important;
      border-radius: 10px !important;
      overflow: hidden !important;
      border: 1px solid #e2e8f0 !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    }

    .article-content-body table th,
    .article-content-body table td {
      padding: 0.85rem 1.1rem !important;
      font-size: 0.88rem !important;
      vertical-align: middle !important;
      border-bottom: 1px solid #e2e8f0 !important;
      border-right: 1px solid #f1f5f9 !important;
    }

    .article-content-body table th:last-child,
    .article-content-body table td:last-child {
      border-right: none !important;
    }

    .article-content-body table tr:last-child td {
      border-bottom: none !important;
    }

    .article-content-body table th,
    .article-content-body table tr:first-child th,
    .article-content-body table thead th {
      background-color: var(--navy-primary) !important;
      color: #ffffff !important;
      font-weight: 700 !important;
      text-transform: uppercase !important;
      letter-spacing: 0.4px !important;
      font-size: 0.82rem !important;
    }

    .article-content-body table tr:nth-child(even) td {
      background-color: #f8fafc !important;
    }

    .article-content-body table tr:hover td {
      background-color: #f1f5f9 !important;
    }