/* ============================================================
   PT SMCC UTAMA INDONESIA — Static Clone
   Warna & tipografi mengikuti situs asli (sumicon.co.id)
   ============================================================ */

:root {
  --yellow: #FFCD05;
  --yellow-dark: #e6b800;
  --orange-1: #F9A11B;   /* footer gradient start */
  --orange-2: #EF6C00;   /* footer gradient end   */
  --navy: #0b1f33;       /* brand navy (footer)   */
  --navy-2: #0b3b73;     /* brand navy terang (CTA) */
  --ink: #0a0500;        /* heading gelap */
  --text: #504e4a;       /* body text abu   */
  --muted: #7a7876;
  --light: #edeff2;      /* section abu terang */
  --white: #ffffff;
  --header-h: 84px;
  --header-h-scrolled: 66px;
  --radius: 8px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --ease: cubic-bezier(.22,.61,.36,1);
  --font: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;          /* cegah iOS ubah skala font saat rotate */
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent; /* hilangkan kotak highlight biru saat tap (mobile) */
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 40px;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  will-change: transform;
}
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(255,205,5,.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--yellow-dark);
  box-shadow: 0 12px 26px rgba(255,205,5,.45);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: stretch;          /* biar header-inner & nav melar penuh setinggi header */
  background: transparent;
  transition: height .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
  height: var(--header-h-scrolled);
  background: rgba(255,255,255,.97);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  -webkit-backdrop-filter: blur(6px);   /* Safari / iOS */
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex; align-items: stretch; justify-content: space-between;
  width: min(1280px,94%); margin-inline:auto;
  /* underline halus di bawah toolbar (seperti referensi) — selebar container */
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.scrolled .header-inner { border-bottom-color: rgba(0,0,0,.08); }

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { width: 42px; height: 42px; object-fit: contain; transition: transform .4s var(--ease); }
.brand:hover .brand-logo { transform: rotate(-8deg) scale(1.05); }
.brand-name {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .2px;
  color: var(--white);
  transition: color .35s;
  white-space: nowrap;
}
.scrolled .brand-name { color: var(--ink); }

/* Nav — item mengisi penuh tinggi header (seperti referensi) */
.main-nav { display: flex; align-items: stretch; gap: 0; }
.nav-list { display: flex; align-items: stretch; gap: 0; list-style: none; height: 100%; }
.nav-list > li { display: flex; align-items: stretch; }
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 13px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .4px;
  color: rgba(255,255,255,.92);
  transition: color .3s, background .3s;
}
.scrolled .nav-link { color: #3a3a3a; }
/* Underline halus di bawah teks (muncul saat hover) */
.nav-link::after {
  content: "";
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .32s var(--ease);
}
.nav-link:hover::after { transform: scaleX(1); }
/* Item AKTIF = blok kuning penuh setinggi header, teks putih, tanpa sudut membulat */
.nav-link.active {
  background: var(--yellow);
  color: #fff;
  border-radius: 0;
}
.nav-link.active::after { display: none; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%; left: 0;
  min-width: 250px;
  list-style: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateY(6px); }
.dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: .85rem;
  color: #444;
  transition: background .2s, color .2s, padding-left .2s;
}
.dropdown li a:hover { background: var(--yellow); color: var(--ink); padding-left: 26px; }
.caret { width: 14px; height: 14px; margin-left: 6px; transition: transform .3s var(--ease); }
.has-dropdown:hover .caret, .has-dropdown.open .caret { transform: rotate(180deg); opacity: 1; }

/* Tombol CTA "Request PDA" — pill, tidak memenuhi tinggi toolbar */
.nav-cta-item { display: flex; align-items: center; margin-left: 12px; }
.nav-cta {
  display: inline-flex; align-items: center;
  padding: 10px 20px; border-radius: 999px;
  background: var(--yellow); color: #0b1f33;
  font-size: .78rem; font-weight: 800; letter-spacing: .5px; text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(242,183,5,.35);
  transition: transform .2s var(--ease), box-shadow .2s, background .2s;
}
.nav-cta:hover { transform: translateY(-1px); background: #ffd633; color: #0b1f33; box-shadow: 0 6px 20px rgba(242,183,5,.5); }

/* Search */
.search-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.92);
  padding: 8px; margin-left: 10px; display: grid; place-items: center;
  align-self: center;
  transition: color .3s, transform .3s;
}
.scrolled .search-btn { color: #3a3a3a; }
.search-btn:hover { transform: scale(1.15); color: var(--yellow); }
.search-bar {
  position: absolute; top: 100%; left: 0; right: 0;   /* dropdown di bawah toolbar, keluar dari flex-row header */
  max-height: 0; overflow: hidden;
  background: rgba(0,0,0,.85);
  transition: max-height .4s var(--ease);
}
.search-bar.open { max-height: 90px; }
.search-bar input {
  width: 100%; padding: 18px 4px; margin: 6px 0;
  background: transparent; border: none; border-bottom: 2px solid var(--yellow);
  color: #fff; font-size: 1.1rem; outline: none;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; align-self: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 3px; background: #fff; border-radius: 3px; transition: transform .3s, opacity .3s, background .3s; }
.scrolled .hamburger span { background: var(--ink); }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;          /* Safari/iOS: pakai small viewport height, cegah "loncat" address bar */
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-mosaic {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 0;
  z-index: 0;
}
.hero-mosaic img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,25,40,.72), rgba(15,20,35,.82));
}
.hero-content { position: relative; z-index: 2; width: min(820px, 90%); color: #fff; padding-top: var(--header-h); }
.hero-accent {
  display: block;
  width: 70px; height: 5px;
  background: var(--yellow);
  margin: 0 auto 26px;
  border-radius: 3px;
}
.hero-title { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: 1px; margin-bottom: 14px; }
.hero-subtitle { font-size: clamp(1rem, 2.2vw, 1.3rem); font-style: italic; font-weight: 600; margin-bottom: 32px; opacity: .95; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.7); border-radius: 14px; z-index: 3;
}
.scroll-hint span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: #fff; border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(16px); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 90px 0; }
.section-head { margin-bottom: 46px; }
.section-head.center { text-align: center; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: var(--ink); letter-spacing: .5px; }
.section-title.yellow { color: var(--yellow-dark); }
.title-divider { display: block; width: 60px; height: 4px; background: var(--yellow); margin-top: 14px; border-radius: 3px; }
.title-divider.center { margin-inline: auto; }

/* About */
.about { background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.about-text p { margin-bottom: 18px; }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }

/* Services */
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 70px; }
.service-row:last-child { margin-bottom: 0; }
.service-row.reverse .service-media { order: 2; }
.service-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; transition: transform .5s var(--ease); }
.service-media { overflow: hidden; border-radius: var(--radius); }
.service-media:hover img { transform: scale(1.06); }
.service-title { font-size: 1.5rem; font-weight: 800; color: var(--yellow-dark); margin-bottom: 16px; letter-spacing: .5px; }
.service-body p { margin-bottom: 14px; }

/* Stats */
.stats { background: var(--ink); color: #fff; padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-num { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; color: var(--yellow); line-height: 1; }
.stat-plus { font-size: 2rem; font-weight: 800; color: var(--yellow); }
.stat-label { margin-top: 10px; color: rgba(255,255,255,.8); font-size: .95rem; }

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pf-card { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.pf-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform .6s var(--ease); }
.pf-card:hover img { transform: scale(1.1); }
.pf-caption {
  position: absolute; inset: auto 0 0 0;
  padding: 40px 18px 16px;
  color: #fff; font-weight: 700; letter-spacing: .4px;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
  transform: translateY(6px); opacity: .95;
  transition: transform .35s var(--ease);
}
.pf-card:hover .pf-caption { transform: translateY(0); }

/* CTA */
.cta { background: linear-gradient(120deg, var(--navy-2), var(--navy)); text-align: center; color: #fff; }
.cta h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 10px; }
.cta p { margin-bottom: 26px; opacity: .95; }
.cta .btn-primary { background: var(--yellow); color: var(--ink); }
.cta .btn-primary:hover { background: var(--yellow-dark); color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: #fff; border-top: 3px solid var(--yellow); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px; padding: 60px 0 44px; }
.footer-col h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 18px; position: relative; padding-bottom: 8px; }
.footer-col h3.mt { margin-top: 26px; }
.footer-col h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; background: rgba(255,255,255,.7); }
.footer-col p { font-size: .9rem; margin-bottom: 14px; color: rgba(255,255,255,.92); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: .9rem; color: rgba(255,255,255,.9); transition: padding-left .25s, color .25s; }
.footer-col ul li a:hover { padding-left: 8px; color: #fff; }
.footer-bottom { background: rgba(0,0,0,.18); padding: 16px 0; text-align: center; font-size: .85rem; }

/* Newsletter strip */
.footer-newsletter { background: rgba(0,0,0,.15); padding: 26px 0; }
.fn-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.fn-text h3 { color: #fff; font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
.fn-text p { color: rgba(255,255,255,.9); font-size: .9rem; }
.fn-form { display: flex; gap: 10px; flex: 1; min-width: 260px; max-width: 460px; }
.fn-form input { flex: 1; padding: 12px 16px; border: none; border-radius: 40px; font-size: 16px; outline: none; }
.fn-form input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.4); }
.fn-form .btn-primary { white-space: nowrap; box-shadow: none; }
.fn-note { margin-top: 12px; font-weight: 600; font-size: .9rem; }
@media (max-width: 640px) {
  .fn-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .fn-form { max-width: none; }
}

/* ============================================================
   FLOATING WIDGETS
   ============================================================ */
.lang-widget {
  position: fixed; left: 18px; bottom: 18px; z-index: 900;
  background: #fff; border-radius: 6px; box-shadow: var(--shadow);
  padding: 8px 12px; font-size: .85rem; font-weight: 700; color: #333;
  display: flex; align-items: center; gap: 7px;
}
.lang-widget .flag { font-size: 1.1rem; }
.lang-widget .chev { font-size: .7rem; color: #888; }

.to-top {
  position: fixed; left: auto; right: 26px; bottom: 88px; z-index: 940;
  width: 46px; height: 46px; border: none; border-radius: 50%;
  background: var(--yellow); color: var(--ink); cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s, background .3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--yellow-dark); transform: translateY(-4px); }

/* Floating CTA (persisten di semua halaman — NAV-2) */
.floating-cta {
  position: fixed; right: 22px; bottom: 22px; z-index: 950;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.floating-cta .fab-wa {
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.floating-cta .fab-wa:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 10px 28px rgba(0,0,0,.35); }
@media (max-width: 600px) {
  .floating-cta { right: 14px; bottom: 14px; gap: 10px; }
  .floating-cta .fab-wa { width: 48px; height: 48px; }
  .to-top { right: 16px; bottom: 72px; width: 44px; height: 44px; }  /* sejajar di atas WA */
  /* #1 clearance: cegah floating CTA menutup baris terakhir footer di mobile */
  .footer-bottom { padding-bottom: 92px; }
}

/* ============================================================
   SCROLL-REVEAL ANIMATION (terarah: up / left / right / zoom)
   Mereplika Elementor entrance: fadeInUp, fadeInLeft, fadeInRight
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
/* Arah default = up */
[data-reveal],
[data-reveal="up"]    { transform: translateY(42px); }
[data-reveal="down"]  { transform: translateY(-42px); }
[data-reveal="left"]  { transform: translateX(-70px); }   /* masuk dari KIRI → geser ke kanan */
[data-reveal="right"] { transform: translateX(70px); }    /* masuk dari KANAN → geser ke kiri */
[data-reveal="zoom"]  { transform: scale(.86); }
[data-reveal="fade"]  { transform: none; }

[data-reveal].is-visible { opacity: 1; transform: none; }

/* Hormati preferensi reduce-motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-mosaic { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .service-row, .service-row.reverse { grid-template-columns: 1fr; gap: 28px; }
  .service-row.reverse .service-media { order: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 72px 0; }              /* #3 tablet: kurangi ruang berlebih */
  .who-head { margin-bottom: 28px; }

  .hamburger { display: flex; flex-shrink: 0; }
  /* Brand boleh menyusut + ellipsis agar hamburger tak terdorong keluar layar */
  .brand { flex-shrink: 1; min-width: 0; }
  .brand-name { overflow: hidden; text-overflow: ellipsis; }
  .main-nav {
    position: fixed; top: var(--header-h); right: 0; width: min(320px, 84%);
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));   /* tinggi eksplisit — hindari clamp saat scrolled */
    z-index: 999;
    background: #fff; flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 8px 0 40px; gap: 0;
    transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: -12px 0 40px rgba(0,0,0,.18); overflow-y: auto;
  }
  /* Backdrop redup saat menu terbuka (fokus & rapi) */
  body:has(#mainNav.open)::before {
    content: ""; position: fixed; left: 0; right: 0; bottom: 0; top: var(--header-h);
    z-index: 998; background: rgba(10, 20, 35, .45);
  }
  .main-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; height: auto; }
  .nav-list > li { display: block; }
  .nav-link { display: block; height: auto; color: #333; padding: 14px 24px; border-bottom: 1px solid #f0f0f0; }
  .nav-link.active { border-radius: 0; }
  .nav-link::after { display: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; max-height: 0; overflow: hidden; padding: 0; transition: max-height .35s var(--ease); }
  .has-dropdown.open .dropdown { max-height: 220px; }
  .search-btn { align-self: flex-start; margin: 12px 24px; color: #333; }
}

@media (max-width: 560px) {
  .hero-mosaic { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .portfolio-grid, .footer-grid { grid-template-columns: 1fr; }
  .brand-name { font-size: .95rem; letter-spacing: .3px; }
  .brand-logo { width: 36px; height: 36px; }
  .brand { gap: 10px; }
  .section { padding: 56px 0; }              /* #3 mobile */
}

/* ============================================================
   INNER PAGES — Page banner & komponen tambahan
   ============================================================ */
.page-banner {
  position: relative;
  min-height: 42vh;
  min-height: 42svh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.page-banner .banner-bg { position: absolute; inset: 0; z-index: 0; }
.page-banner .banner-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); }
.page-banner::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,25,40,.72), rgba(15,20,35,.85)); }
.page-banner .banner-inner { position: relative; z-index: 2; padding: var(--header-h) 20px 0; }
.page-banner h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: 1px; }
.page-banner .crumb { margin-top: 12px; font-size: .9rem; opacity: .9; }
.page-banner .crumb a { color: var(--yellow); }

/* Definition / profile table */
.profile-table { width: 100%; border-collapse: collapse; }
.profile-table td { padding: 12px 14px; border-bottom: 1px solid #e6e6e6; vertical-align: top; }
.profile-table td:first-child { font-weight: 700; color: var(--ink); width: 40%; }

/* Cards / feature list */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 24px; }
.feature-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow);
  border-top: 4px solid var(--yellow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.12); }
.feature-card h3 { color: var(--yellow-dark); margin-bottom: 10px; font-size: 1.15rem; }
.feature-card .icon { width: 54px; height: 54px; border-radius: 12px; background: var(--yellow); display: grid; place-items: center; margin-bottom: 16px; font-size: 1.5rem; }

/* Bulleted content */
.rich-list { list-style: none; }
.rich-list li { position: relative; padding-left: 28px; margin-bottom: 12px; }
.rich-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--yellow-dark); font-weight: 800; }

/* Certificate badges */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 20px; }
.cert-badge { background: var(--light); border-radius: var(--radius); padding: 26px 18px; text-align: center; font-weight: 700; color: var(--ink); transition: transform .3s var(--ease), background .3s; }
.cert-badge:hover { transform: translateY(-5px); background: var(--yellow); }
.cert-badge span { display: block; font-size: .8rem; color: var(--muted); font-weight: 600; margin-top: 6px; }
.cert-badge:hover span { color: rgba(0,0,0,.6); }

/* CSR timeline */
.timeline { position: relative; max-width: 900px; margin-inline: auto; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 4px; bottom: 4px; width: 3px; background: var(--yellow); }
.timeline-item { position: relative; margin-bottom: 34px; }
.timeline-item::before { content: ""; position: absolute; left: -34px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--yellow); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--yellow); }
.timeline-item .year { font-weight: 800; color: var(--yellow-dark); font-size: 1.1rem; }
.timeline-item p { margin-top: 4px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info li { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-info .ci-icon { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%; background: var(--yellow); display: grid; place-items: center; font-size: 1.1rem; }
.contact-form { background: #fff; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form label { display: block; font-weight: 700; font-size: .85rem; margin-bottom: 6px; color: var(--ink); }
/* Hanya input teks/select/textarea yang full-width; checkbox/radio/file dikecualikan */
.contact-form input:not([type=checkbox]):not([type=radio]):not([type=file]),
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 12px 14px; margin-bottom: 18px;
  border: 1px solid #d9dde2; border-radius: 6px; font-family: inherit; font-size: 16px; background: #fff; transition: border-color .25s, box-shadow .25s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,205,5,.25); }
/* Checkbox & radio: inline dengan label, tidak full-width */
.contact-form input[type=checkbox], .contact-form input[type=radio] {
  width: auto; margin: 0 8px 0 0; vertical-align: middle; accent-color: var(--yellow, #f2b705);
}
.contact-form input[type=file] { width: 100%; margin-bottom: 18px; }
/* Label opsi (checkbox layanan & consent): tidak bold, sejajar */
.contact-form label:has(input[type=checkbox]) { display: block; font-weight: 400; font-size: .95rem; margin-bottom: 8px; color: #445; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/9; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .profile-table td:first-child { width: 46%; }
}

/* ============================================================
   BLOG / NEWS
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  display: flex; flex-direction: column; background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.12); }
.blog-thumb { overflow: hidden; aspect-ratio: 16/10; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .blog-thumb img { transform: scale(1.07); }
.blog-info { padding: 22px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-date { font-size: .78rem; font-weight: 700; color: var(--yellow-dark); text-transform: uppercase; letter-spacing: .5px; }
.blog-info h3 { font-size: 1.15rem; color: var(--ink); margin: 8px 0 10px; line-height: 1.35; }
.blog-info p { font-size: .92rem; margin-bottom: 16px; flex: 1; }
.blog-more { font-weight: 700; color: var(--yellow-dark); font-size: .9rem; }

/* Artikel (isi post) */
.article-body { font-size: 1.02rem; }
.article-body p { margin-bottom: 18px; }
.article-body h2, .article-body h3, .article-body h4 { color: var(--ink); }
.article-body ul, .article-body ol { margin: 0 0 18px; }
.article-body img { border-radius: var(--radius); box-shadow: var(--shadow); margin: 10px 0 20px; }
.article-body blockquote {
  border-left: 4px solid var(--yellow); background: var(--light);
  padding: 14px 20px; margin: 0 0 20px; border-radius: 0 8px 8px 0; font-style: italic; color: #444;
}
.article-body a { color: var(--yellow-dark); font-weight: 700; }
.article-body code { background: var(--light); padding: 2px 7px; border-radius: 4px; font-size: .9em; }
.article-body pre { background: var(--ink); color: #eee; padding: 16px 18px; border-radius: var(--radius); overflow-x: auto; margin-bottom: 20px; }
.article-body pre code { background: none; padding: 0; color: inherit; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===== Who We Support (blok sektor) ===== */
.who-support { background: #fff; }
.who-head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: end; margin-bottom: 36px; }
.kicker { display: inline-block; font-size: .76rem; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--yellow-dark, #c99700); margin-bottom: 12px; }
.who-title { font-size: clamp(1.5rem, 2.6vw, 2.15rem); line-height: 1.15; color: var(--ink, #12233a); margin: 0; font-weight: 800; }
.who-lead { color: #5a6875; line-height: 1.75; margin: 0; }
.who-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.who-card {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 22px 20px 18px; border: 1px solid #e7ebf1; border-radius: 14px;
  background: #fff; text-decoration: none; position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.who-card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.who-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(11,59,115,.12); border-color: transparent; }
.who-card:hover::before { transform: scaleX(1); }
.who-ico { width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; background: rgba(11,59,115,.06); margin-bottom: 14px; }
.who-name { font-weight: 800; color: var(--ink, #12233a); font-size: 1.02rem; margin-bottom: 6px; }
.who-desc { color: #6b7885; font-size: .9rem; line-height: 1.55; margin-bottom: 14px; }
.who-more { margin-top: auto; font-size: .82rem; font-weight: 700; color: #0b3b73; opacity: 0; transform: translateX(-6px); transition: opacity .25s, transform .25s; }
.who-card:hover .who-more { opacity: 1; transform: translateX(0); }
.who-foot { margin-top: 28px; }
.link-arrow { font-weight: 700; color: #0b3b73; text-decoration: none; transition: color .25s; }
.link-arrow:hover { color: var(--yellow-dark, #c99700); }
@media (max-width: 760px) {
  .who-head { grid-template-columns: 1fr; gap: 12px; }
  .who-more { opacity: 1; transform: none; }
}

/* ===== Hero CTA group — rapi & seragam di semua lebar ===== */
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; }
.hero-cta .btn { margin: 0; }
@media (max-width: 520px) {
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .btn { width: min(300px, 82vw); text-align: center; }
}
