/* ============================================
   UNI UDA — PT UNIUDA TEKNO KREASINDO
   Single-page corporate landing
   ============================================ */

:root {
  --navy: #0f172a;
  --navy-mid: #1e293b;
  --slate: #475569;
  --slate-light: #64748b;
  --bg-soft: #f8fafc;
  --white: #ffffff;
  --accent: #fbbf24;
  --accent-dark: #f59e0b;
  --accent-soft: #fef3c7;
  --accent-text: #b45309;
  --accent-text-strong: #92400e;
  --border: #e2e8f0;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.06);
  --shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 60px -20px rgba(15, 23, 42, 0.25);
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}

img, svg { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Header (v2 — always navy for brand-correct UNI/UDA visibility)
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow .2s;
}
.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo span {
  color: var(--accent);
}

/* Brand color split — UNIUDA: white UNI + yellow UDA on dark surfaces
   (always-dark header + footer) */
.site-header .logo,
.site-footer .footer-logo {
  color: var(--white);
}
.site-header .logo span,
.site-footer .footer-logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
}
.nav a:hover { color: var(--white); }

.menu-toggle {
  display: none;
  font-size: 22px;
  color: var(--white);
  padding: 8px;
}

/* Header CTA — yellow accent on dark header (override btn-primary navy-on-navy) */
.btn.header-cta {
  background: var(--accent);
  color: var(--navy);
}
.btn.header-cta:hover {
  background: var(--accent-dark);
  color: var(--navy);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s, color .15s, outline-offset .15s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -8px rgba(15, 23, 42, 0.4);
}

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

.btn-ghost {
  background: transparent;
  color: var(--accent-text);
  padding: 8px 0;
  font-weight: 700;
}
.btn-ghost:hover { color: var(--navy); }
.btn-accent {
  background: var(--accent);
  color: var(--navy);
  border: 1.5px solid var(--accent);
  font-weight: 800;
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -8px rgba(217, 119, 6, 0.45);
}

.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 14px 26px; font-size: 15px; }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 100px 0 80px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(251, 191, 36, 0.12), transparent 60%),
    radial-gradient(80% 80% at 80% 100%, rgba(15, 23, 42, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(251, 191, 36, 0.18);
  color: var(--accent-text-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.eyebrow-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(251, 191, 36, 0.12); }
}

.hero h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 860px;
  margin: 0 auto 20px;
}

.hl {
  position: relative;
  color: var(--accent-text-strong);
  display: inline-block;
}
.hl::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: rgba(251, 191, 36, 0.35);
  z-index: -1;
  border-radius: 4px;
}

.lead {
  font-size: 18px;
  color: var(--slate);
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat {
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: var(--border);
}
.stat-value {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.stat-label {
  font-size: 12px;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-top: 4px;
}

/* ============================================
   Sections base
   ============================================ */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--bg-soft);
}
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark a:not(.btn):not(.contact-card) {
  color: var(--accent);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 12px 0;
}
.section-dark .section-head h2 { color: var(--white); }
.section-lead {
  color: var(--slate);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
}
.section-dark .section-lead { color: var(--slate-light); }

/* ============================================
   About — pillars
   ============================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.pillar-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-text);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.pillar h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pillar p {
  color: var(--slate);
  font-size: 14.5px;
}

/* ============================================
   Products
   ============================================ */
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product {
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.product-soon {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
  border-style: dashed;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.product-vertical {
  font-size: 11px;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.badge-live {
  background: rgba(22, 163, 74, 0.14);
  color: #15803d;
}
.badge-soon {
  background: rgba(251, 191, 36, 0.18);
  color: var(--accent-text-strong);
}

.product h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.product p {
  color: var(--slate);
  font-size: 15px;
  margin-bottom: 16px;
}

.feature-list {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
}
.feature-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--slate);
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 800;
}

.product-cta-note {
  font-size: 13.5px;
  color: var(--slate);
  margin-top: auto;
}
.product-cta-note a {
  color: var(--accent-text);
  font-weight: 700;
  border-bottom: 1.5px solid currentColor;
}

/* ============================================
   Services (Layanan)
   ============================================ */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}

.service-card {
  position: relative;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  font-size: 11px;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.badge-service {
  background: var(--navy);
  color: var(--white);
}

.service-head h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--navy);
}

.service-pitch {
  font-size: 15px;
  color: var(--slate);
  margin-bottom: 24px;
}

.service-price {
  background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(251, 191, 36, 0.08) 100%);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 24px;
  text-align: center;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}

.price-currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-text-strong);
}

.price-amount {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--accent-text-strong);
  line-height: 1;
}

.price-tax {
  font-size: 13px;
  color: var(--accent-text);
  font-weight: 700;
  margin-bottom: 4px;
}

.price-total {
  font-size: 13px;
  color: var(--slate);
}

.service-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 20px;
}

.service-includes-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-light);
  font-weight: 700;
  margin-bottom: 12px;
}

.service-includes-bonus {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: rgba(22, 163, 74, 0.14);
  color: #15803d;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.02em;
  vertical-align: middle;
  white-space: nowrap;
}

.service-cta {
  display: flex;
  gap: 12px;
  margin: 24px 0 20px;
  flex-wrap: wrap;
}
.service-cta .btn { flex: 1; min-width: 180px; }

.service-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate);
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.service-trust svg {
  color: #16a34a;
  flex-shrink: 0;
}
.service-trust strong {
  color: var(--navy);
  font-weight: 700;
}

.service-note {
  margin: 32px auto 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--slate);
  padding: 18px 24px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
  max-width: 720px;
}
.service-note strong {
  color: var(--navy);
}

/* ============================================
   Legal
   ============================================ */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.legal-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.legal-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-light);
  font-weight: 700;
  margin-bottom: 12px;
}
.legal-value {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 12px;
}
.legal-meta {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.5;
}
.legal-note {
  text-align: center;
  font-size: 14px;
  color: var(--slate);
  padding: 20px 24px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}
.legal-note strong { color: var(--navy); }
.legal-note a {
  color: var(--accent-text);
  font-weight: 700;
  border-bottom: 1.5px solid currentColor;
}

/* ============================================
   Contact
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.contact-card {
  display: block;
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: background .2s, transform .15s, border-color .2s;
  color: inherit;
}
.contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(251, 191, 36, 0.18);
  color: var(--accent-text-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-light);
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}
.contact-meta {
  font-size: 13px;
  color: var(--slate-light);
  margin-top: 8px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--navy);
  color: var(--slate-light);
  padding: 48px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}
.footer-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.footer-logo span { color: var(--accent); }
.footer-tagline {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.footer-meta {
  font-size: 13px;
  color: var(--slate-light);
}
.footer-meta-block {
  font-size: 13px;
  color: var(--slate-light);
}
.footer-meta-block div {
  margin-bottom: 4px;
}
.footer-meta-block strong {
  color: var(--white);
  font-weight: 700;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 12.5px;
  color: var(--slate-light);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    align-items: flex-start;
    gap: 14px;
  }
  .nav.open { display: flex; }
  .nav a { color: var(--slate); } /* restore dark text for mobile menu white bg */
  .menu-toggle { display: block; }
  .header-cta { display: none; }

  .pillars,
  .products,
  .legal-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card { padding: 28px 24px; }
  .service-head h3 { font-size: 22px; }
  .price-amount { font-size: 36px; }
  .service-cta { flex-direction: column; }
  .service-cta .btn { width: 100%; }

  .services {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero {
    padding: 64px 0 56px;
  }
  .section { padding: 56px 0; }

  .hero-actions {
    flex-direction: column;
    margin-bottom: 48px;
  }
  .hero-actions .btn { width: 100%; }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
  }
  .stat {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }
  .stat:last-child { border-bottom: 0; padding-bottom: 0; }
  .stat:not(:last-child)::after { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .section-head h2 { font-size: 26px; }
  .lead { font-size: 16px; }
  .product h3 { font-size: 22px; }
  .legal-value { font-size: 22px; }
  .stat-value { font-size: 22px; }
}

/* ============================================
   A11y
   ============================================ */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* FAQ (Pertanyaan Umum) */
.faq-list {max-width: 800px; margin: 0 auto;}
.faq-item {background:#fff;border:1.5px solid var(--border);border-radius:12px;margin-bottom:12px;overflow:hidden;transition:border-color .2s ease,box-shadow .2s ease}
.faq-item:hover{border-color:var(--accent)}
.faq-item[open]{border-color:var(--accent);box-shadow:0 4px 16px rgba(251,191,36,.12)}
.faq-q{font-weight:700;font-size:16px;color:var(--navy);padding:18px 56px 18px 22px;cursor:pointer;position:relative;list-style:none;line-height:1.4;outline:none}
.faq-q::-webkit-details-marker{display:none}
.faq-q::marker{display:none;content:""}
.faq-q::after{content:"+";position:absolute;right:22px;top:50%;transform:translateY(-50%);font-size:26px;font-weight:300;color:var(--accent);line-height:1;transition:transform .2s ease}
.faq-item[open] .faq-q::after{content:"−"}
.faq-a{padding:0 22px 20px;color:var(--slate);line-height:1.65;font-size:15px}
.faq-a p{margin:0}
.faq-a strong{color:var(--navy);font-weight:700}
.faq-a a{color:var(--accent-dark);text-decoration:underline}
@media (max-width:600px){.faq-q{font-size:15px;padding:16px 50px 16px 18px}.faq-q::after{right:18px}.faq-a{padding:0 18px 16px;font-size:14px}}
  html { scroll-behavior: auto; }
}
/* ============================================
   KLIEN PAGE (Portfolio / Clients) — added 2026-09-17
   ============================================ */

/* Nav active state */
.nav a.nav-active { color: var(--accent); }

/* Hero klien */
.hero-klien { padding: 80px 0 64px; }
.hero-stats-klien { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 24px; max-width: 720px; margin: 40px auto 0; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.hero-stats-klien .stat { text-align: center; padding: 0; border-bottom: 0; }
.hero-stats-klien .stat::after { display: none; }
.hero-stats-klien .stat-value { font-size: 28px; font-weight: 800; color: var(--navy); }
.hero-stats-klien .stat-label { font-size: 11px; color: var(--slate-light); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-top: 4px; }
@media (max-width: 600px) {
  .hero-stats-klien { grid-template-columns: repeat(2, 1fr); }
}

/* Featured section */
.featured-section { padding: 60px 0 40px; }
.badge-featured { display: inline-block; padding: 5px 12px; background: var(--accent); color: var(--navy); font-weight: 800; font-size: 11px; border-radius: 20px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.featured-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; max-width: 900px; margin: 0 auto; border: 1px solid var(--border); }
.featured-card-inner { display: grid; grid-template-columns: 240px 1fr; gap: 0; align-items: stretch; }
@media (max-width: 700px) {
  .featured-card-inner { grid-template-columns: 1fr; }
}
.featured-visual { background: var(--navy); display: flex; align-items: center; justify-content: center; padding: 40px; }
.featured-logo { width: 160px; height: 160px; border-radius: 50%; }
@media (max-width: 700px) {
  .featured-visual { padding: 32px; }
  .featured-logo { width: 120px; height: 120px; }
}
.featured-content { padding: 36px; }
@media (max-width: 700px) {
  .featured-content { padding: 28px 24px; }
}
.featured-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }
.featured-tag { display: inline-block; padding: 4px 10px; background: #10b981; color: #fff; font-weight: 800; font-size: 11px; border-radius: 6px; letter-spacing: 0.05em; }
.featured-industry { font-size: 12px; color: var(--slate); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.featured-name { font-size: 32px; font-weight: 800; color: var(--navy); margin: 6px 0 4px; letter-spacing: -0.02em; }
@media (max-width: 700px) { .featured-name { font-size: 26px; } }
.featured-tagline { font-size: 14px; color: var(--slate); margin-bottom: 20px; line-height: 1.5; }
.featured-features { list-style: none; margin: 0 0 24px; padding: 0; }
.featured-features li { font-size: 13px; color: var(--slate); padding: 7px 0; border-bottom: 1px solid var(--border); line-height: 1.5; }
.featured-features li:last-child { border-bottom: 0; }
.featured-features strong { color: var(--navy); font-weight: 700; }
.featured-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.featured-url { font-size: 14px; color: var(--accent-text-strong); font-weight: 700; font-family: ui-monospace, SFMono-Regular, monospace; }

/* Up next — placeholder client grid */
.upnext-section { padding: 60px 0 80px; background: var(--bg-soft); }
.client-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 32px; }
.client-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 32px 20px; text-align: center; transition: border-color .2s, transform .2s, box-shadow .2s; display: flex; flex-direction: column; min-height: 220px; }
.client-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.client-card-placeholder { border-style: dashed; background: transparent; }
.client-logo-placeholder { width: 64px; height: 64px; margin: 0 auto 16px; background: var(--bg-soft); border: 2px dashed var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--slate-light); font-weight: 300; }
.client-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.client-industry { font-size: 12px; color: var(--slate); margin-bottom: 16px; line-height: 1.4; flex-grow: 1; }
.client-cta { margin-top: auto; }
.client-cta .btn { font-size: 12px; padding: 8px 14px; }

/* CTA klien */
.cta-klien { text-align: center; }
.cta-klien-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.btn-outline-light { color: var(--white); border-color: rgba(255, 255, 255, 0.35); }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--white); }

/* ============================================
   KLIEN PAGE v2 — added 2026-09-17
   Featured + Grid layout dengan thumbnail browser-frame + description + click-through
   ============================================ */

.nav a.nav-active { color: var(--accent); }

/* Hero klien (sama dari v1) */
.hero-klien { padding: 80px 0 64px; }
.hero-stats-klien { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 24px; max-width: 720px; margin: 40px auto 0; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.hero-stats-klien .stat { text-align: center; padding: 0; border-bottom: 0; }
.hero-stats-klien .stat::after { display: none; }
.hero-stats-klien .stat-value { font-size: 28px; font-weight: 800; color: var(--navy); }
.hero-stats-klien .stat-label { font-size: 11px; color: var(--slate-light); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-top: 4px; }
@media (max-width: 600px) { .hero-stats-klien { grid-template-columns: repeat(2, 1fr); } }

/* Badge */
.badge-featured { display: inline-block; padding: 5px 12px; background: var(--accent); color: var(--navy); font-weight: 800; font-size: 11px; border-radius: 20px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }

/* === FEATURED CARD: 2-column layout, browser-frame thumbnail + description === */
.featured-section { padding: 60px 0 40px; }
.featured-card { display: block; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; max-width: 1000px; margin: 0 auto; border: 1px solid var(--border); text-decoration: none; color: inherit; transition: transform .25s, box-shadow .25s, border-color .25s; cursor: pointer; }
.featured-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.featured-card:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 4px; }
.featured-card-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; align-items: stretch; }
@media (max-width: 820px) { .featured-card-inner { grid-template-columns: 1fr; } }

/* Thumbnail wrapper */
.featured-thumbnail { background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%); padding: 32px; display: flex; align-items: center; justify-content: center; min-height: 320px; }
@media (max-width: 820px) { .featured-thumbnail { padding: 20px; min-height: auto; } }

/* BROWSER FRAME: chrome window style dengan URL bar */
.browser-frame { width: 100%; max-width: 480px; background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5); }
.browser-bar { background: #e2e8f0; padding: 10px 12px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #cbd5e1; }
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }
.browser-url { flex: 1; background: var(--white); padding: 4px 12px; border-radius: 5px; font-size: 12px; color: var(--slate); text-align: center; font-family: ui-monospace, SFMono-Regular, monospace; border: 1px solid #e2e8f0; }
.browser-screenshot { display: block; width: 100%; height: auto; }

/* Description block */
.featured-content { padding: 40px 36px; display: flex; flex-direction: column; }
@media (max-width: 820px) { .featured-content { padding: 32px 28px; } }
.featured-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }
.featured-tag { display: inline-block; padding: 4px 10px; background: #10b981; color: #fff; font-weight: 800; font-size: 11px; border-radius: 6px; letter-spacing: 0.05em; }
.featured-industry { font-size: 12px; color: var(--slate); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.featured-name { font-size: 32px; font-weight: 800; color: var(--navy); margin: 6px 0 14px; letter-spacing: -0.02em; line-height: 1.1; }
@media (max-width: 820px) { .featured-name { font-size: 26px; } }
.featured-description { font-size: 15px; color: var(--slate); margin-bottom: 24px; line-height: 1.6; flex-grow: 1; }

/* Stat row */
.featured-stat-row { display: flex; gap: 24px; margin-bottom: 24px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.featured-stat { text-align: left; }
.featured-stat-value { font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.featured-stat-label { font-size: 11px; color: var(--slate); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; margin-top: 2px; }

/* CTA area */
.featured-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.featured-url { font-size: 14px; color: var(--slate); font-weight: 600; font-family: ui-monospace, SFMono-Regular, monospace; }
.featured-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--accent-text-strong); }
.featured-link svg { transition: transform .2s; }
.featured-card:hover .featured-link svg { transform: translateX(3px); }

/* === UP NEXT: 3-column grid (uniform, placeholders + future real clients) === */
.upnext-section { padding: 60px 0 80px; background: var(--bg-soft); }
.client-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 32px; }
@media (min-width: 900px) { .client-grid { grid-template-columns: repeat(3, 1fr); } }

/* Reusable client card pattern */
.client-card { background: var(--white); border-radius: var(--radius); overflow: hidden; }
.client-card-link { display: flex; flex-direction: column; min-height: 360px; text-decoration: none; color: inherit; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s, transform .2s, box-shadow .2s; }
.client-card-link:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.client-card-link:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 4px; }
.client-thumbnail { aspect-ratio: 16/9; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.client-th img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.client-card-link:hover .client-th img { transform: scale(1.04); }
.client-thumbnail-placeholder { border-bottom: 1px dashed var(--border); color: var(--slate-light); font-size: 56px; font-weight: 200; line-height: 1; }
.client-thumbnail-placeholder span { display: block; }
.client-card-body { padding: 18px 18px 20px; flex-grow: 1; display: flex; flex-direction: column; }
.client-card-industry { font-size: 10px; color: var(--accent-text); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin-bottom: 6px; }
.client-card-name { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.client-card-description { font-size: 13px; color: var(--slate); margin-bottom: 14px; line-height: 1.5; flex-grow: 1; }
.client-card-cta { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; color: var(--accent-text-strong); align-self: flex-start; }

/* CTA section (same as v1) */
.cta-klien { text-align: center; }
.cta-klien-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.btn-outline-light { color: var(--white); border-color: rgba(255, 255, 255, 0.35); }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--white); }
