/* Magau Group — Design tokens (redesign 2026) */
:root {
  /* Brand */
  --magau-red: #A91D2A;
  --magau-red-700: #8a1722;
  --magau-red-100: #f3dadc;
  --magau-green: #4F7942;
  --magau-green-700: #3e5f34;
  --magau-green-100: #dde6d8;

  /* Sub-division accents */
  --digital: #1E40AF;
  --digital-100: #dde4f4;
  --mentorbox: #0F766E;
  --mentorbox-100: #d2e6e3;
  --eduka: #4338CA;
  --eduka-100: #e0e7ff;
  --kreatif: #D97706;
  --kreatif-100: #fae9d3;

  /* Neutrals */
  --cream: #FAF7F0;
  --cream-2: #F5F0E6;
  --cream-3: #EFE9DB;
  --warm-white: #FFFFFF;
  --ink: #1A1A1A;
  --ink-2: #2D1F1A;
  --stone: #8B8275;
  --stone-2: #6E6759;
  --border: #E8E2D5;
  --border-2: #D6CFBE;

  /* Type */
  --font-display: "Fraunces", "GT Sectra", Georgia, serif;
  --font-body: "Inter", "Söhne", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;

  /* Shadow */
  --shadow-1: 0 1px 3px rgba(26, 26, 26, 0.06), 0 1px 2px rgba(26, 26, 26, 0.04);
  --shadow-2: 0 8px 24px rgba(26, 26, 26, 0.08);
  --shadow-3: 0 24px 48px rgba(26, 26, 26, 0.14);

  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

/* Display type */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
  margin: 0;
}

.display-xl {
  font-size: clamp(48px, 6.5vw, 96px);
}

.display-lg {
  font-size: clamp(40px, 5vw, 72px);
}

.display-md {
  font-size: clamp(32px, 3.6vw, 52px);
}

.display-sm {
  font-size: clamp(26px, 2.6vw, 36px);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-2);
}

.muted {
  color: var(--stone-2);
}

.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
}

em.italic {
  color: var(--magau-red);
  font-style: italic;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.container-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.container-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 120ms var(--ease), color 120ms var(--ease), border-color 120ms var(--ease), transform 120ms var(--ease), box-shadow 200ms var(--ease);
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  color: var(--ink);
}

.btn-primary {
  background: var(--magau-red);
  color: #fff;
  border-color: var(--magau-red);
}

.btn-primary:hover {
  background: var(--magau-red-700);
  border-color: var(--magau-red-700);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(169, 29, 42, 0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}

.btn-ghost:hover {
  color: var(--magau-red);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
}

/* Card */
.card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 120ms var(--ease);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: var(--border-2);
}

a.card {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* Chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--cream-3);
  color: var(--ink-2);
  letter-spacing: 0.02em;
}

.chip-red {
  background: var(--magau-red-100);
  color: var(--magau-red-700);
}

.chip-green {
  background: var(--magau-green-100);
  color: var(--magau-green-700);
}

.chip-digital {
  background: var(--digital-100);
  color: var(--digital);
}

.chip-kreatif {
  background: var(--kreatif-100);
  color: var(--kreatif);
}

.chip-mentorbox {
  background: var(--mentorbox-100);
  color: var(--mentorbox);
}

.chip-eduka {
  background: var(--eduka-100);
  color: var(--eduka);
}

.chip-outline {
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--ink-2);
}

/* Section */
.section {
  padding: var(--sp-9) 0;
}

.section-tight {
  padding: var(--sp-8) 0;
}

.section-cream-2 {
  background: var(--cream-2);
}

.section-dark {
  background: var(--ink);
  color: var(--cream);
}

/* Inputs */
.input,
.textarea,
.select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--warm-white);
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 12px 14px;
  color: var(--ink);
  transition: border-color 120ms var(--ease), box-shadow 120ms var(--ease);
}

.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: var(--magau-red);
  box-shadow: 0 0 0 3px rgba(169, 29, 42, 0.16);
}

.label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}

.helper {
  font-size: 12px;
  color: var(--stone-2);
  margin-top: 6px;
}

.error-msg {
  font-size: 13px;
  color: var(--magau-red);
  background: var(--magau-red-100);
  padding: 10px 14px;
  border-radius: var(--r-md);
  margin-bottom: 16px;
}

.success-msg {
  font-size: 13px;
  color: var(--magau-green-700);
  background: var(--magau-green-100);
  padding: 10px 14px;
  border-radius: var(--r-md);
  margin-bottom: 16px;
}

/* Link arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--magau-red);
  font-weight: 600;
  text-decoration: none;
  transition: gap 200ms var(--ease);
}

.link-arrow:hover {
  gap: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Grid helpers */
.grid {
  display: grid;
  gap: var(--sp-5);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 900px) {

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr;
  }
}

/* Nav */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 120ms var(--ease), border-color 120ms var(--ease);
}

.nav-shell.scrolled {
  background: rgba(250, 247, 240, 0.96);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.nav-logo img {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo .nav-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: var(--r-md);
  text-decoration: none;
  cursor: pointer;
  transition: background 120ms var(--ease), color 120ms var(--ease);
  background: transparent;
  border: none;
  font-family: inherit;
}

.nav-link:hover {
  background: var(--cream-3);
  color: var(--ink);
}

.nav-link.active {
  color: var(--magau-red);
}

.nav-cta {
  margin-left: var(--sp-3);
}

.nav-mega-trigger {
  position: relative;
}

.nav-mega {
  position: absolute;
  top: 100%;
  left: -120px;
  margin-top: 6px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  width: 540px;
  box-shadow: var(--shadow-2);
  display: none;
  gap: 8px;
  z-index: 60;
}

.nav-mega-trigger:hover .nav-mega,
.nav-mega:hover {
  display: grid;
}

.nav-mega a {
  display: grid;
  grid-template-columns: 4px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
}

.nav-mega a:hover {
  background: var(--cream-2);
}

.nav-mega-bar {
  width: 4px;
  height: 36px;
  border-radius: 4px;
}

#mobile-toggle {
  display: none;
}

@media (max-width: 1000px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    font-size: 16px;
    padding: 10px 14px;
  }

  .nav-mega {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 8px 0;
  }

  .nav-mega-trigger:hover .nav-mega {
    display: none;
  }

  .nav-mega.open {
    display: grid;
  }

  #mobile-toggle {
    display: inline-flex;
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--border-2);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}

/* Footer */
footer.site-footer {
  background: var(--ink);
  color: var(--cream-2);
  padding: var(--sp-9) 0 var(--sp-6);
  margin-top: 0;
}

/* Visual breathing room only when previous section is NOT already dark */
main>section:last-child:not(.final-cta):not(.section-dark)+footer.site-footer {
  margin-top: var(--sp-9);
}

footer.site-footer a {
  color: var(--cream-2);
  text-decoration: none;
}

footer.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--sp-7);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--stone);
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* Heritage */
.heritage-watermark {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  color: var(--ink);
}

/* Page transition */
.page-fade {
  animation: fadeUp 380ms var(--ease) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stats */
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--stone-2);
  margin-top: 8px;
}

/* Image slot fill */
.imgslot {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream-2), var(--cream-3));
  border: 1px dashed var(--border-2);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-2);
  font-size: 13px;
  position: relative;
  overflow: hidden;
}

.imgslot::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(169, 29, 42, 0.04), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(79, 121, 66, 0.04), transparent 55%);
}

.imgslot>span {
  position: relative;
  z-index: 1;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
}

.imgslot.has-img {
  border-style: solid;
}

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

/* Tabs */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
}

.tab {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--stone-2);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 120ms var(--ease), border-color 120ms var(--ease);
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: inherit;
}

.tab:hover {
  color: var(--ink);
}

.tab.active {
  color: var(--magau-red);
  border-bottom-color: var(--magau-red);
}

/* ==== Hero composition & Layered Showcase ==== */
.hero-showcase {
  position: relative;
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(165deg, #FAF7F0 0%, #F5EFE4 55%, #EDE5D3 100%);
  border: 1px solid var(--border-2);
  box-shadow: 0 16px 40px rgba(45, 31, 26, 0.08), 0 2px 6px rgba(45, 31, 26, 0.04);
  padding: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-showcase-bg-watermark {
  position: absolute;
  right: -50px;
  top: -50px;
  color: var(--magau-red);
  opacity: 0.06;
  pointer-events: none;
}

.hero-showcase-corner {
  position: absolute;
  top: 14px;
  right: 14px;
  color: var(--stone);
  opacity: 0.45;
  pointer-events: none;
}

.hero-showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(232, 226, 213, 0.85);
  padding-bottom: 14px;
  position: relative;
  z-index: 2;
}

.hero-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magau-red);
}

.hero-showcase-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--magau-red);
  box-shadow: 0 0 0 3px rgba(169, 29, 42, 0.2);
  animation: pulseDot 2.4s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

.hero-showcase-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--stone-2);
  background: rgba(255, 255, 255, 0.7);
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.hero-showcase-pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.hero-pillar-card {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.hero-pillar-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(45, 31, 26, 0.08);
  border-color: var(--accent, var(--magau-red));
}

.hero-pillar-card[data-sub="digital"] {
  --accent: var(--digital);
  --accent-100: var(--digital-100);
}

.hero-pillar-card[data-sub="mentorbox"] {
  --accent: var(--mentorbox);
  --accent-100: var(--mentorbox-100);
}

.hero-pillar-card[data-sub="eduka"] {
  --accent: var(--eduka);
  --accent-100: var(--eduka-100);
}

.hero-pillar-card[data-sub="kreatif"] {
  --accent: var(--kreatif);
  --accent-100: var(--kreatif-100);
}

.hero-pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  background: var(--accent-100, var(--cream-3));
  color: var(--accent, var(--ink));
  flex-shrink: 0;
}

.hero-pillar-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hero-pillar-meta {
  font-size: 11px;
  color: var(--stone-2);
  margin-top: 2px;
}

.hero-pillar-arrow {
  color: var(--stone);
  transition: transform 180ms var(--ease), color 180ms var(--ease);
}

.hero-pillar-card:hover .hero-pillar-arrow {
  color: var(--accent, var(--magau-red));
  transform: translateX(3px);
}

/* Hero heritage quote card (Mandar/Bugis Heritage Monolith) */
.hero-heritage-quote {
  background: var(--ink);
  color: var(--cream);
  border-radius: 12px;
  padding: 16px 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-heritage-quote .eyebrow {
  color: var(--magau-green-100);
  margin-bottom: 6px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
}

.hero-heritage-quote-text {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.35;
  color: #FAF7F0;
}

.hero-heritage-quote-text em {
  color: #E8A87C;
  font-style: italic;
}

/* Trust Cues below hero buttons */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--stone-2);
}

.hero-trust-item svg {
  color: var(--magau-green);
  flex-shrink: 0;
}

/* Legacy fallback for hero-illustration if referenced elsewhere */
.hero-illustration {
  position: relative;
  width: 100%;
  aspect-ratio: 5/4;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #F5F0E6 0%, #EFE9DB 60%, #E8E0CB 100%);
  border: 1px solid var(--border);
}

.hero-illustration .hi-pattern {
  position: absolute;
  inset: 0;
  color: var(--magau-red);
  opacity: 0.09;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration .hi-circle-red {
  position: absolute;
  left: 8%;
  top: 12%;
  width: 44%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--magau-red);
  opacity: 0.92;
  mix-blend-mode: multiply;
}

.hero-illustration .hi-circle-green {
  position: absolute;
  right: 10%;
  bottom: 10%;
  width: 36%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--magau-green);
  opacity: 0.85;
  mix-blend-mode: multiply;
}

.hero-illustration .hi-square {
  position: absolute;
  left: 32%;
  top: 38%;
  width: 30%;
  aspect-ratio: 1/1;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  transform: rotate(12deg);
  background: rgba(255, 255, 255, 0.6);
}

.hero-illustration .hi-corner {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: var(--ink-2);
}

.hero-quote {
  position: absolute;
  left: -32px;
  bottom: -24px;
  background: var(--ink);
  color: var(--cream);
  padding: 20px 22px;
  border-radius: 12px;
  max-width: 280px;
  box-shadow: var(--shadow-2);
}

.hero-quote .eyebrow {
  color: var(--magau-green-100);
  margin-bottom: 6px;
}

.hero-quote-text {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
}

/* Sub-divisi theming */
[data-sub="digital"] {
  --accent: var(--digital);
  --accent-100: var(--digital-100);
}

[data-sub="kreatif"] {
  --accent: var(--kreatif);
  --accent-100: var(--kreatif-100);
}

[data-sub="mentorbox"] {
  --accent: var(--mentorbox);
  --accent-100: var(--mentorbox-100);
}

/* ==== Specific layouts ==== */

/* Hero split */
.hero-split {
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-split .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-split .hero-grid {
    grid-template-columns: 1fr;
  }
}

/* ==== Bisnis Kami (3-Column Equal Ecosystem Grid) ==== */
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .business-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.business-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--accent, var(--magau-red));
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 140ms var(--ease);
  text-decoration: none;
  color: var(--ink);
  height: 100%;
}

.business-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(45, 31, 26, 0.09);
  border-color: var(--border-2);
}

.business-card[data-sub="digital"] {
  --accent: var(--digital);
  --accent-100: var(--digital-100);
}

.business-card[data-sub="mentorbox"] {
  --accent: var(--mentorbox);
  --accent-100: var(--mentorbox-100);
}

.business-card[data-sub="eduka"] {
  --accent: var(--eduka);
  --accent-100: var(--eduka-100);
}

.business-card[data-sub="kreatif"] {
  --accent: var(--kreatif);
  --accent-100: var(--kreatif-100);
}

.business-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.business-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--stone-2);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.business-card-visual {
  width: 100%;
  margin-bottom: 20px;
}

.business-card-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.business-card-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--stone-2);
  margin: 0 0 18px;
  flex-grow: 1;
  min-height: 68px;
}

.business-card-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  min-height: 56px;
  align-content: flex-start;
}

.business-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
}

.business-card-footer a,
.business-card-footer .link-arrow {
  color: var(--accent, var(--magau-red));
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.business-domain-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--stone-2);
  background: var(--cream-2);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

/* Backward compatibility for mosaic-grid */
.mosaic-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.mosaic-grid .mosaic-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.mosaic-grid .mosaic-wide-1 {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
}

.mosaic-grid .mosaic-wide-2 {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
}

.sub-card-large {
  display: flex;
  flex-direction: column;
  padding: 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--accent, var(--border));
}

.sub-card-wide {
  display: grid;
  grid-template-columns: 220px 1fr;
  padding: 24px;
  gap: 24px;
  height: 100%;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--accent, var(--border));
}

/* ==== Unit Bisnis Bespoke Visuals ==== */
.unit-visual {
  width: 100%;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  height: 140px;
}

/* 1. PT. Magau Jaya Digital Visual */
.unit-visual-digital {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 60%, #172554 100%);
  color: #e2e8f0;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.unit-visual-digital .uv-code-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: #94a3b8;
}

.unit-visual-digital .uv-dots {
  display: flex;
  gap: 5px;
}

.unit-visual-digital .uv-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.unit-visual-digital .uv-dot:nth-child(1) {
  background: #ef4444;
}

.unit-visual-digital .uv-dot:nth-child(2) {
  background: #f59e0b;
}

.unit-visual-digital .uv-dot:nth-child(3) {
  background: #10b981;
}

.unit-visual-digital .uv-terminal {
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.5;
  color: #cbd5e1;
}

.unit-visual-digital .uv-keyword {
  color: #60a5fa;
}

.unit-visual-digital .uv-string {
  color: #86efac;
}

.unit-visual-digital .uv-var {
  color: #f472b6;
}

.unit-visual-digital .uv-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(30, 64, 175, 0.4);
  border: 1px solid rgba(96, 165, 250, 0.35);
  padding: 2.5px 8px;
  border-radius: 999px;
  font-size: 10px;
  color: #bfdbfe;
  font-weight: 500;
  width: fit-content;
}

/* 2. PT. LPK Mentorbox Indonesia Visual */
.unit-visual-mentorbox {
  background: linear-gradient(135deg, #064e3b 0%, #0f766e 60%, #115e59 100%);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.unit-visual-mentorbox .uv-seal-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.unit-visual-mentorbox .uv-seal-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccfbf1;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.unit-visual-mentorbox .uv-seal-badge {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a7f3d0;
  margin-bottom: 2px;
}

.unit-visual-mentorbox .uv-seal-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #f0fdfa;
  line-height: 1.2;
}

.uv-cert-chips {
  display: flex;
  gap: 6px;
}

.uv-mini-pill {
  font-size: 10px;
  font-family: var(--font-mono);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2px 7px;
  border-radius: 4px;
  color: #ccfbf1;
}

.uv-mini-pill-eduka {
  color: #e0e7ff;
}

.unit-visual-mentorbox .uv-seal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: rgba(204, 251, 241, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 6px;
}

/* 3. PT. Media Eduka Sentosa Visual */
.unit-visual-eduka {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 60%, #4338ca 100%);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.unit-visual-eduka .uv-eduka-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.unit-visual-eduka .uv-eduka-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #e0e7ff;
  flex-shrink: 0;
}

.unit-visual-eduka .uv-eduka-badge {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c7d2fe;
  margin-bottom: 2px;
}

.unit-visual-eduka .uv-eduka-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #eef2ff;
  line-height: 1.2;
}

.unit-visual-eduka .uv-eduka-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: rgba(224, 231, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 6px;
}

/* ==== PT. Media Eduka Sentosa Featured Spotlight ==== */
.eduka-spotlight {
  margin-top: 40px;
  background: linear-gradient(135deg, #1e1b4b 0%, #1e1b4b 40%, #2e2978 75%, #3730a3 100%);
  border-radius: var(--r-xl);
  padding: 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(165, 180, 252, 0.25);
  box-shadow: 0 20px 48px -12px rgba(30, 27, 75, 0.35);
}

.eduka-spotlight::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, rgba(99, 102, 241, 0) 70%);
  pointer-events: none;
}

.eduka-spotlight-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}

@media (max-width: 960px) {
  .eduka-spotlight {
    padding: 32px 22px;
    margin-top: 32px;
  }

  .eduka-spotlight-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.eduka-spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #c7d2fe;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eduka-spotlight-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
}

@media (max-width: 600px) {
  .eduka-spotlight-title {
    font-size: 24px;
  }
}

.eduka-spotlight-lead {
  font-size: 15px;
  line-height: 1.7;
  color: #e0e7ff;
  margin-bottom: 14px;
  font-weight: 400;
}

.eduka-spotlight-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: #c7d2fe;
  margin-bottom: 14px;
}

.eduka-spotlight-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn-eduka-white {
  background: #ffffff;
  color: #1e1b4b !important;
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 22px;
  border-radius: var(--r-md);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 180ms var(--ease);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-eduka-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #1e1b4b !important;
}

.btn-eduka-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 20px;
  border-radius: var(--r-md);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 180ms var(--ease);
}

.btn-eduka-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff !important;
}

/* 4 Pillars Grid inside Spotlight */
.eduka-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 600px) {
  .eduka-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.eduka-pillar-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  padding: 16px 14px;
  transition: all 180ms var(--ease);
}

.eduka-pillar-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.eduka-pillar-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #e0e7ff;
  margin-bottom: 10px;
}

.eduka-pillar-title {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px;
  line-height: 1.3;
}

.eduka-pillar-desc {
  font-size: 11.5px;
  line-height: 1.55;
  color: #c7d2fe;
  margin: 0;
}

/* Card image zoom effect */
.card-img-wrap {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid var(--border);
  background: var(--cream-3);
  position: relative;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms var(--ease);
}

.card:hover .card-img-wrap img {
  transform: scale(1.05);
}

/* ==== About Heritage Card ==== */
.about-heritage-card {
  position: relative;
  background: linear-gradient(155deg, #FAF7F0 0%, #F3ECDC 55%, #E9DFC9 100%);
  border: 1px solid var(--border-2);
  border-radius: 18px;
  padding: 36px 32px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(45, 31, 26, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

.about-heritage-card .heritage-watermark {
  right: -20px;
  bottom: -20px;
  color: var(--magau-red);
  opacity: 0.07;
}

.about-heritage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--magau-red-700);
  box-shadow: var(--shadow-1);
  width: fit-content;
  position: relative;
  z-index: 2;
}

.about-heritage-body {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.about-heritage-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}

.about-heritage-quote {
  font-size: 14.5px;
  color: var(--stone-2);
  line-height: 1.55;
  border-left: 2.5px solid var(--magau-red);
  padding-left: 14px;
  margin-bottom: 18px;
}

.about-heritage-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--stone-2);
  font-weight: 600;
}

/* Stats strip */
.stats-strip {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-strip-inner {
  padding: 56px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.stats-strip-inner>div+div {
  border-left: 1px solid var(--border);
  padding-left: 32px;
}

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

  .stats-strip-inner>div+div {
    border-left: none;
    padding-left: 0;
  }
}

/* About teaser grid */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-teaser-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Berita teaser header */
.berita-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
  flex-wrap: wrap;
}

/* Final CTA */
.final-cta {
  background: #2A2724;
  color: var(--cream);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.final-cta .heritage-watermark {
  left: -10%;
  top: -20%;
  color: var(--magau-green);
  opacity: 0.18;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border-2);
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item .dot {
  position: absolute;
  left: -32px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--magau-red);
  border: 3px solid var(--cream-2);
}

.timeline-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 700px) {
  .timeline-row {
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }
}

/* Budaya cards */
.budaya-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

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

.budaya-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.budaya-letter {
  position: absolute;
  right: -8px;
  top: -16px;
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--cream-3);
  line-height: 1;
  font-weight: 600;
  pointer-events: none;
}

.budaya-body {
  position: relative;
}

/* Leadership Duo Showcase */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
}

@media (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}

.leader-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(45, 31, 26, 0.08);
  border-color: var(--border-2);
}

.leader-card-portrait {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 12px;
  background: linear-gradient(145deg, #FAF7F0 0%, #EDE5D3 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.leader-card-monogram {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.08);
}

.leader-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  color: var(--ink);
}

.leader-role {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--stone-2);
  margin-bottom: 14px;
}

.leader-bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--stone-2);
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* Karir filter chips */
.filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border-2);
  background: transparent;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-family: inherit;
}

.filter-chip.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.filter-chip-count {
  font-size: 12px;
  opacity: 0.7;
}

/* Job card */
.job-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 24px;
  align-items: center;
}

.job-card-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.job-card-skills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  color: var(--stone-2);
  font-size: 12px;
}

.job-card-side {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 8px;
}

@media (max-width: 700px) {
  .job-card {
    grid-template-columns: 1fr;
  }

  .job-card-side {
    align-items: start;
  }
}

/* File drop area */
.file-drop {
  display: block;
  padding: 28px;
  border: 2px dashed var(--border-2);
  border-radius: 12px;
  text-align: center;
  background: var(--warm-white);
  cursor: pointer;
  transition: all 120ms;
}

.file-drop:hover {
  border-color: var(--magau-red);
  background: var(--magau-red-100);
}

/* Accordion (FAQ) */
details.faq {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

details.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

details.faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--magau-red);
  transition: transform 200ms var(--ease);
}

details.faq[open] summary::after {
  transform: rotate(45deg);
}

details.faq p {
  margin: 12px 0 0;
  color: var(--stone-2);
  font-size: 15px;
  line-height: 1.6;
}

/* Article body */
.article-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
}

.article-body p {
  margin: 0 0 18px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 40px 0 16px;
  letter-spacing: -0.01em;
}

.article-body blockquote {
  border-left: 3px solid var(--magau-red);
  padding-left: 24px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
}

/* Trust badge for mentorbox */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  background: var(--mentorbox-100);
  border-radius: 12px;
}

@media (max-width: 800px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--warm-white);
  border-radius: 8px;
}

/* ==== ADMIN ==== */
.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  background: #FAFAF8;
}

.admin-side {
  background: #fff;
  border-right: 1px solid var(--border);
  padding: 18px 14px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin-main {
  padding: var(--sp-6);
  min-width: 0;
}

.admin-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
}

.side-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--ink-2);
  cursor: pointer;
  text-decoration: none;
}

.side-link:hover {
  background: var(--cream-2);
}

.side-link.active {
  background: var(--magau-red-100);
  color: var(--magau-red-700);
  font-weight: 600;
}

.side-link .badge {
  background: var(--magau-red);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: auto;
}

.side-group {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 14px 12px 6px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 1100px) {
  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.admin-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}

.admin-stat-num.accent {
  color: var(--magau-red);
}

.admin-stat-label {
  font-size: 12px;
  color: var(--stone-2);
  margin-bottom: 10px;
  font-weight: 500;
}

.admin-stat-trend {
  font-size: 12px;
  color: var(--stone-2);
}

.admin-stat-trend.up {
  color: var(--magau-green-700);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table thead tr {
  border-bottom: 1px solid var(--border);
}

.admin-table th {
  text-align: left;
  padding: 10px 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--stone-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.admin-table td {
  padding: 14px 0;
  font-size: 13px;
  color: var(--ink-2);
}

.admin-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--stone-2);
}

.activity-row {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.activity-row:last-child {
  border-bottom: none;
}

.activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
}

/* Login */
.login-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

@media (max-width: 900px) {
  .login-shell {
    grid-template-columns: 1fr;
  }
}

.login-side {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.login-form-wrap {
  max-width: 400px;
  width: 100%;
  align-self: center;
}

.login-art {
  background: var(--ink);
  color: var(--cream);
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 900px) {
  .login-art {
    display: none;
  }
}

/* utility */
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-3 {
  margin-bottom: 12px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-5 {
  margin-bottom: 24px;
}

.mb-6 {
  margin-bottom: 32px;
}

.mb-7 {
  margin-bottom: 48px;
}

.mt-7 {
  margin-top: 48px;
}

/* Hero asymmetric */
.hero-asymmetric {
  padding-top: 72px;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}

.hero-asymmetric .hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 64px;
  align-items: end;
}

@media (max-width: 900px) {
  .hero-asymmetric .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-quote {
    left: 0;
    bottom: -16px;
  }
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-eyebrow-bar {
  height: 1px;
  width: 56px;
  background: var(--magau-red);
}

/* Sticky article */
.detail-hero {
  width: 100%;
  height: 480px;
}

/* ============================================================
   ADMIN — extended classes (no inline styles)
   ============================================================ */

.admin-side-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
  text-decoration: none;
  color: var(--ink);
}

.admin-side-brand img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.admin-side-brand .brand-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}

.admin-side-brand .brand-sub {
  font-size: 11px;
  color: var(--stone-2);
}

.admin-topbar-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-topbar-title .crumb {
  font-size: 12px;
  color: var(--stone-2);
}

.admin-topbar-title h1 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0;
  letter-spacing: -0.01em;
}

.admin-search {
  position: relative;
  flex: 0 0 320px;
  margin-left: auto;
}

.admin-search .input {
  padding-left: 38px;
}

.admin-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--stone-2);
  pointer-events: none;
}

.admin-icon-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.admin-icon-btn .dot {
  position: absolute;
  top: 4px;
  right: 5px;
  width: 8px;
  height: 8px;
  background: var(--magau-red);
  border-radius: 50%;
}

.admin-avatar-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--magau-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* Topbar dropdown */
.topbar-pop {
  position: relative;
}

.topbar-pop-menu {
  position: absolute;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-2);
  z-index: 100;
  display: none;
  overflow: hidden;
}

.topbar-pop-menu.align-right {
  right: 0;
  left: auto;
}

.topbar-pop-menu.align-left {
  left: 0;
  right: auto;
}

.topbar-pop-menu.w-340 {
  width: 340px;
}

.topbar-pop-menu.w-240 {
  width: 240px;
}

.topbar-pop.open .topbar-pop-menu {
  display: block;
}

.topbar-pop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.topbar-pop-item:hover {
  background: var(--cream-2);
}

.topbar-pop-item.danger {
  color: var(--magau-red);
}

.notif-head {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notif-head-title {
  font-weight: 600;
  font-size: 13px;
}

.notif-mark-read {
  background: transparent;
  border: none;
  color: var(--magau-red);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
}

.notif-list {
  max-height: 380px;
  overflow-y: auto;
}

.notif-item {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 12px;
  padding: 12px 14px;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}

.notif-item:last-child {
  border-bottom: none;
}

.notif-item:hover {
  background: var(--cream-2);
}

.notif-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
}

.notif-item .dot.lamaran {
  background: var(--digital);
}

.notif-item .dot.saran {
  background: var(--magau-red);
}

.notif-text {
  font-size: 13px;
  line-height: 1.4;
}

.notif-time {
  font-size: 11px;
  color: var(--stone-2);
  margin-top: 2px;
}

.notif-empty {
  padding: 24px 14px;
  text-align: center;
  color: var(--stone-2);
  font-size: 13px;
}

.user-pop-head {
  padding: 14px;
  border-bottom: 1px solid var(--border);
}

.user-pop-name {
  font-weight: 600;
  font-size: 14px;
}

.user-pop-email {
  font-size: 12px;
  color: var(--stone-2);
  margin-top: 2px;
}

/* Modal (admin) */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 58, 0.6);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  width: min(440px, 100%);
  background: var(--cream);
  border-radius: 16px;
  padding: 32px;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-head h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--stone-2);
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Quick action button */
.quick-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  text-decoration: none;
  font-family: inherit;
  width: 100%;
}

.quick-action:hover {
  background: var(--cream-3);
}

.quick-action .label {
  flex: 1;
}

/* Dashboard layout */
.dash-row-2 {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

.dash-row-2.split-1620 {
  grid-template-columns: 1.6fr 1fr;
}

.dash-row-2.split-1410 {
  grid-template-columns: 1.4fr 1fr;
}

@media (max-width: 1100px) {

  .dash-row-2.split-1620,
  .dash-row-2.split-1410 {
    grid-template-columns: 1fr;
  }
}

.dash-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dash-card-head h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0;
}

.dash-card-head .btn-group {
  display: flex;
  gap: 6px;
}

.dash-card-head .link-more {
  font-size: 13px;
  color: var(--magau-red);
  text-decoration: none;
  font-weight: 600;
}

.sparkline {
  width: 100%;
  height: 200px;
}

.dash-table-link {
  background: transparent;
  border: none;
  color: var(--stone-2);
  cursor: pointer;
  padding: 4px;
}

.dash-table-name {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 500;
}

.dash-table-actions {
  text-align: right;
}

/* Sidebar logout link spacing */
.admin-side>.side-link:last-child {
  margin-top: 8px;
}

/* Chip — active variant */
.chip.chip-active {
  background: var(--ink);
  color: var(--cream);
}

/* Activity row dot variants */
.activity-dot.dot-red {
  background: var(--magau-red);
}

.activity-dot.dot-green {
  background: var(--magau-green);
}

.activity-dot.dot-digital {
  background: var(--digital);
}

.activity-dot.dot-kreatif {
  background: var(--kreatif);
}

.activity-dot.dot-mentorbox {
  background: var(--mentorbox);
}

.activity-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
}

.activity-time {
  font-size: 11px;
  color: var(--stone-2);
  margin-top: 4px;
}

/* ============================================================
   ADMIN LIST PAGES (karir, berita, brand, etc.)
   ============================================================ */

.list-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.list-page-head h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0;
  letter-spacing: -0.01em;
}

.list-page-head .muted-sub {
  font-size: 13px;
  color: var(--stone-2);
  margin-top: 4px;
}

.toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.toolbar .search-input {
  position: relative;
  flex: 0 0 320px;
  max-width: 100%;
}

.toolbar .search-input .input {
  padding-left: 38px;
}

.toolbar .search-input .icon-wrap {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--stone-2);
  pointer-events: none;
}

.toolbar .filter-row {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .toolbar .search-input {
    flex: 1 1 100%;
  }
}

/* Karir list card grid */
.karir-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 20px;
}

.karir-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}

.karir-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.karir-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.karir-card-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--stone-2);
}

.karir-card-desc {
  color: var(--stone-2);
  font-size: 14px;
  line-height: 1.55;
  margin: 8px 0 16px;
}

.karir-card-section {
  margin-top: 14px;
}

.karir-card-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}

.karir-pill-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.karir-pill {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 12px;
  background: var(--cream-2);
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: background 120ms;
  border: 1px solid transparent;
  text-align: left;
  width: 100%;
  font-family: inherit;
  color: var(--ink-2);
  line-height: 1.45;
}

.karir-pill:hover {
  background: var(--cream-3);
  border-color: var(--border);
}

.karir-pill .pill-bullet {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--stone);
  flex-shrink: 0;
  margin-top: 7px;
}

.karir-pill>span:last-child {
  flex: 1;
}

.karir-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--border);
}

.karir-card-foot .left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Switch toggle */
.switch {
  position: relative;
  width: 38px;
  height: 22px;
  background: var(--border-2);
  border-radius: 999px;
  cursor: pointer;
  transition: background 120ms var(--ease);
  flex-shrink: 0;
  border: none;
  padding: 0;
  display: inline-block;
}

.switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 160ms var(--ease);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.switch.on {
  background: var(--magau-green);
}

.switch.on::after {
  transform: translateX(16px);
}

.switch-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
}

/* Action 3-dot menu */
.action-menu {
  position: relative;
}

.action-menu-trigger {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  color: var(--stone-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.action-menu-trigger:hover {
  border-color: var(--border);
  background: var(--cream-2);
}

.action-menu-list {
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-2);
  min-width: 180px;
  z-index: 50;
  display: none;
  overflow: hidden;
}

.action-menu.open .action-menu-list {
  display: block;
}

.action-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.action-menu-item:hover {
  background: var(--cream-2);
}

.action-menu-item.danger {
  color: var(--magau-red);
}

/* Empty state */
.empty-state {
  padding: 56px 24px;
  text-align: center;
  border: 1px dashed var(--border-2);
  border-radius: 12px;
  background: var(--warm-white);
}

.empty-state h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 6px;
}

.empty-state p {
  color: var(--stone-2);
  margin: 0 0 16px;
}

/* Generic data table */
.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table thead tr {
  border-bottom: 1px solid var(--border);
}

.data-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--stone-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.data-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 120ms;
}

.data-table tbody tr:hover {
  background: var(--cream-2);
}

.data-table td {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--ink-2);
  vertical-align: middle;
}

.data-table .col-num {
  width: 48px;
  color: var(--stone-2);
}

.data-table .col-actions {
  width: 1%;
  white-space: nowrap;
  text-align: right;
}

.data-table .row-actions {
  display: inline-flex;
  gap: 6px;
}

.icon-btn-square {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  text-decoration: none;
}

.icon-btn-square:hover {
  border-color: var(--border-2);
  background: var(--cream-2);
}

.icon-btn-square.danger {
  color: var(--magau-red);
}

.icon-btn-square.danger:hover {
  background: var(--magau-red-100);
  border-color: var(--magau-red);
}

/* Form page */
.form-shell {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.form-section {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.form-section+.form-section {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 4px;
}

.form-section-help {
  font-size: 13px;
  color: var(--stone-2);
  margin: 0;
}

.repeatable-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.repeatable-row {
  display: grid;
  grid-template-columns: 1fr 36px;
  gap: 8px;
  align-items: start;
}

.btn-add-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px dashed var(--border-2);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--magau-red);
  cursor: pointer;
  font-family: inherit;
}

.btn-add-row:hover {
  background: var(--magau-red-100);
  border-color: var(--magau-red);
}

.btn-remove-row {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  color: var(--stone-2);
}

.btn-remove-row:hover {
  color: var(--magau-red);
  border-color: var(--magau-red);
}

.form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

/* Modal injected content uses .modal-card classes — define larger size */
.modal-card.modal-lg {
  width: min(640px, 100%);
}

.modal-form-grid {
  display: grid;
  gap: 14px;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: var(--shadow-3);
  font-size: 14px;
  z-index: 300;
  max-width: 360px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background: var(--magau-green-700);
}

.toast.error {
  background: var(--magau-red-700);
}

.admin-card.no-pad {
  padding: 0;
}

.muted-sm {
  color: var(--stone-2);
  font-size: 13px;
  margin: 0;
}

/* Pagination */
.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.pagination-info {
  font-size: 13px;
  color: var(--stone-2);
}

.pagination {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  cursor: pointer;
  transition: background 120ms, border-color 120ms;
  font-family: inherit;
}

.pagination-link:hover {
  background: var(--cream-2);
  border-color: var(--border-2);
}

.pagination-link.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.pagination-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination-ellipsis {
  padding: 0 6px;
  color: var(--stone-2);
  font-size: 13px;
}

/* Filter-row links (anchor variant) */
.filter-chip-link {
  text-decoration: none;
}

/* Saran helpers */
.row-unread {
  background: rgba(169, 29, 42, 0.04);
}

.row-unread:hover {
  background: rgba(169, 29, 42, 0.07) !important;
}

.badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--magau-red);
  margin-left: 6px;
  flex-shrink: 0;
}

.message-block {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  white-space: pre-wrap;
  min-height: 160px;
  max-height: 480px;
  overflow-y: auto;
}

/* Berita admin grid */
.berita-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.berita-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.berita-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.berita-card-img {
  aspect-ratio: 16/9;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--border);
}

.berita-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.berita-card-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--stone-2);
}

.berita-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.berita-card-desc {
  color: var(--stone-2);
  font-size: 13px;
  margin: 0;
  line-height: 1.55;
  flex: 1;
}

.berita-card-foot {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--cream);
}

/* Image preview in modal */
.image-preview {
  padding: 12px;
  background: var(--cream-2);
  border-radius: 8px;
  display: flex;
  justify-content: center;
}

.image-preview img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 4px;
}

/* Current image in edit form */
.berita-current-img {
  width: 240px;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.berita-current-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   TRIX EDITOR — themed to match Magau design
   ============================================================ */
trix-toolbar {
  background: var(--cream-2);
  border: 1.5px solid var(--border-2);
  border-bottom: none;
  border-radius: var(--r-md) var(--r-md) 0 0;
  padding: 6px 8px;
}

trix-toolbar .trix-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  justify-content: flex-start;
  overflow-x: visible;
}

trix-toolbar .trix-button-group {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  margin: 2px 4px 2px 0;
  display: flex;
  flex-wrap: wrap;
}

trix-toolbar .trix-button {
  border: none;
  border-right: 1px solid var(--border);
  background: transparent;
  color: var(--ink-2);
  padding: 6px 8px;
  height: 32px;
  min-width: 32px;
  font-size: 12px;
  position: relative;
  transition: background 120ms;
}

trix-toolbar .trix-button:last-child {
  border-right: none;
}

trix-toolbar .trix-button:not(:disabled):hover {
  background: var(--cream-3);
  color: var(--ink);
}

trix-toolbar .trix-button.trix-active {
  background: var(--magau-red);
  color: #fff;
}

trix-toolbar .trix-button:disabled {
  opacity: 0.4;
}

trix-toolbar .trix-button-group--file-tools {
  display: none;
}

/* hide file attach */

trix-editor {
  min-height: 240px;
  padding: 16px;
  background: var(--warm-white);
  border: 1.5px solid var(--border-2);
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  outline: none;
  transition: border-color 120ms, box-shadow 120ms;
}

trix-editor:focus {
  border-color: var(--magau-red);
  box-shadow: 0 0 0 3px rgba(169, 29, 42, 0.16);
}

trix-editor h1 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 16px 0 10px;
}

trix-editor h2,
trix-editor h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 14px 0 8px;
}

trix-editor p {
  margin: 0 0 12px;
}

trix-editor blockquote {
  border-left: 3px solid var(--magau-red);
  padding-left: 16px;
  margin: 16px 0;
  color: var(--ink-2);
  font-style: italic;
}

trix-editor pre {
  background: var(--cream-2);
  padding: 12px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
}

trix-editor a {
  color: var(--magau-red);
  text-decoration: underline;
}

trix-editor ul,
trix-editor ol {
  padding-left: 24px;
  margin: 8px 0 12px;
}

.trix-button-group--file-tools {
  display: none !important;
}

.trix-dialogs {
  position: relative;
}

.trix-dialog {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  padding: 12px;
  margin-top: 4px;
  border-radius: 8px;
  box-shadow: var(--shadow-2);
  z-index: 10;
}

.trix-dialog input {
  padding: 10px 12px;
  border: 1.5px solid var(--border-2);
  border-radius: 6px;
  font-size: 14px;
}

.trix-dialog .trix-button {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-left: 4px;
  background: #fff;
}

/* Brand grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.brand-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.brand-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.brand-card-logo {
  aspect-ratio: 1/1;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.brand-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-card-body {
  padding: 14px 16px;
  flex: 1;
}

.brand-card-name {
  font-family: var(--font-display);
  font-size: 16px;
  margin: 0 0 4px;
  line-height: 1.3;
}

.brand-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--stone-2);
  text-decoration: none;
  word-break: break-all;
}

.brand-card-link:hover {
  color: var(--magau-red);
}

.brand-card-foot {
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  background: var(--cream);
}

.brand-current-img {
  width: 160px;
  height: 160px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-current-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Company / Perusahaan grid */
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.company-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.company-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.company-card-logo {
  aspect-ratio: 16/9;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.company-card-logo img {
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
}

.company-card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.company-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.company-card-desc {
  color: var(--stone-2);
  font-size: 13px;
  margin: 0;
  line-height: 1.55;
  flex: 1;
}

.company-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--magau-red);
  text-decoration: none;
  word-break: break-all;
}

.company-card-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.company-card-foot {
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  background: var(--cream);
}

/* Social grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.social-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.social-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.social-card-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100px;
  border-bottom: 1px solid var(--border);
}

.social-icon-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.social-icon-slot.dark {
  background: var(--ink);
}

.social-icon-slot.light {
  background: var(--cream-2);
}

.social-icon-slot img {
  max-width: 56px;
  max-height: 56px;
  object-fit: contain;
}

.social-card-body {
  padding: 14px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.social-card-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.social-card-name {
  font-family: var(--font-display);
  font-size: 17px;
  margin: 0;
  line-height: 1.3;
}

.social-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--magau-red);
  text-decoration: none;
  word-break: break-all;
}

.social-card-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.social-card-foot {
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  background: var(--cream);
}

.social-current-icon {
  width: 100%;
  height: 80px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin-bottom: 8px;
}

.social-current-icon.dark {
  background: var(--ink);
}

.social-current-icon.light {
  background: var(--cream-2);
  border: 1px solid var(--border);
}

.social-current-icon img {
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
}

/* Akun page */
.akun-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .akun-grid {
    grid-template-columns: 1fr;
  }
}

.akun-side {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.akun-side .akun-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--magau-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(169, 29, 42, 0.18);
}

.akun-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.akun-email {
  font-size: 13px;
  color: var(--stone-2);
  margin-top: 4px;
  word-break: break-all;
}

.akun-meta {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: left;
}

.akun-meta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
}

.akun-meta-value {
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 2px;
}

/* Editor Landing hub */
.editor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}

.editor-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 120ms;
}

.editor-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: var(--border-2);
}

.editor-card-head {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.editor-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--magau-red-100);
  color: var(--magau-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.editor-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.editor-card-desc {
  font-size: 13px;
  color: var(--stone-2);
  margin: 0;
  line-height: 1.5;
}

.editor-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}

.editor-link-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink-2);
  text-decoration: none;
  transition: background 120ms, color 120ms;
}

.editor-link-list li a:hover {
  background: var(--cream-2);
  color: var(--magau-red);
}

.editor-link-list li a span {
  color: var(--stone-2);
  transition: transform 120ms;
}

.editor-link-list li a:hover span {
  transform: translateX(3px);
  color: var(--magau-red);
}

/* Editor multi-image preview row */
.image-grid-row {
  display: grid;
  gap: 12px;
}

.image-current {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.image-current img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editor-card-icon.icon-digital {
  background: var(--digital-100);
  color: var(--digital);
}

.editor-card-icon.icon-kreatif {
  background: var(--kreatif-100);
  color: var(--kreatif);
}

.editor-card-icon.icon-mentorbox {
  background: var(--mentorbox-100);
  color: var(--mentorbox);
}

/* Client / brand logo strip on homepage */
.client-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0;
  align-items: center;
}

.client-cell {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
}

.client-cell img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 200ms var(--ease), opacity 200ms var(--ease);
}

.client-cell:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.client-cell .client-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--stone-2);
  letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
  .client-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

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

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