:root {
      --navy: #1F3A5F;
      --navy-dark: #142844;
      --navy-light: #264878;
      --gray-light: #D9D9D9;
      --silver: #BFC5C9;
      --soft-blue: #4A90E2;
      --gold: #C9A14A;
      --white: #FFFFFF;
      --off-white: #F5F6F8;
      --text-muted: #7a8a9a;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      color: #1a2535;
      background: #fff;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, .display-font {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      letter-spacing: -0.01em;
    }

    /* ===== NAVBAR ===== */
    .navbar-brand-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.45rem;
      letter-spacing: 0.04em;
      line-height: 1;
      color: var(--navy);
    }
    .navbar-brand-sub {
      font-size: 0.58rem;
      letter-spacing: 0.18em;
      font-weight: 500;
      color: var(--silver);
      text-transform: uppercase;
    }

    #mainNav {
      background: #ffffff;
      box-shadow: 0 1px 0 rgba(0,0,0,0.07), 0 4px 24px rgba(31,58,95,0.06);
      padding: 0.75rem 0;
      transition: all 0.35s ease;
    }
    #mainNav.scrolled {
      padding: 0.5rem 0;
      box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 8px 32px rgba(31,58,95,0.1);
    }
    #mainNav .nav-link {
      color: #4a5a6a !important;
      font-weight: 600;
      font-size: 0.8rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 0.45rem 0.9rem;
      position: relative;
      transition: color 0.2s;
    }
    #mainNav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0.9rem; right: 0.9rem;
      height: 2px;
      background: var(--navy);
      transform: scaleX(0);
      transition: transform 0.25s ease;
      border-radius: 2px;
    }
    #mainNav .nav-link:hover { color: var(--navy) !important; }
    #mainNav .nav-link:hover::after { transform: scaleX(1); }
    .navbar-brand-icon {
      width: 36px; height: 36px;
      background: var(--navy);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    #mainNav .nav-cta {
      background: var(--navy);
      color: #fff !important;
      border-radius: 6px;
      padding: 0.5rem 1.2rem !important;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 2px 10px rgba(31,58,95,0.2);
    }
    #mainNav .nav-cta::after { display: none; }
    #mainNav .nav-cta:hover {
      background: var(--navy-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(31,58,95,0.3);
    }
    .navbar-toggler { border-color: var(--gray-light); }
    .navbar-toggler-icon { filter: none; }

    /* ===== MOBILE NAV DRAWER ===== */
    .mob-phone-btn {
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      background: rgba(31,58,95,0.1);
      color: var(--navy);
      font-size: 0.9rem;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }
    .mob-phone-btn:hover { background: var(--navy); color: white; }

    .mob-nav-toggle {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 26px; height: 18px;
      background: none; border: none;
      cursor: pointer; padding: 0;
    }
    .mob-nav-toggle span {
      display: block;
      width: 100%; height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center;
    }
    .mob-nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mob-nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .mob-nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .mob-nav-overlay {
      position: fixed; inset: 0;
      background: rgba(13,33,55,0.6);
      z-index: 1200;
      opacity: 0; pointer-events: none;
      transition: opacity 0.35s ease;
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
    }
    .mob-nav-overlay.active { opacity: 1; pointer-events: all; }

    .mob-nav-drawer {
      position: fixed;
      top: 0; right: 0;
      width: min(320px, 88vw);
      height: 100dvh;
      background: linear-gradient(175deg, #0d2137 0%, #1F3A5F 55%, #264878 100%);
      z-index: 1210;
      display: flex; flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
    }
    .mob-nav-drawer.active { transform: translateX(0); }

    .mob-nav-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      flex-shrink: 0;
    }
    .mob-nav-brand {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900; font-size: 1.3rem;
      letter-spacing: 0.06em; color: #fff;
    }
    .mob-nav-brand span { color: var(--gold); }
    .mob-nav-close {
      width: 34px; height: 34px;
      background: rgba(255,255,255,0.1);
      border: none; border-radius: 50%;
      color: white; font-size: 0.95rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
      flex-shrink: 0;
    }
    .mob-nav-close:hover { background: rgba(255,255,255,0.2); }

    .mob-nav-contact {
      padding: 12px 20px;
      display: flex; flex-direction: column; gap: 6px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      flex-shrink: 0;
    }
    .mob-nav-contact a {
      font-size: 0.8rem; color: var(--gold);
      text-decoration: none;
      display: flex; align-items: center; gap: 8px;
    }
    .mob-nav-contact span {
      font-size: 0.78rem; color: rgba(255,255,255,0.5);
      display: flex; align-items: center; gap: 8px;
    }

    .mob-nav-links {
      flex: 1; overflow-y: auto;
      padding: 6px 0;
    }
    .mob-nav-links::-webkit-scrollbar { width: 3px; }
    .mob-nav-links::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 2px; }

    .mob-nav-item {
      display: flex; align-items: center; justify-content: space-between;
      width: 100%; padding: 13px 20px;
      color: rgba(255,255,255,0.88);
      font-size: 0.95rem; font-weight: 600;
      text-decoration: none; border: none; background: none;
      text-align: left; cursor: pointer;
      transition: background 0.15s, color 0.15s;
      letter-spacing: 0.01em;
    }
    .mob-nav-item:hover { background: rgba(255,255,255,0.07); color: #fff; }
    .mob-nav-item:active { background: rgba(255,255,255,0.12); }

    .mob-nav-chevron {
      font-size: 0.72rem; color: rgba(255,255,255,0.45);
      transition: transform 0.25s ease;
    }
    .mob-nav-acc-toggle.open .mob-nav-chevron { transform: rotate(-180deg); }
    .mob-nav-arrow { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

    .mob-nav-submenu {
      overflow: hidden; max-height: 0;
      transition: max-height 0.32s ease;
      background: rgba(0,0,0,0.2);
    }
    .mob-nav-submenu.open { max-height: 480px; }

    .mob-nav-subitem {
      display: flex; align-items: center;
      padding: 10px 20px 10px 38px;
      color: rgba(255,255,255,0.65);
      font-size: 0.85rem; font-weight: 500;
      text-decoration: none;
      transition: color 0.15s, background 0.15s;
    }
    .mob-nav-subitem:hover { color: #fff; background: rgba(255,255,255,0.06); }

    .mob-nav-footer {
      padding: 16px 20px;
      border-top: 1px solid rgba(255,255,255,0.1);
      flex-shrink: 0;
    }
    .mob-nav-cta {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      width: 100%; padding: 13px;
      background: #25D366; color: white;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 1rem;
      letter-spacing: 0.05em; text-decoration: none;
      border-radius: 10px;
      transition: background 0.2s, transform 0.15s;
    }
    .mob-nav-cta:hover { background: #1ebe59; color: white; transform: translateY(-1px); }
    .mob-nav-sni {
      text-align: center; font-size: 0.72rem;
      color: rgba(255,255,255,0.3); margin-top: 10px;
      letter-spacing: 0.04em;
    }

    /* ===== HUBUNGI KAMI PAGE ===== */
    .contact-channel-card {
      background: #fff;
      border: 1px solid #e8ecf0;
      border-radius: 16px;
      padding: 28px 24px 24px;
      height: 100%;
      display: flex; flex-direction: column; align-items: center;
      gap: 0;
      transition: box-shadow 0.25s, transform 0.25s;
      text-align: center;
    }
    .contact-channel-card:hover {
      box-shadow: 0 8px 32px rgba(31,58,95,0.13);
      transform: translateY(-3px);
    }
    .contact-wa-card {
      border-top: 4px solid #25D366;
    }
    .contact-wa-avatar {
      width: 64px; height: 64px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.7rem; color: white;
      margin-bottom: 14px;
      box-shadow: 0 4px 16px rgba(37,211,102,0.35);
      flex-shrink: 0;
    }
    .contact-channel-body { flex: 1; width: 100%; }
    .contact-channel-label {
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--soft-blue); margin-bottom: 4px;
    }
    .contact-channel-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.2rem; font-weight: 800;
      color: var(--navy); margin-bottom: 2px;
    }
    .contact-channel-value {
      font-size: 0.92rem; font-weight: 600;
      color: #4a5a6a; margin-bottom: 6px;
    }
    .contact-channel-note {
      font-size: 0.78rem; color: var(--text-muted);
      display: flex; align-items: center; justify-content: center; gap: 6px;
      margin-bottom: 18px;
    }
    .contact-wa-btn {
      display: flex; align-items: center; justify-content: center;
      width: 100%; padding: 12px;
      background: #25D366; color: white;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 1rem;
      letter-spacing: 0.04em; text-decoration: none;
      border-radius: 10px;
      transition: background 0.2s, transform 0.15s;
      margin-top: auto;
    }
    .contact-wa-btn:hover { background: #1ebe59; color: white; transform: translateY(-1px); }

    .contact-icon-wrap {
      width: 60px; height: 60px;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; color: white;
      margin: 0 auto 4px;
      flex-shrink: 0;
    }
    .contact-alt-btn {
      display: inline-flex; align-items: center;
      padding: 10px 22px;
      background: var(--navy);
      color: white; font-weight: 700; font-size: 0.85rem;
      letter-spacing: 0.05em; text-decoration: none;
      border-radius: 8px;
      transition: background 0.2s, transform 0.15s;
    }
    .contact-alt-btn:hover { background: var(--navy-dark); color: white; transform: translateY(-1px); }

    .contact-info-box {
      background: #fff;
      border: 1px solid #e8ecf0;
      border-radius: 16px;
      padding: 28px;
      height: 100%;
    }
    .contact-info-header {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 16px;
    }
    .contact-info-icon {
      width: 46px; height: 46px;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; color: white; flex-shrink: 0;
    }
    .contact-info-header h3 {
      font-size: 1.25rem; font-weight: 800;
      color: var(--navy); margin: 0;
    }
    .contact-info-row {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.85rem; color: #4a5a6a;
      padding: 7px 0;
      border-bottom: 1px solid #f0f2f5;
    }
    .contact-info-row:last-of-type { border-bottom: none; }
    .contact-info-row i { color: var(--soft-blue); flex-shrink: 0; }

    .contact-schedule { width: 100%; }
    .contact-schedule-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid #f0f2f5;
      font-size: 0.88rem; color: #4a5a6a;
    }
    .contact-schedule-row:last-child { border-bottom: none; }
    .contact-schedule-time { font-weight: 600; }
    .contact-schedule-time.open { color: var(--navy); }
    .contact-schedule-time.closed { color: #e74c3c; }

    .contact-faq-list { display: flex; flex-direction: column; gap: 10px; }
    .contact-faq-item {
      border: 1px solid #e8ecf0;
      border-radius: 12px;
      overflow: hidden;
    }
    .contact-faq-q {
      width: 100%; background: #fff; border: none;
      padding: 16px 20px;
      display: flex; justify-content: space-between; align-items: center;
      gap: 12px;
      font-weight: 600; font-size: 0.92rem; color: var(--navy);
      cursor: pointer; text-align: left;
      transition: background 0.15s;
    }
    .contact-faq-q:hover { background: #f7f9fb; }
    .contact-faq-icon { font-size: 0.85rem; flex-shrink: 0; transition: transform 0.25s; }
    .contact-faq-a {
      display: none;
      padding: 0 20px 16px;
      font-size: 0.88rem; color: #4a5a6a; line-height: 1.7;
    }

    /* ===== TOP BAR ===== */
    .top-bar {
      background: var(--navy-dark);
      color: rgba(255,255,255,0.8);
      font-size: 0.78rem;
      padding: 5px 0;
      letter-spacing: 0.02em;
    }
    .top-bar a { color: var(--gold); text-decoration: none; }

    /* ===== HERO ===== */
    .hero {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 90px;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.5;
    }
    .hero-diagonal {
      position: absolute;
      bottom: -2px;
      left: 0; right: 0;
      height: 120px;
      background: #fff;
      clip-path: polygon(0 80px, 100% 0, 100% 120px, 0 120px);
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(201,161,74,0.2);
      border: 1px solid rgba(201,161,74,0.4);
      color: var(--gold);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 1.2rem;
    }
    .hero h1 {
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      line-height: 1.05;
      color: #fff;
      margin-bottom: 1.2rem;
    }
    .hero h1 span { color: var(--gold); }
    .hero p {
      color: rgba(255,255,255,0.78);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 540px;
      margin-bottom: 2rem;
    }
    .btn-primary-dp {
      background: var(--gold);
      color: var(--navy-dark);
      border: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 13px 30px;
      border-radius: 4px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.25s;
      box-shadow: 0 6px 20px rgba(201,161,74,0.35);
    }
    .btn-primary-dp:hover {
      background: #d9b15a;
      color: var(--navy-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(201,161,74,0.45);
    }
    .btn-outline-dp {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.4);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 11px 28px;
      border-radius: 4px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.25s;
    }
    .btn-detail-product {
      background: var(--navy);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 11px 28px;
      border-radius: 4px;
      text-decoration: none;
      display: inline-flex;
      text-align: center !important;
      align-items: center;
      gap: 8px;
      transition: all 0.25s;
    }
    .btn-outline-dp:hover {
      border-color: var(--gold);
      color: var(--white) !important;
    }

    /* Hero Stats */
    .hero-stats {
      display: flex;
      gap: 2rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
    }
    .hero-stat-item strong {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }
    .hero-stat-item span {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    /* Hero visual */
    .hero-visual {
      position: relative;
    }
    .hero-card {
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 12px;
      padding: 1.5rem;
    }
    .hero-price-tag {
      background: var(--gold);
      color: var(--navy-dark);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      border-radius: 6px;
      padding: 8px 16px;
      display: inline-block;
    }
    .hero-price-tag .price-label { font-size: 0.7rem; display: block; opacity: 0.7; letter-spacing: 0.08em; text-transform: uppercase; }
    .hero-price-tag .price-value { font-size: 1.6rem; line-height: 1; }
    .hero-product-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.85);
    }
    .hero-product-item:last-child { border-bottom: none; }
    .hero-product-icon {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      background: rgba(74,144,226,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--soft-blue);
      flex-shrink: 0;
    }

    /* ===== TRUST BAR ===== */
    .trust-bar {
      background: var(--navy);
      padding: 1.5rem 0;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.85);
      font-size: 0.88rem;
      font-weight: 500;
    }
    .trust-item i { color: var(--gold); font-size: 1.2rem; }
    .trust-divider {
      width: 1px;
      height: 28px;
      background: rgba(255,255,255,0.15);
    }

    /* ===== SECTION COMMON ===== */
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.6rem;
    }
    .section-tag::before {
      content: '';
      width: 20px;
      height: 2px;
      background: var(--gold);
    }
    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.1;
      color: var(--navy);
    }
    .section-title span { color: var(--soft-blue); }

    /* ===== PROMO BANNER ===== */
    .promo-banner {
      background: linear-gradient(90deg, var(--navy-dark), var(--navy));
      color: white;
      padding: 1rem 0;
      position: relative;
      overflow: hidden;
    }
    .promo-banner::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.02) 20px,
        rgba(255,255,255,0.02) 40px
      );
    }
    .countdown-box {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 8px;
      padding: 6px 12px;
    }
    .countdown-digit {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--gold);
      min-width: 2ch;
      text-align: center;
      line-height: 1;
    }
    .countdown-sep { color: var(--gold); font-weight: 900; font-size: 1.5rem; }
    .countdown-label { font-size: 0.6rem; color: rgba(255,255,255,0.5); text-align: center; letter-spacing: 0.05em; text-transform: uppercase; }

    /* ===== PRODUCTS ===== */
    .products-section { background: var(--off-white); padding: 80px 0; }
    .product-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(31,58,95,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(31,58,95,0.16);
    }
    .product-card-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--gold);
      color: var(--navy-dark);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 100px;
      z-index: 2;
    }
    .product-card-img {
      height: 200px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      position: relative;
      overflow: hidden;
    }
    .product-card-img::after {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.03) 10px,
        rgba(255,255,255,0.03) 20px
      );
    }
    .product-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
    .product-title { font-size: 1.3rem; color: var(--navy); margin-bottom: 0.4rem; }
    .product-desc { font-size: 0.875rem; color: #5a6a7a; line-height: 1.6; margin-bottom: 1rem; flex: 1; }
    .product-features { list-style: none; padding: 0; margin: 0 0 1.2rem; }
    .product-features li {
      font-size: 0.8rem;
      color: #5a6a7a;
      padding: 4px 0;
      display: flex;
      align-items: flex-start;
      gap: 7px;
    }
    .product-features li i { color: var(--soft-blue); flex-shrink: 0; margin-top: 2px; }
    .product-price-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      padding-top: 1rem;
      border-top: 1px solid var(--gray-light);
    }
    .product-price-label { font-size: 0.72rem; color: #7a8a9a; text-transform: uppercase; letter-spacing: 0.05em; }
    .product-price {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--navy);
    }
    .product-price small { font-size: 0.75rem; font-weight: 400; color: #7a8a9a; display: block; }
    .btn-wa {
      background: #25D366;
      color: white;
      border: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 9px 16px;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all 0.2s;
      white-space: nowrap;
    }
    .btn-wa:hover { background: #1db954; color: white; transform: scale(1.03); }

    /* ===== WHY US ===== */
    .why-section { padding: 80px 0; background: #fff; }
    .why-card {
      padding: 2rem;
      border-radius: 12px;
      border: 1px solid var(--gray-light);
      background: #fff;
      height: 100%;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .why-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px;
      height: 0;
      background: var(--gold);
      transition: height 0.3s;
    }
    .why-card:hover {
      box-shadow: 0 12px 40px rgba(31,58,95,0.12);
      transform: translateY(-4px);
      border-color: transparent;
    }
    .why-card:hover::before { height: 100%; }
    .why-icon {
      width: 52px; height: 52px;
      border-radius: 12px;
      background: rgba(31,58,95,0.08);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      color: var(--navy);
      margin-bottom: 1rem;
      transition: all 0.3s;
    }
    .why-card:hover .why-icon { background: var(--navy); color: var(--gold); }
    .why-card h5 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; }
    .why-card p { font-size: 0.875rem; color: #5a6a7a; line-height: 1.6; margin: 0; }
    .why-num {
      position: absolute;
      top: 1rem; right: 1.2rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 4rem;
      font-weight: 900;
      color: rgba(31,58,95,0.05);
      line-height: 1;
    }

    /* ===== STATS SECTION ===== */
    .stats-section {
      background: var(--navy);
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }
    .stats-section::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h80v80H0z' fill='none'/%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E");
    }
    .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 3.5rem;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-top: 4px; }

    /* ===== HOW TO ORDER ===== */
    .order-section {background: var(--off-white); }
    .step-item {
      position: relative;
      padding: 1.5rem;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(31,58,95,0.07);
      transition: all 0.3s;
      text-align: center;
    }
    .step-item:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(31,58,95,0.13); }
    .step-num {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.4rem;
      font-weight: 900;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1rem;
    }
    .step-item h6 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.4rem; }
    .step-item p { font-size: 0.82rem; color: #5a6a7a; margin: 0; line-height: 1.5; }

    /* ===== TESTIMONIALS ===== */
    .testi-section { padding: 80px 0; background: #fff; }
    .testi-card {
      background: var(--off-white);
      border-radius: 12px;
      padding: 1.8rem;
      height: 100%;
      border: 1px solid transparent;
      transition: all 0.3s;
      position: relative;
    }
    .testi-card:hover { border-color: var(--soft-blue); box-shadow: 0 8px 32px rgba(74,144,226,0.1); }
    .testi-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
    .testi-text { font-size: 0.9rem; color: #4a5a6a; line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 10px; }
    .testi-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--navy);
      display: flex; align-items: center; justify-content: center;
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 900;
      flex-shrink: 0;
    }
    .testi-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
    .testi-company { font-size: 0.78rem; color: #7a8a9a; }
    .testi-quote-icon {
      position: absolute;
      top: 1rem; right: 1.5rem;
      font-size: 3rem;
      color: rgba(31,58,95,0.06);
      font-family: Georgia, serif;
      line-height: 1;
    }

    /* ===== FAQ ===== */
    .faq-section { padding: 80px 0; background: var(--off-white); }
    .accordion-button:not(.collapsed) { background: var(--navy); color: #fff; box-shadow: none; }
    .accordion-button:not(.collapsed)::after { filter: invert(1); }
    .accordion-button { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); }
    .accordion-body { font-size: 0.9rem; color: #5a6a7a; line-height: 1.7; }

    /* ===== COVERAGE ===== */
    .coverage-section { padding: 80px 0; background: var(--navy); }
    .city-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.8);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      padding: 5px 12px;
      font-size: 0.82rem;
      margin: 4px;
      transition: all 0.2s;
    }
    .city-tag:hover { background: rgba(201,161,74,0.2); border-color: var(--gold); color: var(--gold); }
    .city-tag i { font-size: 0.7rem; }

    /* ===== CTA SECTION ===== */
    .cta-section {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: 'DUNIA\APRECAST';
      white-space: pre;
      position: absolute;
      right: -50px;
      top: 50%;
      transform: translateY(-50%);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12rem;
      font-weight: 900;
      color: rgba(255,255,255,0.03);
      line-height: 0.85;
      pointer-events: none;
    }
    .cta-section h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); }
    .cta-section h2 span { color: var(--gold); }
    .cta-section p { color: rgba(255,255,255,0.7); font-size: 1rem; }

    /* ===== FOOTER ===== */
    footer {
      background: var(--navy-dark);
      color: rgba(255,255,255,0.7);
      padding: 60px 0 0;
    }
    footer h6 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }
    footer a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
    footer a:hover { color: var(--gold); }
    footer ul { list-style: none; padding: 0; margin: 0; }
    footer ul li { padding: 4px 0; font-size: 0.875rem; }
    .footer-brand { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.6rem; color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 1rem 0;
      margin-top: 3rem;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
    }

    /* ===== FLOATING WA WIDGET ===== */
    .wa-widget {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }
    .wa-contacts {
      display: flex;
      flex-direction: column;
      gap: 8px;
      opacity: 0;
      transform: translateY(12px) scale(0.95);
      pointer-events: none;
      transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
    }
    .wa-contacts.open {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: all;
    }
    .wa-contact-card {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      border-radius: 50px;
      padding: 8px 16px 8px 8px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      white-space: nowrap;
    }
    .wa-contact-card:hover { transform: translateX(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
    .wa-contact-avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: #25D366;
      display: flex; align-items: center; justify-content: center;
      color: white;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .wa-contact-info { line-height: 1.2; }
    .wa-contact-name { font-size: 0.78rem; font-weight: 700; color: var(--navy); }
    .wa-contact-role { font-size: 0.7rem; color: #7a8a9a; }
    .wa-main-btn {
      width: 58px; height: 58px;
      border-radius: 50%;
      background: #25D366;
      display: flex; align-items: center; justify-content: center;
      color: white;
      font-size: 1.7rem;
      box-shadow: 0 6px 24px rgba(37,211,102,0.45);
      cursor: pointer;
      border: none;
      transition: all 0.3s;
      animation: pulse-wa 2.5s infinite;
      position: relative;
    }
    .wa-main-btn:hover { background: #1db954; transform: scale(1.08); }
    .wa-main-btn .wa-close-icon { display: none; font-size: 1.3rem; }
    .wa-main-btn.open { background: #455a64; animation: none; }
    .wa-main-btn.open .bi-whatsapp { display: none; }
    .wa-main-btn.open .wa-close-icon { display: block; }
    .wa-badge {
      position: absolute;
      top: -2px; right: -2px;
      width: 18px; height: 18px;
      background: #e74c3c;
      color: white;
      border-radius: 50%;
      font-size: 0.6rem;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      border: 2px solid white;
    }
    @keyframes pulse-wa {
      0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
      50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.08); }
    }

    /* ===== ARTICLE SECTION ===== */
    .article-section { padding: 80px 0; background: #fff; }
    .article-card {
      border-radius: 14px;
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--gray-light);
      transition: transform 0.3s, box-shadow 0.3s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .article-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(31,58,95,0.12);
      border-color: transparent;
    }
    .article-img {
      height: 190px;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }
    .article-img-bg {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 3.5rem;
      transition: transform 0.4s ease;
    }
    .article-card:hover .article-img-bg { transform: scale(1.06); }
    .article-cat {
      position: absolute;
      top: 12px; left: 12px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 100px;
      backdrop-filter: blur(6px);
    }
    .article-body { padding: 1.3rem 1.4rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
    .article-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.75rem;
      color: #9aabb8;
      margin-bottom: 0.6rem;
    }
    .article-meta span { display: flex; align-items: center; gap: 4px; }
    .article-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.25;
      margin-bottom: 0.6rem;
      transition: color 0.2s;
    }
    .article-card:hover .article-title { color: var(--soft-blue); }
    .article-excerpt {
      font-size: 0.82rem;
      color: #5a6a7a;
      line-height: 1.65;
      flex: 1;
      margin-bottom: 1rem;
    }
    .article-read-more {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--navy);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: gap 0.2s, color 0.2s;
    }
    .article-read-more:hover { color: var(--soft-blue); gap: 9px; }
    .article-featured {
      border: none;
      background: var(--navy);
      color: white;
    }
    .article-featured .article-title { color: #fff; }
    .article-featured .article-excerpt { color: rgba(255,255,255,0.65); }
    .article-featured .article-meta { color: rgba(255,255,255,0.4); }
    .article-featured .article-read-more { color: var(--gold); }
    .article-featured .article-read-more:hover { color: #d9b15a; }
    .article-featured:hover { box-shadow: 0 20px 56px rgba(31,58,95,0.25); transform: translateY(-6px); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .hero { padding-top: 100px; }
      .hero-stats { gap: 1.2rem; }
      .trust-item { font-size: 0.78rem; }
    }

    /* ===== ANIMATION EXTRAS ===== */
    .fade-up { opacity: 0; transform: translateY(24px); transition: all 0.6s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    .sni-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(74,144,226,0.1);
      border: 1px solid rgba(74,144,226,0.25);
      color: var(--soft-blue);
      border-radius: 6px;
      padding: 4px 10px;
      font-size: 0.78rem;
      font-weight: 700;
    }

    .ribbon {
      background: linear-gradient(90deg, var(--soft-blue), var(--navy));
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 0 0 6px 6px;
      display: inline-block;
    }

    /* ===== PRICE TABLE ===== */
    .price-section { padding: 80px 0; background: var(--off-white); }
    .price-tabs .nav-link {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #5a6a7a;
      border: 2px solid var(--gray-light);
      border-radius: 8px;
      padding: 8px 20px;
      transition: all 0.2s;
      background: #fff;
    }
    .price-tabs .nav-link.active {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy);
    }
    .price-tabs .nav-link:hover:not(.active) { border-color: var(--navy); color: var(--navy); }
    .price-table { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 24px rgba(31,58,95,0.07); }
    .price-table table { margin: 0; }
    .price-table thead th {
      background: var(--navy);
      color: rgba(255,255,255,0.9);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 700;
      padding: 14px 16px;
      border: none;
    }
    .price-table tbody td {
      padding: 11px 16px;
      font-size: 0.875rem;
      border-color: var(--gray-light);
      vertical-align: middle;
    }
    .price-table tbody tr:hover td { background: rgba(31,58,95,0.03); }
    .price-highlight { color: var(--navy); font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; }
    .price-badge-pop { background: rgba(201,161,74,0.15); color: #8a6a1a; font-size: 0.68rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; letter-spacing: 0.06em; text-transform: uppercase; }
    .price-note { background: rgba(74,144,226,0.08); border: 1px solid rgba(74,144,226,0.2); border-radius: 8px; padding: 12px 16px; font-size: 0.82rem; color: #4a5a6a; }

    /* ===== PORTFOLIO / PROJECTS ===== */
    .portfolio-section { padding: 80px 0; background: var(--navy-dark); }
    .portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 16px; }
    .portfolio-grid .port-item:first-child { grid-column: span 2; }
    .port-item {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .port-img {
      width: 100%; height: 220px;
      display: flex; align-items: center; justify-content: center;
      font-size: 3rem;
      transition: transform 0.4s ease;
      position: relative;
    }
    .port-item:first-child .port-img { height: 280px; }
    .port-item:hover .port-img { transform: scale(1.06); }
    .port-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(20,40,68,0.95) 0%, rgba(20,40,68,0.3) 60%, transparent 100%);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 1.2rem;
      opacity: 0.85;
      transition: opacity 0.3s;
    }
    .port-item:hover .port-overlay { opacity: 1; }
    .port-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
    .port-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 800; color: #fff; line-height: 1.2; }
    .port-meta { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
    .port-item:first-child .port-title { font-size: 1.4rem; }
    @media (max-width: 768px) {
      .portfolio-grid { grid-template-columns: 1fr 1fr; }
      .portfolio-grid .port-item:first-child { grid-column: span 2; }
      .port-img { height: 160px !important; }
    }
    @media (max-width: 480px) {
      .portfolio-grid { grid-template-columns: 1fr; }
      .portfolio-grid .port-item:first-child { grid-column: span 1; }
    }

    /* ===== BRAND LOGOS / CLIENTS ===== */
    .clients-section { padding: 50px 0; background: #fff; border-top: 1px solid var(--gray-light); }
    .client-logo {
      display: flex; align-items: center; justify-content: center;
      height: 52px;
      opacity: 0.35;
      filter: grayscale(1);
      transition: all 0.3s;
    }
    .client-logo:hover { opacity: 0.9; filter: grayscale(0); }
    .client-logo-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.1rem;
      letter-spacing: 0.1em;
      color: var(--navy);
      border: 2px solid var(--navy);
      border-radius: 6px;
      padding: 6px 14px;
    }

    /* ===== STICKY MOBILE CTA ===== */
    .sticky-mobile-cta {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 998;
      display: none;
      padding: 10px 16px;
      background: #fff;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
      gap: 8px;
    }
    @media (max-width: 768px) { .sticky-mobile-cta { display: flex; } }
    .sticky-mobile-cta a {
      flex: 1; display: flex; align-items: center; justify-content: center;
      gap: 6px; border-radius: 8px; padding: 11px 8px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 0.88rem;
      letter-spacing: 0.05em; text-transform: uppercase;
      text-decoration: none; transition: all 0.2s;
    }
    .sticky-cta-wa { background: #25D366; color: #fff; }
    .sticky-cta-wa:hover { background: #1db954; color: #fff; }
    .sticky-cta-tel { background: var(--navy); color: #fff; }
    .sticky-cta-tel:hover { background: var(--navy-dark); color: #fff; }

/* ===== PRODUCT DETAIL PAGES ===== */
.product-breadcrumb {
  background: #f0f4fa;
  padding: 10px 0;
  border-bottom: 1px solid #dde6f5;
}
.product-breadcrumb .breadcrumb { margin: 0; font-size: 0.85rem; }
.product-breadcrumb .breadcrumb-item a { color: var(--navy); text-decoration: none; }
.product-breadcrumb .breadcrumb-item.active { color: #6b7a99; }

/* --- Hero --- */
.product-hero-section {
  padding: 60px 0 50px;
  background: linear-gradient(160deg, #0d1a35 0%, #1a3066 60%, #1565c0 100%);
  color: #fff;
}
.product-gallery-main {
  background: rgba(255,255,255,0.07);
  border-radius: 16px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.13);
  overflow: hidden;
}
.product-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 20px;
  text-align: center;
  color: rgba(255,255,255,0.65);
}
.product-img-placeholder span { font-size: 1rem; font-weight: 600; }
.product-img-placeholder small { font-size: 0.78rem; opacity: 0.6; }
.product-gallery-img {
  width: 100%; height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-gallery-main:hover .product-gallery-img { transform: scale(1.03); }
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.product-img-thumb {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 6px 6px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
}
.product-img-thumb.active,
.product-img-thumb:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.14);
}
.thumb-placeholder {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.product-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.product-tag-sni, .product-tag-cat {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 6px;
  padding: 4px 12px;
  text-transform: uppercase;
}
.product-tag-sni { background: rgba(76,175,80,0.18); color: #a5d6a7; border: 1px solid rgba(76,175,80,0.3); }
.product-tag-cat { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.18); }
.product-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
}
.product-hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}
.product-price-box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 18px 22px;
  display: inline-block;
  min-width: 220px;
}
.price-from-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.price-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1.1;
}
.price-unit { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
.product-specs-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.spec-quick-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
}
.spec-quick-item i { font-size: 1.2rem; color: rgba(255,255,255,0.5); margin-top: 1px; }
.spec-quick-item strong { color: #fff; display: block; font-size: 0.9rem; }

/* --- Product Description --- */
.product-desc-section { padding: 70px 0; background: #fff; }
.section-title-sm {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title-sm span { color: var(--soft-blue); }
.product-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid #f0f4fa;
}
.product-ul li:last-child { border-bottom: none; }
.product-ul li i { color: #43a047; font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.spec-card {
  background: #f8fbff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dde6f5;
}
.spec-card-header {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 20px;
  letter-spacing: 0.02em;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table tr { border-bottom: 1px solid #e8eef8; }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td {
  padding: 10px 20px;
  font-size: 0.88rem;
}
.spec-table td:first-child { color: #6b7a99; width: 45%; }
.spec-table td:last-child { color: var(--navy); font-weight: 600; }
.info-callout {
  background: #e3f2fd;
  border-left: 4px solid var(--soft-blue);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  margin-top: 20px;
  font-size: 0.88rem;
  color: #1565c0;
}

/* --- Gallery Section --- */
.product-gallery-section {
  padding: 70px 0;
  background: #f8fbff;
}
.gallery-figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #e8eef8;
  transition: transform 0.25s, box-shadow 0.25s;
}
.gallery-figure:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(13,26,53,0.12); }
.gallery-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #c9d6ef 0%, #dde6f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(13,26,53,0.25);
}
.gallery-figure figcaption {
  padding: 10px 14px 12px;
  font-size: 0.78rem;
  color: #6b7a99;
  line-height: 1.4;
}

/* --- Price Section --- */
.product-price-section { padding: 70px 0; background: #fff; }
.product-price-table thead th {
  background: var(--navy);
  color: #fff;
  font-size: 0.85rem;
  padding: 12px 16px;
  border: none;
}
.product-price-table tbody td {
  font-size: 0.88rem;
  padding: 12px 16px;
  vertical-align: middle;
  color: #2d3a5a;
}
.product-price-table tbody tr:hover { background: #f0f6ff; }
.price-table-group-header {
  background: #e8eef8 !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px !important;
}
.price-note {
  font-size: 0.82rem;
  color: #6b7a99;
  background: #f8fbff;
  border-radius: 8px;
  padding: 10px 16px;
}

/* --- Testimonials --- */
.product-testi-section {
  padding: 70px 0;
  background: linear-gradient(160deg, #0d1a35 0%, #1a3066 100%);
}
.product-testi-section .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.product-testi-section h2 { color: #fff; }
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  transition: transform 0.25s, background 0.25s;
}
.review-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.review-stars { color: var(--gold); font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.review-name { font-weight: 700; font-size: 0.88rem; color: #fff; }
.review-role { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* --- FAQ --- */
.product-faq-section {
  padding: 70px 0;
  background: #f8fbff;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dde6f5;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover { background: #f0f6ff; }
.faq-icon {
  font-size: 0.85rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--soft-blue);
}
.faq-icon.open { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: #4a5570;
  line-height: 1.7;
  border-top: 1px solid #f0f4fa;
}
.faq-answer p { margin: 14px 0 0; }

/* --- Related Products --- */
.related-section {
  padding: 70px 0;
  background: #fff;
}
.related-card {
  display: block;
  background: #f8fbff;
  border: 1px solid #dde6f5;
  border-radius: 16px;
  padding: 28px 16px 22px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(13,26,53,0.1);
  border-color: var(--soft-blue);
}
.related-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1a3066, var(--soft-blue));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
  color: #fff;
}
.related-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.related-price {
  font-size: 0.82rem;
  color: var(--soft-blue);
  font-weight: 600;
}

/* --- CTA Section --- */
.product-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d1a35 0%, #1565c0 100%);
  color: #fff;
}
.product-cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 12px;
}
.product-cta-section p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.btn-outline-dp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: 2px solid var(--white);
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline-dp:hover {
  background: var(--navy) !important;
  color: #fff;
}
.btn-outline-dp-light {
  border-color: rgba(255,255,255,0.6);
  color: rgba(255,255,255,0.9);
}
.btn-outline-dp-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

@media (max-width: 767px) {
  .product-hero-section { padding: 40px 0 36px; }
  .product-specs-quick { grid-template-columns: 1fr 1fr; gap: 8px; }
  .product-gallery-thumbs { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .product-price-box { width: 100%; }
  .product-desc-section, .product-gallery-section,
  .product-price-section, .product-testi-section,
  .product-faq-section, .related-section, .product-cta-section { padding: 48px 0; }
}

/* =============================================
   ARTIKEL / BLOG CSS
   ============================================= */

/* ------ Listing page ------ */
.artikel-hero-section {
  background: linear-gradient(135deg, #1a2a4a 0%, #0f4c81 100%);
  padding: 60px 0 48px;
  color: #fff;
  text-align: center;
}
.artikel-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.artikel-hero-sub {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
}
.artikel-list-section {
  padding: 60px 0 80px;
  background: #f8fafc;
}
.artikel-card-featured {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.artikel-card-featured:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.12); }
.artikel-img-placeholder-featured {
  background: linear-gradient(135deg, #1a2a4a 0%, #0f4c81 100%);
  color: rgba(255,255,255,0.6);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; height: 220px; font-size: 0.85rem;
}
.artikel-img-placeholder-featured i { font-size: 2.5rem; opacity: 0.6; }
.artikel-card-featured-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.artikel-card-featured-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.35rem;
  color: #1a2a4a; line-height: 1.3; margin-bottom: 10px;
}
.artikel-card-featured-excerpt { color: #555; font-size: 0.95rem; line-height: 1.6; flex: 1; }
.artikel-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  text-decoration: none; color: inherit; height: 100%;
}
.artikel-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.artikel-img-placeholder {
  background: linear-gradient(135deg, #e8f0fe 0%, #c7d8f5 100%);
  color: #5b7db1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 6px; height: 160px; font-size: 0.78rem;
}
.artikel-img-placeholder i { font-size: 1.8rem; opacity: 0.7; }
.artikel-card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.artikel-card-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem;
  color: #1a2a4a; line-height: 1.35; margin-bottom: 8px;
}
.artikel-card-excerpt { color: #666; font-size: 0.88rem; line-height: 1.55; flex: 1; }
.artikel-cat-badge {
  position: absolute; top: 12px; left: 12px; background: #e8a020; color: #fff;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 20px;
}
.artikel-cat-badge-inline {
  background: #e8f0fe; color: #0f4c81; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; padding: 4px 12px;
  border-radius: 20px; display: inline-block; margin-bottom: 12px;
}
.artikel-meta-row {
  display: flex; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: #888;
  margin-bottom: 12px; margin-top: auto; padding-top: 12px;
}
.artikel-meta-row i { margin-right: 4px; }
.artikel-read-more {
  font-size: 0.85rem; font-weight: 700; color: #0f4c81; text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px; margin-top: auto; padding-top: 8px;
}
.artikel-read-more:hover { color: #e8a020; }

/* ------ Detail page ------ */
.artikel-detail-wrap { padding: 48px 0 80px; background: #f8fafc; }
.artikel-detail {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.artikel-detail-header {
  padding: 36px 40px 24px;
  border-bottom: 1px solid #f0f4f8;
}
.artikel-detail-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2rem); color: #1a2a4a;
  line-height: 1.25; margin-bottom: 16px; letter-spacing: -0.3px;
}
.artikel-detail-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; color: #888; }
.artikel-detail-meta i { margin-right: 4px; color: #0f4c81; }
.artikel-img-placeholder-lg {
  background: linear-gradient(135deg, #1a2a4a 0%, #0f4c81 100%);
  color: rgba(255,255,255,0.55); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; height: 280px; font-size: 0.88rem;
}
.artikel-img-placeholder-lg i { font-size: 3rem; }
.artikel-img-hero { overflow: hidden; background: #0f1e30; }
.artikel-img-hero-img {
  width: 100%; height: 420px;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.artikel-img-hero-img:hover { transform: scale(1.02); }
.artikel-body { padding: 36px 40px 40px; font-size: 1rem; color: #2d3748; line-height: 1.75; }
.artikel-body h2 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.35rem;
  color: #1a2a4a; margin: 32px 0 14px; padding-bottom: 8px; border-bottom: 2px solid #e8f0fe;
}
.artikel-body h3 {
  font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 1.05rem;
  color: #1a2a4a; margin: 24px 0 10px;
}
.artikel-body ul, .artikel-body ol { padding-left: 24px; margin-bottom: 20px; }
.artikel-body li { margin-bottom: 6px; }
.artikel-body p { margin-bottom: 18px; }
.artikel-body a { color: #0f4c81; font-weight: 600; }
.artikel-body a:hover { color: #e8a020; }
.artikel-lead {
  font-size: 1.1rem; color: #444; line-height: 1.7;
  border-left: 4px solid #0f4c81; padding-left: 20px; margin-bottom: 28px;
}
.artikel-callout {
  background: #e8f4fd; border-left: 4px solid #0f4c81; border-radius: 0 8px 8px 0;
  padding: 18px 22px; margin: 28px 0; font-size: 0.95rem; color: #2c3e50; line-height: 1.65;
}
.artikel-callout-cta {
  background: linear-gradient(135deg, #fff8e7 0%, #fff3d0 100%);
  border-left-color: #e8a020;
}
.artikel-formula {
  background: #1a2a4a; border-radius: 10px; padding: 22px 24px; margin: 24px 0; color: #fff;
}
.formula-title {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: #99b8e0; margin-bottom: 8px;
}
.formula-body {
  font-family: 'Courier New', Courier, monospace; font-size: 1.05rem;
  font-weight: 700; color: #fff; margin-bottom: 10px;
}
.formula-note { font-size: 0.8rem; color: #99b8e0; line-height: 1.5; }
.artikel-table {
  margin: 20px 0 28px; border-radius: 10px; overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.artikel-table .table { margin-bottom: 0; font-size: 0.9rem; }
.artikel-table .table thead th {
  background: #1a2a4a; color: #fff; font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap;
  padding: 12px 14px; border: none;
}
.artikel-table .table tbody td { padding: 11px 14px; vertical-align: middle; border-color: #f0f4f8; }
.artikel-table .table tbody tr:hover td { background: #f8fafc; }
.btn-sm-dp {
  padding: 8px 22px; font-size: 0.88rem; border-radius: 8px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.22s; text-decoration: none; cursor: pointer; border: none;
}

/* ------ Sidebar ------ */
.artikel-sidebar { position: sticky; top: 88px; }
.sidebar-widget {
  background: #fff; border-radius: 12px; padding: 24px;
  margin-bottom: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.sidebar-widget-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem;
  color: #1a2a4a; text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid #e8f0fe;
}
.sidebar-artikel-list { list-style: none; padding: 0; margin: 0; }
.sidebar-artikel-item {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid #f0f4f8; text-decoration: none; color: inherit; transition: opacity 0.2s;
}
.sidebar-artikel-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-artikel-item:hover { opacity: 0.75; }
.sidebar-artikel-icon {
  width: 36px; height: 36px; border-radius: 8px; background: #e8f0fe; color: #0f4c81;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.sidebar-artikel-title { font-size: 0.85rem; font-weight: 600; color: #1a2a4a; line-height: 1.35; margin-bottom: 3px; }
.sidebar-artikel-date { font-size: 0.75rem; color: #aaa; }
.sidebar-produk-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-produk-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 600; color: #0f4c81;
  border: 1.5px solid #c7d8f5; border-radius: 20px; padding: 4px 12px;
  text-decoration: none; transition: all 0.2s;
}
.sidebar-produk-tag:hover { background: #0f4c81; color: #fff; border-color: #0f4c81; }

/* ------ Responsive artikel ------ */
@media (max-width: 991px) {
  .artikel-sidebar { position: static; }
  .artikel-detail-header { padding: 28px 24px 20px; }
  .artikel-body { padding: 28px 24px 32px; }
}
@media (max-width: 767px) {
  .artikel-hero-section { padding: 40px 0 36px; }
  .artikel-detail-wrap { padding: 28px 0 60px; }
  .artikel-img-placeholder-lg { height: 200px; }
  .artikel-img-hero-img { height: 220px; }
  .artikel-detail-header { padding: 20px 18px 16px; }
  .artikel-body { padding: 20px 18px 24px; font-size: 0.95rem; }
  .artikel-body h2 { font-size: 1.15rem; margin-top: 24px; }
  .artikel-lead { font-size: 1rem; padding-left: 14px; }
  .artikel-card-featured-body { padding: 20px; }
  .sidebar-widget { padding: 18px; }
}
