/* ─── RESET ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      color: #1e293b;
      background: #fff;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; }

    /* ─── VARIABLES ─── */
    :root {
      --blue:       #2563EB;
      --blue-light: #EFF6FF;
      --blue-mid:   #BFDBFE;
      --green:      #16a34a;
      --green-light:#DCFCE7;
      --purple:     #7c3aed;
      --purple-light:#EDE9FE;
      --orange:     #ea580c;
      --orange-light:#FFF7ED;
      --red:        #dc2626;
      --red-light:  #FEF2F2;
      --teal:       #0d9488;
      --teal-light: #F0FDFA;
      --gray-50:    #f8fafc;
      --gray-100:   #f1f5f9;
      --gray-200:   #e2e8f0;
      --gray-400:   #94a3b8;
      --gray-500:   #64748b;
      --gray-700:   #334155;
      --gray-900:   #0f172a;
      --radius:     10px;
      --radius-lg:  16px;
      --shadow:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
      --shadow-md:  0 4px 16px rgba(0,0,0,.08);
      --shadow-lg:  0 8px 32px rgba(0,0,0,.10);
      --max-w:      1160px;
    }

    /* ─── UTILITIES ─── */
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
    .section { padding: 80px 0; }
    .bg-gray { background: var(--gray-50); }
    .text-blue { color: var(--blue); }

    /* Reveal animations */
    .reveal, .reveal-left, .reveal-right {
      opacity: 0;
      transition: opacity .65s ease, transform .65s ease;
    }
    .reveal       { transform: translateY(28px); }
    .reveal-left  { transform: translateX(-28px); }
    .reveal-right { transform: translateX(28px); }
    .reveal.in, .reveal-left.in, .reveal-right.in {
      opacity: 1; transform: translate(0);
    }

    /* ─── BUTTONS ─── */
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--blue); color: #fff;
      font-weight: 700; font-size: 14px;
      padding: 12px 22px; border-radius: 8px;
      border: 2px solid var(--blue);
      transition: background .2s, transform .15s, box-shadow .2s;
      cursor: pointer;
    }
    .btn-primary:hover { background: #1d4ed8; border-color: #1d4ed8; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,.35); }
    .btn-primary.large { padding: 15px 28px; font-size: 15px; }
    .btn-primary.full  { width: 100%; justify-content: center; }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 6px;
      background: transparent; color: var(--gray-700);
      font-weight: 600; font-size: 14px;
      padding: 12px 20px; border-radius: 8px;
      border: 2px solid var(--gray-200);
      transition: border-color .2s, color .2s;
    }
    .btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

    .btn-outline-blue {
      display: inline-flex; align-items: center; justify-content: center;
      background: transparent; color: var(--blue);
      font-weight: 700; font-size: 14px;
      padding: 11px 20px; border-radius: 8px;
      border: 2px solid var(--blue);
      transition: background .2s, color .2s;
    }
    .btn-outline-blue:hover { background: var(--blue); color: #fff; }
    .btn-outline-blue.full { width: 100%; }

    .btn-white-solid {
      display: inline-flex; align-items: center; gap: 8px;
      background: #fff; color: var(--blue);
      font-weight: 700; font-size: 14px;
      padding: 13px 24px; border-radius: 8px;
      border: 2px solid #fff;
      transition: transform .15s, box-shadow .2s;
    }
    .btn-white-solid:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.15); }

    .btn-cta-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: #fff;
      font-weight: 700; font-size: 14px;
      padding: 13px 24px; border-radius: 8px;
      border: 2px solid rgba(255,255,255,.5);
      transition: border-color .2s, background .2s;
    }
    .btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }

    /* ─── SECTION HEAD ─── */
    .sec-head { margin-bottom: 48px; }
    .sec-head.center { text-align: center; }
    .sec-head.center .sec-label { justify-content: center; }
    .sec-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 12px;
    }
    .sec-label::before {
      content: ''; display: block;
      width: 20px; height: 2px;
      background: var(--blue); border-radius: 2px;
    }
    .sec-head.center .sec-label::before { display: none; }
    .sec-head h2 {
      font-size: clamp(1.7rem, 3.5vw, 2.4rem);
      font-weight: 800; line-height: 1.2;
      letter-spacing: -.02em; color: var(--gray-900);
      margin-bottom: 14px;
    }
    .sec-head p {
      font-size: 15px; color: var(--gray-500);
      line-height: 1.75; max-width: 520px;
    }
    .sec-head.center p { margin: 0 auto; }

    /* ─── TOPBAR ─── */
    .topbar {
      background: var(--gray-900);
      color: rgba(255,255,255,.7);
      font-size: 12.5px;
      padding: 8px 0;
    }
    .topbar .container {
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px;
    }
    .topbar-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
    .topbar a { color: rgba(255,255,255,.8); transition: color .2s; }
    .topbar a:hover { color: #fff; }
    .topbar .sep { opacity: .3; }
    .topbar-item { display: inline-flex; align-items: center; gap: 5px; }
    .topbar-item svg { opacity: .7; flex-shrink: 0; }

    /* ─── NAVBAR ─── */
    .navbar {
      position: sticky; top: 0; z-index: 200;
      background: #fff;
      border-bottom: 1px solid var(--gray-200);
      padding: 0;
      transition: box-shadow .2s;
    }
    .navbar.scrolled { box-shadow: var(--shadow-md); }
    .navbar-inner {
      display: flex; align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    /* Logo */
    .logo { display: flex; align-items: center; gap: 10px; }
    .logo-box {
  width: auto;
  height: 50px;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: left;
}

.logo-box img {
  height: 50px;
  width: auto;
  display: block;
}

.logo-box.small {
  height: 34px;
}

.logo-box.small img {
  height: 34px;
  width: auto;
}
    .logo-text { display: flex; flex-direction: column; line-height: 1; }
    .logo-name { font-size: 15px; font-weight: 800; color: var(--gray-900); }
    .logo-name em { font-style: normal; color: var(--blue); }
    .logo-name.dark { color: var(--gray-900); }
    .logo-sub { font-size: 10.5px; color: var(--gray-400); margin-top: 2px; font-weight: 500; }
    .logo-sub.dark { color: var(--gray-400); }

    /* Nav links */
    .nav-menu {
      display: flex; align-items: center; gap: 4px;
    }
    .nav-menu a {
      font-size: 13.5px; font-weight: 600; color: var(--gray-500);
      padding: 6px 12px; border-radius: 6px;
      transition: color .2s, background .2s;
    }
    .nav-menu a:hover { color: var(--blue); background: var(--blue-light); }
    .nav-wa-btn {
      background: #25D366 !important; color: #fff !important;
      padding: 8px 16px !important; border-radius: 8px !important;
      font-weight: 700 !important; font-size: 13px !important;
      margin-left: 8px;
      transition: background .2s !important;
    }
    .nav-wa-btn:hover { background: #1ebe5a !important; }

    /* Hamburger */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 4px;
    }
    .hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--gray-700); border-radius: 2px;
      transition: .3s;
    }

    /* Mobile nav */
    .nav-menu.open {
      display: flex; flex-direction: column; gap: 4px;
      position: fixed; top: 64px; left: 0; right: 0;
      background: #fff; padding: 16px;
      border-bottom: 1px solid var(--gray-200);
      box-shadow: var(--shadow-lg);
      z-index: 199;
    }
    .nav-menu.open a { padding: 10px 14px; }
    .nav-menu.open .nav-wa-btn { margin-left: 0; }

    /* ─── HERO ─── */
    .hero { background: #fff; padding: 0; overflow: hidden; }
    .hero-bg {
      position: absolute; top: 64px; left: 0; right: 0;
      height: 600px;
      background: linear-gradient(160deg, #f0f7ff 0%, #e8f4ff 40%, #fff 100%);
      z-index: 0;
    }
    .hero-layout {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 48px; align-items: center;
      padding-top: 72px; padding-bottom: 0;
    }

    /* Hero left */
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: #EFF6FF; border: 1px solid #BFDBFE;
      color: #1d4ed8; border-radius: 100px;
      font-size: 12px; font-weight: 700;
      padding: 6px 14px; margin-bottom: 20px;
    }
    .live-dot {
      width: 7px; height: 7px;
      background: #22c55e; border-radius: 50%;
      animation: livePulse 2s infinite;
    }
    @keyframes livePulse { 0%,100%{box-shadow:0 0 0 0 rgba(34,197,94,.4)} 50%{box-shadow:0 0 0 5px rgba(34,197,94,0)} }

    .hero-left h1 {
      font-size: clamp(1.9rem, 4vw, 2.9rem);
      font-weight: 800; line-height: 1.18;
      letter-spacing: -.025em; color: var(--gray-900);
      margin-bottom: 18px;
    }
    .hero-left p {
      font-size: 15.5px; color: var(--gray-500);
      line-height: 1.75; margin-bottom: 28px;
      max-width: 460px;
    }
    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

    .hero-checks {
      display: flex; flex-direction: column; gap: 8px;
    }
    .hero-checks span {
      display: flex; align-items: center; gap: 8px;
      font-size: 13.5px; color: var(--gray-600); font-weight: 500;
    }
    .check-icon { width: 18px; height: 18px; flex-shrink: 0; }

    /* Hero right — browser mockup */
    .hero-right { position: relative; padding-bottom: 40px; }
    .browser-mockup {
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: 14px;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      animation: heroFloat 5s ease-in-out infinite;
    }
    @keyframes heroFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

    .bm-topbar {
      background: var(--gray-100);
      padding: 10px 14px;
      display: flex; align-items: center; gap: 10px;
      border-bottom: 1px solid var(--gray-200);
    }
    .bm-dots { display: flex; gap: 5px; }
    .bm-dots span {
      width: 10px; height: 10px; border-radius: 50%;
    }
    .bm-dots span:nth-child(1) { background: #ff5f57; }
    .bm-dots span:nth-child(2) { background: #ffbd2e; }
    .bm-dots span:nth-child(3) { background: #28ca41; }
    .bm-url {
      flex: 1; background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: 6px; padding: 4px 10px;
      font-size: 11px; color: var(--gray-500);
    }

    .bm-body { padding: 16px; }
    .bm-nav-row {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 14px; padding-bottom: 10px;
      border-bottom: 1px solid var(--gray-100);
    }
    .bm-logo-bar { width: 72px; height: 10px; background: var(--blue); border-radius: 4px; opacity: .7; }
    .bm-nav-links { display: flex; align-items: center; gap: 8px; }
    .bm-link { width: 28px; height: 7px; background: var(--gray-200); border-radius: 3px; }
    .bm-btn-bar { width: 42px; height: 20px; background: var(--blue); border-radius: 5px; opacity: .8; }

    .bm-hero-section { margin-bottom: 14px; }
    .bm-h1 { height: 14px; background: var(--gray-900); border-radius: 4px; }
    .bm-h1.w75 { width: 75%; }
    .bm-p { height: 7px; background: var(--gray-200); border-radius: 3px; margin-top: 6px; }
    .bm-p.w85 { width: 85%; }
    .bm-p.w65 { width: 65%; }
    .bm-cta-row { display: flex; gap: 8px; margin-top: 12px; }
    .bm-cta { height: 24px; border-radius: 6px; }
    .bm-cta.blue { width: 90px; background: var(--blue); }
    .bm-cta.outline { width: 70px; background: transparent; border: 1.5px solid var(--gray-200); }
    .bm-card-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
    .bm-card { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 8px; padding: 10px; }
    .bm-card-ic { width: 24px; height: 24px; border-radius: 6px; margin-bottom: 7px; }
    .bm-card-ic.blue-bg   { background: var(--blue-light); }
    .bm-card-ic.yellow-bg { background: #FEF9C3; }
    .bm-card-ic.green-bg  { background: var(--green-light); }
    .bm-card-l { height: 6px; background: var(--gray-200); border-radius: 3px; margin-top: 5px; }
    .bm-card-l.w80 { width: 80%; }
    .bm-card-l.w55 { width: 55%; }

    /* Floating badges */
    .float-badge {
      position: absolute;
      background: #fff; border: 1px solid var(--gray-200);
      border-radius: 12px; padding: 10px 14px;
      box-shadow: var(--shadow-md);
      display: flex; align-items: center; gap: 10px;
      font-size: 12px;
    }
    .fb-top    { top: 16px; right: -20px; animation: badgeFloat 4s ease-in-out infinite; }
    .fb-bottom { bottom: 60px; right: -16px; animation: badgeFloat 4s 1s ease-in-out infinite; }
    .fb-left   { bottom: 20px; left: -10px; animation: badgeFloat 4s .5s ease-in-out infinite; }
    @keyframes badgeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
    .fb-icon { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; }
    .fb-title { font-weight: 700; font-size: 12px; color: var(--gray-900); }
    .fb-sub   { font-size: 11px; color: var(--gray-400); }
    .fb-stars { font-size: 13px; color: #f59e0b; letter-spacing: 1px; }
    .fb-rating-text { font-weight: 700; font-size: 12px; color: var(--gray-900); }

    /* Stats bar */
    .stats-bar {
      background: var(--blue); color: #fff;
      padding: 24px 0; margin-top: 48px;
    }
    .stats-inner {
      display: flex; align-items: center;
      justify-content: center; gap: 0; flex-wrap: wrap;
    }
    .stat-item { text-align: center; padding: 0 40px; }
    .stat-num  { font-size: 1.8rem; font-weight: 800; letter-spacing: -.02em; }
    .stat-lbl  { font-size: 12px; opacity: .8; margin-top: 2px; font-weight: 500; }
    .stat-sep  { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

    /* ─── MARQUEE ─── */
    .marquee-wrap {
      background: var(--gray-900);
      padding: 11px 0; overflow: hidden;
      position: relative;
    }
    .marquee-wrap::before, .marquee-wrap::after {
      content: ''; position: absolute;
      top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
    }
    .marquee-wrap::before { left: 0;  background: linear-gradient(to right, var(--gray-900), transparent); }
    .marquee-wrap::after  { right: 0; background: linear-gradient(to left,  var(--gray-900), transparent); }
    .marquee-track {
      display: flex; white-space: nowrap;
      animation: marqueeScroll 28s linear infinite;
    }
    .marquee-track span {
      font-size: 11.5px; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
      color: rgba(255,255,255,.55); padding: 0 16px; flex-shrink: 0;
    }
    .marquee-track .dot { color: var(--blue); opacity: 1; }
    @keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

    /* ─── SERVICES ─── */
    .svc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .svc-card {
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: 28px 24px 22px;
      transition: box-shadow .2s, transform .2s, border-color .2s;
    }
    .svc-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: var(--blue-mid);
    }
    .svc-icon {
      width: 52px; height: 52px;
      border-radius: 12px;
      font-size: 22px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .svc-icon.blue   { background: var(--blue-light); }
    .svc-icon.green  { background: var(--green-light); }
    .svc-icon.purple { background: var(--purple-light); }
    .svc-icon.orange { background: var(--orange-light); }
    .svc-icon.red    { background: var(--red-light); }
    .svc-icon.teal   { background: var(--teal-light); }
    .svc-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
    .svc-card p  { font-size: 13.5px; color: var(--gray-500); line-height: 1.7; margin-bottom: 18px; }
    .svc-footer  { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--gray-100); }
    .svc-price   { font-size: 13px; font-weight: 700; color: var(--blue); }
    .svc-link    { font-size: 13px; font-weight: 700; color: var(--blue); transition: gap .2s; }
    .svc-link:hover { text-decoration: underline; }

    /* ─── WHY US ─── */
    .why-layout {
      display: grid; grid-template-columns: 1fr 1.2fr;
      gap: 64px; align-items: center;
    }
    .why-left h2 {
      font-size: clamp(1.7rem, 3vw, 2.3rem);
      font-weight: 800; color: var(--gray-900);
      letter-spacing: -.02em; line-height: 1.2;
      margin-bottom: 14px;
    }
    .why-left p { font-size: 15px; color: var(--gray-500); line-height: 1.75; }
    .why-right { display: flex; flex-direction: column; gap: 20px; }
    .why-item {
      display: flex; gap: 16px; align-items: flex-start;
      background: #fff; border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg); padding: 20px;
      transition: box-shadow .2s, border-color .2s;
    }
    .why-item:hover { box-shadow: var(--shadow-md); border-color: var(--blue-mid); }
    .why-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: var(--blue-light); font-size: 20px;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .why-item h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
    .why-item p  { font-size: 13.5px; color: var(--gray-500); line-height: 1.65; }

    /* ─── PRICING ─── */
    .pricing-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 20px; align-items: start;
    }
    .price-card {
      background: #fff; border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg); padding: 28px 24px;
      position: relative; transition: box-shadow .2s, transform .2s;
    }
    .price-card:not(.featured):hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .price-card.featured {
      background: var(--blue); color: #fff;
      border-color: var(--blue);
      box-shadow: 0 8px 40px rgba(37,99,235,.3);
      transform: scale(1.03);
    }
    .pc-badge {
      position: absolute; top: -13px; left: 50%;
      transform: translateX(-50%);
      background: #f59e0b; color: #fff;
      font-size: 11.5px; font-weight: 800;
      padding: 4px 14px; border-radius: 100px;
      white-space: nowrap; letter-spacing: .02em;
    }
    .pc-head { margin-bottom: 20px; }
    .pc-plan { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 10px; }
    .pc-plan.light { color: rgba(255,255,255,.7); }
    .pc-price { font-size: 2.4rem; font-weight: 800; letter-spacing: -.03em; color: var(--gray-900); line-height: 1; }
    .pc-price sup { font-size: 1rem; font-weight: 700; vertical-align: super; }
    .pc-price.light { color: #fff; }
    .pc-note { font-size: 13px; color: var(--gray-400); margin-top: 6px; line-height: 1.5; }
    .pc-note.light { color: rgba(255,255,255,.65); }
    .pc-list {
      border-top: 1px solid var(--gray-100); padding-top: 20px;
      display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px;
    }
    .price-card.featured .pc-list { border-top-color: rgba(255,255,255,.2); }
    .pc-list li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 13.5px; color: var(--gray-700); line-height: 1.4;
    }
    .pc-list.light li { color: rgba(255,255,255,.88); }
    .pc-list li::before {
      content: '✓'; flex-shrink: 0;
      width: 18px; height: 18px; background: var(--green-light);
      color: var(--green); border-radius: 50%;
      font-size: 10px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      margin-top: 1px;
    }
    .price-card.featured .pc-list li::before { background: rgba(255,255,255,.2); color: #fff; }

    .btn-white {
      display: flex; align-items: center; justify-content: center;
      width: 100%; background: #fff; color: var(--blue);
      font-weight: 700; font-size: 14px;
      padding: 12px; border-radius: 8px; border: 2px solid #fff;
      transition: background .2s, box-shadow .2s;
    }
    .btn-white:hover { background: #e0f2fe; box-shadow: 0 4px 16px rgba(0,0,0,.12); }

    .pricing-note {
      text-align: center; margin-top: 28px;
      font-size: 14px; color: var(--gray-500);
    }
    .pricing-note a { color: var(--blue); font-weight: 600; }

    /* ─── PORTFOLIO ─── */
    .port-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .port-card {
      background: #fff; border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg); overflow: hidden;
      transition: box-shadow .2s, transform .2s;
    }
    .port-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .port-thumb {
      height: 170px; display: flex; align-items: center;
      justify-content: center; font-size: 3.2rem;
      position: relative;
    }
    .port-thumb::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(rgba(255,255,255,0),rgba(0,0,0,.05));
    }
    .port-thumb.c1 { background: linear-gradient(135deg, #fef3c7, #fde68a); }
    .port-thumb.c2 { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
    .port-thumb.c3 { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
    .port-thumb.c4 { background: linear-gradient(135deg, #fee2e2, #fecaca); }
    .port-thumb.c5 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
    .port-thumb.c6 { background: linear-gradient(135deg, #f0fdf4, #bbf7d0); }
    .port-body { padding: 18px; }
    .port-tag {
      display: inline-block; font-size: 11px; font-weight: 700;
      letter-spacing: .06em; text-transform: uppercase;
      padding: 3px 10px; border-radius: 100px; margin-bottom: 8px;
    }
    .port-tag.blue   { background: var(--blue-light); color: var(--blue); }
    .port-tag.green  { background: var(--green-light); color: var(--green); }
    .port-tag.purple { background: var(--purple-light); color: var(--purple); }
    .port-tag.orange { background: var(--orange-light); color: var(--orange); }
    .port-body h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
    .port-body p  { font-size: 13px; color: var(--gray-500); line-height: 1.55; }

    /* ─── TESTIMONI ─── */
    .testi-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .testi-card {
      background: #fff; border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg); padding: 24px;
      transition: box-shadow .2s;
    }
    .testi-card:hover { box-shadow: var(--shadow-lg); }
    .testi-stars { font-size: 15px; color: #f59e0b; letter-spacing: 2px; margin-bottom: 14px; }
    .testi-card p {
      font-size: 14px; color: var(--gray-600);
      line-height: 1.75; margin-bottom: 20px;
      font-style: italic;
    }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-av {
      width: 42px; height: 42px; border-radius: 50%;
      font-weight: 700; font-size: 14px;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .testi-av.blue   { background: var(--blue-light); color: var(--blue); }
    .testi-av.purple { background: var(--purple-light); color: var(--purple); }
    .testi-av.green  { background: var(--green-light); color: var(--green); }
    .testi-name { font-size: 14px; font-weight: 700; color: var(--gray-900); }
    .testi-role { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

    /* ─── PROSES ─── */
    .proc-grid {
      display: flex; align-items: flex-start;
      gap: 0; justify-content: center; flex-wrap: wrap;
    }
    .proc-card {
      flex: 1; min-width: 160px; max-width: 230px;
      background: #fff; border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg); padding: 28px 20px;
      text-align: center;
      transition: box-shadow .2s, transform .2s;
    }
    .proc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .proc-num {
      width: 48px; height: 48px;
      background: var(--gray-100); color: var(--gray-500);
      border-radius: 50%; font-weight: 800; font-size: 16px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
    }
    .proc-num.active { background: var(--blue); color: #fff; }
    .proc-card h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
    .proc-card p  { font-size: 13px; color: var(--gray-500); line-height: 1.65; }
    .proc-arrow {
      align-self: center; font-size: 20px;
      color: var(--gray-300); padding: 0 4px; margin-top: -32px;
    }

    /* ─── FAQ ─── */
    .faq-layout {
      display: grid; grid-template-columns: 1fr 1.4fr;
      gap: 64px; align-items: start;
    }
    .faq-left h2 {
      font-size: clamp(1.7rem, 3vw, 2.2rem);
      font-weight: 800; color: var(--gray-900);
      letter-spacing: -.02em; line-height: 1.2; margin-bottom: 14px;
    }
    .faq-left p { font-size: 14.5px; color: var(--gray-500); line-height: 1.75; }

    .faq-list { display: flex; flex-direction: column; }
    .faq-item { border-bottom: 1px solid var(--gray-100); }
    .faq-item:first-child { border-top: 1px solid var(--gray-100); }
    .faq-q {
      width: 100%; background: none; border: none;
      display: flex; justify-content: space-between; align-items: center;
      gap: 16px; padding: 18px 0;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14.5px; font-weight: 600; color: var(--gray-800);
      cursor: pointer; text-align: left;
      transition: color .2s;
    }
    .faq-q:hover { color: var(--blue); }
    .faq-item.open .faq-q { color: var(--blue); }
    .faq-icon {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--gray-100); color: var(--gray-500);
      font-size: 16px; font-weight: 400;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      transition: background .2s, color .2s, transform .3s;
    }
    .faq-item.open .faq-icon {
      background: var(--blue-light); color: var(--blue);
      transform: rotate(45deg);
    }
    .faq-a { display: none; padding-bottom: 16px; }
    .faq-item.open .faq-a { display: block; }
    .faq-a p { font-size: 14px; color: var(--gray-500); line-height: 1.8; }

    /* ─── CTA BANNER ─── */
    .cta-banner {
      background: linear-gradient(135deg, #1d4ed8 0%, #2563EB 100%);
      padding: 64px 0;
    }
    .cta-inner {
      display: flex; align-items: center;
      justify-content: space-between; gap: 40px; flex-wrap: wrap;
    }
    .cta-text { flex: 1; min-width: 280px; }
    .cta-text h2 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 800; color: #fff;
      letter-spacing: -.02em; line-height: 1.25; margin-bottom: 10px;
    }
    .cta-text p { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.65; }
    .cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

    /* ─── CONTACT ─── */
    .contact-layout {
      display: grid; grid-template-columns: 1fr 1.3fr;
      gap: 64px; align-items: start;
    }
    .contact-info h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800; color: var(--gray-900);
      letter-spacing: -.02em; line-height: 1.25; margin-bottom: 12px;
    }
    .contact-info > p { font-size: 14.5px; color: var(--gray-500); line-height: 1.75; margin-bottom: 28px; }
    .contact-rows { display: flex; flex-direction: column; gap: 12px; }
    .contact-row {
      display: flex; gap: 14px; align-items: flex-start;
      background: var(--gray-50); border: 1px solid var(--gray-200);
      border-radius: var(--radius); padding: 14px 16px;
    }
    .contact-ic { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
    .contact-lbl { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 3px; }
    .contact-row > div > div:last-child { font-size: 14px; color: var(--gray-700); font-weight: 500; line-height: 1.5; }
    .contact-row a { color: var(--blue); font-weight: 600; }

    /* Form */
    .contact-form {
      background: #fff; border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg); padding: 32px;
      box-shadow: var(--shadow);
    }
    .contact-form h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 22px; }
    .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { margin-bottom: 14px; }
    .form-group label { display: block; font-size: 12.5px; font-weight: 700; color: var(--gray-600); margin-bottom: 6px; letter-spacing: .02em; }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; background: var(--gray-50);
      border: 1.5px solid var(--gray-200);
      border-radius: 8px; padding: 10px 14px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px; color: var(--gray-900);
      outline: none; transition: border-color .2s, background .2s;
      -webkit-appearance: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--gray-400); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--blue); background: #fff; }
    .form-group textarea { resize: vertical; }
    .form-group select option { background: #fff; color: var(--gray-900); }

    /* ─── FOOTER ─── */
    .footer { background: var(--gray-900); color: rgba(255,255,255,.65); }
    .footer-top {
      display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px; padding: 56px 0 40px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-brand p { font-size: 13.5px; line-height: 1.75; margin-top: 14px; margin-bottom: 20px; }
    .footer-socials { display: flex; gap: 10px; }
    .footer-socials a {
      width: 36px; height: 36px; border-radius: 8px;
      background: rgba(255,255,255,.07); font-size: 16px;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .footer-socials a:hover { background: rgba(255,255,255,.15); }
    .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 0; }

    .footer-col h5 {
      font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: rgba(255,255,255,.4);
      margin-bottom: 18px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: 13.5px; color: rgba(255,255,255,.55);
      transition: color .2s;
    }
    .footer-col ul li a:hover { color: #fff; }

    .footer-bottom {
      display: flex; justify-content: space-between;
      align-items: center; padding: 20px 0;
      font-size: 12.5px; flex-wrap: wrap; gap: 10px;
      color: rgba(255,255,255,.3);
    }
    .footer-legal { display: flex; align-items: center; gap: 10px; }
    .footer-legal a { color: rgba(255,255,255,.3); transition: color .2s; }
    .footer-legal a:hover { color: rgba(255,255,255,.7); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .hero-layout { grid-template-columns: 1fr; padding-top: 56px; }
      .hero-right { display: none; }
      .why-layout { grid-template-columns: 1fr; gap: 40px; }
      .svc-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-grid { grid-template-columns: 1fr; }
      .price-card.featured { transform: none; }
      .testi-grid { grid-template-columns: 1fr 1fr; }
      .faq-layout { grid-template-columns: 1fr; gap: 40px; }
      .contact-layout { grid-template-columns: 1fr; gap: 40px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
      .cta-inner { flex-direction: column; text-align: center; }
      .cta-btns { justify-content: center; }
    }
    @media (max-width: 768px) {
      .topbar-right { display: none; }
      .nav-menu { display: none; }
      .hamburger { display: flex; }
      .section { padding: 60px 0; }
      .svc-grid { grid-template-columns: 1fr; }
      .port-grid { grid-template-columns: 1fr 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .proc-grid { flex-direction: column; align-items: center; }
      .proc-arrow { display: none; }
      .stats-inner { gap: 0; }
      .stat-item { padding: 0 20px; }
      .form-row-2 { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
    @media (max-width: 480px) {
      .port-grid { grid-template-columns: 1fr; }
      .hero-btns { flex-direction: column; }
      .hero-btns .btn-primary, .hero-btns .btn-ghost { width: 100%; justify-content: center; }
      .stat-num { font-size: 1.4rem; }
    }
    

    /* ─── PAGE-SPECIFIC STYLES ─── */
    .page-hero {
      background: var(--gray-50);
      border-bottom: 1px solid var(--gray-200);
      padding: 56px 0 48px;
      margin-top: 0;
    }
    .page-hero .breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; color: var(--gray-400);
      margin-bottom: 16px;
    }
    .page-hero .breadcrumb a { color: var(--blue); text-decoration: none; }
    .page-hero .breadcrumb a:hover { text-decoration: underline; }
    .page-hero .breadcrumb svg { flex-shrink: 0; }
    .page-hero h1 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800; letter-spacing: -.025em;
      color: var(--gray-900); margin-bottom: 12px;
    }
    .page-hero p {
      font-size: 15px; color: var(--gray-500); line-height: 1.7;
    }
    .page-hero .meta {
      display: flex; align-items: center; gap: 20px;
      margin-top: 20px; flex-wrap: wrap;
    }
    .meta-item {
      display: flex; align-items: center; gap: 6px;
      font-size: 13px; color: var(--gray-400);
    }

    /* Content layout */
    .legal-layout {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 48px;
      align-items: start;
      padding: 56px 0 80px;
    }

    /* Sidebar TOC */
    .toc {
      position: sticky; top: 84px;
      background: var(--gray-50);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: 20px;
    }
    .toc-title {
      font-size: 11px; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      color: var(--gray-400); margin-bottom: 14px;
    }
    .toc ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
    .toc ul li a {
      display: block;
      font-size: 13px; font-weight: 500;
      color: var(--gray-500); padding: 6px 10px;
      border-radius: 6px;
      text-decoration: none;
      transition: background .15s, color .15s;
      line-height: 1.4;
    }
    .toc ul li a:hover { background: var(--gray-200); color: var(--gray-900); }
    .toc ul li a.active { background: var(--blue-light); color: var(--blue); font-weight: 700; }

    /* Article content */
    .legal-content { min-width: 0; }
    .legal-section {
      padding-bottom: 40px;
      margin-bottom: 40px;
      border-bottom: 1px solid var(--gray-100);
    }
    .legal-section:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

    .legal-section h2 {
      font-size: 1.25rem; font-weight: 800;
      color: var(--gray-900); letter-spacing: -.01em;
      margin-bottom: 16px;
      display: flex; align-items: center; gap: 10px;
    }
    .legal-section h2 .sec-num {
      width: 28px; height: 28px; border-radius: 6px;
      background: var(--blue-light); color: var(--blue);
      font-size: 12px; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .legal-section p {
      font-size: 14.5px; color: var(--gray-600);
      line-height: 1.85; margin-bottom: 14px;
    }
    .legal-section p:last-child { margin-bottom: 0; }
    .legal-section ul {
      list-style: none;
      display: flex; flex-direction: column; gap: 8px;
      margin: 12px 0;
    }
    .legal-section ul li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 14.5px; color: var(--gray-600); line-height: 1.7;
    }
    .legal-section ul li::before {
      content: '';
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--blue); flex-shrink: 0;
      margin-top: 8px;
    }
    .legal-section a { color: var(--blue); font-weight: 600; }
    .legal-section a:hover { text-decoration: underline; }

    .info-box {
      background: var(--blue-light);
      border: 1px solid var(--blue-mid);
      border-radius: var(--radius);
      padding: 16px 18px;
      margin: 16px 0;
      display: flex; gap: 12px; align-items: flex-start;
    }
    .info-box svg { flex-shrink: 0; margin-top: 1px; }
    .info-box p { font-size: 13.5px; color: #1d4ed8; margin: 0; line-height: 1.65; }
    .info-box strong { font-weight: 700; }

    /* Responsive */
    @media (max-width: 768px) {
      .legal-layout { grid-template-columns: 1fr; gap: 32px; }
      .toc { position: static; }
      .page-hero { padding: 40px 0 32px; }
    }