/* ===== Roti Bakar Ngeunah — Kemitraan ===== */
:root {
  --red-900: #7F1D1D;
  --red-800: #991B1B;
  --red-700: #B91C1C;
  --red-600: #DC2626;
  --red-500: #EF4444;
  --orange-500: #F97316;
  --orange-400: #FB923C;
  --yellow-400: #FACC15;
  --yellow-300: #FDE047;
  --cream-50: #FFFBEB;
  --cream-100: #FEF3C7;
  --white: #FFFFFF;
  --ink-900: #0B0B0F;
  --ink-800: #111827;
  --ink-600: #374151;
  --ink-500: #6B7280;
  --ink-400: #9CA3AF;
  --ink-200: #E5E7EB;
  --ink-100: #F3F4F6;
  --ink-50:  #F9FAFB;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 40px;

  --shadow-sm: 0 1px 2px rgba(17,24,39,.06), 0 1px 1px rgba(17,24,39,.04);
  --shadow-md: 0 8px 24px -8px rgba(17,24,39,.12), 0 2px 6px rgba(17,24,39,.06);
  --shadow-lg: 0 24px 48px -16px rgba(185,28,28,.18), 0 8px 16px -8px rgba(17,24,39,.10);
  --shadow-red: 0 18px 40px -12px rgba(220,38,38,.45);

  --font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  --container: 1200px;

  /* ── Admin compatibility aliases ── */
  --primary:       var(--red-600);
  --primary-dark:  var(--red-700);
  --primary-light: var(--red-500);
  --secondary:     var(--yellow-400);
  --secondary-dark: var(--yellow-300);
  --dark:          var(--ink-900);
  --dark-2:        var(--ink-800);
  --gray-900:      var(--ink-900);
  --gray-700:      var(--ink-600);
  --gray-500:      var(--ink-500);
  --gray-200:      var(--ink-200);
  --gray-100:      var(--ink-50);
  --green:         #43A047;
  --green-light:   #E8F5E9;
  --red:           var(--red-600);
  --red-light:     #FEE2E2;
  --yellow-light:  #FEF3C7;
  --font-main:     var(--font-sans);
  --radius:        12px;
  --shadow:        0 4px 24px rgba(0,0,0,0.08);
  --transition:    0.25s ease;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.55;
}

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 24px;
  margin: 0 auto;
}

/* =========== Typography helpers =========== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red-700);
  background: #FEE2E2;
  padding: 8px 14px;
  border-radius: 999px;
}
.eyebrow.dark { background: rgba(255,255,255,.12); color: var(--yellow-300); }

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: 0; margin: 0; color: var(--ink-900); }
h1 { font-size: clamp(36px, 5.6vw, 64px); line-height: 1.1; font-weight: 800; }
h2 { font-size: clamp(28px, 3.8vw, 44px); line-height: 1.14; font-weight: 800; }
h3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.25; font-weight: 700; }
p { margin: 0; color: var(--ink-600); }
.lede { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-600); line-height: 1.6; }

.section { padding: clamp(40px, 4.5vw, 64px) 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* =========== Buttons =========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700; font-size: 15px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(180deg, var(--red-600), var(--red-700));
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { box-shadow: 0 22px 48px -12px rgba(220,38,38,.55); }
.btn-accent {
  background: var(--yellow-400);
  color: var(--ink-900);
  box-shadow: 0 12px 28px -10px rgba(250,204,21,.55);
}
.btn-accent:hover { background: var(--yellow-300); }
.btn-ghost {
  background: var(--white);
  color: var(--ink-900);
  border: 1.5px solid var(--ink-200);
}
.btn-ghost:hover { border-color: var(--ink-800); }
.btn-dark { background: var(--ink-900); color: var(--white); }
.btn-outline-light {
  background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); }
.btn-lg { padding: 18px 28px; font-size: 16px; border-radius: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 10px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg svg { width: 20px; height: 20px; }
.btn-block { width: 100%; }

/* =========== Nav (sticky) =========== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--ink-200);
  box-shadow: 0 4px 16px -8px rgba(17,24,39,.08);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 12px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; color: var(--ink-900);
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--white); object-fit: contain;
  display: block; flex-shrink: 0; padding: 3px;
  box-shadow: 0 8px 20px -12px rgba(17,24,39,.35);
}
.brand-name { font-size: 15px; font-weight: 800; color: var(--ink-900); line-height: 1.2; }
.brand-sub { font-size: 11px; color: var(--ink-500); font-weight: 600; }
.nav-links {
  display: none; gap: 28px;
  font-size: 14px; font-weight: 600;
}
.nav-links a {
  color: var(--ink-600);
  padding: 8px 2px; border-radius: 6px;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--red-700); }
.nav-cta { padding: 10px 16px; font-size: 14px; border-radius: 12px; }
.nav-cta-text { display: none; }
@media (min-width: 720px) { .nav-cta-text { display: inline; } }
@media (min-width: 960px) { .nav-links { display: flex; } }

/* =========== Sticky Mobile Bottom CTA =========== */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--ink-200);
  box-shadow: 0 -8px 24px -8px rgba(17,24,39,.12);
  transform: translateY(110%);
  transition: transform .25s ease;
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .btn { flex: 1; padding: 12px 14px; font-size: 14px; }
.mobile-cta .btn-ghost {
  flex: 0 0 38%;
  background: var(--ink-50); border-color: var(--ink-200);
}
@media (min-width: 720px) {
  .mobile-cta { display: none; }
}
@media (max-width: 719px) {
  body { padding-bottom: 76px; }
  .wa-fab { bottom: 88px; }
}

/* =========== Hero =========== */
.hero {
  position: relative;
  background:
    radial-gradient(800px 600px at 90% -10%, rgba(250,204,21,.30), transparent 60%),
    radial-gradient(900px 700px at -10% 110%, rgba(249,115,22,.35), transparent 60%),
    linear-gradient(160deg, var(--red-700) 0%, var(--red-800) 100%);
  color: var(--white);
  overflow: hidden;
  padding: clamp(24px, 5vw, 40px) 0 clamp(56px, 9vw, 110px);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.06) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,.05) 0 1px, transparent 1px);
  background-size: 32px 32px, 48px 48px;
  opacity: .6;
}
.hero-subpoints {
  list-style: none; margin: 22px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 14px 22px;
  color: rgba(255,255,255,.9); font-size: 14px; font-weight: 600;
}
.hero-subpoints li { display: flex; gap: 8px; align-items: center; }
.hero-subpoints .check {
  width: 18px; height: 18px; border-radius: 999px;
  background: var(--yellow-400); color: var(--ink-900);
  display: grid; place-items: center; flex-shrink: 0;
}
.btn-hero-primary {
  position: relative;
  box-shadow: 0 14px 32px -10px rgba(250,204,21,.6), 0 0 0 0 rgba(250,204,21,.4);
  animation: pulseGlow 2.4s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 14px 32px -10px rgba(250,204,21,.6), 0 0 0 0 rgba(250,204,21,.5); }
  50% { box-shadow: 0 14px 32px -10px rgba(250,204,21,.6), 0 0 0 12px rgba(250,204,21,0); }
}
@media (prefers-reduced-motion: reduce) { .btn-hero-primary { animation: none; } }

.hero-grid {
  display: grid; gap: 56px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 64px; }
}
.hero h1 { color: white; text-wrap: balance; }
.hero h1 .highlight { color: var(--yellow-300); }
.hero .lede { color: rgba(255,255,255,.85); max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  color: white; font-size: 13px; font-weight: 600;
}
.badge-pill .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--yellow-400); box-shadow: 0 0 0 4px rgba(250,204,21,.22); }

/* Hero Mock */
.hero-mock {
  position: relative;
  border-radius: var(--radius-2xl);
  background: linear-gradient(180deg, #FDE68A 0%, #FBBF24 50%, #F59E0B 100%);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.45), inset 0 -10px 30px rgba(0,0,0,.12);
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  overflow: hidden;
  max-width: 440px; width: 100%;
  margin: 0 auto;
}
@media (min-width: 980px) {
  .hero-mock { max-width: none; margin: 0; padding: 28px; gap: 16px; }
}
.hero-mock::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(140% 80% at 50% 0%, rgba(255,255,255,.45), transparent 50%);
}
.mock-window {
  background: white; border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,.25);
  padding: 18px; position: relative; z-index: 1;
}
.mock-windowbar { display: flex; gap: 6px; margin-bottom: 14px; }
.mock-windowbar span { width: 10px; height: 10px; border-radius: 999px; background: #E5E7EB; }
.mock-windowbar span:nth-child(1) { background: #EF4444; }
.mock-windowbar span:nth-child(2) { background: #F59E0B; }
.mock-windowbar span:nth-child(3) { background: #10B981; }
.mock-kpi {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px;
}
.mock-kpi > div {
  background: linear-gradient(180deg, #FEF3C7, #FDE68A);
  padding: 10px 12px; border-radius: 12px;
}
.mock-kpi .label { font-size: 10px; color: var(--ink-600); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.mock-kpi .num { font-size: 18px; font-weight: 800; color: var(--ink-900); }
.mock-bars {
  display: flex; gap: 4px; margin-top: 14px; align-items: flex-end; height: 56px;
}
.mock-bar {
  flex: 1; border-radius: 3px; background: var(--ink-200);
}
.mock-bar.active { background: linear-gradient(180deg, var(--red-600), var(--red-700)); }

.outlet-card {
  background: var(--ink-900); color: white;
  padding: 18px; border-radius: var(--radius-lg);
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,.4);
}
.outlet-thumb {
  width: 60px; height: 60px; border-radius: 14px;
  background: linear-gradient(135deg, var(--red-600), var(--orange-500));
  display: grid; place-items: center; font-size: 26px;
  flex-shrink: 0;
}
.outlet-card .meta { font-size: 11px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.outlet-card .name { font-size: 16px; font-weight: 700; margin-top: 2px; }
.outlet-card .stats { font-size: 12px; color: var(--yellow-300); margin-top: 4px; font-weight: 600; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  margin-top: 48px; gap: 24px;
  border-top: 1px solid rgba(255,255,255,.18); padding-top: 32px;
}
.hero-stats .num {
  font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; color: white; letter-spacing: 0;
  font-family: var(--font-display);
}
.hero-stats .lbl { font-size: 12px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; margin-top: 4px; }

/* =========== Pain / Problem =========== */
.section-pain { background: var(--ink-50); }
.pain-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.pain-card {
  background: white; border-radius: var(--radius-md); padding: 22px;
  border: 1px solid var(--ink-200);
  display: flex; gap: 14px; align-items: flex-start;
}
.pain-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: #FEE2E2; color: var(--red-700);
  display: grid; place-items: center; flex-shrink: 0; font-size: 20px;
}
.pain-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--ink-900); }
.pain-card p { font-size: 14px; color: var(--ink-500); }

.pain-bridge {
  margin-top: 36px;
  display: flex; gap: 16px; align-items: center;
  padding: 22px 24px;
  background: linear-gradient(180deg, var(--red-700), var(--red-800));
  border-radius: var(--radius-lg);
  color: white;
}
.pain-bridge .icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--yellow-400); color: var(--ink-900);
  display: grid; place-items: center; flex-shrink: 0; font-size: 22px;
}
.pain-bridge p { color: white; font-weight: 600; }
.pain-bridge strong { color: var(--yellow-300); }

/* =========== Solusi =========== */
.solusi-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.solusi-card {
  background: white; border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--ink-200); box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative; overflow: hidden;
}
.solusi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.solusi-card .num {
  position: absolute; top: 14px; right: 18px;
  font-size: 56px; font-weight: 900; color: var(--ink-100);
  font-family: var(--font-display); line-height: 1;
}
.solusi-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--red-600), var(--orange-500));
  color: white; display: grid; place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 12px 24px -8px rgba(220,38,38,.4);
}
.solusi-card h3 { margin-bottom: 8px; font-size: 18px; }
.solusi-card p { font-size: 14.5px; color: var(--ink-500); }

/* =========== Paket Kemitraan =========== */
.section-paket { background: var(--ink-50); }
.paket-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 760px) {
  .paket-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
.paket-card {
  position: relative; background: white;
  border-radius: var(--radius-xl); border: 1px solid var(--ink-200);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.paket-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.paket-card.is-popular {
  border: 2px solid var(--red-600);
  box-shadow: 0 24px 60px -16px rgba(220,38,38,.25);
}
.paket-image {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background: var(--ink-100);
}
.paket-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
  transition: transform .5s ease;
}
.paket-card:hover .paket-image img { transform: scale(1.04); }
.paket-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}
.paket-image .paket-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.95); color: var(--ink-900);
  backdrop-filter: blur(8px);
}
.paket-image-ribbon {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--yellow-400); color: var(--ink-900);
  font-size: 11px; font-weight: 800;
  padding: 6px 12px; border-radius: 999px;
  letter-spacing: .04em;
  box-shadow: 0 6px 16px -4px rgba(250,204,21,.55);
}
@media (max-width: 720px) { .paket-image { aspect-ratio: 16 / 10; } }
.paket-tag {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25);
  color: white; backdrop-filter: blur(6px);
}
.paket-hero {
  padding: 24px 28px 22px; color: white; position: relative;
}
.paket-hero.t1 { background: linear-gradient(135deg, var(--red-600), var(--red-800)); }
.paket-hero.t2 { background: linear-gradient(135deg, var(--orange-500), var(--red-700)); }
.paket-name { color: white; font-size: clamp(22px, 3vw, 28px); margin-top: 10px; font-weight: 800; letter-spacing: 0; }
.paket-desc { font-size: 14.5px; color: rgba(255,255,255,.85); margin-top: 8px; line-height: 1.5; }
.paket-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 18px; flex: 1; }
.paket-price {
  background: var(--cream-50); border: 1px dashed #FDE68A;
  border-radius: var(--radius-md); padding: 16px 18px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
}
.paket-price-label { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-500); }
.paket-price-val {
  font-size: clamp(24px, 4vw, 32px); font-weight: 800;
  color: var(--red-700); font-family: var(--font-display);
  letter-spacing: 0; line-height: 1.08;
}
.paket-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.paket-meta > div {
  background: var(--ink-50); border-radius: 12px; padding: 12px 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.paket-meta .lbl { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-500); }
.paket-meta .val { font-size: 13.5px; font-weight: 700; color: var(--ink-900); }
.paket-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.paket-features li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--ink-600); font-weight: 600;
}
.paket-features .check-mark { width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0; margin-top: 1px; }
.paket-note { margin-top: 28px; text-align: center; font-size: 13px; color: var(--ink-500); max-width: 640px; margin-left: auto; margin-right: auto; }
.paket-note b { color: var(--red-700); }

/* =========== Skema 80:20 =========== */
.section-skema {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(250,204,21,.16), transparent 60%),
    linear-gradient(180deg, var(--ink-900), #1f1108);
  color: white;
}
.section-skema h2 { color: white; }
.section-skema .lede { color: rgba(255,255,255,.7); }
.section-skema .eyebrow { background: rgba(250,204,21,.16); color: var(--yellow-300); }
.skema-grid {
  display: grid; gap: 36px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 920px) { .skema-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.skema-visual {
  position: relative; aspect-ratio: 1/1;
  display: grid; place-items: center;
  width: 100%; max-width: 380px; margin: 0 auto;
}
.donut {
  width: 100%; height: 100%;
  max-width: 420px; max-height: 420px;
  border-radius: 50%;
  background: conic-gradient(var(--yellow-400) 0 288deg, var(--red-600) 288deg 360deg);
  display: grid; place-items: center;
  box-shadow: 0 30px 80px -20px rgba(250,204,21,.35), inset 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
}
.donut::after {
  content: ""; position: absolute; inset: 28px;
  background: var(--ink-900); border-radius: 50%;
  box-shadow: inset 0 4px 24px rgba(0,0,0,.4);
}
.donut-center { position: relative; z-index: 1; text-align: center; }
.donut-center .lbl { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 700; }
.donut-center .big { font-size: 56px; font-weight: 800; color: white; line-height: 1; margin-top: 6px; letter-spacing: 0; }
.donut-center .sub { font-size: 12px; color: var(--yellow-300); margin-top: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.skema-legend { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.legend-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.05); border-radius: var(--radius-md);
  padding: 18px 22px; border: 1px solid rgba(255,255,255,.08);
}
.legend-row .left { display: flex; gap: 14px; align-items: center; }
.legend-row .swatch { width: 14px; height: 14px; border-radius: 4px; }
.legend-row .name { font-weight: 700; color: white; }
.legend-row .role { font-size: 12px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; }
.legend-row .pct { font-size: 28px; font-weight: 800; color: white; font-family: var(--font-display); letter-spacing: 0; }
.skema-note {
  margin-top: 20px; padding: 16px 18px;
  background: rgba(250,204,21,.08); border: 1px dashed rgba(250,204,21,.35);
  border-radius: 12px; font-size: 13.5px; color: rgba(255,255,255,.75);
}

/* =========== Simulator =========== */
.section-sim { background: linear-gradient(180deg, var(--ink-50), white 60%); }
.sim-wrap {
  background: white; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); border: 1px solid var(--ink-200);
  overflow: hidden;
}
.sim-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1000px) { .sim-grid { grid-template-columns: 1.05fr .95fr; } }
.sim-inputs { padding: clamp(24px, 3vw, 40px); border-bottom: 1px solid var(--ink-200); }
@media (min-width: 1000px) {
  .sim-inputs { border-bottom: 0; border-right: 1px solid var(--ink-200); }
}
.sim-inputs h3 { font-size: 20px; margin-bottom: 4px; }
.sim-inputs .sub { font-size: 13.5px; color: var(--ink-500); margin-bottom: 24px; }
.sim-inputs-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
  margin-bottom: 18px;
}
.sim-inputs-head h3 { font-size: 20px; }
.sim-inputs-head .sub { font-size: 13.5px; color: var(--ink-500); margin-top: 2px; }
.sim-results {
  padding: clamp(24px, 3vw, 40px);
  background: linear-gradient(180deg, #FFF7ED, #FFFBEB 60%, white);
}
.sim-results h3 { font-size: 20px; margin-bottom: 4px; }
.sim-results .sub { font-size: 13.5px; color: var(--ink-500); margin-bottom: 24px; }
.result-row {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(150px, .7fr); align-items: baseline;
  gap: 16px; padding: 12px 0; border-bottom: 1px dashed var(--ink-200);
  font-size: 14px;
}
.result-row .key { color: var(--ink-600); font-weight: 600; }
.result-row .val { font-weight: 700; color: var(--ink-900); font-variant-numeric: tabular-nums; text-align: left; justify-self: stretch; }
.result-row.divider-top { border-top: 1px solid var(--ink-200); padding-top: 18px; margin-top: 8px; border-bottom-color: transparent; }
.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.split-card { border-radius: var(--radius-md); padding: 18px; color: white; position: relative; overflow: hidden; }
.split-card.mitra { background: linear-gradient(135deg, var(--red-600), var(--red-800)); }
.split-card.pusat { background: linear-gradient(135deg, var(--ink-800), var(--ink-900)); }
.split-card .who { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; opacity: .8; }
.split-card .pct { font-size: 28px; font-weight: 800; margin-top: 4px; font-family: var(--font-display); letter-spacing: 0; }
.split-card .amt { font-size: 18px; font-weight: 800; margin-top: 12px; font-variant-numeric: tabular-nums; }
.split-card .lbl { font-size: 11px; opacity: .7; margin-top: 2px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.bep-card {
  margin-top: 16px; padding: 22px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--yellow-400), var(--orange-500));
  color: var(--ink-900); display: flex; gap: 16px; align-items: center;
}
.bep-card .icon { font-size: 36px; }
.bep-card .lbl { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; opacity: .8; }
.bep-card .val { font-size: 28px; font-weight: 800; font-family: var(--font-display); letter-spacing: 0; }
.bep-card .desc { font-size: 12px; font-weight: 600; opacity: .85; }
.sim-disclaimer {
  margin-top: 16px; font-size: 12px; color: var(--ink-500);
  background: var(--ink-50); padding: 12px 14px; border-radius: 10px; border: 1px dashed var(--ink-200);
}
.sim-section-label {
  font-size: 11px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-500); margin: 18px 0 10px;
}
.paket-toggle {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 20px; padding: 6px; background: var(--ink-50); border-radius: 14px;
  border: 1px solid var(--ink-200);
}
.paket-toggle-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 12px 8px; border-radius: 10px;
  background: transparent; color: var(--ink-600);
  font-weight: 700; font-size: 13px;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}
.paket-toggle-btn .ico { font-size: 22px; }
.paket-toggle-btn .lbl { font-weight: 700; font-size: 13px; }
.paket-toggle-btn .prc { font-size: 11px; color: var(--ink-500); font-weight: 700; letter-spacing: .04em; }
.paket-toggle-btn.active { background: white; color: var(--red-700); box-shadow: 0 4px 12px -2px rgba(220,38,38,.18); }
.paket-toggle-btn.active .prc { color: var(--red-600); }
.scenario-toggle {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 8px;
}
.scenario-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 8px; border-radius: 12px;
  background: var(--ink-50); border: 1.5px solid var(--ink-200); color: var(--ink-600);
  transition: background .15s ease, border-color .15s ease, color .15s ease;
  min-height: 64px;
}
.scenario-btn .lbl { font-weight: 800; font-size: 13.5px; color: var(--ink-900); }
.scenario-btn .hint { font-size: 11px; color: var(--ink-500); font-weight: 600; line-height: 1.2; text-align: center; }
.scenario-btn:hover { border-color: var(--ink-400); background: white; }
.scenario-btn.active.sc-konservatif { background: #FEF3C7; border-color: var(--yellow-400); color: var(--ink-900); }
.scenario-btn.active.sc-normal { background: #FEE2E2; border-color: var(--red-600); }
.scenario-btn.active.sc-normal .lbl { color: var(--red-700); }
.scenario-btn.active.sc-optimis { background: #FFEDD5; border-color: var(--orange-500); }
.scenario-btn.active.sc-optimis .lbl { color: var(--orange-500); }
.locked-tag {
  display: inline-flex; align-items: center; gap: 4px; margin-left: 8px;
  font-size: 10.5px; font-weight: 700; color: var(--ink-500);
  background: var(--ink-50); border: 1px solid var(--ink-200);
  padding: 3px 8px; border-radius: 999px; letter-spacing: .02em; text-transform: none;
  vertical-align: middle;
}
.asumsi-readonly {
  background: var(--ink-50); border: 1px solid var(--ink-200);
  border-radius: 14px; padding: 4px 14px; margin-top: 4px;
}
.ar-row {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(150px, .7fr); align-items: center;
  gap: 16px; padding: 11px 0; border-bottom: 1px dashed var(--ink-200);
}
.ar-row:last-child { border-bottom: 0; }
.ar-label { display: flex; flex-direction: column; gap: 2px; font-size: 13.5px; font-weight: 600; color: var(--ink-600); }
.ar-hint { font-size: 11.5px; color: var(--ink-500); font-weight: 500; }
.ar-value { font-size: 14.5px; font-weight: 800; color: var(--ink-900); font-variant-numeric: tabular-nums; white-space: nowrap; text-align: left; justify-self: stretch; }
.ar-total { border-top: 2px solid var(--ink-900); border-bottom: 0; margin-top: 4px; padding-top: 12px; }
.ar-total .ar-label { color: var(--ink-900); font-weight: 800; font-size: 14px; }
.ar-total .ar-value { color: var(--red-700); font-size: 16px; }
.formula-toggle {
  margin-top: 16px; width: 100%; padding: 12px; border-radius: 10px;
  background: transparent; border: 1px dashed var(--ink-200);
  color: var(--red-700); font-weight: 700; font-size: 13px;
  transition: background .15s ease;
}
.formula-toggle:hover { background: var(--ink-50); }
.formula-box {
  margin-top: 10px; padding: 16px 18px;
  background: var(--ink-900); color: rgba(255,255,255,.9);
  border-radius: 12px; font-size: 13px; line-height: 1.7;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
}
.formula-line { padding: 2px 0; }
.formula-line b { color: var(--yellow-300); font-weight: 700; }
.warn-box {
  margin-top: 16px; padding: 14px 16px; border-radius: 12px;
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13.5px; line-height: 1.5;
}
.warn-box .warn-ico { font-size: 18px; flex-shrink: 0; line-height: 1.2; }
.warn-box b { font-weight: 800; }
.warn-danger { background: #FEE2E2; border: 1px solid #FCA5A5; color: #7F1D1D; }
.warn-info { background: #FEF3C7; border: 1px solid #FDE68A; color: #78350F; }
.sim-cta-new {
  display: flex; align-items: center; gap: 14px; margin-top: 20px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white); border-radius: 16px; text-decoration: none;
  box-shadow: 0 14px 30px -12px rgba(18,140,126,.55);
  transition: transform .15s ease, box-shadow .2s ease;
  position: relative; overflow: hidden;
}
.sim-cta-new::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 120px at 100% 0%, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.sim-cta-new:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -12px rgba(18,140,126,.65); }
.sim-cta-ico {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  background: rgba(255,255,255,.18); display: grid; place-items: center;
}
.sim-cta-ico svg { width: 24px; height: 24px; color: var(--white); }
.sim-cta-body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; line-height: 1.25; }
.sim-cta-title { font-size: 15.5px; font-weight: 800; letter-spacing: 0; }
.sim-cta-sub { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.85); }
.sim-cta-arrow { font-size: 22px; font-weight: 700; flex-shrink: 0; transition: transform .2s ease; }
.sim-cta-new:hover .sim-cta-arrow { transform: translateX(4px); }

/* Skeleton loading for calculator */
.sim-skeleton {
  padding: clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 12px;
}
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skel {
  background: linear-gradient(90deg, var(--ink-100) 25%, var(--ink-50) 50%, var(--ink-100) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

/* Simulator v2 */
.sim-field-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.sim-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.sim-field span {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-600);
}
.sim-field input {
  width: 100%;
  min-height: 44px;
  border: 1.5px solid var(--ink-200);
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 800;
  color: var(--ink-900);
  background: white;
  font-variant-numeric: tabular-nums;
}
.sim-field input:focus {
  outline: none;
  border-color: var(--red-600);
  box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}
.sim-field.compact input { min-height: 40px; }
.sim-field.has-error input {
  border-color: var(--red-600);
  background: #FFF5F5;
}
.sim-field-error {
  min-height: 16px;
  font-size: 11px;
  line-height: 1.35;
  color: var(--red-700);
  font-weight: 700;
}
.scenario-edit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.scenario-edit-card {
  border: 1.5px solid var(--ink-200);
  border-radius: 10px;
  padding: 8px;
  background: var(--ink-50);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.scenario-edit-card.active {
  border-color: var(--red-600);
  background: #FFF7ED;
  box-shadow: 0 8px 22px -16px rgba(220,38,38,.6);
}
.scenario-pick {
  width: 100%;
  text-align: left;
  padding: 4px 2px 8px;
}
.scenario-pick .lbl {
  display: block;
  color: var(--ink-900);
  font-size: 13px;
  font-weight: 900;
}
.scenario-pick .hint {
  display: block;
  margin-top: 2px;
  color: var(--ink-500);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}
.expense-public-list {
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  background: var(--ink-50);
  overflow: hidden;
}
.expense-public-row,
.expense-total-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, .7fr);
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px dashed var(--ink-200);
}
.expense-name {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink-800);
}
.expense-meta {
  margin-top: 2px;
  font-size: 11.5px;
  color: var(--ink-500);
  font-weight: 700;
}
.expense-monthly,
.expense-total-row b {
  color: var(--red-700);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: left;
  justify-self: stretch;
}
.expense-total-row {
  border-bottom: 0;
  background: white;
  color: var(--ink-900);
  font-size: 14px;
  font-weight: 900;
}
.sim-empty-state,
.faq-empty {
  padding: 18px;
  border: 1px dashed var(--ink-200);
  border-radius: 10px;
  background: white;
  color: var(--ink-500);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.result-row .val.danger { color: var(--red-700); }
.result-row .key.strong { font-weight: 900; color: var(--ink-900); }
.result-row .val.net {
  font-size: 22px;
  font-weight: 900;
}
.result-row .val.net.negative { color: var(--red-700); }
.validation-summary {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #FEE2E2;
  color: #7F1D1D;
  border: 1px solid #FCA5A5;
  font-size: 13px;
  font-weight: 800;
}
.sim-load-error {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 34px 20px;
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  background: white;
  color: var(--ink-600);
  text-align: center;
}
.sim-load-error b { color: var(--ink-900); }
.sim-load-error button {
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--red-600);
  color: white;
  font-weight: 800;
}
.bep-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255,255,255,.45);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}
@media (max-width: 760px) {
  .sim-field-grid,
  .scenario-edit-grid {
    grid-template-columns: 1fr;
  }
  .expense-public-row,
  .expense-total-row,
  .ar-row,
  .result-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .expense-monthly,
  .expense-total-row b,
  .ar-value,
  .result-row .val {
    justify-self: start;
    width: 100%;
    text-align: left;
  }
}

/* =========== Operasional Checklist =========== */
.section-ops { background: var(--ink-50); }
.ops-card {
  background: white; border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--ink-200); box-shadow: var(--shadow-sm);
}
.ops-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.ops-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; border-radius: 12px;
  background: var(--ink-50);
  font-size: 14.5px; font-weight: 600; color: var(--ink-800);
}
.check-mark {
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--red-600); color: white;
  display: grid; place-items: center; flex-shrink: 0;
}

/* =========== Peran Mitra =========== */
.peran-grid {
  display: grid; gap: 28px; align-items: center; grid-template-columns: 1fr;
}
@media (min-width: 880px) { .peran-grid { grid-template-columns: .9fr 1.1fr; } }
.peran-visual {
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.4), transparent 60%),
    linear-gradient(160deg, var(--red-600), var(--red-800));
  color: white; padding: 32px;
  display: flex; flex-direction: column; gap: 28px;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.peran-visual::after {
  content: "👔"; position: absolute; right: -28px; bottom: -34px; font-size: 160px; opacity: .12;
  pointer-events: none;
}
.peran-visual > div { position: relative; z-index: 1; }
.peran-visual .lbl { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .8; font-weight: 700; }
.peran-visual .ttl { font-size: clamp(24px, 3.2vw, 32px); font-weight: 800; margin-top: 6px; line-height: 1.12; letter-spacing: 0; }
.peran-visual .desc { font-size: 14px; opacity: .85; margin-top: 14px; max-width: 320px; line-height: 1.55; }
.peran-visual .num { font-size: clamp(48px, 6vw, 72px); font-weight: 800; line-height: 1; color: var(--yellow-300); font-family: var(--font-display); letter-spacing: 0; margin-top: 8px; }
.peran-visual .num small { font-size: 14px; color: rgba(255,255,255,.8); font-weight: 700; display: block; margin-top: 6px; letter-spacing: .12em; text-transform: uppercase; }
.peran-list { list-style: none; padding: 0; margin: 0; }
.peran-list li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--ink-200); }
.peran-list li:last-child { border-bottom: 0; }
.peran-list .step {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--cream-100); color: var(--red-700);
  display: grid; place-items: center; flex-shrink: 0; font-weight: 800; font-size: 14px;
}
.peran-list h4 { font-size: 16px; margin-bottom: 4px; }
.peran-list p { font-size: 14px; color: var(--ink-500); }

/* =========== Alur Bergabung — Phased Flow =========== */
.alur-phases {
  display: flex; flex-direction: column; gap: 28px;
  max-width: 1140px; margin: 0 auto;
}
.alur-phase { position: relative; }
.alur-phase-label { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; padding-left: 4px; }
.alur-phase-num {
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red-700); background: #FEE2E2; border: 1px solid #FCA5A5;
  padding: 5px 10px; border-radius: 999px;
}
.alur-phase-title { font-size: 15px; font-weight: 700; color: var(--ink-900); letter-spacing: 0; }
.alur-flow { display: flex; align-items: stretch; gap: 10px; flex-wrap: wrap; }
.alur-step {
  flex: 1 1 220px; min-width: 0;
  background: white; border: 1px solid var(--ink-200); border-radius: 14px;
  padding: 18px 18px 16px; display: flex; gap: 14px; align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.alur-step:hover { transform: translateY(-2px); border-color: #FCA5A5; box-shadow: 0 12px 24px -12px rgba(220,38,38,.18); }
.alur-pin {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 999px;
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  color: white; font-weight: 800; font-size: 14px;
  font-family: var(--font-display); display: grid; place-items: center;
  box-shadow: 0 4px 10px -3px rgba(220,38,38,.55);
}
.alur-step-body { flex: 1; min-width: 0; }
.alur-step h4 { font-size: 14.5px; font-weight: 800; color: var(--ink-900); margin-bottom: 4px; letter-spacing: 0; line-height: 1.3; }
.alur-step p { font-size: 12.5px; color: var(--ink-500); line-height: 1.5; }
.alur-arrow { align-self: center; flex-shrink: 0; font-size: 22px; font-weight: 700; color: #FCA5A5; line-height: 1; }
@media (max-width: 900px) {
  .alur-flow { gap: 10px; }
  .alur-step { flex: 1 1 calc(50% - 5px); }
  .alur-arrow { display: none; }
}
@media (max-width: 520px) {
  .alur-phases { gap: 22px; }
  .alur-step { flex: 1 1 100%; padding: 16px; }
  .alur-step h4 { font-size: 14px; }
}

/* =========== Keunggulan =========== */
.keunggulan-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.keunggulan-card {
  background: linear-gradient(180deg, white, #FFFBF5);
  border: 1px solid #FDE68A; border-radius: var(--radius-md);
  padding: 22px; display: flex; gap: 14px; align-items: flex-start;
}
.keunggulan-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--yellow-400); color: var(--ink-900);
  display: grid; place-items: center; flex-shrink: 0;
}
.keunggulan-card h4 { font-size: 15px; font-weight: 800; margin-bottom: 4px; color: var(--ink-900); }
.keunggulan-card p { font-size: 13.5px; color: var(--ink-500); }

/* =========== FAQ =========== */
.section-faq { background: var(--ink-50); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: white; border-radius: var(--radius-md); margin-bottom: 12px;
  border: 1px solid var(--ink-200); overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq-item[data-open="true"] { border-color: var(--red-600); box-shadow: var(--shadow-md); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 22px; width: 100%; text-align: left;
  font-weight: 700; font-size: 15.5px; color: var(--ink-900);
}
.faq-q .chev {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--ink-100); color: var(--ink-800);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform .2s ease, background .15s ease, color .15s ease;
}
.faq-item[data-open="true"] .chev { background: var(--red-600); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item[data-open="true"] .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 22px 22px; font-size: 14.5px; color: var(--ink-500); }
.faq-cta { margin-top: 32px; text-align: center; }
.faq-cta p { color: var(--ink-600); font-weight: 600; margin-bottom: 12px; }

/* =========== Form =========== */
.section-form {
  background:
    radial-gradient(800px 500px at 0% 100%, rgba(249,115,22,.16), transparent 60%),
    linear-gradient(180deg, white, var(--cream-50));
}
.form-grid {
  display: grid; gap: 36px; align-items: stretch; grid-template-columns: 1fr;
}
@media (min-width: 920px) { .form-grid { grid-template-columns: .9fr 1.1fr; gap: 56px; } }
.form-info h2 { margin-bottom: 16px; }
.form-info .lede { margin-bottom: 28px; }
.info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.info-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px; background: white; border-radius: 12px; border: 1px solid var(--ink-200);
}
.info-list .ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: #FEE2E2; color: var(--red-700); display: grid; place-items: center; flex-shrink: 0;
}
.info-list .ttl { font-weight: 700; color: var(--ink-900); font-size: 14.5px; }
.info-list .sub { font-size: 13px; color: var(--ink-500); margin-top: 2px; }
.form-card {
  background: white; border-radius: var(--radius-xl);
  padding: clamp(24px, 3.5vw, 36px);
  box-shadow: var(--shadow-lg); border: 1px solid var(--ink-200);
}
.form-card h3 { margin-bottom: 6px; }
.form-card .sub { font-size: 14px; color: var(--ink-500); margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--ink-800); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 1.5px solid var(--ink-200); background: var(--ink-50);
  color: var(--ink-900); font-weight: 600; outline: none;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red-600); background: white; box-shadow: 0 0 0 4px rgba(220,38,38,.08);
}
.field textarea { min-height: 100px; resize: vertical; font-family: inherit; }
.field label .req { color: var(--red-600); margin-left: 2px; }
.field label .optional { color: var(--ink-500); font-weight: 600; font-size: 12px; margin-left: 4px; }
.field input.has-error, .field select.has-error, .field textarea.has-error {
  border-color: var(--red-600); background: #FEF2F2;
}
.field-error {
  margin-top: 6px; font-size: 12.5px; font-weight: 600; color: var(--red-700);
  display: flex; gap: 6px; align-items: flex-start;
}
.field-error::before { content: "⚠"; line-height: 1; }
.form-submit { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.form-note { font-size: 12px; color: var(--ink-500); text-align: center; margin-top: 8px; }
.form-success-state {
  text-align: center; padding: 36px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.form-success-state .icon {
  width: 72px; height: 72px; border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow-400), var(--orange-500));
  color: white; display: grid; place-items: center; font-size: 36px;
  box-shadow: 0 12px 32px -8px rgba(249,115,22,.45);
}
.form-success-state h3 { font-size: 22px; }
.form-success-state p { color: var(--ink-500); max-width: 360px; }
.spinner {
  display: inline-block; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.4); border-top-color: white;
  border-radius: 999px; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =========== Final CTA =========== */
.final-cta {
  background:
    radial-gradient(600px 400px at 100% 100%, rgba(250,204,21,.25), transparent 60%),
    radial-gradient(600px 400px at 0% 0%, rgba(249,115,22,.30), transparent 60%),
    linear-gradient(135deg, var(--red-700), var(--red-800));
  color: white; padding: clamp(64px, 9vw, 110px) 0;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,.06) 0 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.final-inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.final-cta h2 { color: white; margin-bottom: 16px; text-wrap: balance; }
.final-cta p { color: rgba(255,255,255,.85); font-size: 17px; max-width: 580px; margin: 0 auto 32px; }
.final-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* =========== Footer =========== */
.footer {
  background: var(--ink-900); color: rgba(255,255,255,.6);
  padding: 48px 0 32px; text-align: center; font-size: 13px;
}
.footer-brand-mark {
  width: 56px; height: 56px; border-radius: 14px;
  margin: 0 auto 12px;
}
.footer .disclaimer {
  max-width: 720px; margin: 0 auto;
  font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.55;
}

/* =========== Floating WhatsApp =========== */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  width: 60px; height: 60px; border-radius: 999px;
  background: #25D366; color: white; display: grid; place-items: center;
  box-shadow: 0 16px 32px -8px rgba(37,211,102,.5);
  transition: transform .15s ease, box-shadow .2s ease;
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab svg { width: 30px; height: 30px; }

/* =========== Utilities =========== */
.text-center { text-align: center; }

/* =========== Focus visible (accessibility) =========== */
.btn:focus-visible, .faq-q:focus-visible,
.paket-toggle-btn:focus-visible, .scenario-btn:focus-visible,
.formula-toggle:focus-visible {
  outline: 3px solid var(--yellow-400); outline-offset: 3px;
}
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: none; }

/* =========== Responsive — Mobile =========== */
@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .section { padding: 40px 0; }
  .section-head { margin-bottom: 24px; }
  h1 { font-size: clamp(30px, 8vw, 38px); }
  h2 { font-size: clamp(24px, 6vw, 32px); }
  .hero-grid { gap: 36px; }
  .hero-mock { padding: 20px; }
  .hero-mock .mock-window { padding: 14px; }
  .hero-ctas .btn { flex: 1 1 auto; }
  .hero-ctas { gap: 10px; }
  .hero-stats { gap: 12px; padding-top: 24px; margin-top: 40px; }
  .hero-stats .num { font-size: 26px; }
  .hero-stats .lbl { font-size: 10.5px; letter-spacing: .08em; }
  .hero-subpoints { gap: 10px 18px; font-size: 13.5px; }
  .btn { padding: 12px 18px; font-size: 14px; }
  .btn-lg { padding: 15px 22px; font-size: 15px; }
  .sim-inputs, .sim-results { padding: 24px 20px; }
  .split-cards { grid-template-columns: 1fr; gap: 10px; }
  .bep-card { flex-direction: column; align-items: flex-start; gap: 8px; padding: 18px; }
  .bep-card .icon { font-size: 28px; }
  .sim-inputs-head { flex-direction: row; align-items: center; }
  .sim-inputs-head h3 { font-size: 18px; }
  .scenario-toggle { gap: 6px; }
  .scenario-btn { padding: 10px 6px; min-height: 60px; }
  .scenario-btn .lbl { font-size: 12.5px; }
  .scenario-btn .hint { font-size: 10.5px; }
  .skema-visual { aspect-ratio: 1/1; max-width: 320px; margin: 0 auto; }
  .donut-center .big { font-size: 44px; }
  .donut::after { inset: 22px; }
  .peran-visual { padding: 28px; }
  .paket-hero { padding: 24px 22px 20px; }
  .paket-body { padding: 22px 20px 22px; gap: 16px; }
  .paket-meta { grid-template-columns: 1fr; gap: 8px; }
  .form-grid { gap: 28px; }
  .form-card { padding: 24px 20px; }
  .faq-q { padding: 16px 18px; font-size: 14.5px; gap: 12px; }
  .faq-q .chev { width: 28px; height: 28px; }
  .faq-a-inner { padding: 0 18px 18px; font-size: 14px; }
  .ops-card { padding: 22px 18px; }
  .ops-item { padding: 12px; font-size: 14px; }
  .solusi-card { padding: 24px 22px; }
  .solusi-card .num { font-size: 44px; top: 10px; right: 14px; }
  .wa-fab { width: 54px; height: 54px; right: 16px; }
  .wa-fab svg { width: 26px; height: 26px; }
  .final-ctas { gap: 10px; }
  .final-ctas .btn { flex: 1 1 100%; }
  .sim-cta-new { padding: 12px 14px; gap: 11px; }
  .sim-cta-ico { width: 38px; height: 38px; }
  .sim-cta-ico svg { width: 20px; height: 20px; }
  .sim-cta-title { font-size: 14px; }
  .sim-cta-sub { font-size: 11.5px; }
}
@media (max-width: 420px) {
  .hero-mock { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-stats .num { font-size: 22px; }
  .hero-badges .badge-pill { font-size: 12px; padding: 7px 12px; }
  .paket-features li { font-size: 13.5px; }
}
@media (min-width: 721px) and (max-width: 979px) {
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 28px; }
  .hero-grid { gap: 40px; }
  .hero-mock { padding: 24px; max-width: 480px; }
  .hero-stats { margin-top: 40px; padding-top: 28px; gap: 18px; }
  .peran-grid { gap: 24px; }
  .peran-visual { max-width: 560px; margin: 0 auto; padding: 30px; }
  .skema-visual { max-width: 320px; }
  .donut-center .big { font-size: 48px; }
  .sim-inputs, .sim-results { padding: 28px 24px; }
}

/* =========== Bukti Nyata / Cabang =========== */
.section-branches { background: var(--cream-50); }
.branches-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 48px;
  background: white; border-radius: var(--radius-xl);
  border: 1px solid var(--ink-200); padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
@media (max-width: 540px) {
  .branches-stats { grid-template-columns: 1fr; gap: 16px; padding: 20px 18px; }
}
.branches-stat-num {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--red-700);
  font-family: var(--font-display); letter-spacing: 0;
}
.branches-stat-lbl { font-size: 13px; font-weight: 600; color: var(--ink-500); margin-top: 4px; }
.branches-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.branch-card {
  background: white; border-radius: var(--radius-md);
  border: 1px solid var(--ink-200);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.branch-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.branch-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: #FEE2E2; color: var(--red-700);
  display: grid; place-items: center; flex-shrink: 0;
}
.branch-info { flex: 1; min-width: 0; }
.branch-name { font-size: 15px; font-weight: 700; color: var(--ink-900); }
.branch-sub { font-size: 13px; color: var(--ink-500); margin-top: 2px; }
.branch-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  background: #DCFCE7; color: #15803D;
  flex-shrink: 0; white-space: nowrap;
}
.branch-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #16A34A; display: inline-block; flex-shrink: 0;
}
.branches-disclaimer {
  margin-top: 32px; text-align: center; font-size: 13px; color: var(--ink-500);
  max-width: 640px; margin-inline: auto;
  padding: 14px 18px;
  background: white; border-radius: var(--radius-md);
  border: 1px solid var(--ink-200);
  display: block;
}

/* =========== ADMIN STYLES =========== */
.admin-body { background: var(--ink-50); min-height: 100vh; }

.admin-login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-800) 100%);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.login-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; width: 100%; max-width: 440px; box-shadow: var(--shadow-lg);
}
.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo .logo-icon {
  width: 64px; height: 64px; background: var(--white);
  border-radius: var(--radius); display: block; object-fit: contain;
  padding: 4px; margin: 0 auto 12px;
  box-shadow: 0 14px 28px -18px rgba(17,24,39,.5);
}
.login-logo h2 { font-size: 1.5rem; font-weight: 800; }
.login-logo p { font-size: 0.875rem; color: var(--ink-500); }

.alert {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600; margin-bottom: 20px;
}
.alert-error { background: var(--red-light); color: #B91C1C; border: 1px solid rgba(220,38,38,.2); }
.alert-success { background: var(--green-light); color: var(--green); border: 1px solid rgba(67,160,71,.2); }
.alert-warning { background: var(--yellow-light); color: #92400E; border: 1px solid rgba(250,204,21,.3); }

.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--ink-900); color: var(--white); padding: 0;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
  display: flex; flex-direction: column;
}
.sidebar-header { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.sidebar-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--white); font-size: 1rem; }
.sidebar-logo-icon {
  width: 36px; height: 36px; background: var(--white); border-radius: 8px;
  display: block; object-fit: contain; padding: 3px;
}
.sidebar-nav { padding: 16px 12px; flex: 1; }
.sidebar-section-label {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255,255,255,.35); padding: 12px 8px 6px;
}
.sidebar-nav a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: var(--radius-sm); color: rgba(255,255,255,.65);
  font-size: 0.875rem; font-weight: 600; transition: all var(--transition); margin-bottom: 2px;
}
.sidebar-nav a:hover { background: rgba(255,255,255,.06); color: var(--white); }
.sidebar-nav a.active { background: var(--red-600); color: var(--white); }
.sidebar-nav a .nav-icon { font-size: 1.1rem; width: 20px; text-align: center; }
.sidebar-footer { padding: 16px 12px; border-top: 1px solid rgba(255,255,255,.08); }
.admin-main { overflow-y: auto; }
.admin-topbar {
  background: var(--white); padding: 16px 28px; border-bottom: 1px solid var(--ink-200);
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; z-index: 100;
}
.admin-topbar h1 { font-size: 1.3rem; font-weight: 800; }
.admin-content { padding: 28px; }

.stat-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 28px; }
.stat-card {
  background: var(--white); border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow); display: flex; gap: 16px; align-items: flex-start;
}
.stat-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.stat-icon.orange { background: rgba(220,38,38,.1); }
.stat-icon.blue   { background: rgba(33,150,243,.1); }
.stat-icon.red    { background: rgba(220,38,38,.1); }
.stat-icon.green  { background: rgba(67,160,71,.1); }
.stat-num { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--ink-500); margin-top: 4px; }

.card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.card-header {
  padding: 18px 24px; border-bottom: 1px solid var(--ink-200);
  display: flex; justify-content: space-between; align-items: center;
}
.card-header h2 { font-size: 1rem; font-weight: 800; }
.card-body { padding: 0; }

.admin-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.admin-table th {
  background: var(--ink-50); padding: 12px 16px; text-align: left;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--ink-500); white-space: nowrap;
}
.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--ink-200); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--ink-50); }

.status-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
}
.status-baru       { background: rgba(33,150,243,.1); color: #1976D2; }
.status-dihubungi  { background: rgba(250,204,21,.15); color: #92400E; }
.status-closed     { background: rgba(67,160,71,.1); color: var(--green); }

.settings-form { max-width: 700px; }
.field-group {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); margin-bottom: 20px;
}
.field-group h3 {
  font-size: 1rem; font-weight: 800; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--ink-200);
}
.field-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
.field-row:last-child { margin-bottom: 0; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field-label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--ink-600); margin-bottom: 6px; }
.field-hint { font-size: 0.75rem; color: var(--ink-500); margin-top: 4px; }
.admin-input, .admin-textarea, .admin-select {
  width: 100%; padding: 11px 14px; border: 2px solid var(--ink-200);
  border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--ink-900);
  background: var(--white); transition: border-color var(--transition); font-family: inherit;
}
.admin-input:focus, .admin-textarea:focus, .admin-select:focus {
  outline: none; border-color: var(--red-600);
}
.admin-textarea { resize: vertical; min-height: 80px; }

.preset-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.preset-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.preset-card-header { padding: 14px 20px; background: var(--red-600); color: var(--white); }
.preset-card-header h3 { font-size: 0.95rem; font-weight: 700; }
.preset-tabs { display: flex; border-bottom: 1px solid var(--ink-200); }
.preset-tab {
  flex: 1; padding: 10px; font-size: 0.8rem; font-weight: 600;
  background: none; border: none; border-bottom: 2px solid transparent;
  color: var(--ink-500); cursor: pointer; transition: all var(--transition);
}
.preset-tab.active { color: var(--red-600); border-bottom-color: var(--red-600); background: rgba(220,38,38,.04); }
.preset-fields { padding: 16px 20px; display: none; }
.preset-fields.active { display: block; }

.fitur-list { display: flex; flex-direction: column; gap: 8px; }
.fitur-row { display: flex; gap: 8px; align-items: center; }
.fitur-row input { flex: 1; }
.btn-del-fitur {
  width: 32px; height: 32px; background: #FEE2E2; color: var(--red-600);
  border: none; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; cursor: pointer; transition: all var(--transition);
}
.btn-del-fitur:hover { background: var(--red-600); color: white; }

.filter-tabs { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 18px; border-radius: 50px; border: 2px solid var(--ink-200);
  background: var(--white); font-size: 0.85rem; font-weight: 700;
  color: var(--ink-500); cursor: pointer; transition: all var(--transition);
  text-decoration: none; display: inline-flex; align-items: center;
}
.filter-tab.active, .filter-tab:hover { border-color: var(--red-600); color: var(--red-600); background: rgba(220,38,38,.05); }

.action-btns { display: flex; gap: 6px; }
.btn-icon {
  width: 32px; height: 32px; border-radius: var(--radius-sm); border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; cursor: pointer; transition: all var(--transition);
}
.btn-icon.wa { background: rgba(37,211,102,.1); color: #1ebe57; }
.btn-icon.wa:hover { background: #25D366; color: white; }
.btn-icon.del { background: #FEE2E2; color: var(--red-600); }
.btn-icon.del:hover { background: var(--red-600); color: white; }

.admin-page-intro {
  max-width: 900px;
  margin-bottom: 20px;
}
.admin-page-intro p,
.admin-section-head p {
  color: var(--ink-500);
  font-size: .9rem;
}
.admin-wide-section {
  max-width: none;
}
.admin-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink-200);
}
.admin-section-head h3 {
  margin-bottom: 4px;
  padding-bottom: 0;
  border-bottom: 0;
}
.business-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.business-card,
.dynamic-admin-row {
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  background: var(--white);
  padding: 16px;
}
.business-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.business-card-head h4 {
  font-size: 1rem;
  margin: 0;
}
.field-row.compact {
  gap: 12px;
  margin-bottom: 12px;
}
.scenario-admin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.scenario-admin-box {
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  padding: 12px;
  background: var(--ink-50);
}
.dynamic-admin-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dynamic-admin-row {
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  background: var(--white);
  padding: 18px;
}
.dynamic-row-grid {
  display: grid;
  gap: 12px;
  align-items: end;
}
.expense-grid {
  grid-template-columns: minmax(160px, 1.4fr) minmax(120px, .8fr) minmax(120px, .8fr) 88px 88px;
}
.admin-switch {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  background: var(--ink-50);
  color: var(--ink-700);
  font-size: .85rem;
  font-weight: 800;
  cursor: pointer;
}
.admin-switch-block {
  display: flex;
  width: 100%;
}
.admin-switch input {
  width: 18px;
  height: 18px;
  accent-color: var(--red-600);
  flex-shrink: 0;
}
.dynamic-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--ink-100);
}

/* FAQ layout */
.faq-form-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-actions {
  justify-content: space-between;
}
.faq-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.faq-sort-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-danger-soft {
  background: #FEE2E2;
  border: 1px solid #FCA5A5;
  color: var(--red-700);
}
.btn-danger-soft:hover {
  background: var(--red-600);
  color: white;
}
.admin-add-btn {
  background: var(--ink-900);
  color: white;
  border: 1px solid var(--ink-900);
}
.admin-empty-state {
  padding: 18px;
  border: 1px dashed var(--ink-200);
  border-radius: 10px;
  background: var(--ink-50);
  color: var(--ink-500);
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
}

.save-toast {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--green); color: white; padding: 14px 22px;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  font-size: 0.9rem; font-weight: 700; display: none; z-index: 9999;
  animation: slideInRight 0.3s ease;
}
@keyframes slideInRight {
  from { transform: translateX(100px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* Admin responsive */
@media (min-width: 768px) {
  .stat-cards { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; position: fixed; z-index: 999; height: 100vh; width: 240px; }
  .admin-sidebar.open { display: flex; }
  #sidebarToggle { display: flex !important; }
  .preset-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .admin-section-head { flex-direction: column; align-items: stretch; }
  .business-admin-grid,
  .scenario-admin-grid,
  .expense-grid {
    grid-template-columns: 1fr;
  }
  .faq-controls { flex-direction: column; align-items: flex-start; }
  .faq-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .faq-actions > div:last-child { display: flex; gap: 8px; }
  .faq-actions > div:last-child .btn { flex: 1; }
}
