/* ============================================================
   CMS RESTO — Premium Landing Page Stylesheet
   Design system: Green (#004A29/#00703D/#1E9E58) · Navy Ink · White
   Fonts: Sora (display) + Inter (text)
   Mobile-first · less decoration, more hierarchy
   ============================================================ */

/* ===== 1. Design Tokens ===== */
:root {
  --green-900: #004A29;
  --green-700: #00703D;
  --green-500: #1E9E58;
  --green-100: #E8F4ED;
  --green-050: #F4F9F6;

  --ink: #0B1A2C;
  --ink-soft: #5B6873;
  --ink-faint: #8A95A0;

  --paper: #FFFFFF;
  --tint: #F6FAF8;
  --line: rgba(11, 26, 44, 0.09);

  --font-heading: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-soft: 0 1px 2px rgba(11, 26, 44, 0.04), 0 12px 32px rgba(11, 26, 44, 0.07);
  --shadow-lift: 0 2px 4px rgba(11, 26, 44, 0.05), 0 20px 44px rgba(11, 26, 44, 0.10);
  --shadow-green: 0 10px 26px rgba(30, 158, 88, 0.30);

  --container: 1120px;
  --nav-h: 68px;
}

/* ===== 2. Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

ul, ol {
  list-style: none;
}

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

a {
  color: var(--green-700);
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--ink);
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== 3. Layout Utilities ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.section {
  padding-block: clamp(64px, 9vw, 112px);
}

.section-tint {
  background: var(--tint);
}

section[id] {
  scroll-margin-top: calc(var(--nav-h) + 28px);
}

.text-green {
  color: var(--green-500);
}

/* ===== 4. Section Head ===== */
.section-head {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--green-700);
  margin-bottom: 18px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--green-500);
  opacity: 0.6;
}

.section-title {
  font-size: clamp(26px, 4.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-support {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 560px;
  margin-inline: auto;
}

/* Variasi dark */
.section-head-dark {
  max-width: 780px;
}

.section-title-light {
  color: #fff;
}

.section-support-light {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow-light {
  color: var(--green-500);
}

/* ===== 5. Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: #fff;
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(30, 158, 88, 0.40);
}

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

.btn-ghost:hover {
  border-color: var(--green-500);
  color: var(--green-700);
}

.btn-light {
  background: #fff;
  color: var(--green-900);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.20);
}

.btn-light:hover {
  transform: translateY(-2px);
  background: var(--green-050);
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

/* ===== 6. Navbar ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(11, 26, 44, 0.06);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.01em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--green-900), var(--green-500));
  color: #fff;
  font-size: 19px;
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 14px;
  position: relative;
  transition: color .2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green-500);
  transition: width .25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-700);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta-item {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle .bar {
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== 7. Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(55% 50% at 88% 6%, rgba(30, 158, 88, 0.08), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--green-050) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding-block: clamp(56px, 8vw, 96px);
}

.hero-copy {
  max-width: 600px;
}

.hero-title {
  font-size: clamp(34px, 6.5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.hero-support {
  margin-top: 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(18px, 2.6vw, 23px);
  color: var(--green-700);
}

.hero-desc {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16.5px;
  max-width: 520px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-price {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.hero-price-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.hero-price-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--green-900);
  background: var(--green-100);
  border: 1px solid rgba(30, 158, 88, 0.22);
  padding: 7px 14px;
  border-radius: 999px;
}

/* ===== 8. Hero Visual (product mockup) ===== */
.hero-visual {
  min-width: 0;
}

.app-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}

.app-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
}

.app-dots {
  display: inline-flex;
  gap: 6px;
}

.app-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink-faint);
  opacity: 0.35;
}

.app-url {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  background: var(--green-050);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  color: var(--ink-soft);
}

.app-url svg {
  width: 13px;
  height: 13px;
}

.app-body {
  display: grid;
  grid-template-columns: 52px 1fr;
}

.app-side {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
}

.app-side-logo {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.app-side-item {
  width: 22px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.18);
}

.app-side-item.active {
  background: var(--green-500);
}

.app-main {
  padding: 18px;
}

.app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.app-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
}

.app-live {
  font-size: 11px;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 999px;
  padding: 4px 10px;
}

.kpi-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.kpi {
  background: var(--green-050);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 12px;
}

.kpi-label {
  display: block;
  font-size: 11px;
  color: var(--ink-soft);
}

.kpi-value {
  display: block;
  margin-top: 4px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ink);
}

.kpi-meta {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--ink-faint);
}

.app-cols {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.app-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px;
}

.app-col-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  color: var(--ink-soft);
}

.order-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-top: 1px solid rgba(11, 26, 44, 0.05);
  font-size: 12.5px;
}

.order-id {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink-faint);
}

.order-name {
  flex: 1;
  font-weight: 500;
  color: var(--ink);
}

.order-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 999px;
  padding: 3px 9px;
}

.order-tag.barista {
  color: var(--ink);
  background: var(--green-050);
  border: 1px solid var(--line);
}

.prod-queue {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.queue-chip {
  font-size: 11px;
  font-weight: 600;
  color: var(--green-900);
  background: var(--green-100);
  border: 1px solid rgba(30, 158, 88, 0.2);
  border-radius: 999px;
  padding: 5px 11px;
}

.prod-bar {
  margin-top: 12px;
  height: 7px;
  border-radius: 99px;
  background: rgba(11, 26, 44, 0.07);
  overflow: hidden;
}

.prod-bar-fill {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green-700), var(--green-500));
}

.prod-text {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--ink-soft);
}

.vis-note {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.03em;
}

/* ===== 9. Trust Strip ===== */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding-block: 18px;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.trust-item {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}

.trust-sep {
  color: var(--green-500);
}

/* ===== 10. Compare (Sebelum / Sesudah) ===== */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 900px;
  margin-inline: auto;
  align-items: stretch;
}

.compare-col {
  border-radius: var(--radius-lg);
  padding: 26px 26px;
  border: 1px solid var(--line);
  background: #fff;
}

.compare-before {
  opacity: 0.95;
}

.compare-after {
  border-color: rgba(30, 158, 88, 0.35);
  background: var(--green-050);
}

.compare-head {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.compare-head-brand {
  color: var(--green-700);
}

.compare-list {
  display: grid;
  gap: 12px;
}

.compare-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 15px;
}

.compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-100);
}

.compare-after .compare-list li {
  color: var(--ink);
  font-weight: 500;
}

.compare-after .compare-list li::before {
  background: var(--green-500);
  opacity: 0.9;
}

.compare-strong {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(30, 158, 88, 0.2);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--green-900);
  font-size: 15px;
}

.compare-vs {
  display: none;
  align-self: center;
  font-size: 26px;
  color: var(--green-500);
  text-align: center;
}

/* ===== 11. Big Idea ===== */
.bigidea {
  background:
    radial-gradient(60% 70% at 15% 10%, rgba(30, 158, 88, 0.16), transparent 55%),
    radial-gradient(50% 60% at 90% 90%, rgba(30, 158, 88, 0.12), transparent 55%),
    var(--ink);
  color: #fff;
  padding-block: clamp(80px, 10vw, 128px);
}

.bigidea .section-head {
  margin-bottom: clamp(44px, 6vw, 68px);
}

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.pillar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: border-color .25s ease, transform .25s ease;
}

.pillar:hover {
  border-color: rgba(30, 158, 88, 0.5);
  transform: translateY(-3px);
}

.pillar-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
}

.pillar-title {
  margin-top: 18px;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.pillar-tagline {
  margin-top: 8px;
  color: var(--green-500);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
}

.pillar-body {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

/* ===== 12. Workflow ===== */
.workflow {
  max-width: 980px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.wf-step {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.wf-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
}

.wf-arrow {
  font-size: 18px;
  color: var(--green-500);
  font-weight: 700;
  line-height: 1;
}

/* ===== 13. Split Production ===== */
.split-visual {
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}

.split-order {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 22px 26px;
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.split-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
}

.split-items {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.split-item {
  background: var(--green-100);
  border: 1px solid rgba(30, 158, 88, 0.22);
  color: var(--green-900);
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  padding: 8px 16px;
}

.split-lines {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}

.split-line {
  width: 2px;
  height: 22px;
  background: var(--green-500);
  opacity: 0.5;
}

.split-units {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 400px;
}

.split-unit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-soft);
}

.split-unit-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--green-900);
}

.split-unit-item {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}

.split-quotes {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(16px, 2.4vw, 20px);
  color: var(--green-700);
}

/* ===== 14. Features ===== */
.main-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.mf-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-soft);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.mf-card:hover {
  border-color: rgba(30, 158, 88, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.mf-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--green-100);
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mf-icon svg {
  width: 24px;
  height: 24px;
}

.mf-body h3 {
  font-size: 18px;
  font-weight: 700;
}

.mf-body p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 15px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-soft);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
  border-color: rgba(30, 158, 88, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.feature-icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
}

.feature-card h3 {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 700;
}

.feature-card p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14.5px;
}

/* ===== 15. Website CMS Mock ===== */
.site-mock {
  max-width: 640px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  padding: 18px;
}

.site-mock-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px 14px;
}

.site-mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
}

.site-mock-url {
  font-size: 12px;
  color: var(--ink-faint);
}

.site-mock-hero {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-mock-hero-title {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(18px, 3vw, 24px);
}

.site-mock-hero-btn {
  width: 92px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  flex-shrink: 0;
}

.site-mock-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.site-mock-card {
  height: 70px;
  border-radius: var(--radius-sm);
  background: var(--green-050);
  border: 1px solid var(--line);
}

.site-mock-line {
  margin-top: 14px;
  height: 8px;
  border-radius: 99px;
  background: rgba(11, 26, 44, 0.08);
}

.site-mock-line.short {
  width: 60%;
  margin-top: 8px;
}

.site-mock-reserve {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.site-mock-reserve-btn {
  background: var(--green-700);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  border-radius: 999px;
  padding: 9px 18px;
}

.site-mock-caption {
  margin-top: 22px;
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  color: var(--ink-soft);
  font-size: 15.5px;
}

/* ===== 16. Reservation ===== */
.reserve-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 780px;
  margin-inline: auto;
}

.reserve-step {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--green-900);
  background: var(--green-100);
  border: 1px solid rgba(30, 158, 88, 0.22);
  border-radius: 999px;
  padding: 9px 16px;
}

.reserve-arrow {
  color: var(--green-500);
  font-size: 16px;
}

.ticket {
  margin-top: 40px;
  max-width: 460px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.ticket-left {
  flex: 1;
}

.ticket-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
}

.ticket-code {
  display: block;
  margin-top: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.ticket-meta {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
}

.ticket-divider {
  width: 1px;
  align-self: stretch;
  background: repeating-linear-gradient(180deg, var(--line) 0 5px, transparent 5px 10px);
}

.ticket-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ticket-qr {
  width: 92px;
  height: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.ticket-note {
  font-size: 11px;
  color: var(--ink-faint);
}

.ticket .vis-note {
  margin-top: 0;
}

/* ===== 17. Financial ===== */
.fin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 720px;
  margin-inline: auto;
}

.fin-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-soft);
  transition: border-color .25s ease, transform .25s ease;
}

.fin-card:hover {
  border-color: rgba(30, 158, 88, 0.35);
  transform: translateY(-2px);
}

.fin-icon {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 11px;
  background: var(--green-100);
  color: var(--green-700);
  flex-shrink: 0;
}

.fin-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.fin-export {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.fin-export-label {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
}

.export-chip {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--green-900);
  background: var(--green-100);
  border: 1px solid rgba(30, 158, 88, 0.22);
  border-radius: 999px;
  padding: 8px 16px;
}

/* ===== 18. RBAC ===== */
.rbac {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.rbac-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 26px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.rbac-owner {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: #fff;
  border: none;
  box-shadow: var(--shadow-green);
}

.rbac-connector {
  width: 2px;
  height: 28px;
  background: var(--green-500);
  opacity: 0.45;
}

.rbac-mid {
  display: flex;
  justify-content: center;
}

.rbac-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.rbac-bottom .rbac-node {
  padding: 10px 18px;
  font-size: 13px;
}

.permission {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.permission-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.permission-chip {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-100);
  border: 1px solid rgba(30, 158, 88, 0.2);
  border-radius: 999px;
  padding: 7px 15px;
}

/* ===== 19. Pricing ===== */
.pricing {
  background: var(--tint);
}

.price-card {
  max-width: 560px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid rgba(30, 158, 88, 0.22);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green-900), var(--green-500));
}

.price-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--green-900);
  background: var(--green-100);
  border: 1px solid rgba(30, 158, 88, 0.22);
  padding: 8px 18px;
  border-radius: 999px;
}

.price-value {
  margin-top: 22px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(42px, 7vw, 60px);
  letter-spacing: -0.03em;
  color: var(--ink);
}

.price-note {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 15px;
}

.price-list-title {
  margin-top: 34px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

.price-checklist {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  text-align: left;
  max-width: 360px;
  margin-inline: auto;
}

.price-checklist li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}

.price-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.price-card .btn {
  margin-top: 32px;
}

/* ===== 20. FAQ ===== */
.faq {
  margin-top: clamp(56px, 7vw, 80px);
  max-width: 760px;
  margin-inline: auto;
}

.faq-title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  margin-bottom: 22px;
  text-align: center;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color .25s ease;
}

.faq-item.open {
  border-color: rgba(30, 158, 88, 0.35);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  text-align: left;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green-700);
  color: #fff;
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 15px;
}

/* ===== 21. Spec Table ===== */
.table-wrap {
  margin-top: clamp(48px, 6vw, 64px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  min-width: 480px;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 14px 20px;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
}

.spec-table thead th {
  background: var(--green-900);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.spec-table tbody tr:nth-child(even) {
  background: var(--green-050);
}

.spec-table tbody tr:hover {
  background: var(--green-100);
}

.spec-table tbody td:last-child {
  color: var(--ink-soft);
  font-weight: 500;
}

.disclaimer {
  margin-top: 26px;
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.72;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

/* ===== 22. Final CTA ===== */
.final {
  background:
    radial-gradient(70% 90% at 20% 0%, rgba(30, 158, 88, 0.18), transparent 60%),
    radial-gradient(60% 80% at 90% 100%, rgba(30, 158, 88, 0.12), transparent 60%),
    var(--green-900);
  color: #fff;
  padding-block: clamp(80px, 10vw, 120px);
}

.final-inner {
  text-align: center;
  max-width: 720px;
}

.eyebrow-final {
  color: rgba(255, 255, 255, 0.85);
}

.final-title {
  color: #fff;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.final-support {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.final-price {
  margin-top: 24px;
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--green-900);
  background: #fff;
  padding: 10px 22px;
  border-radius: 999px;
}

.final-actions {
  margin-top: 32px;
}

.final-wa {
  margin-top: 26px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== 23. Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding-block: 44px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  color: #fff;
}

.footer-tagline {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact a {
  color: #fff;
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--green-500);
}

.footer-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ===== 24. Floating WhatsApp ===== */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-500);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(30, 158, 88, 0.42);
  transition: transform .25s ease, background-color .25s ease;
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.wa-float:hover {
  transform: translateY(-3px);
  background: var(--green-700);
}

/* ===== 25. Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsive (mobile-first)
   ============================================================ */

/* Tablet kecil ≥ 640px */
@media (min-width: 640px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
  }

  .nav-cta-item {
    display: block;
  }

  .app-cols {
    grid-template-columns: 1fr 1fr;
  }

  .compare {
    grid-template-columns: 1fr auto 1fr;
    gap: 22px;
  }

  .compare-vs {
    display: block;
  }

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

  .split-quotes {
    flex-direction: row;
    justify-content: center;
    gap: 44px;
  }

  .split-lines {
    flex-direction: row;
    gap: 0;
    width: 100%;
    justify-content: space-around;
  }

  .split-line {
    width: 26%;
    height: 2px;
  }

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

  .mf-card-wide {
    grid-column: span 2;
  }

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

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

  .workflow {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .wf-arrow {
    transform: rotate(90deg);
  }
}

/* Desktop ≥ 960px */
@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 56px;
  }

  .hero-copy {
    max-width: none;
  }

  .workflow {
    gap: 18px;
  }

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

  .main-features {
    gap: 22px;
  }

  .pillars {
    gap: 28px;
  }
}

/* ============================================================
   Mobile nav (< 640px)
   ============================================================ */
@media (max-width: 639px) {
  .nav-menu {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(11, 26, 44, 0.12);
    padding: 8px 22px 20px;
    display: none;
  }

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

  .nav-menu li {
    border-bottom: 1px solid rgba(11, 26, 44, 0.05);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    padding: 14px 2px;
    font-size: 16px;
  }

  .nav-cta-item {
    display: block;
    padding-top: 16px;
  }

  .nav-cta-item .btn {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-price {
    justify-content: center;
  }

  .trust-inner {
    gap: 8px;
  }

  .kpi {
    padding: 10px 8px;
  }

  .app-main {
    padding: 12px;
  }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mf-card,
  .feature-card,
  .pillar,
  .fin-card {
    transition: none;
  }

  .mf-card:hover,
  .feature-card:hover,
  .pillar:hover,
  .fin-card:hover,
  .btn:hover,
  .wa-float:hover {
    transform: none;
  }
}