/* ===== Praytec Design System (Forest Green · B2B) ===== */
:root {
  --blue: #2d6a4f;
  --blue-dark: #1b4332;
  --blue-darker: #081c15;
  --blue-light: #40916c;
  --blue-bg: #edf4f0;
  --blue-muted: #b7e4c7;
  --blue-gradient: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #40916c 100%);
  --text: #0f172a;
  --text-muted: #64748b;
  --white: #ffffff;
  --bg: #f1f5f9;
  --surface: #ffffff;
  --border: #e2e8f0;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
  text-align: center;
}
.btn--lg { padding: 14px 28px; font-size: 0.95rem; }
.btn--sm { padding: 10px 18px; font-size: 0.875rem; }
.btn--block { width: 100%; padding: 13px 24px; }

.btn--primary {
  background: var(--blue);
  color: white;
}
.btn--primary:hover { background: var(--blue-dark); }

.btn--white {
  background: white;
  color: var(--blue-dark);
  box-shadow: var(--shadow);
}
.btn--white:hover { background: var(--blue-bg); }

.btn--outline {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--blue);
}
.btn--outline:hover { background: var(--blue-bg); }

.btn--outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--blue-dark);
}
.logo--static { margin-bottom: 12px; }
.logo__icon {
  display: block;
  flex-shrink: 0;
}
.logo__word {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.logo__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.1;
}
.logo__tagline {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-muted);
}
.nav__list { display: flex; gap: 4px; }
.nav__list a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: 0.2s;
}
.nav__list a:hover {
  color: var(--blue-dark);
  background: var(--blue-bg);
}
.nav__list a.nav__link--active {
  color: var(--blue-dark);
  background: var(--blue-bg);
  font-weight: 600;
}

/* ===== Nav dropdown (Layanan) ===== */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: 0.2s;
}
.nav__dropdown-toggle:hover,
.nav__dropdown--active > .nav__dropdown-toggle,
.nav__dropdown-toggle.nav__link--active {
  color: var(--blue-dark);
  background: var(--blue-bg);
}
.nav__chevron { transition: transform 0.2s; }
.nav__dropdown--open .nav__chevron { transform: rotate(180deg); }
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  max-height: 70vh;
  overflow-y: auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  z-index: 100;
  list-style: none;
}
.nav__dropdown--open .nav__dropdown-menu {
  display: block;
}
@media (hover: hover) and (min-width: 769px) {
  .nav__dropdown:hover .nav__dropdown-menu {
    display: block;
  }
}
.nav__dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: 0.2s;
}
.nav__dropdown-menu a:hover,
.nav__dropdown-menu a.nav__link--active {
  color: var(--blue-dark);
  background: var(--blue-bg);
}
.nav__dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 8px;
}

/* ===== Service product cards (Layanan hub) ===== */
.services-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.services-product-grid--home {
  grid-template-columns: repeat(4, 1fr);
}
.service-product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: 0.25s;
}
.service-product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-muted);
}
.service-product-card--erp { border-top: 3px solid var(--blue); }
.service-product-card--phone { border-top: 3px solid #6366f1; }
.service-product-card--whatsapp { border-top: 3px solid #25d366; }
.service-product-card--ai { border-top: 3px solid #9333ea; }
.service-product-card--pos { border-top: 3px solid #059669; }
.service-product-card--crm { border-top: 3px solid #d97706; }
.service-product-card--project { border-top: 3px solid #7c3aed; }
.service-product-card--commerce { border-top: 3px solid #0891b2; }
.service-product-card--helpdesk { border-top: 3px solid #dc2626; }
.service-product-card--hr { border-top: 3px solid #db2777; }
.service-product-card--patch { border-top: 3px solid #15803d; }
.service-product-card__icon { font-size: 2rem; line-height: 1; }
.service-product-card h2,
.service-product-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}
.service-product-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.service-product-card ul {
  list-style: none;
  font-size: 0.825rem;
  color: var(--text-muted);
}
.service-product-card ul li {
  padding: 4px 0 4px 16px;
  position: relative;
}
.service-product-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}
.service-product-card__price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
}
.service-product-card .btn { align-self: flex-start; margin-top: auto; }
.services-hub__link {
  text-align: center;
  margin-top: 28px;
  font-size: 0.875rem;
}
.services-hub__link a {
  color: var(--blue-dark);
  font-weight: 600;
}
.services-hub__link--home { margin-top: 20px; }
.btn--sm { padding: 8px 16px; font-size: 0.825rem; }

/* ===== ERP extra modules section ===== */
.erp-modules {
  padding: 64px 0 80px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.erp-modules__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.erp-module-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.erp-module-tag strong {
  display: block;
  font-size: 0.9rem;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.erp-module-tag span {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.erp-modules__note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.erp-modules__note a {
  color: var(--blue-dark);
  font-weight: 600;
}

.header__actions { display: flex; align-items: center; gap: 12px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 32px;
  padding: 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.lang-switch:hover {
  color: var(--green);
  border-color: var(--green-light);
  background: var(--green-50);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius);
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle:active { background: var(--blue-bg); }
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero (split layout) ===== */
.hero {
  background: var(--blue-gradient);
  padding: calc(var(--header-h) + 64px) 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero__note {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}
.hero__note strong { color: white; }

.hero__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-stat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* ===== Inner page hero ===== */
.page-hero {
  background: var(--blue-gradient);
  padding: calc(var(--header-h) + 48px) 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.page-hero__eyebrow {
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

/* ===== Pricing hub (harga.html) ===== */
.pricing-summary {
  padding: 40px 0 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.pricing-summary__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.pricing-summary__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
  border-top: 3px solid var(--blue);
}
.pricing-summary__card:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue-muted);
  transform: translateY(-2px);
}
.pricing-summary__card--erp { border-top-color: var(--blue); }
.pricing-summary__card--phone { border-top-color: #6366f1; }
.pricing-summary__card--whatsapp { border-top-color: #25d366; }
.pricing-summary__card--monitoring { border-top-color: #0284c7; }
.pricing-summary__card--ai { border-top-color: #9333ea; }
.pricing-summary__card--addon { border-top-color: #d97706; }
.pricing-summary__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.pricing-summary__card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}
.pricing-summary__card small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.pricing-summary__note {
  text-align: center;
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-top: 20px;
}
.pricing-summary__note a {
  color: var(--blue-dark);
  font-weight: 600;
}
.pricing-hub { padding-top: 48px; }
.pricing-hub .pricing__grid { margin-top: 8px; }
.compare-tabs--pricing { margin-bottom: 24px; }
.compare--vendors {
  padding-top: 64px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.compare-vendor-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin-bottom: 24px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  line-height: 1.5;
}
.compare-vendor-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}
.compare-vendor-legend__item--us { color: var(--blue-dark); font-weight: 600; }
.compare-vendor-legend__sep {
  color: var(--border);
  user-select: none;
}
.compare__col-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  background: #e2e8f0;
  color: #475569;
  vertical-align: middle;
}
.compare__col-badge--us {
  background: var(--blue);
  color: white;
}
.compare__table th.compare__vendor {
  background: #f1f5f9;
  color: var(--text);
  font-weight: 600;
}
.compare__table th.compare__us .compare__col-badge { margin-bottom: 6px; }
.compare__table th.compare__vendor .compare__col-badge { margin-bottom: 6px; }
.compare--vendors .compare__table--pricing tbody td:not(:first-child):not(.compare__us) {
  background: #f8fafc;
  color: var(--text);
}
.compare-vendor-legend__item small {
  font-weight: 400;
  font-size: 0.8em;
  color: var(--text-muted);
}
.compare-tco__card--vendor {
  border-color: #cbd5e1;
  background: #f8fafc;
}
.compare-tco__label .compare__col-badge { margin-right: 6px; vertical-align: middle; }
.compare-tab--whatsapp.compare-tab--active {
  border-color: #25d366;
  color: #128c7e;
}
.compare-savings--inline {
  margin-top: 28px;
}
.compare-savings--erp { margin-top: 0; }

.contact-section { padding: 64px 0 80px; background: var(--bg); }
.contact-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.contact-card__links {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Section headings ===== */
.section-head { margin-bottom: 40px; }
.section-head--left { text-align: left; }
.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-head .eyebrow { text-align: center; }
.section-head--left .eyebrow { text-align: left; }
.section-title {
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-align: center;
}
.section-title--left { text-align: left; }
.section-desc {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 12px auto 0;
  font-size: 0.95rem;
}

/* ===== Pillar products ===== */
.products-section { padding: 80px 0; background: var(--surface); }
.products-section--hero { padding-top: 64px; }

/* ===== Ecosystem diagram (index.html) ===== */
.ecosystem-section {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--border);
}
.ecosystem-section__link { margin-top: 28px; text-align: center; }
.ecosystem-diagram {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.ecosystem-diagram__hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 32px;
  background: linear-gradient(135deg, var(--blue) 0%, #40916c 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.25);
  text-align: center;
  position: relative;
  z-index: 2;
}
.ecosystem-diagram__hub-icon { font-size: 1.5rem; opacity: 0.9; }
.ecosystem-diagram__hub strong { font-size: 1.15rem; font-weight: 700; }
.ecosystem-diagram__hub small { font-size: 0.8rem; opacity: 0.85; }
.ecosystem-diagram__spoke--top {
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--border) 100%);
}
.ecosystem-diagram__layer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.ecosystem-diagram__layer-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.ecosystem-diagram__nodes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.ecosystem-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 14px;
  min-width: 120px;
  flex: 1 1 120px;
  max-width: 180px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  text-align: center;
}
.ecosystem-node span:first-child { font-size: 1.5rem; line-height: 1; }
.ecosystem-node strong { font-size: 0.9rem; font-weight: 600; }
.ecosystem-node small { font-size: 0.72rem; color: var(--text-muted); line-height: 1.3; }
.ecosystem-node:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
  border-color: var(--blue-muted);
}
.ecosystem-node--erp { border-top: 3px solid var(--blue); }
.ecosystem-node--phone { border-top: 3px solid #6366f1; }
.ecosystem-node--omni { border-top: 3px solid #25d366; }
.ecosystem-node--connect { border-top: 3px solid #0284c7; }
.ecosystem-node--monitoring { border-top: 3px solid #0e7490; }
.ecosystem-node--patch { border-top: 3px solid #15803d; }
.ecosystem-node--ai { border-top: 3px solid #9333ea; }
.ecosystem-diagram__bridge {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 560px;
}
.ecosystem-diagram__bridge-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.ecosystem-diagram__bridge-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 4px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.ecosystem-diagram__flows {
  width: 100%;
  max-width: 640px;
  margin: 8px 0 0;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ecosystem-diagram__flows li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.ecosystem-diagram__flows li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}
.ecosystem-diagram__flows strong { color: var(--text); }

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pillar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: 0.25s;
}
.pillar-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-muted);
}
.pillar-card--erp { border-top: 3px solid var(--blue); }
.pillar-card--telepon { border-top: 3px solid #6366f1; }
.pillar-card__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pillar-card__icon { font-size: 2rem; line-height: 1; }
.pillar-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.pillar-card__price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
}
.pillar-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.pillar-card__list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 6px 0 6px 20px;
  position: relative;
}
.pillar-card__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}
.pillar-card .btn { align-self: flex-start; margin-top: auto; }

/* ===== Metrics band ===== */
.metrics-band {
  background: var(--blue-darker);
  color: white;
  padding: 72px 0;
}
.metrics-band__intro {
  max-width: 560px;
  margin-bottom: 40px;
}
.metrics-band__intro h2 {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.metrics-band__intro p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.metrics-band__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.metric-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  text-align: center;
}
.metric-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.metric-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
}
.track-record__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.track-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.track-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}
.track-card ul li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.5;
}
.track-card ul li:last-child { border-bottom: none; }
.track-record__providers { text-align: left; }
.track-record__providers-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-cloud span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
}
.track-record__providers-note {
  margin-top: 16px;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 640px;
}

/* ===== Case studies (rekam jejak) ===== */
.case-studies {
  padding: 80px 0;
  background: var(--surface);
}
.case-studies__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.case-study {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.case-study__header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.case-study__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: var(--blue-bg);
  padding: 5px 12px;
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.case-study__header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.case-study__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.case-study__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.case-study__block h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.case-study__block p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.case-study__block ul {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.case-study__block ul li {
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.55;
}
.case-study__block ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.8rem;
}
.case-study__quote {
  background: var(--surface);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 0;
}
.case-study__quote p {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 8px;
}
.case-study__quote cite {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
  color: var(--text-muted);
}

/* ===== Features grid ===== */
.features { padding: 80px 0; background: var(--bg); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: 0.25s;
}
.feature-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue-muted);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
  background: var(--blue-bg);
}
.feature-card__icon--blue { background: var(--blue-bg); }
.feature-card__icon--green { background: #dcfce7; }
.feature-card__icon--ai { background: #f3e8ff; }

.ai-usecases { padding: 48px 0 24px; background: var(--surface); }
.ai-category { margin-bottom: 40px; }
.ai-category__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-muted);
}

.price-card--ai.price-card--featured {
  border-color: #9333ea;
}
.price-card--ai .price-card__badge {
  background: #9333ea;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.feature-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ===== Industries ===== */
.industries { padding: 80px 0; background: var(--surface); }
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: 0.2s;
}
.industry-card:hover {
  border-color: var(--blue);
  background: var(--blue-bg);
}
.industry-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.industry-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== Services ===== */
.services-section { padding: 80px 0; background: var(--bg); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
}
.service-item span { font-size: 1.75rem; display: block; margin-bottom: 12px; }
.service-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.service-item p { font-size: 0.825rem; color: var(--text-muted); }

/* ===== POC Flow ===== */
.poc-flow {
  padding: 80px 0;
  background: var(--blue-bg);
  border-top: 1px solid var(--blue-muted);
  border-bottom: 1px solid var(--blue-muted);
}
.poc-flow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.poc-flow__steps--5 {
  grid-template-columns: repeat(5, 1fr);
}
.poc-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.poc-step--highlight {
  border-color: var(--blue);
  background: linear-gradient(180deg, var(--surface) 0%, var(--blue-bg) 100%);
}
.poc-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--blue);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius);
}
.poc-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.poc-step p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.poc-step__tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text-muted);
}
.poc-step__tag--free {
  background: var(--blue-bg);
  color: var(--blue-dark);
}
.poc-step--highlight .poc-step__tag {
  background: var(--blue);
  color: white;
}
.poc-flow__note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--blue-dark);
  font-weight: 500;
  max-width: 640px;
  margin: 0 auto;
  padding: 14px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px dashed var(--blue-muted);
}

/* ===== Notice (brand — same on every page) ===== */
.notice {
  background: var(--blue-bg);
  border-top: 1px solid var(--blue-muted);
  border-bottom: 1px solid var(--blue-muted);
  padding: 18px 0;
}
.notice__inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 800px;
}
.notice__icon { font-size: 1.15rem; flex-shrink: 0; }
.notice p { font-size: 0.875rem; color: var(--blue-dark); line-height: 1.6; }

/* ===== Pricing ===== */
.pricing-section { padding: 80px 0; background: var(--surface); }
.pricing-section--alt { background: var(--bg); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing__grid.pricing__grid--single {
  display: flex;
  justify-content: center;
  width: 100%;
}
.pricing__grid.pricing__grid--single > .price-card {
  width: 100%;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: 0.25s;
}
.pricing-section--alt .price-card { background: var(--surface); }
.price-card:hover { box-shadow: var(--shadow); }
.price-card--featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.price-card--whatsapp.price-card--featured {
  border-color: #25d366;
}
.price-card--whatsapp .price-card__badge {
  background: #25d366;
}
.price-card__badge {
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--blue);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.price-card h3 { font-size: 1.2rem; font-weight: 700; }
.price-card__desc { font-size: 0.825rem; color: var(--text-muted); margin: 4px 0 18px; }
.price-card__amount {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.price-card__amount span { font-size: 0.95rem; vertical-align: super; font-weight: 600; }
.price-card__amount small { display: block; font-size: 0.75rem; font-weight: 500; color: var(--text-muted); margin-top: 4px; }
.price-card__setup {
  font-size: 0.825rem;
  color: var(--text-muted);
  padding: 10px 12px;
  background: var(--bg);
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.price-card ul { margin-bottom: 24px; }
.price-card ul li {
  padding: 7px 0 7px 22px;
  position: relative;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.8rem;
}
.pricing-compare-link {
  text-align: center;
  margin-top: 28px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.pricing-compare-link a {
  color: var(--blue-dark);
  font-weight: 600;
}
.pricing-compare-link a:hover { text-decoration: underline; }

.pillar-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

/* ===== Telepon Features ===== */
.telepon-features {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.telepon-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.telepon-features__note {
  text-align: center;
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-top: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.telepon-features__note a { color: var(--blue); font-weight: 600; }
.compare__table--features th:not(:first-child),
.compare__table--features td:not(:first-child) { text-align: center; }
.compare__table--features td:first-child { font-weight: 500; }
.compare-pricing__desc--panel {
  text-align: center;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.compare-pricing__desc--panel a { color: var(--blue-dark); font-weight: 600; }

/* ===== Comparison ===== */
.compare { padding: 80px 0; background: var(--surface); }
.compare__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 32px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.compare__table th,
.compare__table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare__table th {
  background: var(--bg);
  font-weight: 600;
  color: var(--text);
}
.compare__table th.compare__us {
  background: var(--blue-dark);
  color: white;
}
.compare__table td.compare__us {
  background: var(--blue-bg);
  font-weight: 600;
  color: var(--blue-dark);
}
.compare__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}
.compare__note a { color: var(--blue); }
.compare__note--left { text-align: left; margin-top: 16px; line-height: 1.6; }
.compare__search {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-style: dotted;
}
.compare__search:hover { color: var(--blue-dark); }
.compare-tco__label .compare__search {
  font-weight: 600;
  color: var(--text);
}
.compare__table-wrap--wide { margin-top: 0; }
.compare__table--pricing th small,
.compare__table--pricing td small { display: block; font-weight: 400; font-size: 0.72rem; opacity: 0.85; margin-top: 2px; }
.compare__table--pricing th:not(:first-child),
.compare__table--pricing td:not(:first-child) { text-align: center; }

.compare-tco__grid--5 {
  grid-template-columns: repeat(5, 1fr);
}
.compare-tco__card--sisi {
  border-color: #94a3b8;
  background: #f8fafc;
}
.compare-tco__card--sisi,
.compare-tco__card--vendor {
  border-color: #cbd5e1;
  background: #f8fafc;
}
.compare-tco__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1200px) {
  .compare-tco__grid--5 { grid-template-columns: repeat(2, 1fr); }
  .compare-tco__grid--4 { grid-template-columns: repeat(2, 1fr); }
}
.compare__table--vendors { margin-bottom: 32px; }
.compare-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.compare-tabs--scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-bottom: 4px;
  margin-bottom: 20px;
  scrollbar-width: none;
}
.compare-tabs--scroll::-webkit-scrollbar { display: none; }
.compare-tabs--scroll .compare-tab {
  flex: 0 0 auto;
  scroll-snap-align: start;
  white-space: nowrap;
}
.compare-tab {
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: 0.2s;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}
.compare-tab:hover { border-color: var(--blue); color: var(--blue-dark); }
.compare-tab--active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.compare-panel { display: none; }
.compare-panel--active { display: block; }

.compare-tco { margin: 28px 0 12px; }
.compare-tco h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
.compare-tco__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.compare-tco__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  position: relative;
}
.compare-tco__card--us {
  border-color: var(--blue);
  background: var(--blue-bg);
}
.compare-tco__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.compare-tco__price {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.compare-tco__card ul {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.compare-tco__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--blue);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius);
  text-transform: uppercase;
}
.compare-savings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.compare-savings__item {
  text-align: center;
  padding: 18px 14px;
  background: var(--blue-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--blue-muted);
}
.compare-savings__item strong {
  display: block;
  font-size: 1rem;
  color: var(--blue-dark);
  margin-bottom: 4px;
}
.compare-savings__item span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== Testimonials ===== */
.testimonials { padding: 80px 0; background: var(--bg); }
.testimonials__slider { overflow: hidden; max-width: 680px; margin: 0 auto; }
.testimonials__track { display: flex; transition: transform 0.5s ease; }
.testimonial {
  min-width: 100%;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.testimonial p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial footer { font-size: 0.875rem; color: var(--text-muted); }
.testimonial strong { color: var(--blue-dark); display: block; margin-bottom: 2px; }
.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.testimonials__btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--blue);
  border-radius: var(--radius);
  font-size: 1.25rem;
  cursor: pointer;
  transition: 0.2s;
  line-height: 1;
}
.testimonials__btn:hover { background: var(--blue); color: white; border-color: var(--blue); }

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: var(--surface); }
.faq__list { max-width: 720px; margin: 0 auto; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg);
}
.faq__item summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.1rem; color: var(--blue); font-weight: 400; }
.faq__item[open] summary::after { content: "−"; }
.faq__item[open] summary { background: var(--blue-bg); color: var(--blue-dark); }
.faq__item p {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ===== CTA ===== */
.promise-band {
  background: linear-gradient(135deg, #0f172a 0%, #1b4332 50%, var(--blue-dark) 100%);
  padding: 48px 0;
  color: white;
}
.promise-band__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}
.promise-band__eyebrow {
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.promise-band__title {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}
.promise-band__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  max-width: 520px;
}
.promise-band__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
}
.promise-band__points li {
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
}
.promise-band__points strong {
  color: #93c5fd;
  margin-right: 6px;
}
.promise-band__link {
  grid-column: 1 / -1;
  justify-self: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.promise-band__link:hover { opacity: 0.9; }

/* ===== Lowest price guarantee ===== */
.price-guarantee {
  background: linear-gradient(135deg, #edf4f0 0%, #e8f0eb 50%, #fefce8 100%);
  border-top: 1px solid var(--blue-muted);
  border-bottom: 1px solid var(--blue-muted);
  padding: 40px 0;
}
.price-guarantee__inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 880px;
  margin: 0 auto;
}
.price-guarantee__icon {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
}
.price-guarantee__eyebrow {
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.price-guarantee__title {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 10px;
}
.price-guarantee__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.price-guarantee__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.825rem;
  color: var(--text);
}
.price-guarantee__steps li {
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.price-guarantee__steps li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.price-guarantee__cta { align-self: flex-start; }

.cta-banner {
  background: var(--blue-gradient);
  padding: 72px 0;
  text-align: center;
}
.cta-banner__inner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cta-banner__inner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
}
.cta-banner__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
  background: #0f172a;
  color: rgba(255,255,255,0.65);
  padding: 56px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer .logo__mark {
  font-size: 1.5rem;
  color: white;
  display: block;
  margin-bottom: 12px;
}
.footer__brand p { font-size: 0.875rem; margin-bottom: 10px; line-height: 1.65; }
.footer__brand a { color: var(--blue-light); font-size: 0.875rem; }
.footer__col h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.footer__col ul li { margin-bottom: 8px; }
.footer__col a { font-size: 0.825rem; transition: 0.2s; }
.footer__col a:hover { color: white; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.78rem;
}
.footer__care { margin-top: 8px; }

/* ===== Price Calculator ===== */
.calc-section { padding: 64px 0; background: var(--blue-bg); }
.calc-card { background: #fff; border-radius: 16px; box-shadow: 0 4px 32px rgba(15,23,42,.08); overflow: hidden; }
.calc-row { display: grid; grid-template-columns: auto 1fr auto auto auto; align-items: center; gap: 16px 24px; padding: 20px 28px; border-bottom: 1px solid var(--border); transition: opacity .2s; }
.calc-row--disabled { opacity: .4; pointer-events: none; }
.calc-row--disabled .calc-toggle { pointer-events: auto; opacity: 1; }
.calc-row__meta { display: flex; align-items: center; gap: 10px; min-width: 180px; }
.calc-row__icon { font-size: 1.4rem; }
.calc-row__name { display: block; font-weight: 600; font-size: 0.95rem; color: var(--text); }
.calc-badge { display: inline-block; font-size: 0.7rem; font-weight: 600; padding: 2px 8px; border-radius: 20px; background: var(--blue-bg); color: var(--blue-dark); margin-top: 3px; }
.calc-row__label { display: block; font-size: 0.75rem; color: var(--muted); margin-bottom: 6px; }
.calc-row__price { text-align: right; min-width: 120px; }
.calc-row__monthly { display: block; font-weight: 700; font-size: 1rem; color: var(--blue-dark); }
.calc-row__per { color: var(--muted); font-size: 0.75rem; }
.calc-row__setup { min-width: 130px; text-align: right; font-size: 0.78rem; color: var(--muted); }

.calc-toggle { position: relative; display: inline-flex; cursor: pointer; flex-shrink: 0; }
.calc-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.calc-toggle__track { display: block; width: 44px; height: 24px; background: var(--border); border-radius: 12px; transition: background .2s; position: relative; }
.calc-toggle__track::after { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; box-shadow: 0 1px 4px rgba(0,0,0,.2); transition: transform .2s; }
.calc-toggle input:checked ~ .calc-toggle__track { background: var(--blue); }
.calc-toggle input:checked ~ .calc-toggle__track::after { transform: translateX(20px); }

.calc-stepper { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; }
.calc-stepper__btn { width: 32px; height: 36px; background: var(--surface); border: none; cursor: pointer; font-size: 1.1rem; color: var(--blue-dark); display: flex; align-items: center; justify-content: center; transition: background .15s; flex-shrink: 0; }
.calc-stepper__btn:hover { background: var(--blue-bg); }
.calc-stepper__input { width: 60px; height: 36px; border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); text-align: center; font-family: var(--font); font-size: 0.95rem; font-weight: 600; color: var(--text); background: #fff; -moz-appearance: textfield; }
.calc-stepper__input::-webkit-outer-spin-button, .calc-stepper__input::-webkit-inner-spin-button { -webkit-appearance: none; }

.calc-summary { padding: 24px 28px; background: var(--blue-bg); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.calc-summary__totals { display: flex; gap: 32px; flex: 1; min-width: 240px; }
.calc-summary__item { display: flex; flex-direction: column; gap: 2px; }
.calc-summary__item span { font-size: 0.8rem; color: var(--muted); }
.calc-summary__item strong { font-size: 1.15rem; font-weight: 700; color: var(--blue-dark); }
.calc-summary__note { font-size: 0.75rem; color: var(--muted); width: 100%; margin-bottom: 4px; }

@media (max-width: 768px) {
  .calc-row { grid-template-columns: auto 1fr; grid-template-rows: auto auto auto; gap: 10px 12px; padding: 16px 18px; }
  .calc-row__input { grid-column: 1 / -1; }
  .calc-row__price { grid-column: 1; text-align: left; }
  .calc-row__setup { grid-column: 2; min-width: unset; text-align: left; }
  .calc-row__meta { min-width: unset; }
  .calc-summary { flex-direction: column; align-items: flex-start; gap: 16px; }
  .calc-summary__totals { gap: 20px; }
}

/* ===== WhatsApp ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: 0.25s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ===== Mobile nav ===== */
.nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: white;
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-120%);
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
  border-bottom: 1px solid var(--border);
}
.nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav.open .nav__list { flex-direction: column; }
.nav.open .nav__list a { color: var(--text); display: block; padding: 12px 0; }

/* ===== Mobile sticky CTA ===== */
.mobile-cta-bar {
  display: none;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-product-grid--home { grid-template-columns: repeat(2, 1fr); }
  .services-product-grid { grid-template-columns: repeat(2, 1fr); }
  .erp-modules__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__panel { max-width: 480px; margin: 0 auto; width: 100%; }
  .pillar-grid,
  .track-record__grid { grid-template-columns: 1fr; }
  .metrics-band__stats { grid-template-columns: repeat(2, 1fr); }
  .case-study__grid { grid-template-columns: 1fr; }
  .case-study { padding: 24px 20px; }
  .telepon-features__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-summary__grid { grid-template-columns: repeat(2, 1fr); }
  .price-card--featured { transform: none; }
  .compare-tco__grid,
  .compare-tco__grid--4,
  .compare-tco__grid--5,
  .compare-savings { grid-template-columns: 1fr; }
  .poc-flow__steps { grid-template-columns: repeat(2, 1fr); }
  .poc-flow__steps--5 { grid-template-columns: repeat(2, 1fr); }
  .promise-band__inner { grid-template-columns: 1fr; }
  .price-guarantee__inner { flex-direction: column; gap: 12px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) and (min-width: 769px) {
  .features__grid,
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) and (min-width: 769px) {
  .pricing__grid:not(.pricing__grid--single) { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .logo { gap: 8px; }
  .logo__icon { width: 32px; height: 32px; }
  .logo__word { font-size: 1.25rem; }
  .logo__tagline { font-size: 0.5625rem; }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }
  body.nav-open { overflow: hidden; }

  .container { padding: 0 16px; }

  .nav__list { display: none; }
  .nav.open .nav__list { display: flex; }
  .menu-toggle { display: flex; }
  .header__cta-desktop { display: none; }

  .nav {
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.open .nav__dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 12px;
    margin-top: 4px;
    background: transparent;
    max-height: none;
  }
  .nav.open .nav__dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    color: var(--text);
    padding: 14px 0;
    min-height: 44px;
  }
  .nav.open .nav__list a {
    padding: 14px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav.open .nav__dropdown-menu a {
    padding: 12px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav.open .nav__dropdown-divider { margin: 4px 0; }

  .hero {
    padding: calc(var(--header-h) + 40px) 0 56px;
  }
  .hero__title { font-size: clamp(1.65rem, 7vw, 2.1rem); }
  .hero__panel { max-width: none; width: 100%; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; min-height: 48px; }

  .page-hero {
    padding: calc(var(--header-h) + 32px) 0 40px;
  }
  .page-hero h1 { font-size: clamp(1.45rem, 6vw, 1.85rem); }

  .features,
  .ecosystem-section,
  .products-section,
  .pricing-section,
  .compare,
  .telepon-features,
  .poc-flow,
  .faq,
  .contact-section,
  .testimonials {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .pricing-summary { padding: 28px 0 16px; }
  .pricing-summary__grid { grid-template-columns: 1fr; }
  .pricing-summary__card { padding: 16px 14px; }

  .ecosystem-diagram__nodes { flex-direction: column; align-items: stretch; }
  .ecosystem-node { max-width: none; flex: 1 1 auto; }
  .ecosystem-diagram__bridge { max-width: 100%; }
  .ecosystem-diagram__flows { padding: 16px 18px; }

  .compare-tabs:not(.compare-tabs--scroll) {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .compare-tabs:not(.compare-tabs--scroll)::-webkit-scrollbar { display: none; }
  .compare-tabs .compare-tab {
    flex: 0 0 auto;
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .compare__table-wrap {
    margin-bottom: 12px;
    border-radius: var(--radius);
  }
  .compare__table-wrap::before {
    content: "Geser tabel →";
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    padding: 8px 12px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }
  .compare__table {
    min-width: 560px;
    font-size: 0.8125rem;
  }
  .compare__table--features { min-width: 480px; }
  .compare__table th,
  .compare__table td {
    padding: 12px 14px;
  }
  .compare__table th:first-child,
  .compare__table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    min-width: 140px;
    max-width: 160px;
    box-shadow: 4px 0 8px -4px rgba(15, 23, 42, 0.12);
  }
  .compare__table th:first-child {
    background: var(--bg);
    z-index: 3;
  }
  .compare__table td:first-child {
    background: var(--surface);
  }
  .compare__table th.compare__us:first-child {
    background: var(--blue-dark);
    color: white;
  }
  .compare__table td.compare__us:first-child {
    background: var(--blue-bg);
  }

  .btn--lg,
  .btn--block,
  .contact-card .btn {
    min-height: 48px;
  }
  .service-product-card .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .features__grid,
  .industries__grid,
  .services__grid,
  .telepon-features__grid,
  .poc-flow__steps,
  .poc-flow__steps--5 {
    grid-template-columns: 1fr;
  }

  .services-product-grid,
  .services-product-grid--home,
  .erp-modules__grid { grid-template-columns: 1fr; }

  .pricing__grid:not(.pricing__grid--single) {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .contact-section__grid {
    grid-template-columns: 1fr;
    max-width: none;
    margin: 0;
  }
  .footer__grid { grid-template-columns: 1fr; }
  .footer { padding-bottom: env(safe-area-inset-bottom, 0px); }

  .cta-banner { padding: 48px 0; }
  .cta-banner__actions { flex-direction: column; align-items: stretch; }
  .cta-banner__actions .btn {
    width: 100%;
    max-width: none;
    min-height: 48px;
  }

  .testimonials__btn {
    min-width: 44px;
    min-height: 44px;
  }

  .promise-band,
  .price-guarantee {
    padding: 32px 0;
  }
  .promise-band__points li { font-size: 0.8125rem; }

  .wa-float {
    width: 52px;
    height: 52px;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    right: calc(16px + env(safe-area-inset-right, 0px));
  }

  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    gap: 10px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.1);
  }
  .mobile-cta-bar__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 16px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-cta-bar__btn--primary {
    background: var(--blue);
    color: white;
  }
  .mobile-cta-bar__btn--primary:active { background: var(--blue-dark); }
  .mobile-cta-bar__btn--secondary {
    background: var(--surface);
    color: var(--blue-dark);
    border-color: var(--blue);
  }
  .mobile-cta-bar__btn--secondary:active { background: var(--blue-bg); }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero-stat { padding: 14px 16px; }
  .section-title { font-size: clamp(1.25rem, 5.5vw, 1.5rem); }
  .compare-tco__card { padding: 18px 16px; }
  .price-card { padding: 22px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 769px) {
  .header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  .nav {
    position: static;
    background: transparent;
    padding: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    border: none;
    justify-self: center;
  }
  .nav__list { align-items: center; justify-content: center; }
  .header__actions { justify-self: end; }
}
