/* ================================================================
   PENOL.NET — Dark Signal
   Color palette, typography, layout, components
   Edit color tokens or fonts here. All pages share this stylesheet.
================================================================ */

:root {
  /* Core palette — Penol.net light / red+black */
  --bg-0: #f5f3ee;            /* paper */
  --bg-1: #ffffff;            /* panel */
  --bg-2: #ece8df;            /* raised */
  --line: #1a1a1a22;          /* hairline */
  --ink: #0a0a0a;             /* primary text */
  --ink-dim: #4a4a4a;         /* muted text */
  --ink-faint: #8a8478;       /* faintest */

  --signal: #e10a17;          /* signature red — primary accent */
  --signal-glow: #e10a1733;
  --spark: #0a0a0a;           /* black accent */
  --pulse: #e10a17;           /* alert / live dot */

  /* Type */
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-mono: "Plus Jakarta Sans", sans-serif;

  /* Layout */
  --sidebar-w: 280px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, .05), 0 2px 8px rgba(10, 10, 10, .04);
  --shadow-md: 0 4px 14px rgba(10, 10, 10, .08), 0 2px 6px rgba(10, 10, 10, .04);
  --shadow-lg: 0 12px 36px rgba(10, 10, 10, .1), 0 4px 12px rgba(10, 10, 10, .05);
  --shadow-float: 0 18px 48px rgba(10, 10, 10, .12), 0 8px 20px rgba(225, 10, 23, .08);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== Layout shell ===== */
.shell { display: flex; flex-direction: row; min-height: 100vh; }

/* ===== Sidebar ===== */
.sidebar {
  width: var(--sidebar-w);
  flex: 0 0 var(--sidebar-w);
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  border-left: 1px solid #000;
  padding: 28px 22px;
  position: sticky;
  top: 0; height: 100vh;
  overflow-y: auto;
  display: flex; flex-direction: column;
  z-index: 50;
  color: #f5f3ee;
}
.sidebar .nav a,
.sidebar .nav-expander {
  text-transform: uppercase;
  letter-spacing: .08em;
}
.sidebar .nav-sub a {
  text-transform: capitalize;
  letter-spacing: .035em;
}
.sidebar .nav a { color: #b8b3a8; }
.sidebar .nav a:hover { color: #fff; background: rgba(225,10,23,.12); border-right-color: var(--signal); }
.sidebar .nav a.active { color: var(--signal); background: rgba(225,10,23,.15); border-right-color: var(--signal); }
.sidebar .nav-label, .sidebar .brand-tag, .sidebar-foot { color: #6a6358; }
.sidebar .nav-sub {
  border-right-color: #ffffff15;
  margin: 6px 12px 10px 22px;
  padding-left: 14px;
}
.sidebar-foot { border-top-color: #ffffff15; }

.brand {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 0;
  text-decoration: none; color: inherit;
}
.sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 38px; 
}
.sidebar-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 52px;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(245, 243, 238, .08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
  color: #f5f3ee;
  font-size: 30px;
  line-height: .9;
  cursor: pointer;
  padding: 0;
}
.sidebar-close:hover {
  background: rgba(225, 10, 23, .2);
}
.brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .04em;
  color: #f5f3ee;
  white-space: nowrap;
  display: none;
}
.site-logo { object-fit: contain; }
.site-logo--side { height: 52px; width: auto; display: block; }
.site-logo--topbar { height: 40px; width: auto; display: block; }
.site-logo--foot { height: 44px; width: auto; display: block; }
.topbar-brand, .foot-brand {
  display: flex; align-items: center; line-height: 0; text-decoration: none;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.6); }
}
.brand-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-right: 4px;
  margin-top: -4px;
  margin-bottom: 28px;
}

.nav-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: .25em;
  text-transform: uppercase;
  margin: 22px 0 10px;
  padding-right: 4px;
}

.nav { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 14px;
  border-right: 2px solid transparent;
  transition: all .2s var(--ease);
  position: relative;
}
.nav a:hover {
  color: var(--ink);
  background: rgba(225,10,23,.06);
  border-right-color: var(--signal);
}
.nav a.active {
  color: var(--signal);
  background: rgba(0,240,200,.06);
  border-right-color: var(--signal);
}
.nav-group > .nav-sub {
  display: none;
}
.nav-group.is-open > .nav-sub {
  display: flex;
}
.nav-expander {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-right: 2px solid transparent;
  background: transparent;
  color: #b8b3a8;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
  transition: all .2s var(--ease);
}
.sidebar .nav-expander:hover {
  color: #fff;
  background: rgba(225,10,23,.12);
  border-right-color: var(--signal);
}
.sidebar .nav-expander.active {
  color: var(--signal);
  background: rgba(225,10,23,.15);
  border-right-color: var(--signal);
}
.sidebar .nav-expander:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
}
.nav-expander-label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.sidebar .nav-expander-caret {
  display: none;
}
.nav-sub {
  list-style: none;
  margin: 4px 14px 6px 0;
  padding-right: 12px;
  padding-left: 0;
  border-right: 1px dashed var(--line);
  border-left: none;
  flex-direction: column;
  gap: 1px;
}
.nav-sub a {
  font-size: 13px;
  padding: 7px 10px;
  font-family: var(--font-mono);
  letter-spacing: .02em;
}

.sidebar-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  line-height: 1.7;
}
.sidebar-foot .live {
  color: var(--signal);
  display: inline-flex; align-items: center; gap: 6px;
}
.sidebar-foot .live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--signal); box-shadow: 0 0 8px var(--signal);
  animation: pulseDot 1.6s infinite;
}

/* ===== Main content ===== */
.main { flex: 1; min-width: 0; }
.topbar {
  display: flex; justify-content: flex-start; align-items: center;
  gap: 12px;
  padding: 18px 48px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(245,243,238,.85);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 40;
}
.topbar-side {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}
.topbar-side--start { justify-content: flex-start; }
.topbar-side--end { justify-content: flex-end; }
.topbar .crumb {
  flex: 0 1 auto;
  text-align: center;
  min-width: 0;
  max-width: min(72vw, 720px);
  text-transform: none;
  letter-spacing: .04em;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-dim);
}
.topbar .crumb span { color: var(--signal); font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  line-height: 0;
}
.menu-toggle:hover {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.menu-toggle-icon {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  box-shadow: 0 -5px 0 0 var(--ink), 0 5px 0 0 var(--ink);
}

.desk-nav {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 6px;
  margin-left: 12px;
}
.desk-nav-link,
.desk-nav-dd-btn {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .02em;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.desk-nav-link:focus-visible,
.desk-nav-dd-btn:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}
.desk-nav-link:hover,
.desk-nav-dd-btn:hover {
  color: var(--signal);
  background: rgba(225, 10, 23, .08);
}
.desk-nav-link.active,
.desk-nav-dd-btn.active {
  color: var(--signal);
}
.desk-nav-group {
  position: relative;
}
.desk-nav-dd-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 208px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 60;
}
.desk-nav-dd-panel a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--ink-dim);
  text-decoration: none;
  text-transform: capitalize;
}
.desk-nav-dd-panel a:hover {
  background: rgba(225, 10, 23, .08);
  color: var(--signal);
}
.desk-nav-dd-panel a.active {
  color: var(--signal);
  font-weight: 700;
}
.desk-nav-group:hover .desk-nav-dd-panel,
.desk-nav-group:focus-within .desk-nav-dd-panel,
.desk-nav-group.desk-open-toggle .desk-nav-dd-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.topbar-side--start {
  flex-wrap: wrap;
}

@media (min-width: 769px) {
  .desk-nav {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
  }
  .topbar-brand {
    display: flex;
  }
  .topbar .crumb {
    display: none;
  }
  .sidebar {
    display: none !important;
  }
  .menu-toggle {
    display: none !important;
  }
}

.page { padding: 56px 48px 80px; max-width: 1200px; }

/* ===== Hero ===== */
.hero {
  padding: 80px 48px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--signal);
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-meta::before {
  content: ""; width: 32px; height: 1px; background: var(--signal);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 96px);
  line-height: .95;
  letter-spacing: -.03em;
  margin-bottom: 28px;
  max-width: 14ch;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--signal), #ff3a45);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  max-width: 56ch;
  font-size: 18px;
  color: var(--ink-dim);
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.visual-block {
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--bg-1);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.visual-block img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.img-brand-red {
}
.visual-block--svc-banner img {
  display: block;
  aspect-ratio: unset;
  object-fit: unset;
  width: 100%;
  height: auto;
}
.svc-img--svc-banner {
  aspect-ratio: unset;
}
.svc-img--svc-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: unset;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-1);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  cursor: pointer;
  transition: all .2s var(--ease);
  position: relative;
}
.btn:hover {
  border-color: var(--signal);
  color: var(--signal);
  box-shadow: var(--shadow-md), 0 0 24px var(--signal-glow);
}
.btn.primary {
  background: var(--signal);
  color: #ffffff;
  border-color: var(--signal);
  font-weight: 700;
  box-shadow: var(--shadow-md), 0 4px 20px rgba(225, 10, 23, .25);
}
.btn.primary:hover {
  background: #ff3a45;
  border-color: #ff3a45;
  color: #ffffff;
  box-shadow: var(--shadow-lg), 0 0 32px var(--signal-glow);
}
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Section primitives ===== */
.section { padding: 72px 48px; border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 48px; max-width: 64ch; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--signal);
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.muted { color: var(--ink-dim); }

/* ===== Service grid (Home) ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: transparent;
  border: none;
}
@media (max-width: 960px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}
.svc-card {
  background: var(--bg-1);
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
  min-height: 220px;
  transition: background .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.svc-card:hover {
  background: var(--bg-2);
  box-shadow: var(--shadow-float);
  transform: translateY(-3px);
}
.svc-card::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 2px;
  background: var(--signal); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card .ix {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-faint); letter-spacing: .15em;
}
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  margin: 18px 0 10px;
  letter-spacing: -.01em;
}
.svc-card p { color: var(--ink-dim); font-size: 14px; flex: 1; }
.svc-card .more {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--signal); letter-spacing: .15em; text-transform: uppercase;
  margin-top: 16px;
}

/* ===== Pricing cards ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.price-card {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px 24px;
  position: relative;
  transition: all .25s var(--ease);
}
.price-card:hover {
  border-color: var(--signal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-float), 0 20px 60px -20px var(--signal-glow);
}
.price-card.featured {
  border-color: var(--signal);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--signal-glow), 0 16px 48px -12px var(--signal-glow);
}
.price-card.featured::before {
  content: "PILIHAN UTAMA";
  position: absolute; top: -10px; left: 24px;
  background: var(--signal); color: #ffffff;
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 700; letter-spacing: .15em;
  padding: 4px 10px;
  border-radius: 999px;
}
.price-card .pkg {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-faint); letter-spacing: .2em; text-transform: uppercase;
}
.price-card .speed {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 800;
  margin: 12px 0 4px;
  letter-spacing: -.02em;
  background: linear-gradient(180deg, var(--ink), var(--signal));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-card .speed sub {
  font-size: 14px; font-family: var(--font-mono);
  color: var(--ink-dim); margin-left: 4px;
  vertical-align: baseline;
}
.price-card .devices {
  color: var(--ink-dim); font-size: 13px;
  padding: 14px 0; border-bottom: 1px dashed var(--line);
  font-family: var(--font-mono);
}
.price-card .price {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
  margin: 16px 0 4px;
}
.price-card .per {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-faint); margin-bottom: 18px;
}
.price-card .wa {
  display: block; text-align: center;
  padding: 12px; background: var(--bg-1);
  border: 1px solid var(--line); color: var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; transition: all .2s var(--ease);
}
.price-card .wa:hover {
  background: var(--signal); color: #ffffff; border-color: var(--signal);
  box-shadow: var(--shadow-md), 0 4px 16px rgba(225, 10, 23, .2);
}

/* ===== About sub-sections ===== */
.about-sub {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.about-sub--full {
  grid-template-columns: 1fr;
  gap: 0;
}
.about-sub:last-child { border-bottom: none; }
.about-sub .label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .25em;
  color: var(--ink-faint); text-transform: uppercase;
  padding-top: 8px;
  border-top: 2px solid var(--signal);
  width: fit-content;
}
.about-sub h2 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.about-sub p { color: var(--ink-dim); margin-bottom: 12px; max-width: 64ch; }
.about-sub ol {
  list-style: none; counter-reset: m;
  margin-top: 18px;
}
.about-sub ol li {
  counter-increment: m;
  padding: 16px 0 16px 56px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--ink);
}
.about-sub ol li::before {
  content: "0" counter(m);
  position: absolute; left: 0; top: 16px;
  font-family: var(--font-mono); color: var(--signal);
  font-size: 13px; letter-spacing: .1em;
}

/* ===== Service detail page ===== */
.svc-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.svc-img {
  aspect-ratio: 4/3;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.svc-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-img.placeholder {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.svc-img.placeholder::before,
.svc-img.placeholder::after {
  content: none;
}

.benefits { list-style: none; margin-top: 24px; }
.benefits li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--ink);
}
.benefits li::before {
  content: "▸"; position: absolute; left: 0; top: 14px;
  color: var(--signal);
}

/* ===== Partners grid ===== */
.partners-grid,
.mitra-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: transparent;
  border: none;
}
.partner-cell {
  background: #ffffff;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px; color: var(--ink-faint);
  letter-spacing: .2em;
  transition: all .2s var(--ease);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.partner-cell:hover {
  background: #ffffff;
  color: var(--signal);
  box-shadow: var(--shadow-float);
  transform: translateY(-2px);
}
.partner-cell img {
  display: block;
  margin: auto;
  width: 78%;
  height: 68%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  transition: transform .2s var(--ease);
}
.partner-cell:hover img { transform: scale(1.03); }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
}
.contact-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 32px;
  background: var(--bg-1);
}
.contact-row {
  display: flex; 
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0; 
  border-bottom: 1px dashed var(--line);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .k {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-faint); letter-spacing: .15em; text-transform: uppercase;
  flex-shrink: 0;
}
.contact-row .v { color: var(--ink); font-weight: 500; text-align: right; }
.contact-row .v.signal { color: var(--signal); font-family: var(--font-mono); }

.kontak-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 32px;
}
.kontak-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 32px;
  background: var(--bg-1);
}
.kontak-row {
  display: grid;
  grid-template-columns: 13rem 1fr;
  gap: 16px 24px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px dashed var(--line);
}
.kontak-row:last-child { border-bottom: none; }
.kontak-row .k {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-faint); letter-spacing: .15em; text-transform: uppercase;
}
.kontak-row .v {
  color: var(--ink); font-weight: 500;
  text-align: left;
  min-width: 0;
  overflow-wrap: anywhere;
}
.kontak-row .v.signal { color: var(--signal); font-family: var(--font-mono); }

.panel-raised {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--bg-1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.panel-wide {
  margin-top: 48px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--bg-1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.callout-accent {
  margin-top: 28px;
  padding: 20px;
  border-left: 2px solid var(--spark);
  background: rgba(255, 181, 71, .05);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.callout-accent-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--spark);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 28px 32px;
  border: 1px solid var(--line);
  background: var(--bg-1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ===== Footer ===== */
.foot {
  padding: 24px 48px;
  border-top: 1px solid var(--line);
  background: var(--signal);
  color: #fff;
}
.foot-wrap {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(280px, 1fr);
  gap: 18px 28px;
  align-items: start;
}
.foot-brandline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.foot-brandline .site-logo--foot { height: 36px; }
.foot-company {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .02em;
}
.foot-stack {
  display: grid;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
}
.foot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}
.foot-k {
  font-weight: 700;
  min-width: 96px;
  flex-shrink: 0;
}
.foot-v {
  flex: 1;
}
.foot-v a {
  color: #fff;
  text-decoration: none;
}
.foot-v a:hover { text-decoration: underline; }
.foot-copy {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: .88;
}
/* ===== Stats grid responsive ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-grid--cards {
  gap: 18px;
  background: transparent;
  border: none;
}
.stat-cell {
  background: var(--bg-1);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
@media (max-width: 960px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 768px) {
  .partners-grid,
  .mitra-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-wrap { grid-template-columns: 1fr; }
  .foot-k { min-width: 84px; }
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0; transform: translateY(20px);
  animation: revealUp .7s var(--ease) forwards;
}
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }
.d1 { animation-delay: .1s; } .d2 { animation-delay: .2s; }
.d3 { animation-delay: .3s; } .d4 { animation-delay: .4s; }
.d5 { animation-delay: .5s; } .d6 { animation-delay: .6s; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .svc-detail, .contact-grid, .kontak-grid { grid-template-columns: 1fr; }
  .kontak-grid { gap: 32px; }
  .about-sub { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 560px) {
  .kontak-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px 0;
    padding: 16px 0;
    align-items: start;
  }
  .kontak-row .k { max-width: 100%; }
  .kontak-row .v { text-align: left; }
}

@media (max-width: 400px) {
  .kontak-block { padding: 18px; }
}

@media (max-width: 768px) {
  .desk-nav {
    display: none !important;
  }
  .topbar .crumb {
    display: none;
  }
  .topbar .topbar-side--end .btn.primary {
    display: none;
  }
  .menu-toggle {
    display: inline-flex !important;
  }
  .stat-cell { padding: 24px; }
  .cta-banner { padding: 22px 20px; }
  .kontak-block { padding: 24px; }
  .sidebar {
    width: 100%;
    flex: none;
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    top: 76px;
    height: auto;
    max-height: calc(100vh - 76px);
    padding: 14px 20px 20px;
    overflow-y: auto;
    border-left: none;
    border-top: 1px solid #000;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s var(--ease), opacity .2s var(--ease);
    z-index: 35;
  }
  .sidebar.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .sidebar-head,
  .sidebar-foot,
  .sidebar .brand-tag,
  .sidebar .nav-label,
  .sidebar-close {
    display: none !important;
  }
  .sidebar .nav {
    gap: 4px;
  }
  .sidebar .nav a,
  .sidebar .nav-expander {
    border-right: none;
    border-radius: 10px;
    padding: 12px 14px;
  }
  .sidebar .nav-sub {
    margin: 6px 0 8px;
    padding-left: 10px;
    padding-right: 0;
    border-right: none;
    border-left: none;
  }
  .topbar, .page, .hero, .section, .foot { padding-left: 22px; padding-right: 22px; }
  .hero { padding-top: 56px; padding-bottom: 56px; }
}

/* ===== Motion Scroll Animations (Framer Motion Style) ===== */
.motion-reveal {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease) !important;
  will-change: opacity, transform;
}

/* Initial hidden states */
.motion-invisible.motion-up {
  transform: translateY(40px);
}
.motion-invisible.motion-down {
  transform: translateY(-40px);
}
.motion-invisible.motion-left {
  transform: translateX(60px); /* Coming from right */
}
.motion-invisible.motion-right {
  transform: translateX(-60px); /* Coming from left */
}
.motion-invisible.motion-scale {
  transform: scale(0.9);
}

/* Visible state */
.motion-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1) !important;
}

/* Stagger Delays */
.motion-delay-1 { transition-delay: 0.1s !important; }
.motion-delay-2 { transition-delay: 0.2s !important; }
.motion-delay-3 { transition-delay: 0.3s !important; }
.motion-delay-4 { transition-delay: 0.4s !important; }
