/* ============================================================
   UNITEK SOLUSI — Design System
   Single source of CSS truth for all public pages.
   NO Tailwind. NO Bootstrap. Pure CSS variables.
   ============================================================ */

/* ── 1. CSS Variables ──────────────────────────────────────── */
:root {
  /* Brand Colors */
  --cobalt:          #2B71BF;
  --cobalt-700:      #1a4a96;
  --cobalt-50:       #f0f6fd;
  --cobalt-200:      #b8d4f0;
  --lime:            #6DB535;
  --lime-600:        #4f8e20;
  --cyan:            #29B6E8;  /* logo mark ONLY */
  --whatsapp:        #25D366;
  --whatsapp-dark:   #128c4a;

  /* Dark palette */
  --dark-900:        #0d1117;
  --dark-800:        #141a22;
  --dark-600:        #252f3e;

  /* Light / neutral */
  --gray-50:         #f9fafb;
  --border:          #e5e7eb;
  --text-primary:    #111827;
  --text-secondary:  #374151;
  --text-muted:      #6b7280;
  --white:           #ffffff;

  /* Spacing scale */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  /* Border radius */
  --radius-sm:  4px;
  --radius:     8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:     0 4px 12px rgba(0,0,0,.10);
  --shadow-md:  0 8px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.15);

  /* Transitions */
  --transition: 200ms ease;
  --transition-slow: 350ms ease;

  /* Container */
  --container-max: 1200px;
  --container-pad: var(--sp-6);
}

/* ── 2. Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ── 3. Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.t-display {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.t-h1 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.t-h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}
.t-h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
}
.t-lead {
  font-size: clamp(1.2rem, 1.8vw, 1.375rem);
  line-height: 1.65;
  color: var(--text-secondary);
}
.t-body  { font-size: 1.0625rem; line-height: 1.65; }
.t-small { font-size: 0.9375rem; line-height: 1.5; }
.t-caption { font-size: 0.8125rem; line-height: 1.4; color: var(--text-muted); }
.t-overline {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cobalt);
}

/* Dark section text overrides */
.section-dark .t-h1,
.section-dark .t-h2,
.section-dark .t-h3,
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }

.section-dark .t-lead,
.section-dark .t-body,
.section-dark p { color: rgba(255,255,255,.75); }

.section-dark .t-overline { color: var(--cobalt-200); }
.section-dark .t-caption  { color: rgba(255,255,255,.5); }

/* ── 4. Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--sp-20) 0;
}
.section-sm { padding: var(--sp-12) 0; }
.section-lg { padding: var(--sp-24) 0; }

.section-dark {
  background: var(--dark-900);
  padding: var(--sp-20) 0;
}
.section-alt {
  background: var(--gray-50);
  padding: var(--sp-20) 0;
}

/* ── 5. Grid ────────────────────────────────────────────────── */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: var(--sp-6);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.grid-auto-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-auto-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-auto-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
}

/* Subgrid alignment utilities — cross-card baseline alignment */
.subgrid-2, .subgrid-3, .subgrid-4, .subgrid-5 { row-gap: var(--sp-3); }
.subgrid-2 { grid-template-rows: repeat(2, auto); }
.subgrid-3 { grid-template-rows: repeat(3, auto); }
.subgrid-4 { grid-template-rows: repeat(4, auto); }
.subgrid-5 { grid-template-rows: repeat(5, auto); }
.subgrid-2 > *, .subgrid-3 > *, .subgrid-4 > *, .subgrid-5 > * {
  display: grid;
  grid-template-rows: subgrid;
}
.subgrid-2 > * { grid-row: span 2; }
.subgrid-3 > * { grid-row: span 3; }
.subgrid-4 > * { grid-row: span 4; }
.subgrid-5 > * { grid-row: span 5; }
/* Prevent badges and buttons from stretching full-width inside subgrid cards */
[class*="subgrid-"] > * > .badge,
[class*="subgrid-"] > * > .btn { justify-self: start; }
@media (max-width: 768px) {
  /* Reset wrapper row tracks */
  .subgrid-2, .subgrid-3, .subgrid-4, .subgrid-5 {
    grid-template-rows: none;
    row-gap: var(--sp-6);
  }
  /* Keep cards as grid so inner row-gap applies */
  .subgrid-2 > *, .subgrid-3 > *, .subgrid-4 > *, .subgrid-5 > * {
    grid-row: span 1;
    grid-template-rows: auto;
    row-gap: var(--sp-3);
  }
}

/* Flex helpers */
.flex          { display: flex; }
.flex-center   { display: flex; align-items: center; justify-content: center; }
.flex-between  { display: flex; align-items: center; justify-content: space-between; }
.flex-start    { display: flex; align-items: center; justify-content: flex-start; }
.flex-col      { display: flex; flex-direction: column; }
.flex-wrap     { flex-wrap: wrap; }
.gap-2         { gap: var(--sp-2); }
.gap-3         { gap: var(--sp-3); }
.gap-4         { gap: var(--sp-4); }
.gap-6         { gap: var(--sp-6); }
.gap-8         { gap: var(--sp-8); }

/* ── 6. Spacing utilities ───────────────────────────────────── */
.mt-2  { margin-top: var(--sp-2); }
.mt-3  { margin-top: var(--sp-3); }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mt-10 { margin-top: var(--sp-10); }
.mt-12 { margin-top: var(--sp-12); }
.mb-2  { margin-bottom: var(--sp-2); }
.mb-3  { margin-bottom: var(--sp-3); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }
.mb-10 { margin-bottom: var(--sp-10); }

/* ── 7. Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}

/* Sizes */
.btn-sm  { padding: var(--sp-2) var(--sp-4);  font-size: 0.8125rem; }
.btn-md  { padding: var(--sp-3) var(--sp-5);  font-size: 0.9375rem; }
.btn-lg  { padding: var(--sp-4) var(--sp-8);  font-size: 1rem; }
.btn-xl  { padding: var(--sp-5) var(--sp-10); font-size: 1.0625rem; }

/* Variants */
.btn-primary {
  background: var(--cobalt);
  color: var(--white);
  border-color: var(--cobalt);
}
.btn-primary:hover {
  background: var(--cobalt-700);
  border-color: var(--cobalt-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--lime);
  color: var(--white);
  border-color: var(--lime);
}
.btn-accent:hover {
  background: var(--lime-600);
  border-color: var(--lime-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--cobalt);
  border-color: var(--cobalt);
}
.btn-outline:hover {
  background: var(--cobalt);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--cobalt);
  border-color: transparent;
}
.btn-ghost:hover {
  background: var(--cobalt-50);
  border-color: var(--cobalt-50);
}

.btn-wa {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}
.btn-wa:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
}

/* ── 8. Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-dark {
  background: var(--dark-800);
  border: 1px solid var(--dark-600);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  transition: all var(--transition);
}
.card-dark:hover {
  border-color: var(--cobalt);
  box-shadow: 0 8px 32px rgba(43,113,191,.2);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--cobalt-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cobalt);
  margin-bottom: var(--sp-4);
  flex-shrink: 0;
}
.card-dark .card-icon {
  background: rgba(43,113,191,.15);
  color: var(--cobalt-200);
}

/* ── 9. Badges ──────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
}
.badge-cobalt  { background: var(--cobalt-50);  color: var(--cobalt); }
.badge-lime    { background: rgba(109,181,53,.12); color: var(--lime-600); }
.badge-dark    { background: var(--dark-600); color: rgba(255,255,255,.7); }
.badge-white   { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }

/* ── 10. Forms ──────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1.0625rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(43,113,191,.1);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-error {
  font-size: 0.8125rem;
  color: #dc2626;
  display: none;
}
.form-input.is-invalid,
.form-textarea.is-invalid,
.form-select.is-invalid {
  border-color: #dc2626;
}
.form-input.is-invalid ~ .form-error,
.form-textarea.is-invalid ~ .form-error,
.form-select.is-invalid ~ .form-error { display: block; }

/* ── 11. Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: var(--sp-8);
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}
.navbar-logo img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* Nav list */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-link:hover,
.nav-link.active { color: var(--cobalt); background: var(--cobalt-50); }
.nav-link svg, .nav-link [data-lucide] { width: 15px; height: 15px; }

/* Dropdown */
.nav-item { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--sp-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown-menu,
.nav-item.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.dropdown-link:hover { background: var(--cobalt-50); color: var(--cobalt); }
.dropdown-link .dropdown-label { font-size: 0.8125rem; color: var(--text-muted); margin-top: 1px; }
.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: var(--sp-2) var(--sp-3);
}
.dropdown-menu-2col {
  min-width: 480px;
  display: flex;
  gap: 0;
  align-items: stretch;
}
.dropdown-menu-3col {
  min-width: 680px;
  display: flex;
  gap: 0;
  align-items: stretch;
}
.dropdown-col {
  flex: 1;
  min-width: 0;
}
.dropdown-col-divider {
  width: 1px;
  background: var(--border);
  margin: var(--sp-2) 0;
  flex-shrink: 0;
}
.dropdown-section-label {
  padding: var(--sp-2) var(--sp-4) var(--sp-1);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Navbar right */
.navbar-right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  margin-left: auto;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.lang-btn {
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all var(--transition);
}
.lang-btn:hover, .lang-btn.active { color: var(--cobalt); background: var(--cobalt-50); }
.lang-sep { color: var(--border); }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  padding: var(--sp-2);
  color: var(--text-primary);
  border-radius: var(--radius);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--gray-50); }
.hamburger [data-lucide] { width: 36px; height: 36px; }

/* ── 12. Mobile Menu ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-4);
}
.mobile-close {
  padding: var(--sp-2);
  color: var(--text-primary);
  border-radius: var(--radius);
}
.mobile-nav-item { border-bottom: 1px solid var(--gray-50); }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
}
.mobile-accordion-content {
  padding-bottom: var(--sp-3);
  display: none;
}
.mobile-accordion-content.open { display: block; }
.mobile-sub-link {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.mobile-sub-link:hover { background: var(--cobalt-50); color: var(--cobalt); }
.mobile-divider {
  height: 1px;
  background: var(--border);
  margin: var(--sp-2) var(--sp-3);
}
.mobile-menu-footer {
  margin-top: auto;
  padding-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .navbar-right .lang-switcher { display: none; }
  .navbar-right .btn { display: none; }
  .hamburger { display: flex; }
}

/* ── 13. Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--dark-900);
  color: rgba(255,255,255,.7);
  padding: var(--sp-20) 0 var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--dark-600);
}
.footer-brand {}
.footer-brand .navbar-logo img { height: 32px; }
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  margin-top: var(--sp-4);
  line-height: 1.6;
  max-width: 260px;
}
.footer-address {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.45);
  margin-top: var(--sp-4);
  line-height: 1.7;
}
.footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--sp-4);
}
.footer-link {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255,255,255,.65);
  padding: var(--sp-1) 0;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-8);
  font-size: 0.8125rem;
  color: rgba(255,255,255,.35);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: var(--sp-3); text-align: center; }
}

/* ── 14. WA Float Button ────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all var(--transition);
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.1);
  animation: none;
}
.wa-float [data-lucide] { width: 26px; height: 26px; }

@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%  { box-shadow: 0 4px 30px rgba(37,211,102,.8), 0 0 0 8px rgba(37,211,102,.15); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
}

/* ── 15. Hero ───────────────────────────────────────────────── */
.hero {
  background: var(--dark-900);
  /* padding: calc(68px + var(--sp-20)) 0 var(--sp-20); */
  padding: 0px !important;
  /* min-height: 100vh; */
  min-height: 86vh;
  display: flex;
  /* align-items: center; */
}
.hero-mini {
  background: var(--dark-900);
  padding: calc(68px + var(--sp-16)) 0 var(--sp-16);
  /* padding: 0px; */
}
/* Brand logo shown at the top of service-page heroes (replaces the
   generic Lucide icon). Matches the height of the Mata AI logo on
   /services/matadoo/assistant for visual consistency. */
.hero-brand-logo {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(43,113,191,.15);
  border: 1px solid rgba(43,113,191,.3);
  color: var(--cobalt-200);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: var(--sp-6);
}

/* ── 16. Stat / Trust bar ───────────────────────────────────── */
.stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--cobalt);
  line-height: 1;
}
.section-dark .stat-value { color: var(--white); }
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.section-dark .stat-label { color: rgba(255,255,255,.5); }

.trust-bar {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--sp-5) !important;
  padding: var(--sp-5) var(--sp-6);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--dark-600);
  border-radius: var(--radius-md);
  margin-top: var(--sp-10);
}
.trust-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  align-items: center;
  text-align: center;
}
@media (max-width: 640px) {
  .trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5) !important;
    padding: var(--sp-5);
  }
  .trust-divider { display: none; }
}
.trust-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.trust-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,.45);
  margin-top: 10px;
}
.trust-divider {
  width: 1px;
  background: var(--dark-600);
  align-self: stretch;
}

/* ── 17. Section header ─────────────────────────────────────── */
.section-header {
  max-width: 640px;
  margin-bottom: var(--sp-12);
}
.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header .t-h2 { margin-top: var(--sp-3); }
.section-header .t-lead { margin-top: var(--sp-4); }

/* ── 18. Ticker ─────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--dark-800);
  border-top: 1px solid var(--dark-600);
  border-bottom: 1px solid var(--dark-600);
  padding: var(--sp-4) 0;
}
.ticker-track {
  display: flex;
  gap: var(--sp-12);
  animation: ticker-scroll 28s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  flex-shrink: 0;
}
.ticker-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cobalt);
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── 19. Table (Honest Tech) ────────────────────────────────── */
.table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.comparison-table th {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  border-bottom: 2px solid var(--border);
  color: var(--text-primary);
}
.comparison-table td {
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: middle;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--gray-50); }
.comparison-table .col-label { font-weight: 600; color: var(--text-primary); }
.comparison-table .col-recommend {
  color: var(--cobalt);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

/* ── 20. Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.8125rem;
  color: rgba(255,255,255,.45);
  margin-bottom: var(--sp-4);
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb [data-lucide] { width: 12px; height: 12px; }

/* ── 21. Alert / Flash ──────────────────────────────────────── */
.alert {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}
.alert-success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.alert-error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

/* ── 22. Avatar / Team ──────────────────────────────────────── */
.avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: var(--cobalt-50);
  color: var(--cobalt);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }

.team-card { text-align: center; }
.team-card .avatar { margin: 0 auto var(--sp-4); width: 88px; height: 88px; }
.team-card .team-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text-primary);
}
.team-card .team-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.team-card .team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  margin-top: var(--sp-3);
  font-size: 0.875rem;
  color: var(--cobalt);
  opacity: 0;
  transition: opacity var(--transition);
}
.team-card:hover .team-linkedin { opacity: 1; }

a.team-card-link {
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
a.team-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
}
a.team-card-link:hover .team-name { color: var(--cobalt); }

/* ── 23. Animations ─────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-delay-1 { transition-delay: 100ms; }
  .fade-delay-2 { transition-delay: 200ms; }
  .fade-delay-3 { transition-delay: 300ms; }
  .fade-delay-4 { transition-delay: 400ms; }
}

/* ── 24. Utilities ──────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-cobalt  { color: var(--cobalt); }
.text-lime    { color: var(--lime); }
.text-white   { color: var(--white); }
.text-muted   { color: var(--text-muted); }
.fw-700       { font-weight: 700; }
.fw-800       { font-weight: 800; }
.hidden       { display: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── 25. Responsive: body padding for fixed navbar ─────────── */
body { padding-top: 68px; }
.hero, .hero-mini { padding-top: calc(68px + var(--sp-16)); }
/* Hero already accounts for 68px, reset body padding inside hero */


/* ── 26. Industry pills ─────────────────────────────────────── */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
  text-decoration: none;
}
.industry-pill:hover {
  border-color: var(--cobalt);
  background: var(--cobalt-50);
  color: var(--cobalt);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ── 27. Logo grid (clients) ────────────────────────────────── */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
}
.logo-slot {
  height: 72px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  overflow: visible;
  position: relative;
}
.logo-slot:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.logo-slot img { max-width: 80%; max-height: 48px; width: auto; height: auto; object-fit: contain; display: block; }
.logo-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-900, #0f172a);
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.4;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: var(--radius);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 10;
  text-align: center;
}
.logo-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--dark-900, #0f172a);
}
.logo-slot:hover .logo-tooltip { opacity: 1; }
.logo-slot-placeholder {
  height: 72px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: var(--gray-50);
}

@media (max-width: 768px) {
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 28. Indonesia Map SVG container ────────────────────────── */
.map-container {
  position: relative;
  width: 100%;
  max-width: 600px;
}
.map-svg { width: 100%; height: auto; }
.map-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 4px rgba(43,113,191,.25);
  position: absolute;
  transform: translate(-50%, -50%);
}
.map-dot.semarang { top: 60%; left: 40%; }
.map-dot.jakarta  { top: 55%; left: 28%; }
.map-dot.bali     { top: 62%; left: 57%; }
.map-label {
  position: absolute;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  transform: translateX(-50%);
  top: calc(100% + 8px);
  left: 50%;
  text-align: center;
}

/* ── 29. Case Study card ────────────────────────────────────── */
/* On desktop: no row-gap between subgrid rows (spacing via padding).
   On mobile: subgrid resets row-gap to var(--sp-6) for card spacing. */
@media (min-width: 769px) {
  .case-studies-grid { row-gap: 0; }
}
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.case-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--cobalt-50);
}
.case-card-img picture { display: contents; }
.case-card-img > img,
.case-card-img picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-card-industry {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cobalt);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--sp-6) var(--sp-6) 0;
  align-self: start;
}
.case-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-primary);
  line-height: 1.3;
  padding: var(--sp-3) var(--sp-6) 0;
  align-self: start;
}
.case-card-excerpt {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: var(--sp-3) var(--sp-6) var(--sp-6);
  align-self: start;
}
.case-metrics {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-6);
  background: var(--cobalt-50);
  border-top: 1px solid var(--cobalt-200);
}
.case-metric {
  flex: 1;
}
.case-metric-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--cobalt);
}
.case-metric-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── 30. Testimonial ────────────────────────────────────────── */
.testimonial-card {
  background: var(--dark-800);
  border: 1px solid var(--dark-600);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
}
.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin-bottom: var(--sp-6);
}
.testimonial-quote::before { content: '"'; }
.testimonial-quote::after  { content: '"'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.testimonial-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9375rem;
}
.testimonial-role {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}
.testimonial-stat {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--lime);
  line-height: 1;
  margin-bottom: var(--sp-3);
}
