/* ============================================================
   components.css
   -----------------------------------------------------------
   Rumahnya semua "widget" yang dipakai berulang: tombol, badge,
   card, nav, pricing card, dst. Kalau nambah komponen baru,
   taro di sini, JANGAN nyelip-nyelip di file section CSS lain
   (oh iya ngomong-ngomong kita gak punya CSS per-section,
   semua section pakai komponen dari sini + layout.css).
============================================================ */


/* =========================================
   EYEBROW / BADGE PILL
   Label kecil di atas judul section, kayak
   "PREMIUM WEB DEVELOPMENT" di hero.
========================================= */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-soft);
  background: rgba(59,107,255,0.1);
  border: 1px solid rgba(59,107,255,0.25);
  border-radius: var(--r-pill);
  padding: 7px 16px;
}
.eyebrow .dot{
  width: 6px;height:6px;border-radius:50%;
  background: var(--navy-soft);
  flex-shrink:0;
}


/* =========================================
   BUTTONS
   -----------------------------------------
   .btn        -> base, dipake bareng modifier
   .btn-primary -> navy solid, buat CTA utama
   .btn-ghost   -> outline, buat CTA sekunder
   .btn-block   -> full width (dipake di card)
========================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn-primary{
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: #fff;
  box-shadow: 0 8px 24px rgba(59,107,255,0.3);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59,107,255,0.4);
}

.btn-ghost{
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-hi);
  color: var(--text);
}
.btn-ghost:hover{
  background: rgba(255,255,255,0.06);
  border-color: rgba(59,107,255,0.4);
}

.btn-block{
  width: 100%;
}

.btn[disabled],
.btn.is-disabled{
  opacity: 0.5;
  pointer-events: none;
}


/* =========================================
   CARD — base permukaan netral
   Dipakai sebagai dasar buat service card,
   trust card, faq item, dll.
========================================= */
.card{
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.card:hover{
  border-color: var(--border-hi);
}


/* =========================================
   NAVBAR
   -----------------------------------------
   Fixed di atas, background nge-blur waktu
   discroll (class .is-scrolled ditambah lewat
   navbar.js, lihat di sana).
========================================= */
.navbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 16px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}
.navbar.is-scrolled{
  background: rgba(7,11,20,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  padding: 12px 0;
}

.navbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.navbar-brand .brand-mark{
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  display: flex; align-items:center; justify-content:center;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.navbar-links{
  display: none; /* mobile-first: disembunyiin, dimunculkan di responsive.css buat desktop */
  align-items: center;
  gap: 28px;
}
.navbar-links a{
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
}
.navbar-links a:hover,
.navbar-links a.is-active{
  color: var(--text);
}
.navbar-links a.is-active::after{
  content:'';
  position:absolute; bottom:-6px; left:0; right:0;
  height:2px; border-radius:2px;
  background: var(--navy);
}

/* Tombol hamburger — cuma keliatan di mobile */
.navbar-toggle{
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 34px; height: 34px;
  align-items: center;
  justify-content: center;
}
.navbar-toggle span{
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
/* Animasi jadi "X" pas menu mobile dibuka (toggle class .is-open dari navbar.js) */
.navbar-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.navbar-toggle.is-open span:nth-child(2){ opacity: 0; }
.navbar-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Panel menu mobile — slide down dari bawah navbar */
.navbar-mobile{
  position: fixed;
  top: 64px; left: 16px; right: 16px;
  z-index: 499;
  background: var(--bg-elev);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-md);
  padding: var(--sp-sm);
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
}
.navbar-mobile.is-open{
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.navbar-mobile a{
  padding: 13px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: var(--r-sm);
}
.navbar-mobile a:hover,
.navbar-mobile a.is-active{
  color: var(--text);
  background: rgba(255,255,255,0.04);
}


/* =========================================
   HERO
========================================= */
.hero{
  padding: 130px 0 var(--sp-2xl);
  text-align: center;
}
.hero h1{
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 8vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: var(--sp-md) 0;
}
.hero h1 .accent{
  color: var(--navy-soft);
}
.hero .hero-sub{
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto var(--sp-lg);
  line-height: 1.75;
}
.hero .hero-ctas{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* Baris badge kecil "React-ish" yang nunjukin prinsip kerja
   (HONEST framing — bukan klaim tech stack spesifik, tapi
   prinsip pengerjaan, biar gak over-promise) */
.hero-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: var(--sp-lg);
}
.hero-tags span{
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 7px 14px;
}

/* -----------------------------------------------------
   Signature element: "build console" — kartu kecil ala
   code editor yang isinya animasi mengetik (lihat
   animations.js -> initTypingEffect). Ini elemen yang
   paling "RyHanC" di seluruh halaman, sengaja dibuat beda
   dari template hero generic (gradient blob doang).
----------------------------------------------------- */
.build-console{
  max-width: 380px;
  margin: var(--sp-xl) auto 0;
  background: var(--bg-input);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(59,107,255,0.08);
  text-align: left;
}
.build-console-bar{
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: var(--bg-elev-2);
  border-bottom: 1px solid var(--border);
}
.build-console-bar span{
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--border-hi);
}
.build-console-bar span:nth-child(1){ background:#ff5f57; }
.build-console-bar span:nth-child(2){ background:#febc2e; }
.build-console-bar span:nth-child(3){ background:#28c840; }
.build-console-label{
  margin-left: 6px;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  color: var(--text-faint);
}
.build-console-body{
  padding: 18px 16px 22px;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  line-height: 1.9;
  min-height: 92px;
}
.build-console-body .ln{ color: var(--text-faint); margin-right: 10px; }
.build-console-body .tag{ color: var(--navy-soft); }
.build-console-body .str{ color: var(--success); }
.typing-cursor{
  display:inline-block;
  width: 2px; height: 14px;
  background: var(--navy-soft);
  margin-left: 2px;
  vertical-align: middle;
  animation: blinkCursor 0.9s steps(1) infinite;
}


/* =========================================
   TRUSTBAR
   -----------------------------------------
   Baris value-prop singkat. SENGAJA gak pake
   angka statistik palsu ("500+ klien" dst) -
   karena RyHanC masih baru, klaim begitu bisa
   nyesatin. Pakai klaim kualitatif yang jujur.
========================================= */
.trustbar{
  padding: var(--sp-lg) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  text-align: center;
}
.trust-item .ti-icon{
  font-size: 1.1rem;
  color: var(--navy-soft);
}
.trust-item .ti-label{
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
}


/* =========================================
   SERVICE CARD
========================================= */
.service-card{
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
}
.service-icon{
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: rgba(59,107,255,0.1);
  border: 1px solid rgba(59,107,255,0.22);
  display: flex; align-items:center; justify-content:center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.service-card h3{
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.service-card p{
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.65;
}


/* =========================================
   PROCESS STEP (dulu disebut "journey" di
   referensi, tapi buat agency lebih make
   sense jadi "proses kerja" - urutan beneran
   bermakna di sini jadi numbering valid)
========================================= */
.process-step{
  display: flex;
  gap: var(--sp-md);
  position: relative;
  padding-bottom: var(--sp-lg);
}
.process-step:last-child{ padding-bottom: 0; }

.process-num{
  font-family: var(--f-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-soft);
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(59,107,255,0.3);
  background: rgba(59,107,255,0.08);
  display: flex; align-items:center; justify-content:center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
/* Garis penghubung antar step, putus di step terakhir */
.process-step:not(:last-child)::before{
  content:'';
  position: absolute;
  left: 19px; top: 38px; bottom: 0;
  width: 1px;
  background: var(--border-hi);
}
.process-text h3{
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.process-text p{
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}


/* =========================================
   TECH PRINCIPLE BADGE
   -----------------------------------------
   Bukan logo framework spesifik (kita gak
   mau klaim tech yang gak pasti dipake) -
   ini lebih ke "prinsip teknis" yang dipegang.
========================================= */
.tech-badge{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}
.tech-badge .tb-icon{ font-size: 1.2rem; }
.tech-badge .tb-text{
  font-size: 0.85rem;
  font-weight: 600;
}


/* =========================================
   PRICING CARD
   -----------------------------------------
   .is-popular -> versi yang di-highlight
   (border navy + badge "POPULER")
========================================= */
.pricing-card{
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card.is-popular{
  border-color: var(--navy);
  box-shadow: 0 0 0 1px rgba(59,107,255,0.3), 0 20px 60px rgba(59,107,255,0.12);
}
.pricing-badge{
  position: absolute;
  top: -12px; right: 20px;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--navy);
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.pricing-icon{
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--bg-elev-2);
  display: flex; align-items:center; justify-content:center;
  font-size: 1.3rem;
  margin-bottom: var(--sp-sm);
}
.pricing-name{
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--sp-sm);
}
.pricing-price{
  font-family: var(--f-mono);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy-soft);
  margin-bottom: var(--sp-md);
}
.pricing-price small{
  font-size: 0.7rem;
  color: var(--text-faint);
  font-weight: 500;
  margin-left: 4px;
}
.pricing-feats{
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: var(--sp-lg);
  flex: 1;
}
.pricing-feats li{
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.pricing-feats li .check{
  color: var(--navy-soft);
  flex-shrink: 0;
  margin-top: 1px;
}


/* =========================================
   FAQ ACCORDION
========================================= */
.faq-item{
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child{ border-top: 1px solid var(--border); }

.faq-q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  padding: 18px 4px;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 600;
}
.faq-q .faq-icon{
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border-hi);
  display: flex; align-items:center; justify-content:center;
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: transform 0.3s var(--ease), background 0.2s, border-color 0.2s;
}
.faq-item.is-open .faq-q .faq-icon{
  transform: rotate(45deg);
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a-inner{
  padding: 0 4px 18px;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
}


/* =========================================
   CONTACT CARD
========================================= */
.contact-card{
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}
.contact-icon{
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: rgba(59,107,255,0.1);
  border: 1px solid rgba(59,107,255,0.2);
  display: flex; align-items:center; justify-content:center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info{ flex: 1; min-width: 0; }
.contact-label{
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 3px;
}
.contact-value{
  font-family: var(--f-mono);
  font-size: 0.88rem;
  color: var(--text);
  word-break: break-all;
}
.contact-copy{
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-hi);
  display: flex; align-items:center; justify-content:center;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.contact-copy:hover{
  color: var(--text);
  background: rgba(59,107,255,0.1);
  border-color: rgba(59,107,255,0.4);
}
.contact-copy.is-copied{
  color: var(--success);
  border-color: rgba(52,211,153,0.4);
}


/* =========================================
   FOOTER
========================================= */
.footer{
  padding: var(--sp-xl) 0 var(--sp-lg);
  border-top: 1px solid var(--border);
}
.footer-brand{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.footer-tag{
  font-size: 0.82rem;
  color: var(--text-dim);
  max-width: 320px;
  line-height: 1.6;
}
.footer-cols{
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}
.footer-col h4{
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--sp-sm);
}
.footer-col a{
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover{ color: var(--text); }
.footer-bottom{
  margin-top: var(--sp-xl);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-faint);
  text-align: center;
}


/* =========================================
   TOAST (notif kecil "Copied!" dst)
========================================= */
.toast{
  position: fixed;
  bottom: 26px; left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--bg-elev-2);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-pill);
  padding: 10px 22px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* Navbar logo image — gantiin brand mark teks */
.navbar-logo{
  height: 36px;
  width: auto;
  display: block;
  /* Logo punya background putih — filter invert biar nyesuain
     dark background navbar. Kalau logo versi transparent/putih
     ada, ganti file-nya dan hapus filter ini. */
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 0.2s;
}
.navbar-brand:hover .navbar-logo{
  opacity: 1;
}
   Angka 01/02/03 sebagai penanda posisi,
   lebih editorial daripada ikon generik.
========================================= */
.service-num{
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy-soft);
  letter-spacing: 0.04em;
  background: rgba(59,107,255,0.08);
  border: 1px solid rgba(59,107,255,0.18);
  border-radius: var(--r-sm);
  width: 36px; height: 36px;
  display: flex; align-items:center; justify-content:center;
  flex-shrink: 0;
}

/* =========================================
   PRICING PLAN LABEL — teks kecil di atas
   nama paket, gantiin emoji icon sebelumnya
========================================= */
.pricing-plan-label{
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 6px;
}
.pricing-name{
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-bottom: 2px;
}

/* Trust item — tanpa ikon, pure text label */
.trust-item .ti-label{
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* Tech badge — tanpa ikon, pure text */
.tech-badge{
  justify-content: center;
  padding: 18px var(--sp-md);
}
.tech-badge .tb-text{
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Project card info tweaks */
.project-tag{
  font-family: var(--f-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 8px;
}
.project-info h3{
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}
.project-info p{
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}


/* =========================================
   WIREFRAME MOCKUPS — project section
   -----------------------------------------
   Semua elemen ini namanya ".mk-*" biar gak
   ketumpuk sama class global lain. Warnanya
   sengaja flat dan gak mencolok (ini wireframe,
   bukan design final) — pakai opacity rendah
   dari palet navy.
========================================= */

/* Container utama mockup */
.project-thumb{
  padding: 0;
  aspect-ratio: 3/2.4;
  background: #0b1020;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  position: relative;
}

/* Nav bar mockup */
.mk-nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.mk-nav--minimal{
  padding: 6px 10px;
}
.mk-logo{
  width: 32px; height: 6px;
  background: rgba(59,107,255,0.5);
  border-radius: 3px;
}
.mk-nav-links{
  display: flex;
  align-items: center;
  gap: 5px;
}
.mk-link{
  width: 18px; height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
}
.mk-btn-sm{
  width: 22px; height: 7px;
  background: rgba(59,107,255,0.35);
  border-radius: 4px;
}
.mk-btn-sm--cart{
  width: 14px; height: 14px;
  border-radius: 3px;
}

/* Hero block */
.mk-hero{
  padding: 10px 10px 6px;
  flex-shrink: 0;
}
.mk-hero--center{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mk-eyebrow{
  width: 48px; height: 5px;
  background: rgba(59,107,255,0.3);
  border-radius: 3px;
  margin-bottom: 6px;
}
.mk-eyebrow--center{ margin-left:auto; margin-right:auto; }
.mk-h1{
  width: 90%; height: 7px;
  background: rgba(255,255,255,0.5);
  border-radius: 3px;
  margin-bottom: 5px;
}
.mk-h1--short{ width: 65%; }
.mk-h1--center{ margin-left:auto; margin-right:auto; }
.mk-sub{
  width: 80%; height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin-bottom: 4px;
}
.mk-sub--short{ width: 55%; }
.mk-sub--center{ margin-left:auto; margin-right:auto; }
.mk-ctas{
  display: flex;
  gap: 5px;
  margin-top: 7px;
}
.mk-ctas--center{ justify-content: center; }
.mk-btn-primary{
  width: 44px; height: 9px;
  background: rgba(59,107,255,0.6);
  border-radius: 5px;
}
.mk-btn-primary--lg{ width: 60px; height: 11px; }
.mk-btn-ghost{
  width: 36px; height: 9px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 5px;
}

/* 3 service cards row */
.mk-cards-row{
  display: flex;
  gap: 4px;
  padding: 0 10px 8px;
  flex: 1;
  align-items: flex-start;
  margin-top: 6px;
}
.mk-scard{
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 6px;
}
.mk-scard-bar{
  width: 100%; height: 20px;
  background: rgba(59,107,255,0.12);
  border-radius: 3px;
  margin-bottom: 5px;
}
.mk-scard-line{
  width: 90%; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-bottom: 3px;
}

/* Toko Online specific */
.mk-search-bar{
  padding: 5px 10px;
  flex-shrink: 0;
}
.mk-search-input{
  width: 100%; height: 9px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
}
.mk-chips{
  display: flex;
  gap: 4px;
  padding: 0 10px 5px;
  flex-shrink: 0;
}
.mk-chip{
  width: 28px; height: 7px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
}
.mk-chip--active{
  background: rgba(59,107,255,0.4);
}
.mk-product-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 0 10px 8px;
  flex: 1;
}
.mk-product{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
}
.mk-product-img{
  width: 100%; height: 28px;
  background: linear-gradient(135deg, rgba(59,107,255,0.15), rgba(59,107,255,0.05));
}
.mk-product-img--alt{
  background: linear-gradient(135deg, rgba(100,160,255,0.18), rgba(59,107,255,0.08));
}
.mk-product-img--alt2{
  background: linear-gradient(135deg, rgba(59,107,255,0.1), rgba(100,160,255,0.2));
}
.mk-product-name{
  width: 70%; height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin: 4px 4px 2px;
}
.mk-product-price{
  width: 45%; height: 4px;
  background: rgba(59,107,255,0.5);
  border-radius: 2px;
  margin: 0 4px 4px;
}
.mk-product-btn{
  width: calc(100% - 8px); height: 7px;
  background: rgba(59,107,255,0.25);
  border-radius: 3px;
  margin: 0 4px 4px;
}

/* Landing Page specific */
.mk-features-row{
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 4px 10px;
  flex-shrink: 0;
}
.mk-feat-pill{
  width: 36px; height: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
}
.mk-testi-bar{
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 4px 10px 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 5px 7px;
  flex-shrink: 0;
}
.mk-testi-avatar{
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(59,107,255,0.3);
  flex-shrink: 0;
}
.mk-testi-text{ flex: 1; }
.mk-testi-line{
  width: 90%; height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  margin-bottom: 3px;
}
.mk-short{ width: 55% !important; }



/* =========================================
   PROJECT REAL — kartu project nyata dengan
   screenshot asli + hover overlay CTA
========================================= */
.projects-list{
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}

.project-real{
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

/* Gambar + overlay tombol */
.project-real-img{
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  aspect-ratio: 9/16;
  max-height: 520px;
}
.project-real-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s var(--ease), filter 0.4s ease;
}
.project-real-overlay{
  position: absolute;
  inset: 0;
  background: rgba(7,11,20,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-real-img:hover .project-real-overlay{
  opacity: 1;
}
.project-real-img:hover img{
  transform: scale(1.02);
  filter: brightness(0.85);
}
.project-visit-btn{
  font-size: 0.88rem;
  padding: 12px 28px;
}

/* Info bawah kartu */
.project-real-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}
.project-real-tag{
  font-family: var(--f-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-soft);
  background: rgba(59,107,255,0.08);
  border: 1px solid rgba(59,107,255,0.2);
  border-radius: var(--r-pill);
  padding: 4px 10px;
}
.project-real-info h3{
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.project-real-info p{
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 16px;
}
.project-real-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.project-real-link:hover{
  color: var(--navy-soft);
  border-color: var(--navy-soft);
}

