
    /* ========== RESET SINGKAT ========== */
    *, *::before, *::after {
      box-sizing: border-box;
    }
    html, body {
      margin: 0;
      padding: 0;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      color: #0f172a;
      background: #0b1220;
      scroll-behavior: smooth;
    }
    img {
      max-width: 100%;
      display: block;
    }
    a {
      text-decoration: none;
      color: inherit;
    }

    /* ========== LAYOUT DASAR ========== */
    .page-wrapper {
      min-height: 100vh;
      background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), transparent 60%),
        radial-gradient(circle at top right, rgba(129, 140, 248, 0.2), transparent 55%),
        radial-gradient(circle at bottom, rgba(248, 250, 252, 0.03), transparent 70%);
      color: #e5e7eb;
    }

    .container {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ========== NAVBAR ========== */
    header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(18px);
      background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.7), transparent);
      border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
    }

    .logo {
      font-weight: 700;
      font-size: 20px;
      letter-spacing: 0.04em;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-badge {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 20%, #f97316, #e11d48 50%, #4f46e5);
      box-shadow: 0 0 18px rgba(59, 130, 246, 0.8);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 14px;
      color: #cbd5f5;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 4px;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1.5px;
      background: linear-gradient(to right, #38bdf8, #a855f7);
      transition: width 0.22s ease;
    }
    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: none;
    }

    /* ========== BUTTON ========== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      border: none;
      outline: none;
      gap: 8px;
      transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.22s ease, color 0.22s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #22c55e, #16a34a);
      color: #ecfdf5;
      box-shadow: 0 14px 30px rgba(34, 197, 94, 0.22);
    }
    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
    }
    .btn-outline {
      background: transparent;
      border: 1px solid rgba(148, 163, 184, 0.6);
      color: #e5e7eb;
    }
    .btn-outline:hover {
      background: rgba(15, 23, 42, 0.7);
      transform: translateY(-1px);
    }

    /* ICON KECIL */
    .btn-icon {
      font-size: 16px;
      line-height: 1;
    }

    /* ========== HERO ========== */
    .hero {
    padding: 110px 0 90px;
    min-height: 100vh; 
    display: flex;
    align-items: center;           
    }


    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.7fr);
      gap: 40px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.4);
      background: radial-gradient(circle at left, rgba(34, 197, 94, 0.4), transparent 60%);
      font-size: 11px;
      color: #cbd5f5;
      margin-bottom: 18px;
    }
    .hero-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
    }

    .hero-title {
    font-size: clamp(38px, 4.8vw, 52px);  /* lebih besar */
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: #f9fafb;
    margin-bottom: 18px;
    }


    .hero-title span.gradient {
      background: linear-gradient(120deg, #38bdf8, #a855f7, #f97316);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 15px;
      line-height: 1.8;
      color: #9ca3af;
      max-width: 460px;
      margin-bottom: 22px;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 18px;
    }

    .hero-note {
      font-size: 12px;
      color: #9ca3af;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .hero-note-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #38bdf8;
    }

    .hero-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 28px;
    }
    .metric {
      font-size: 12px;
      color: #9ca3af;
    }
    .metric strong {
      display: block;
      font-size: 18px;
      color: #e5e7eb;
    }

    /* HERO PREVIEW */
    .hero-preview {
      position: relative;
      transform: scale(1.08);
      transform-origin: center right;
    }
    .preview-card {
      position: relative;
      background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95));
      border-radius: 26px;
      border: 1px solid rgba(148, 163, 184, 0.4);
      box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.9);
      padding: 16px;
      overflow: hidden;
    }

    .preview-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
      font-size: 11px;
      color: #9ca3af;
    }
    .preview-dots {
      display: flex;
      gap: 5px;
    }
    .preview-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #4b5563;
    }
    .preview-dot:nth-child(1) { background: #f97316; }
    .preview-dot:nth-child(2) { background: #facc15; }
    .preview-dot:nth-child(3) { background: #22c55e; }

    .preview-body {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(30, 64, 175, 0.7);
      background: linear-gradient(145deg, #020617, #020617);
    }

    .preview-hero {
      padding: 18px 18px 16px;
      background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.3), transparent 55%),
        radial-gradient(circle at bottom right, rgba(129, 140, 248, 0.25), transparent 60%);
    }
    .preview-pill {
      display: inline-flex;
      padding: 4px 10px;
      font-size: 10px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.4);
      color: #e5e7eb;
      margin-bottom: 10px;
    }
    .preview-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 6px;
      color: #f9fafb;
    }
    .preview-sub {
      font-size: 11px;
      color: #cbd5f5;
      max-width: 260px;
      margin-bottom: 12px;
    }
    .preview-btn-row {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .preview-btn {
      font-size: 10px;
      padding: 6px 10px;
      border-radius: 999px;
      border: none;
      cursor: default;
    }
    .preview-btn-primary {
      background: linear-gradient(135deg, #22c55e, #16a34a);
      color: #ecfdf5;
    }
    .preview-btn-ghost {
      background: rgba(15, 23, 42, 0.7);
      color: #e5e7eb;
      border: 1px solid rgba(148, 163, 184, 0.45);
    }

    .preview-lower {
      padding: 12px 14px 14px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 10px;
      font-size: 10px;
      background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 1));
      border-top: 1px solid rgba(15, 23, 42, 0.9);
    }
    .preview-packages {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .preview-package {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 8px;
      border-radius: 9px;
      background: rgba(15, 23, 42, 0.8);
      border: 1px solid rgba(31, 41, 55, 0.9);
    }
    .preview-package span.label {
      color: #e5e7eb;
    }
    .preview-package span.price {
      color: #a5b4fc;
      font-weight: 600;
    }
    .preview-tag {
      font-size: 10px;
      color: #9ca3af;
      margin-top: 4px;
    }

    .preview-metrics-right {
      border-radius: 10px;
      border: 1px solid rgba(51, 65, 85, 0.9);
      background: radial-gradient(circle at top, rgba(30, 64, 175, 0.5), rgba(15, 23, 42, 0.95));
      padding: 8px 9px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .preview-metrics-right-title {
      font-size: 10px;
      color: #e5e7eb;
      margin-bottom: 2px;
    }
    .preview-metric-row {
      display: flex;
      justify-content: space-between;
      font-size: 10px;
      color: #cbd5f5;
    }
    .preview-metric-row span.value {
      font-weight: 600;
      color: #22c55e;
    }

    .preview-floating-note {
      position: absolute;
      right: -12px;
      top: 50%;
      transform: translateY(-50%) rotate(-5deg);
      background: #0b1120;
      border-radius: 16px;
      padding: 10px 14px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
      font-size: 10px;
      max-width: 170px;
    }
    .preview-floating-note strong {
      color: #e5e7eb;
      display: block;
      margin-bottom: 3px;
    }

    /* ========== SECTION WRAPPER ========== */
    section {
      padding: 40px 0;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 16px;
      margin-bottom: 24px;
    }
    .section-title {
      font-size: 18px;
      color: #e5e7eb;
    }
    .section-subtitle {
      font-size: 13px;
      color: #9ca3af;
      max-width: 360px;
    }

    /* ========== SERVICES ========== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .service-card {
      border-radius: 18px;
      padding: 18px 16px;
      border: 1px solid rgba(51, 65, 85, 0.9);
      background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
      font-size: 13px;
    }
    .service-icon {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      font-size: 16px;
      background: rgba(15, 118, 110, 0.3);
    }
    .service-title {
      font-size: 14px;
      font-weight: 600;
      color: #e5e7eb;
      margin-bottom: 6px;
    }
    .service-desc {
      color: #9ca3af;
      line-height: 1.6;
      margin-bottom: 10px;
    }
    .service-tag {
      font-size: 11px;
      color: #71717a;
    }

    /* ========== PRICING ========== */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }
    .price-card {
      border-radius: 20px;
      padding: 18px 16px 16px;
      border: 1px solid rgba(55, 65, 81, 0.93);
      background: radial-gradient(circle at top, rgba(30, 64, 175, 0.45), rgba(15, 23, 42, 0.98));
      box-shadow: 0 22px 60px rgba(15, 23, 42, 0.9);
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 13px;
    }
    .price-badge {
      position: absolute;
      right: 14px;
      top: 14px;
      font-size: 10px;
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(22, 163, 74, 0.16);
      border: 1px solid rgba(22, 163, 74, 0.4);
      color: #bbf7d0;
    }
    .price-name {
      font-size: 15px;
      font-weight: 600;
      color: #f9fafb;
    }
    .price-desc {
      font-size: 12px;
      color: #9ca3af;
    }
    .price-value {
      margin-top: 4px;
      font-size: 20px;
      font-weight: 700;
      color: #e5e7eb;
    }
    .price-value span {
      font-size: 11px;
      font-weight: 400;
      color: #9ca3af;
      margin-left: 4px;
    }
    .price-list {
      margin: 6px 0 12px;
      padding-left: 18px;
      color: #9ca3af;
      font-size: 12px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .price-list li::marker {
      color: #22c55e;
    }
    .price-footer {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 11px;
      color: #71717a;
    }

    /* ========== PORTFOLIO ========== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid rgba(55, 65, 81, 0.93);
  background: radial-gradient(circle at top, rgba(30, 64, 175, 0.45), rgba(15, 23, 42, 0.98));
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.9);
  overflow: hidden;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.95);
  border-color: rgba(96, 165, 250, 0.7);
}

.project-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.25),
    rgba(129, 140, 248, 0.35)
  );
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-body {
  padding: 12px 14px 14px;
}

.project-name {
  font-size: 13px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 4px;
}

.project-type {
  font-size: 11px;
  color: #a5b4fc;
  margin-bottom: 6px;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #9ca3af;
}

.project-link {
  font-size: 11px;
  color: #38bdf8;
}


    /* ========== CTA SECTION ========== */
    .cta-section {
      padding: 40px 0 56px;
    }
    .cta-box {
      border-radius: 22px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.35), rgba(15, 23, 42, 1));
      padding: 24px 20px;
      display: grid;
      grid-template-columns: 2.2fr 2fr;
      gap: 22px;
      align-items: center;
      box-shadow: 0 28px 80px rgba(15, 23, 42, 0.95);
    }
    .cta-title {
      font-size: 20px;
      font-weight: 600;
      color: #f9fafb;
      margin-bottom: 8px;
    }
    .cta-text {
      font-size: 13px;
      color: #cbd5f5;
      margin-bottom: 16px;
    }
    .cta-note {
      font-size: 11px;
      color: #9ca3af;
      margin-top: 8px;
    }
    .cta-aside {
      font-size: 12px;
      color: #cbd5f5;
      padding-left: 14px;
      border-left: 1px dashed rgba(148, 163, 184, 0.6);
    }
    .cta-aside strong {
      color: #e5e7eb;
    }

    /* ========== FOOTER ========== */
    footer {
      padding: 18px 16px 26px;
      border-top: 1px solid rgba(30, 64, 175, 0.6);
      font-size: 11px;
      color: #6b7280;
    }
    .footer-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 960px) {
      .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        gap: 48px;
        align-items: center;
      }
      .preview-floating-note {
        display: none;
      }
      .services-grid,
      .pricing-grid,
      .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .cta-box {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 720px) {
      .nav-links {
        display: none;
      }
      .nav-cta {
        display: inline-flex;
      }
      .hero {
        padding-top: 40px;
      }
      .services-grid,
      .pricing-grid,
      .portfolio-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .section-header {
        flex-direction: column;
        align-items: flex-start;
      }
      .hero-metrics {
        gap: 12px;
      }
    }


    .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo-img {
  height: 36px;
  width: auto;
  border-radius: 10px; /* opsional */
  margin-top: 11px;
}

.logo-text {
  letter-spacing: 0.3px;
}


/* =========================
   MOBILE COMPATIBILITY PATCH
   Tempel paling bawah style.css
   ========================= */

/* Anti overflow horizontal */
html, body { width: 100%; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
* { box-sizing: border-box; }

/* Container aman di mobile */
.container { width: min(1100px, calc(100% - 32px)); margin-inline: auto; }

/* Grid jadi 1 kolom di mobile */
.hero-grid,
.services-grid,
.pricing-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* CTA button enak di mobile */
.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-cta-row .btn,
.hero-cta-row a.btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Metrics tidak sempit */
.hero-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* Preview area aman */
.preview-btn-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.preview-btn { width: 100%; }

/* ===== Mobile Navbar ===== */
.nav { position: relative; gap: 12px; }
.nav-toggle {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  width: 18px; height: 2px;
  background: #111;
  border-radius: 999px;
  display: block;
}

/* Default: mobile menu disembunyikan */
@media (max-width: 899px) {
  .nav-cta { display: none; } /* CTA utama tetap di hero */

  .nav-links {
    position: absolute;
    left: 0; right: 0;
    top: 60px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 99;
  }
  .nav-links.is-open { display: flex; }

  .nav-links a {
    padding: 12px 12px;
    border-radius: 12px;
  }
}

/* Desktop: hamburger hilang, grid naik */
@media (min-width: 900px) {
  .nav-toggle { display: none; }

  .hero-grid { grid-template-columns: 1.1fr .9fr; align-items: center; }
  .services-grid, .pricing-grid, .portfolio-grid { grid-template-columns: repeat(3, 1fr); }

  .hero-cta-row { flex-direction: row; }
  .hero-cta-row .btn, .hero-cta-row a.btn { width: auto; }

  .hero-metrics { grid-template-columns: repeat(3, 1fr); }

  .preview-btn-row { flex-direction: row; }
  .preview-btn { width: auto; }
}
