/* ════════════════════════════════════════════════════════════════════
   DIREKSI THEME — Mobile First CSS
   Approach: base styles for mobile, scale up with min-width queries
   Breakpoints: 600px (tablet), 1024px (desktop)
   ════════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Colors */
  --c-primary: #1a56db;
  --c-primary-dark: #1e40af;
  --c-primary-light: #eff6ff;
  --c-accent: #10b981;
  --c-danger: #ef4444;
  --c-warning: #f59e0b;
  --c-whatsapp: #25d366;

  --c-text: #0f172a;
  --c-text-muted: #64748b;
  --c-text-light: #94a3b8;

  --c-bg: #f8fafc;
  --c-bg-white: #ffffff;
  --c-bg-subtle: #f1f5f9;

  --c-border: #e2e8f0;
  --c-border-dark: #cbd5e1;

  /* Spacing scale (4px base) */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.25rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;

  /* Typography */
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: var(--font-body);

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;

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

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);

  /* Layout */
  --container-max: 1200px;
  --container-pad: var(--s-4);
  --header-h: 64px;
}

/* ─── HIDDEN ATTRIBUTE — selalu menang ──────────────────────────────── */
[hidden] { display: none !important; }

/* ─── RESET & BASE ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { margin: 0 0 var(--s-3); line-height: 1.25; font-weight: 700; }
h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p { margin: 0 0 var(--s-3); }

a { color: var(--c-primary); text-decoration: none; transition: color .15s; }
a:hover { color: var(--c-primary-dark); }

img { max-width: 100%; height: auto; display: block; }

button { font-family: inherit; cursor: pointer; }

/* Form base */
input, textarea, select {
  font-family: inherit;
  font-size: var(--text-base);
  width: 100%;
  padding: var(--s-3) var(--s-4);
  border: 1px solid var(--c-border-dark);
  border-radius: var(--r);
  background: var(--c-bg-white);
  color: var(--c-text);
  transition: border-color .15s, box-shadow .15s;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12);
}

label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--s-1);
  color: var(--c-text);
}

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

.section { padding: var(--s-12) 0; }

@media (min-width: 1024px) {
  :root { --container-pad: var(--s-6); }
  .section { padding: var(--s-16) 0; }
}

/* ─── BUTTONS ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-5);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--r);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.btn--primary:hover { background: var(--c-primary-dark); color: #fff; border-color: var(--c-primary-dark); }

.btn--outline { color: var(--c-text); border-color: var(--c-border-dark); background: var(--c-bg-white); }
.btn--outline:hover { background: var(--c-bg-subtle); }

.btn--ghost { color: var(--c-text-muted); border-color: transparent; }
.btn--ghost:hover { background: var(--c-bg-subtle); color: var(--c-text); }

.btn--whatsapp { background: var(--c-whatsapp); color: #fff; }
.btn--whatsapp:hover { background: #1ebe57; color: #fff; }

.btn--full { width: 100%; }
.btn--lg { padding: var(--s-4) var(--s-6); font-size: var(--text-base); }
.btn--sm { padding: var(--s-2) var(--s-3); font-size: var(--text-xs); }

/* ─── SITE HEADER ───────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-bg-white);
  border-bottom: 1px solid var(--c-border);
  height: var(--header-h);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--s-4);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--c-primary);
  text-decoration: none;
  line-height: 1;
}

.site-logo img { max-height: 44px; width: auto; display: block; }

/* Responsive logo: full di desktop, icon-only di mobile (<= 640px) */
.site-logo__img--full { display: block; max-height: 44px; }
.site-logo__img--icon { display: none; max-height: 36px; }

@media (max-width: 640px) {
  .site-logo__img--full { display: none; }
  .site-logo__img--icon { display: block; }
}

/* Mobile menu */
.nav-toggle {
  background: none;
  border: 1px solid var(--c-border);
  width: 40px; height: 40px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.site-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--c-bg-white);
  padding: var(--s-6) var(--s-4);
  transform: translateX(100%);
  transition: transform .25s;
  overflow-y: auto;
}

.site-nav.is-open { transform: translateX(0); }

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.site-nav a {
  display: block;
  padding: var(--s-3) var(--s-4);
  font-weight: 600;
  color: var(--c-text);
  border-radius: var(--r);
}

.site-nav a:hover { background: var(--c-bg-subtle); }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

@media (min-width: 1024px) {
  :root { --header-h: 72px; }
  .nav-toggle { display: none; }

  .site-nav {
    position: static;
    transform: none;
    padding: 0;
    overflow: visible;
    background: transparent;
  }

  .site-nav ul {
    flex-direction: row;
    gap: var(--s-1);
  }

  .site-nav a { padding: var(--s-2) var(--s-3); }
}

/* ─── HERO / FRONT PAGE ─────────────────────────────────────────────── */
.hero {
  position: relative;
  /* Fallback warna kalau gambar belum/gagal load */
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
  padding: var(--s-12) 0 var(--s-16);
  text-align: center;
  overflow: hidden;
}

/* Layer 1: gambar latar (SVG cityscape default atau foto upload admin).
   Z-index POSITIF agar muncul di atas background gradient .hero. */
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Layer 2: overlay gelap untuk readability teks. Di atas gambar. */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, calc(var(--hero-overlay, 0.55) * 0.55)) 0%,
    rgba(15, 23, 42, calc(var(--hero-overlay, 0.55) * 0.85)) 100%
  );
  z-index: 1;
}

/* Untuk SVG ilustrasi bawaan, overlay sedikit lebih tipis karena SVG-nya
   sudah punya warna dasar gelap built-in. Untuk foto upload, overlay
   pakai value dari Customizer agar teks tetap kebaca. */
.hero--has-illustration .hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 0.15) 100%
  );
}

/* Layer 3: konten teks + search. Di atas semua layer. */
.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: var(--text-3xl);
  color: #fff;
  margin-bottom: var(--s-3);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  line-height: 1.2;
}

.hero__subtitle {
  font-size: var(--text-base);
  opacity: 0.95;
  margin-bottom: var(--s-6);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.hero__search {
  max-width: 720px;
  margin: 0 auto;
}

.hero__search form {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  background: rgba(255, 255, 255, 0.95);
  padding: var(--s-3);
  border-radius: var(--r-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__search input,
.hero__search select {
  border-color: transparent;
  background: transparent;
}

.hero__search input:focus,
.hero__search select:focus {
  outline: none;
  box-shadow: none;
}

@media (min-width: 1024px) {
  .hero { padding: var(--s-16) 0 var(--s-16); min-height: 480px; display: flex; align-items: center; }
  .hero .container { width: 100%; }
  .hero__title { font-size: var(--text-4xl); }
  .hero__subtitle { font-size: var(--text-lg); }
  .hero__search form { flex-direction: row; align-items: center; padding: var(--s-2); }
}

/* ─── COMPANY CARD (Archive, Taxonomy & Home) ────────────────────── */
.companies-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: var(--s-5);
  margin-top: var(--s-6);
}

@media (min-width: 600px)  { .companies-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .companies-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-6); } }

.company-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--c-bg-white);
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03), 0 12px 28px rgba(15, 23, 42, 0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.company-card:hover {
  transform: translateY(-5px);
  border-color: rgba(148, 163, 184, 0.38);
  box-shadow: 0 22px 44px -20px rgba(15, 23, 42, 0.32), 0 8px 18px rgba(15, 23, 42, 0.07);
}

.company-card--featured {
  border-color: rgba(245, 158, 11, 0.28);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03), 0 16px 36px rgba(245, 158, 11, 0.08);
}

/* Cover kartu memakai rasio yang sama dengan hero single company (5:2).
   Upload 1600x640px akan tampil presisi tanpa letterbox atau distorsi. */
.company-card__cover {
  position: relative;
  aspect-ratio: 5 / 2;
  flex-shrink: 0;
  background: #e2e8f0;
  overflow: visible;
}

.company-card__cover-link {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  background: #e2e8f0;
}

.company-card__cover-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cover-image);
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(1.08);
  transform: scale(1.08);
  opacity: .32;
  z-index: 0;
}

.company-card__cover-link img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}

.company-card:hover .company-card__cover-link img { transform: scale(1.035); }

.company-card__cover-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 75% 15%, rgba(255,255,255,.4), transparent 32%),
    linear-gradient(130deg, #dbeafe, #eff6ff 46%, #e2e8f0);
}

.company-card__cover-placeholder span {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: .08em;
  color: rgba(30, 64, 175, .28);
}

.company-card__cover-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15,23,42,.03) 15%, rgba(15,23,42,.22) 100%);
}

.company-card__badges {
  position: absolute;
  z-index: 4;
  top: var(--s-3);
  right: var(--s-3);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.company-card__badges .badge {
  min-height: 23px;
  padding: 3px 9px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 4px 16px rgba(15,23,42,.09);
  backdrop-filter: blur(6px);
}

.company-card__badges .badge--featured { color: #92400e; }
.company-card__badges .badge--verified { color: #1d4ed8; }

.company-card__logo {
  position: absolute;
  z-index: 5;
  bottom: -27px;
  left: var(--s-4);
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--c-bg-white);
  border: 4px solid var(--c-bg-white);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--c-primary);
}

.company-card__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.company-card__body {
  padding: 2.35rem var(--s-5) var(--s-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.company-card__category {
  display: block;
  max-width: calc(100% - 72px);
  margin-left: 72px;
  margin-top: -1.82rem;
  margin-bottom: 1.05rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--c-primary);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.company-card__title {
  font-size: var(--text-lg);
  line-height: 1.32;
  margin: 0 0 var(--s-2);
  color: var(--c-text);
}

.company-card__title a { color: inherit; }
.company-card__title a:hover { color: var(--c-primary); }

.company-card__excerpt {
  font-size: var(--text-sm);
  line-height: 1.58;
  color: var(--c-text-muted);
  flex: 1;
  margin: 0 0 var(--s-4);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.company-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}

.company-card__location {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: var(--r-full);
  background: var(--c-bg-subtle);
  color: var(--c-text-muted);
  font-size: var(--text-xs);
  line-height: 1.25;
}

.company-card__footer {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding-top: var(--s-4);
  margin-top: auto;
  border-top: 1px solid var(--c-border);
}

.company-card__detail {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--c-primary);
  font-size: var(--text-sm);
  font-weight: 700;
}

.company-card__detail span { transition: transform .2s ease; }
.company-card__detail:hover span { transform: translateX(3px); }

.company-card__whatsapp {
  width: 38px;
  height: 38px;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  color: #fff;
  background: var(--c-whatsapp);
  box-shadow: 0 8px 18px rgba(37, 211, 102, .22);
}

.company-card__whatsapp:hover {
  color: #fff;
  background: #1ebe57;
  transform: translateY(-1px);
}

/* Badges global */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: var(--r-full);
}

.badge--verified { background: #dbeafe; color: #1e40af; }
.badge--featured { background: #fef3c7; color: #92400e; }

/* ─── SINGLE COMPANY ────────────────────────────────────────────────── */
.single-company { padding-bottom: var(--s-12); }

/* Cover / Hero premium */
.sc-header {
  position: relative;
  background: transparent;
  padding-top: var(--s-3);
}

.sc-cover {
  position: relative;
  isolation: isolate;
  height: auto;
  min-height: 184px;
  aspect-ratio: 16 / 9;
  margin-top: 0;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .5), transparent 34%),
    linear-gradient(130deg, #dbeafe 0%, #eff6ff 35%, #e2e8f0 100%);
  box-shadow: 0 18px 42px -25px rgba(15, 23, 42, .5);
}

/* Backdrop membuat cover non-standar tetap tampak rapi; gambar utama tetap tajam. */
.sc-cover::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 0;
  background-image: var(--cover-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(25px) saturate(1.08);
  opacity: .58;
  transform: scale(1.08);
}

/* Border halus memberi finishing seperti hero card premium. */
.sc-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22);
}

.sc-cover--empty::before { display: none; }

.sc-cover__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}

.sc-cover--has-image:hover .sc-cover__image {
  transform: scale(1.012);
}

.sc-cover__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0) 42%, rgba(15, 23, 42, .18) 100%),
    linear-gradient(118deg, rgba(255, 255, 255, .09), transparent 35%);
}

/* Identitas berada pada kartu terpisah di atas cover: logo tidak pernah tertutup gambar. */
.sc-header__inner {
  position: relative;
  z-index: 4;
  margin: -18px var(--s-3) 0;
  padding: var(--s-4);
  border: 1px solid rgba(226, 232, 240, .88);
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 20px 42px -28px rgba(15, 23, 42, .48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.sc-profile {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  min-width: 0;
}

.sc-profile__content { min-width: 0; }

.sc-logo {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  margin-top: 0;
  border-radius: var(--r-lg);
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  box-shadow: 0 8px 20px -12px rgba(15, 23, 42, .38);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--c-primary);
  font-size: var(--text-xl);
  font-weight: 800;
}

.sc-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 4px;
}

.sc-title {
  font-size: var(--text-xl);
  line-height: 1.2;
  margin: 0 0 var(--s-1);
}

.sc-tagline {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.45;
  margin: 0 0 var(--s-2);
}

.sc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-3);
  font-size: var(--text-xs);
  color: var(--c-text-muted);
}

.sc-meta__item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
}

.sc-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-4);
}

.sc-cta .btn {
  flex: 1 1 auto;
  justify-content: center;
}

/* Desktop/tablet mengikuti rasio cover 5:2; cocok dengan file upload 1600×640 px. */
@media (min-width: 600px) {
  .sc-header { padding-top: var(--s-5); }

  .sc-cover {
    aspect-ratio: 5 / 2;
    min-height: 0;
    border-radius: 22px;
  }

  .sc-header__inner {
    margin: -36px var(--s-6) 0;
    padding: var(--s-5);
  }

  .sc-profile { gap: var(--s-4); }

  .sc-logo {
    width: 96px;
    height: 96px;
    border-radius: var(--r-xl);
  }

  .sc-title { font-size: var(--text-2xl); }
  .sc-tagline { font-size: var(--text-base); }
  .sc-meta { font-size: var(--text-sm); }

  .sc-cta .btn { flex: 0 1 auto; }
}

@media (min-width: 1024px) {
  .sc-cover {
    border-radius: 24px;
    box-shadow: 0 26px 58px -32px rgba(15, 23, 42, .54);
  }

  .sc-header__inner {
    margin: -48px var(--s-8) 0;
    padding: var(--s-5) var(--s-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-8);
  }

  .sc-profile { flex: 1 1 auto; }

  .sc-logo {
    width: 112px;
    height: 112px;
  }

  .sc-title { font-size: var(--text-3xl); }

  .sc-cta {
    flex: 0 0 auto;
    margin-top: 0;
  }
}

/* Main layout: MOBILE FIRST - single column, sidebar BELOW content */
.sc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  margin-top: var(--s-6);
}

.sc-sidebar {
  /* Mobile: tidak sticky, ada di bawah content (via DOM order) */
  position: static;
  width: 100%;
}

/* Desktop only: 2 column + sticky sidebar */
@media (min-width: 1024px) {
  .sc-layout {
    grid-template-columns: 1fr 320px;
    gap: var(--s-8);
    align-items: start;
  }

  .sc-sidebar {
    position: sticky;
    top: calc(var(--header-h) + var(--s-4));
  }
}

/* Content sections */
.sc-section {
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  margin-bottom: var(--s-4);
}

@media (min-width: 1024px) {
  .sc-section { padding: var(--s-8); margin-bottom: var(--s-6); }
}

.sc-section__title {
  font-size: var(--text-lg);
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-3);
  border-bottom: 2px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

/* ─── About: Read More Toggle ────────────────────────────────────────
   Penting untuk SEO: konten lengkap tetap di-render full di HTML source.
   Bagian "rest" hanya disembunyikan secara visual via max-height:0
   (BUKAN display:none) — Googlebot akan tetap mengindex seluruh teks.
*/
.sc-about {
  position: relative;
}

.sc-about__intro > *:last-child {
  margin-bottom: 0;
}

/* Default (no JS atau bukan collapsible): semua tampil normal */
.sc-about__rest {
  margin-top: var(--s-3);
}

/* State collapsed: clip dengan max-height (overflow-hidden) — SEO friendly */
.sc-about--collapsible .sc-about__rest {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition:
    max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    margin-top 0.3s ease;
}

/* State expanded */
.sc-about--collapsible.is-expanded .sc-about__rest {
  max-height: 5000px; /* cukup besar untuk konten panjang apa pun */
  opacity: 1;
  margin-top: var(--s-3);
}

/* Gradient fade di atas tombol saat collapsed (visual cue "ada lebih banyak") */
.sc-about__fade {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  height: 60px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    var(--c-bg-white) 95%
  );
  pointer-events: none;
}

.sc-about--collapsible:not(.is-expanded) .sc-about__fade {
  display: block;
}

/* Tombol "Baca selengkapnya" */
.sc-about__toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-4);
  padding: var(--s-2) var(--s-4);
  background: var(--c-primary-light);
  border: 1px solid transparent;
  border-radius: var(--r);
  color: var(--c-primary);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.sc-about__toggle:hover,
.sc-about__toggle:focus-visible {
  background: var(--c-primary);
  color: #fff;
  outline: none;
}

.sc-about__toggle:focus-visible {
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.25);
}

.sc-about__toggle-icon {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: var(--text-base);
  line-height: 1;
}

.sc-about--collapsible.is-expanded .sc-about__toggle-icon {
  transform: rotate(180deg);
}

/* Sidebar: Contact Card */
.contact-card {
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
}

.contact-card__title {
  font-size: var(--text-base);
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--c-border);
}

.contact-card__cta {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}

/* Mobile: tombol kontak horizontal */
@media (max-width: 599px) {
  .contact-card__cta { flex-direction: row; flex-wrap: wrap; }
  .contact-card__cta .btn--whatsapp { flex: 1 1 100%; }
  .contact-card__cta .btn { flex: 1 1 calc(50% - var(--s-2)); }
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.contact-list li {
  display: flex;
  gap: var(--s-3);
  font-size: var(--text-sm);
}

.contact-list__icon { font-size: 1.1rem; flex-shrink: 0; }

.contact-list strong {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-card__map {
  margin-top: var(--s-4);
  border-radius: var(--r);
  overflow: hidden;
}

.contact-card__map iframe { display: block; width: 100%; }

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}

@media (min-width: 600px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }

.product-card {
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--c-bg-white);
}

.product-card__image {
  aspect-ratio: 4/3;
  background: var(--c-bg-subtle);
  overflow: hidden;
}

.product-card__image img { width: 100%; height: 100%; object-fit: cover; }

.product-card__body { padding: var(--s-4); flex: 1; display: flex; flex-direction: column; }
.product-card__title { font-size: var(--text-base); margin-bottom: var(--s-1); }
.product-card__price { font-size: var(--text-lg); font-weight: 700; color: var(--c-primary); margin-bottom: var(--s-2); }
.product-card__desc { font-size: var(--text-sm); color: var(--c-text-muted); flex: 1; }

/* Social links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-3);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r);
  background: var(--c-bg-subtle);
  color: var(--c-text);
  font-size: 1.1rem;
}

.social-link:hover { background: var(--c-primary); color: #fff; }

/* ─── ARCHIVE / SEARCH ──────────────────────────────────────────────── */
.archive-header {
  background: var(--c-bg-white);
  padding: var(--s-8) 0;
  border-bottom: 1px solid var(--c-border);
}

.archive-header__title { font-size: var(--text-2xl); margin-bottom: var(--s-1); }
.archive-header__desc { color: var(--c-text-muted); margin: 0; }

@media (min-width: 1024px) {
  .archive-header { padding: var(--s-12) 0; }
  .archive-header__title { font-size: var(--text-3xl); }
}

.archive-toolbar {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin: var(--s-6) 0 var(--s-4);
}

@media (min-width: 600px) {
  .archive-toolbar { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ─── FOOTER ────────────────────────────────────────────────────────── */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: var(--s-12) 0 var(--s-6);
  margin-top: var(--s-12);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
}

@media (min-width: 600px)  { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 2fr repeat(3, 1fr); } }

.site-footer h3 {
  color: #fff;
  font-size: var(--text-base);
  margin-bottom: var(--s-4);
}

.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.site-footer a { color: #cbd5e1; font-size: var(--text-sm); }
.site-footer a:hover { color: #fff; }

.site-footer__bottom {
  border-top: 1px solid #1e293b;
  padding-top: var(--s-4);
  margin-top: var(--s-8);
  font-size: var(--text-xs);
  color: #94a3b8;
  text-align: center;
}

/* ─── BREADCRUMB ────────────────────────────────────────────────────── */
.breadcrumb {
  padding: var(--s-3) 0;
  font-size: var(--text-xs);
  color: var(--c-text-muted);
}

.breadcrumb a { color: var(--c-text-muted); }
.breadcrumb a:hover { color: var(--c-primary); }
.breadcrumb-separator { margin: 0 var(--s-2); opacity: 0.5; }

/* ─── PAGINATION ────────────────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--s-2);
  margin-top: var(--s-8);
  flex-wrap: wrap;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--s-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  background: var(--c-bg-white);
  color: var(--c-text);
  font-size: var(--text-sm);
}

.pagination .page-numbers.current { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.pagination .page-numbers:hover:not(.current) { background: var(--c-bg-subtle); }

/* ─── 404 ───────────────────────────────────────────────────────────── */
.error-404 {
  text-align: center;
  padding: var(--s-16) var(--s-4);
}

.error-404__code {
  font-size: 6rem;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
  margin: 0 0 var(--s-4);
}

.error-404__title { font-size: var(--text-2xl); margin-bottom: var(--s-3); }
.error-404__desc { color: var(--c-text-muted); margin-bottom: var(--s-6); }

/* ─── PRINT ─────────────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .sc-cta, .contact-card__cta, .nav-toggle { display: none !important; }
  body { background: #fff; }
}
/* ════════════════════════════════════════════════════════════════════
   LOCATION ARCHIVE (taxonomy-company_location.php)
   ════════════════════════════════════════════════════════════════════ */

.location-hero__eyebrow {
  display: inline-block;
  margin: 0 0 var(--s-2);
  padding: var(--s-1) var(--s-3);
  background: var(--c-primary-light);
  color: var(--c-primary-dark);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--r-full);
  letter-spacing: 0.02em;
}

.location-hero__title { margin-top: 0; }

.location-hero__desc {
  max-width: 70ch;
  font-size: var(--text-base);
  line-height: 1.6;
}

.location-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
  margin: var(--s-6) 0 0;
  padding: 0;
  list-style: none;
}

.location-hero__stat {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.location-hero__stat strong {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--c-primary);
}

.location-hero__stat span {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
}

/* ─── Section helpers ────────────────────────────────────────────── */
.location-archive > section { margin-top: var(--s-10); }
.location-archive > section:first-child { margin-top: var(--s-8); }

.section-title {
  font-size: var(--text-xl);
  margin: 0 0 var(--s-4);
  font-weight: 700;
  color: var(--c-text);
}

@media (min-width: 1024px) {
  .section-title { font-size: var(--text-2xl); }
}

/* ─── Sub-lokasi chips ───────────────────────────────────────────── */
.location-children__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--s-2);
  padding: 0;
  margin: 0;
  list-style: none;
}

.location-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-4);
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  color: var(--c-text);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all .15s;
}

.location-chip:hover {
  border-color: var(--c-primary);
  background: var(--c-primary-light);
  color: var(--c-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.location-chip__count {
  display: inline-block;
  min-width: 24px;
  padding: 0 var(--s-2);
  background: var(--c-bg-subtle);
  color: var(--c-text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
  text-align: center;
  border-radius: var(--r-full);
}

.location-chip:hover .location-chip__count {
  background: var(--c-primary);
  color: #fff;
}

/* ─── Filter kategori (chip pill row) ────────────────────────────── */
.location-filter__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  padding: 0;
  margin: 0;
  list-style: none;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  color: var(--c-text);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all .15s;
  white-space: nowrap;
}

.filter-chip:hover {
  border-color: var(--c-primary);
  color: var(--c-primary-dark);
}

.filter-chip.is-active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}

.filter-chip__count {
  font-size: var(--text-xs);
  font-weight: 600;
  opacity: .75;
}

.filter-chip.is-active .filter-chip__count { opacity: 1; }

/* ─── FAQ (AEO) ──────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.faq-item {
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .15s;
}

.faq-item[open] { border-color: var(--c-primary-light); }

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4);
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  list-style: none;
}

.faq-item__q::-webkit-details-marker { display: none; }

.faq-item__q::after {
  content: "+";
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--c-primary);
  transition: transform .2s;
  flex-shrink: 0;
}

.faq-item[open] .faq-item__q::after {
  content: "−";
  transform: rotate(0deg);
}

.faq-item__a {
  padding: 0 var(--s-4) var(--s-4);
  color: var(--c-text-muted);
  line-height: 1.6;
}

.faq-item__a p { margin: 0; }

/* ─── A11y helper ────────────────────────────────────────────────── */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   REVIEWS — star display, summary card, list, form
   ═══════════════════════════════════════════════════════════════════ */

/* ── Star display (read-only, supports decimals like 4.5) ──────────
   Trick: dua layer ★★★★★ — bawah abu-abu, atas emas dengan width
   proporsional terhadap --rating (0–5). Bersih, no SVG, no JS. */
.star-display {
  --rating: 0;
  --pct: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: 1em;
  line-height: 1;
  position: relative;
  color: #e0e0e0;
  letter-spacing: 2px;
  font-family: Arial, sans-serif; /* konsisten render di semua OS */
}
.star-display::before {
  content: "★★★★★";
}
.star-display::after {
  content: "★★★★★";
  position: absolute;
  inset: 0;
  width: var(--pct);
  overflow: hidden;
  color: #ffb800;
  white-space: nowrap;
}

/* ── Rating badge di header single company ──────────────────────── */
.sc-meta__rating {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}
.sc-meta__rating:hover { color: var(--c-primary); }
.sc-meta__rating .star-display { font-size: 14px; }
.sc-meta__rating strong { color: var(--c-text); }

/* ── Summary card (di atas list reviews) ──────────────────────────── */
.review-summary {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-5);
  background: linear-gradient(135deg, #fff8e8 0%, #fff 100%);
  border: 1px solid #f5d56a;
  border-radius: var(--r-md);
  margin-bottom: var(--s-5);
}
.review-summary__score {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1;
}
.review-summary__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-summary__meta .star-display { font-size: 22px; }
.review-summary__count {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
}
.review-empty {
  padding: var(--s-4);
  text-align: center;
  color: var(--c-text-muted);
  background: var(--c-bg-light, #f8f9fa);
  border-radius: var(--r-md);
  margin-bottom: var(--s-5);
}

/* ── Notice setelah submit ────────────────────────────────────────── */
.review-notice {
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  margin-bottom: var(--s-4);
  font-size: var(--text-sm);
  border: 1px solid transparent;
}
.review-notice--success { background: #ecfdf5; border-color: #6ee7b7; color: #065f46; }
.review-notice--error   { background: #fef2f2; border-color: #fca5a5; color: #991b1b; }

/* ── List ulasan ──────────────────────────────────────────────────── */
.review-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.review-item {
  display: flex;
  gap: var(--s-3);
  padding: var(--s-4);
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}
.review-item__avatar {
  flex: 0 0 40px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-base);
}
.review-item__body { flex: 1; min-width: 0; }
.review-item__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-3);
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.review-item__author { color: var(--c-text); }
.review-item__date   { font-size: var(--text-xs); color: var(--c-text-muted); }
.review-item .star-display { font-size: 14px; margin-bottom: var(--s-2); display: inline-block; }
.review-item__content {
  color: var(--c-text);
  line-height: 1.6;
  font-size: var(--text-sm);
}
.review-item__content p { margin: 0; }
.review-item__content p + p { margin-top: var(--s-2); }

/* ── Form Submit Review ───────────────────────────────────────────── */
.review-form-wrap {
  padding: var(--s-5);
  background: var(--c-bg-light, #f8f9fa);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}
.review-form-title {
  margin: 0 0 var(--s-2);
  font-size: var(--text-lg);
  color: var(--c-text);
}
.review-form-intro {
  margin: 0 0 var(--s-4);
  font-size: var(--text-sm);
  color: var(--c-text-muted);
}
.review-form__field { margin-bottom: var(--s-4); }
.review-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
@media (max-width: 600px) {
  .review-form__row { grid-template-columns: 1fr; }
}
.review-form__label {
  display: block;
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: 6px;
  color: var(--c-text);
}
.review-form__label .req { color: #dc2626; }
.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
  width: 100%;
  padding: var(--s-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm, 6px);
  font-size: var(--text-base);
  font-family: inherit;
  background: var(--c-bg-white);
  transition: border-color .15s, box-shadow .15s;
}
.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}
.review-form textarea { resize: vertical; min-height: 100px; }
.review-form__loggedin {
  margin: 0 0 var(--s-4);
  padding: var(--s-3);
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: var(--r-sm, 6px);
  font-size: var(--text-sm);
  color: #065f46;
}

/* ── Star input (radio buttons reverse-order trick) ───────────────── */
.star-input {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}
.star-input input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.star-input label {
  font-size: 32px;
  line-height: 1;
  color: #e0e0e0;
  cursor: pointer;
  transition: color .15s, transform .1s;
  user-select: none;
}
.star-input label:hover,
.star-input label:hover ~ label,
.star-input input:checked ~ label {
  color: #ffb800;
}
.star-input label:hover { transform: scale(1.1); }
.star-input input:focus-visible + label {
  outline: 2px dashed var(--c-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Section title count (untuk "(12)" di "Ulasan (12)") ─────────── */
.sc-section__count {
  font-weight: 400;
  font-size: 0.85em;
  color: var(--c-text-muted);
}

/* ════════════════════════════════════════════════════════════════════
   DIREKSI — Pages: About & Contact
   ════════════════════════════════════════════════════════════════════ */

/* ─── Section base (digunakan About & Contact) ────────────────────── */
.direksi-section {
  padding: var(--s-10) 0;
}
.direksi-section--alt { background: var(--c-bg-subtle); }
@media (min-width: 1024px) {
  .direksi-section { padding: var(--s-16) 0; }
}

/* ─── Notice (success/error) ─────────────────────────────────────── */
.direksi-notice {
  padding: var(--s-4);
  border: 1px solid;
  border-radius: var(--r-md);
  margin: 0 0 var(--s-6);
  font-weight: 500;
}
.direksi-notice--success { background: #ecfdf5; border-color: #10b981; color: #065f46; }
.direksi-notice--error   { background: #fef2f2; border-color: #ef4444; color: #991b1b; }
.direksi-notice--info    { background: #eff6ff; border-color: #1a56db; color: #1e3a8a; }

/* ════════════════════════════════════════════════════════════════════
   ABOUT US PAGE
   ════════════════════════════════════════════════════════════════════ */

.direksi-about-hero {
  padding: var(--s-12) 0 var(--s-10);
  text-align: center;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
  background-size: cover;
  background-position: center;
}
.direksi-about-hero--image { background-color: #1e293b; }
.direksi-about-hero__title {
  color: #fff;
  font-size: var(--text-4xl);
  margin: 0 0 var(--s-3);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.direksi-about-hero__subtitle {
  color: rgba(255,255,255,0.92);
  font-size: var(--text-lg);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .direksi-about-hero { padding: var(--s-16) 0; }
  .direksi-about-hero__title { font-size: 3rem; }
}

/* ─── Story ───────────────────────────────────────────────────────── */
.direksi-about-story {
  max-width: 760px;
  margin: 0 auto;
}
.direksi-about-story .direksi-section__title {
  text-align: center;
  margin-bottom: var(--s-6);
}
.direksi-about-story__content {
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--c-text);
}
.direksi-about-story__content p { margin: 0 0 var(--s-4); }

/* ─── Stats ───────────────────────────────────────────────────────── */
.direksi-about-stats {
  background: var(--c-primary);
  color: #fff;
  padding: var(--s-10) 0;
}
.direksi-about-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
  text-align: center;
}
@media (min-width: 768px) {
  .direksi-about-stats__grid { grid-template-columns: repeat(4, 1fr); }
}
.direksi-about-stat__number {
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--s-2);
  letter-spacing: -0.02em;
}
.direksi-about-stat__label {
  font-size: var(--text-sm);
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── Mission & Vision ────────────────────────────────────────────── */
.direksi-about-mv {
  display: grid;
  gap: var(--s-5);
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .direksi-about-mv { grid-template-columns: 1fr 1fr; }
}
.direksi-about-mv__card {
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s;
}
.direksi-about-mv__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.direksi-about-mv__icon {
  font-size: 2.5rem;
  margin-bottom: var(--s-2);
}
.direksi-about-mv__title {
  color: var(--c-primary);
  margin-bottom: var(--s-3);
  font-size: var(--text-xl);
}
.direksi-about-mv__card p {
  color: var(--c-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── Values ──────────────────────────────────────────────────────── */
.direksi-about-values {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 600px)  { .direksi-about-values { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .direksi-about-values { grid-template-columns: repeat(3, 1fr); } }
.direksi-about-value {
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  text-align: center;
  transition: border-color .15s, transform .15s;
}
.direksi-about-value:hover {
  border-color: var(--c-primary);
  transform: translateY(-2px);
}
.direksi-about-value__icon {
  font-size: 2.5rem;
  margin-bottom: var(--s-3);
}
.direksi-about-value__title {
  margin-bottom: var(--s-2);
  font-size: var(--text-lg);
  color: var(--c-text);
}
.direksi-about-value__desc {
  color: var(--c-text-muted);
  line-height: 1.6;
  margin: 0;
  font-size: var(--text-sm);
}

/* ─── Team ────────────────────────────────────────────────────────── */
.direksi-about-team {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .direksi-about-team { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .direksi-about-team { grid-template-columns: repeat(3, 1fr); } }
.direksi-about-member {
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  text-align: center;
}
.direksi-about-member__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--s-4);
  display: block;
  border: 4px solid var(--c-bg-subtle);
}
.direksi-about-member__photo--placeholder {
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 700;
}
.direksi-about-member__name {
  margin-bottom: 4px;
  font-size: var(--text-lg);
}
.direksi-about-member__role {
  color: var(--c-primary);
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: var(--s-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.direksi-about-member__bio {
  color: var(--c-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}

/* ─── CTA ─────────────────────────────────────────────────────────── */
.direksi-about-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  text-align: center;
  padding: var(--s-12) 0;
}
.direksi-about-cta__title {
  color: #fff;
  font-size: var(--text-3xl);
  margin: 0 0 var(--s-3);
  font-weight: 800;
}
.direksi-about-cta__subtitle {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-lg);
  margin: 0 0 var(--s-6);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.direksi-about-cta .btn { box-shadow: 0 8px 20px -8px rgba(26,86,219,0.6); }

/* ════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════════════════ */

.direksi-contact-hero {
  padding: var(--s-10) 0;
  text-align: center;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
}
.direksi-contact-hero__title {
  color: #fff;
  margin: 0 0 var(--s-3);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.direksi-contact-hero__subtitle {
  color: rgba(255,255,255,0.92);
  font-size: var(--text-lg);
  max-width: 680px;
  margin: 0 auto;
}

/* ─── Layout grid ─────────────────────────────────────────────────── */
.direksi-contact-grid {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .direksi-contact-grid { grid-template-columns: 360px 1fr; gap: var(--s-8); }
}

/* ─── Info panel ──────────────────────────────────────────────────── */
.direksi-contact-info {
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  height: fit-content;
}
.direksi-contact-info__title {
  font-size: var(--text-xl);
  margin: 0 0 var(--s-5);
  padding-bottom: var(--s-3);
  border-bottom: 2px solid var(--c-primary);
  color: var(--c-text);
}
.direksi-contact-item {
  display: flex;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
  align-items: flex-start;
}
.direksi-contact-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--c-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.direksi-contact-item__body { min-width: 0; flex: 1; }
.direksi-contact-item__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}
.direksi-contact-item__value {
  color: var(--c-text);
  font-weight: 500;
  word-break: break-word;
}
a.direksi-contact-item__value:hover { color: var(--c-primary); }
.direksi-contact-item__value--multiline {
  font-weight: 400;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--c-text-muted);
}

/* ─── Social ──────────────────────────────────────────────────────── */
.direksi-contact-social {
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-border);
  margin-top: var(--s-4);
}
.direksi-contact-social__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-2);
}
.direksi-contact-social__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--c-bg-subtle);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  color: var(--c-text);
  transition: background .15s, transform .15s;
}
.direksi-contact-social__link:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-1px);
}

/* ─── Form ────────────────────────────────────────────────────────── */
.direksi-contact-form-wrap {
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
}
.direksi-contact-form__title {
  margin: 0 0 var(--s-2);
  font-size: var(--text-2xl);
}
.direksi-contact-form__sub {
  color: var(--c-text-muted);
  margin: 0 0 var(--s-5);
  font-size: var(--text-sm);
}
.direksi-form-row {
  display: grid;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}
@media (min-width: 600px) {
  .direksi-form-row { grid-template-columns: 1fr 1fr; }
}
.direksi-form-field { margin-bottom: var(--s-4); display: flex; flex-direction: column; }
.direksi-form-field label {
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: 6px;
  color: var(--c-text);
}
.direksi-form-field label .req { color: var(--c-danger); }
.direksi-form-field input,
.direksi-form-field textarea {
  width: 100%;
  padding: var(--s-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  font-size: var(--text-base);
  font-family: inherit;
  background: var(--c-bg-white);
  transition: border-color .15s, box-shadow .15s;
}
.direksi-form-field input:focus,
.direksi-form-field textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.15);
}
.direksi-form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.direksi-form-hint {
  display: block;
  margin-top: 4px;
  font-size: var(--text-xs);
  color: var(--c-text-light);
}
.direksi-form-submit { margin-top: var(--s-2); }
.direksi-form-submit .btn { min-width: 200px; }
.direksi-form-privacy {
  margin-top: var(--s-3);
  font-size: var(--text-sm);
  color: var(--c-text-muted);
}

.direksi-contact-form-disabled {
  text-align: center;
  padding: var(--s-8) var(--s-4);
  color: var(--c-text-muted);
}
.direksi-contact-form-disabled h2 { color: var(--c-text); margin-bottom: var(--s-3); }

/* ─── Map ─────────────────────────────────────────────────────────── */
.direksi-contact-map { margin-top: var(--s-8); }
.direksi-contact-map__title {
  margin-bottom: var(--s-4);
  font-size: var(--text-2xl);
  text-align: center;
}
.direksi-contact-map__embed {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.direksi-contact-map__embed iframe {
  width: 100% !important;
  height: 360px !important;
  border: 0 !important;
  display: block;
}
@media (min-width: 768px) {
  .direksi-contact-map__embed iframe { height: 420px !important; }
}


/* ═══════════════════════════════════════════════════════════════════
   SINGLE POST — Premium 2-column layout with sticky featured sidebar
   - Mobile first  : single column, sidebar mengalir di bawah konten
   - Desktop ≥1024 : grid 2 kolom, sidebar sticky di kanan
   - SEO friendly  : semantic HTML, heading hierarchy terjaga, fast paint
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Page container override khusus single post ─── */
.single .container > .post-layout {
  /* margin top sudah dari container padding parent */
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: start;
}

.post-main { min-width: 0; }

.post-sidebar {
  position: static;
  width: 100%;
  min-width: 0;
}

/* Sembunyikan sidebar jika kosong (jaga-jaga) */
.post-sidebar:empty { display: none; }

@media (min-width: 1024px) {
  .post-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: var(--s-8);
  }

  .post-sidebar {
    position: sticky;
    top: calc(var(--header-h) + var(--s-4));
    /* Maksimal tinggi viewport agar bisa scroll di dalam sidebar */
    max-height: calc(100vh - var(--header-h) - var(--s-6));
    overflow-y: auto;
    overscroll-behavior: contain;
    /* Scrollbar yang elegan */
    scrollbar-width: thin;
    scrollbar-color: var(--c-border-dark) transparent;
    padding-right: 2px; /* ruang untuk scrollbar */
  }
  .post-sidebar::-webkit-scrollbar { width: 6px; }
  .post-sidebar::-webkit-scrollbar-track { background: transparent; }
  .post-sidebar::-webkit-scrollbar-thumb {
    background: var(--c-border-dark);
    border-radius: 3px;
  }
  .post-sidebar::-webkit-scrollbar-thumb:hover { background: var(--c-text-muted); }
}

/* ─── Article card ─── */
.post-article {
  background: var(--c-bg-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.post-header {
  padding: var(--s-6) var(--s-5) 0;
}
@media (min-width: 768px) {
  .post-header { padding: var(--s-8) var(--s-8) 0; }
}

.post-header__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-primary);
  background: var(--c-primary-light);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: var(--s-4);
  transition: all .15s;
}
.post-header__category:hover {
  background: var(--c-primary);
  color: #fff;
}

.post-header__title {
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-5);
  color: var(--c-text);
  font-weight: 800;
}

.post-header__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--c-border);
}

.post-header__author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--c-text);
}
.post-header__author img,
.post-header__author .avatar {
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: block;
}

.post-header__sep { opacity: 0.4; margin: 0 2px; }

.post-thumbnail {
  margin: var(--s-5) 0 0;
  overflow: hidden;
  background: var(--c-bg);
}
@media (min-width: 768px) {
  .post-thumbnail { margin: var(--s-6) 0 0; }
}
.post-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

.post-content {
  padding: var(--s-6) var(--s-5);
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--c-text);
}
@media (min-width: 768px) {
  .post-content { padding: var(--s-8); font-size: 1.1rem; }
}
.post-content > * + * { margin-top: var(--s-4); }
.post-content > h2,
.post-content > h3,
.post-content > h4 {
  margin-top: var(--s-8);
  margin-bottom: var(--s-3);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.post-content > h2 { font-size: 1.5rem; font-weight: 700; }
.post-content > h3 { font-size: 1.25rem; font-weight: 700; }
.post-content > h4 { font-size: 1.1rem; font-weight: 600; }
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r);
  margin: var(--s-2) 0;
}
.post-content > ul,
.post-content > ol { padding-left: var(--s-6); }
.post-content > ul li,
.post-content > ol li { margin-bottom: var(--s-2); }
.post-content > blockquote {
  border-left: 3px solid var(--c-primary);
  padding: var(--s-3) var(--s-4);
  background: var(--c-primary-light);
  border-radius: 0 var(--r) var(--r) 0;
  font-style: italic;
  color: var(--c-text);
  margin-left: 0;
}
.post-content a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.post-content a:hover { color: var(--c-primary-dark); text-decoration-thickness: 2px; }

.post-footer {
  padding: var(--s-5) var(--s-5) var(--s-6);
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
}
@media (min-width: 768px) {
  .post-footer { padding: var(--s-5) var(--s-8) var(--s-6); }
}
.post-footer__label {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--c-text-muted);
}
.post-footer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.post-footer__tag {
  font-size: var(--text-xs);
  padding: 5px 11px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  color: var(--c-text-muted);
  transition: all .15s;
  font-weight: 500;
}
.post-footer__tag:hover {
  background: var(--c-primary-light);
  color: var(--c-primary);
  border-color: var(--c-primary);
}

/* ─── Post navigation (prev/next) ─── */
.post-nav {
  margin-top: var(--s-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
@media (min-width: 640px) {
  .post-nav { grid-template-columns: 1fr 1fr; }
}
.post-nav .nav-links { display: contents; }
.post-nav a {
  display: block;
  padding: var(--s-4) var(--s-5);
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: all .2s;
  text-decoration: none;
}
.post-nav a:hover {
  border-color: var(--c-primary);
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.08);
  transform: translateY(-2px);
}
.post-nav .nav-next a { text-align: right; }
.post-nav__label {
  display: block;
  font-size: var(--text-xs);
  color: var(--c-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.post-nav__title {
  display: block;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.35;
}

/* ═══════════════════════════════════════════════════════════════════
   FEATURED COMPANIES — Premium widget
   ═══════════════════════════════════════════════════════════════════ */

.post-sidebar__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.featured-widget {
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  position: relative;
}

/* Accent bar di atas — sentuhan premium */
.featured-widget::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary) 0%, #3b82f6 50%, var(--c-primary-dark) 100%);
}

.featured-widget__header {
  padding: var(--s-5) var(--s-5) var(--s-4);
  border-bottom: 1px solid var(--c-border);
}
.featured-widget__title {
  font-size: 0.95rem;
  margin: 0 0 4px;
  color: var(--c-text);
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.featured-widget__subtitle {
  font-size: 12px;
  color: var(--c-text-muted);
  margin: 0;
  line-height: 1.5;
}

.featured-widget__list {
  list-style: none;
  margin: 0;
  padding: var(--s-2) 0;
}
.featured-widget__item {
  position: relative;
}

.featured-widget__link {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-5);
  color: var(--c-text);
  transition: background .15s, padding-left .2s;
  text-decoration: none;
  position: relative;
}
.featured-widget__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--c-primary);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.featured-widget__link:hover {
  background: var(--c-bg);
  color: var(--c-text);
  padding-left: calc(var(--s-5) + 4px);
}
.featured-widget__link:hover::before { transform: scaleY(1); }

.featured-widget__logo {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-bg) 0%, var(--c-bg-white) 100%);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--c-primary);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}
.featured-widget__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-widget__initials {
  display: block;
  letter-spacing: -0.02em;
}

.featured-widget__body {
  flex: 1;
  min-width: 0;
}

.featured-widget__name {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--c-text);
  /* Clamp 2 baris — nama panjang tetap rapi */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.005em;
}
.featured-widget__verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  margin-left: 4px;
  vertical-align: 2px;
  font-weight: 700;
  line-height: 1;
}

.featured-widget__meta {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
  color: var(--c-text-muted);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.featured-widget__cat {
  font-weight: 500;
  color: var(--c-primary);
}
.featured-widget__dot { margin: 0 5px; opacity: 0.5; }
.featured-widget__loc {
  font-size: 11px;
}

.featured-widget__footer {
  padding: var(--s-3) var(--s-5);
  border-top: 1px solid var(--c-border);
  background: var(--c-bg);
  text-align: center;
}
.featured-widget__all {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .15s, color .15s;
}
.featured-widget__all:hover {
  color: var(--c-primary-dark);
  gap: 8px;
}

/* ─── Sidebar CTA — Premium gradient card ─── */
.sidebar-cta {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.15) 0%, transparent 60%),
    linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
  padding: var(--s-5);
  border-radius: var(--r-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.15);
}
.sidebar-cta::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.sidebar-cta__title {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 var(--s-2);
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.sidebar-cta__desc {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  margin: 0 0 var(--s-4);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.sidebar-cta__btn {
  background: #fff;
  color: var(--c-primary);
  border-color: #fff;
  width: 100%;
  font-weight: 700;
  position: relative;
  z-index: 1;
  font-size: 14px;
}
.sidebar-cta__btn:hover {
  background: var(--c-bg);
  color: var(--c-primary-dark);
  border-color: var(--c-bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
