/* Rampoong landing styles (fonts via Google Fonts enqueue) */
/* ============================================================
   WhatsApp AI — Landing Page
   Design tokens + components
   ============================================================ */

:root {
  /* Greens (oklch, shared chroma/hue family) */
  --green-700: oklch(0.46 0.13 153);
  --green-600: oklch(0.55 0.15 153);
  --green-500: oklch(0.66 0.16 153);
  --green-400: oklch(0.77 0.15 153);
  --green-100: oklch(0.93 0.05 153);
  --green-50:  oklch(0.97 0.025 153);

  /* Ink / neutrals (warm green-gray) */
  --ink:       oklch(0.24 0.022 160);
  --ink-soft:  oklch(0.44 0.018 160);
  --ink-faint: oklch(0.60 0.012 160);

  /* Surfaces */
  --bg:        oklch(0.99 0.006 130);
  --surface:   #ffffff;
  --line:      oklch(0.92 0.012 153);
  --line-soft: oklch(0.95 0.01 153);

  /* Warm accent (single, for "special" highlights) */
  --amber:     oklch(0.80 0.12 78);
  --amber-ink: oklch(0.50 0.10 70);

  /* Dark section */
  --dark:      oklch(0.27 0.035 158);
  --dark-2:    oklch(0.22 0.03 158);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px oklch(0.4 0.03 160 / 0.06), 0 2px 6px oklch(0.4 0.03 160 / 0.05);
  --shadow-md: 0 4px 14px oklch(0.4 0.03 160 / 0.08), 0 10px 30px oklch(0.4 0.03 160 / 0.07);
  --shadow-lg: 0 12px 40px oklch(0.4 0.03 160 / 0.12), 0 30px 70px oklch(0.4 0.03 160 / 0.10);

  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1200px;
}

#rampoong-app *, #rampoong-app *::before, #rampoong-app *::after { box-sizing: border-box; }

#rampoong-app { scroll-behavior: smooth; scroll-padding-top: 90px; }

#rampoong-app {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

#rampoong-app h1, #rampoong-app h2, #rampoong-app h3, #rampoong-app h4 { line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; }
#rampoong-app p { text-wrap: pretty; }
#rampoong-app a { color: inherit; text-decoration: none; }
#rampoong-app ul, #rampoong-app ol { padding: 0; margin: 0; }
#rampoong-app img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; position: relative; }
.section.tight { padding: 80px 0; }

/* eyebrow / kicker */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 7px 13px; border-radius: 100px;
}
.kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 48px); margin: 18px 0 14px; }
.section-head p { font-size: 18px; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 700; font-size: 15.5px;
  padding: 14px 24px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px); }
#rampoong-app .btn-primary { background: var(--green-600); color: #fff; box-shadow: 0 6px 18px oklch(0.55 0.15 153 / 0.32); }
#rampoong-app .btn-primary:hover { background: var(--green-700); box-shadow: 0 10px 26px oklch(0.55 0.15 153 / 0.40); transform: translateY(-1px); }
#rampoong-app .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
#rampoong-app .btn-ghost:hover { border-color: var(--ink-faint); background: #fff; }
#rampoong-app .btn-dark { background: var(--ink); color: #fff; }
#rampoong-app .btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-lg { padding: 17px 30px; font-size: 16.5px; }
.btn .ic { width: 17px; height: 17px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.nav.scrolled { background: oklch(0.99 0.006 130 / 0.82); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); padding: 11px 28px; }
.nav-inner { max-width: var(--maxw); margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: linear-gradient(145deg, var(--green-500), var(--green-700));
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  position: relative;
}
.logo-mark svg { width: 21px; height: 21px; }
.brand small { display: block; font-size: 11px; font-weight: 600; color: var(--ink-faint); letter-spacing: 0.04em; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { padding: 150px 0 90px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -200px; right: -150px; width: 700px; height: 700px;
  background: radial-gradient(circle, oklch(0.77 0.15 153 / 0.16), transparent 62%);
  z-index: 0; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(38px, 5.4vw, 66px); letter-spacing: -0.035em; }
.hero h1 .hl { color: var(--green-600); }
.hero-sub { font-size: 19.5px; color: var(--ink-soft); margin: 24px 0 34px; max-width: 540px; line-height: 1.55; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 22px; font-size: 14px; color: var(--ink-faint); }
.hero-note .check { color: var(--green-600); }

/* trust strip */
.trust { margin-top: 54px; padding-top: 30px; border-top: 1px solid var(--line); }
.trust-label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; }
.trust-logos { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-chip { font-weight: 700; font-size: 14px; color: var(--ink-soft); padding: 8px 16px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }

/* ---------- Phone / chat mock ---------- */
.phone-stage { display: flex; justify-content: center; position: relative; }
.phone-stage::after {
  content: ""; position: absolute; inset: 8% 12%; z-index: 0;
  background: radial-gradient(circle, oklch(0.66 0.16 153 / 0.18), transparent 65%);
  filter: blur(18px);
}
.phone {
  position: relative; z-index: 1;
  width: 330px; background: #0f1512; border-radius: 42px; padding: 11px;
  box-shadow: var(--shadow-lg), 0 0 0 1px oklch(0.3 0.02 160 / 0.3);
}
.phone-screen { background: var(--green-50); border-radius: 33px; overflow: hidden; height: 600px; display: flex; flex-direction: column; }
.chat-top { background: var(--green-700); color: #fff; padding: 16px 16px 14px; display: flex; align-items: center; gap: 11px; }
.chat-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(145deg, var(--green-400), var(--green-600)); display: grid; place-items: center; flex: none; }
.chat-avatar svg { width: 19px; height: 19px; }
.chat-top .name { font-weight: 700; font-size: 15px; line-height: 1.2; }
.chat-top .status { font-size: 11.5px; opacity: .82; display: flex; align-items: center; gap: 5px; }
.chat-top .status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: oklch(0.85 0.16 145); }
.chat-body {
  flex: 1; padding: 18px 14px; display: flex; flex-direction: column; gap: 10px; overflow: hidden;
  background-image: radial-gradient(oklch(0.66 0.16 153 / 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
}
.bubble { max-width: 80%; padding: 9px 13px; border-radius: 16px; font-size: 13.5px; line-height: 1.42; box-shadow: var(--shadow-sm); opacity: 0; transform: translateY(8px); animation: pop .4s ease forwards; }
.bubble.me { align-self: flex-end; background: var(--green-500); color: #fff; border-bottom-right-radius: 5px; }
.bubble.ai { align-self: flex-start; background: #fff; color: var(--ink); border-bottom-left-radius: 5px; }
.bubble .ok { color: var(--green-600); font-weight: 700; }
.bubble.me .small, .bubble .small { display: block; font-size: 11.5px; opacity: .85; margin-top: 2px; }
.bubble-receipt { font-family: var(--font-mono); font-size: 11.5px; }
.bubble-receipt .row { display: flex; justify-content: space-between; gap: 12px; padding: 2px 0; }
.bubble-receipt .row.total { border-top: 1px dashed var(--line); margin-top: 4px; padding-top: 5px; font-weight: 700; color: var(--ink); }
.typing { align-self: flex-start; background: #fff; padding: 12px 15px; border-radius: 16px; border-bottom-left-radius: 5px; box-shadow: var(--shadow-sm); display: flex; gap: 4px; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-faint); animation: blink 1.2s infinite; }
.typing span:nth-child(2){ animation-delay: .2s; } .typing span:nth-child(3){ animation-delay: .4s; }
@keyframes pop { to { opacity: 1; transform: translateY(0); } }
@keyframes blink { 0%,60%,100%{ opacity:.3; transform: translateY(0);} 30%{ opacity:1; transform: translateY(-3px);} }

/* floating badge near phone */
.float-badge {
  position: absolute; z-index: 3; background: #fff; border-radius: 14px; padding: 11px 14px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px; border: 1px solid var(--line-soft);
}
.float-badge .ico { width: 32px; height: 32px; border-radius: 9px; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; flex: none; }
.float-badge .ico svg { width: 17px; height: 17px; }
.float-badge b { font-size: 13.5px; display: block; }
.float-badge small { font-size: 11.5px; color: var(--ink-faint); }
.float-badge.tl { top: 22px; left: -34px; animation: floaty 5s ease-in-out infinite; }
.float-badge.br { bottom: 60px; right: -40px; animation: floaty 5.6s ease-in-out infinite .6s; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-9px);} }

/* ---------- Stats ---------- */
.stats-band { background: var(--dark); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { padding: 14px 28px; border-left: 1px solid oklch(1 0 0 / 0.1); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat .big { font-family: var(--font-mono); font-size: clamp(34px, 4.4vw, 52px); font-weight: 700; letter-spacing: -0.03em; color: var(--green-400); line-height: 1; }
.stat .lbl { margin-top: 12px; font-size: 14.5px; color: oklch(0.9 0.01 160 / 0.85); line-height: 1.4; }

/* ---------- Problems ---------- */
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.prob {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.prob:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.prob .x { width: 36px; height: 36px; border-radius: 10px; background: oklch(0.95 0.04 30); color: oklch(0.55 0.16 28); display: grid; place-items: center; margin-bottom: 16px; }
.prob .x svg { width: 19px; height: 19px; }
.prob h4 { font-size: 17px; margin-bottom: 7px; }
.prob p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
.solve-note { margin-top: 36px; text-align: center; font-size: 18px; font-weight: 600; color: var(--ink); }
.solve-note b { color: var(--green-600); }

/* ---------- Capability grid (solusi) ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cap {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.cap:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-200, var(--green-100)); }
.cap .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; margin-bottom: 16px; }
.cap .ico svg { width: 22px; height: 22px; }
.cap h4 { font-size: 16px; margin-bottom: 6px; }
.cap p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }

/* ---------- Feature: catat stok (tabs) ---------- */
.feature { background: var(--green-50); }
.feat-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.feat-tabs { display: flex; flex-direction: column; gap: 10px; }
.feat-tab {
  text-align: left; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 20px; cursor: pointer; transition: all .18s ease; display: flex; gap: 15px; align-items: flex-start;
}
.feat-tab:hover { border-color: var(--green-400); }
.feat-tab.active { border-color: var(--green-500); box-shadow: 0 0 0 3px oklch(0.66 0.16 153 / 0.14); background: #fff; }
.feat-tab .num { font-family: var(--font-mono); font-weight: 700; font-size: 14px; color: var(--green-700); background: var(--green-50); width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; flex: none; }
.feat-tab.active .num { background: var(--green-600); color: #fff; }
.feat-tab h4 { font-size: 16.5px; margin-bottom: 3px; }
.feat-tab p { font-size: 13.5px; color: var(--ink-soft); }
.feat-demo { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-md); min-height: 360px; }
.demo-chat { display: flex; flex-direction: column; gap: 12px; }
.demo-pane { display: none; flex-direction: column; gap: 12px; }
.demo-pane.active { display: flex; animation: fadein .3s ease; }
@keyframes fadein { from{ opacity:0; transform: translateY(6px);} to{ opacity:1; transform:none;} }
.dchat { max-width: 86%; padding: 12px 15px; border-radius: 16px; font-size: 14px; line-height: 1.45; }
.dchat.me { align-self: flex-end; background: var(--green-500); color: #fff; border-bottom-right-radius: 5px; }
.dchat.ai { align-self: flex-start; background: var(--green-50); color: var(--ink); border-bottom-left-radius: 5px; border: 1px solid var(--green-100); }
.dchat .ck { color: var(--green-600); font-weight: 800; margin-right: 5px; }
.dchat ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.dchat .note-img { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); border: 1px dashed var(--green-200, var(--green-100)); border-radius: 10px; padding: 16px; text-align: center; background: repeating-linear-gradient(45deg, oklch(0.97 0.02 153), oklch(0.97 0.02 153) 8px, oklch(0.95 0.03 153) 8px, oklch(0.95 0.03 153) 16px); }

/* ---------- Integrations ---------- */
.integ-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.integ-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.integ-logo { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; text-align: center; transition: transform .2s, box-shadow .2s; }
.integ-logo:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.integ-logo .nm { font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.integ-logo .ds { font-size: 12px; color: var(--ink-faint); margin-top: 3px; }
.flow-list { display: flex; flex-direction: column; gap: 14px; }
.flow-item { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 15px 18px; }
.flow-item .from { font-weight: 600; font-size: 14.5px; flex: 1; }
.flow-item .arrow { color: var(--green-600); flex: none; }
.flow-item .to { font-weight: 700; font-size: 14.5px; color: var(--green-700); flex: 1; text-align: right; }
.integ-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.ibadge { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--green-700); background: var(--green-50); padding: 8px 14px; border-radius: 100px; }

/* ---------- Ecosystem (dark) ---------- */
.eco { background: var(--dark); color: #fff; overflow: hidden; }
.eco .section-head h2 { color: #fff; }
.eco .section-head p { color: oklch(0.9 0.01 160 / 0.8); }
.eco-layers { display: flex; flex-direction: column; gap: 16px; max-width: 760px; margin: 0 auto; }
.eco-layer { border-radius: var(--radius); padding: 24px 28px; display: flex; align-items: center; gap: 20px; position: relative; }
.eco-layer.hero-layer { background: linear-gradient(135deg, var(--green-500), var(--green-700)); }
.eco-layer.sub { background: oklch(1 0 0 / 0.06); border: 1px solid oklch(1 0 0 / 0.1); }
.eco-layer .tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: .7; }
.eco-layer h4 { font-size: 20px; }
.eco-layer p { font-size: 14px; color: oklch(0.92 0.01 160 / 0.8); margin-top: 4px; }
.eco-layer .ico { width: 50px; height: 50px; border-radius: 13px; background: oklch(1 0 0 / 0.12); display: grid; place-items: center; flex: none; }
.eco-layer.hero-layer .ico { background: oklch(1 0 0 / 0.2); }
.eco-layer .ico svg { width: 25px; height: 25px; }
.eco-arrow { text-align: center; color: var(--green-400); font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; }
.eco-sub-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.eco-points { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }
.eco-point { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }
.eco-point .c { color: var(--green-400); }

/* ---------- Use cases (tabs) ---------- */
.uc-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.uc-tab { padding: 12px 22px; border-radius: 100px; border: 1px solid var(--line); background: #fff; font-weight: 700; font-size: 14.5px; cursor: pointer; transition: all .18s; color: var(--ink-soft); }
.uc-tab:hover { border-color: var(--green-400); color: var(--ink); }
.uc-tab.active { background: var(--green-600); color: #fff; border-color: var(--green-600); box-shadow: 0 6px 16px oklch(0.55 0.15 153 / 0.3); }
.uc-tab small { display: block; font-weight: 500; font-size: 11.5px; opacity: .8; margin-top: 1px; }
.uc-panel { display: none; }
.uc-panel.active { display: block; animation: fadein .3s ease; }
.uc-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 1.3fr 0.7fr; box-shadow: var(--shadow-md); }
.uc-main { padding: 40px 42px; }
.uc-main .seg { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--green-700); }
.uc-main h3 { font-size: 28px; margin: 10px 0 6px; }
.uc-main .who { font-size: 14.5px; color: var(--ink-faint); margin-bottom: 22px; }
.uc-reco { display: inline-block; font-size: 14px; font-weight: 700; color: var(--green-700); background: var(--green-50); border: 1px solid var(--green-100); border-radius: 10px; padding: 10px 15px; margin-bottom: 22px; }
.uc-list { display: grid; gap: 11px; }
.uc-list li { list-style: none; display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.uc-list li .ck { color: var(--green-600); flex: none; margin-top: 2px; }
.uc-side { background: linear-gradient(160deg, var(--green-600), var(--green-700)); color: #fff; padding: 40px 36px; display: flex; flex-direction: column; }
.uc-side .imp-label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; margin-bottom: 18px; }
.uc-impact { display: flex; flex-direction: column; gap: 18px; }
.uc-impact .im b { font-family: var(--font-mono); font-size: 26px; font-weight: 700; display: block; letter-spacing: -0.02em; }
.uc-impact .im span { font-size: 13px; opacity: .85; }
.uc-quote { margin-top: auto; padding-top: 24px; border-top: 1px solid oklch(1 0 0 / 0.18); font-size: 14px; font-style: italic; line-height: 1.5; }
.uc-quote cite { display: block; font-style: normal; font-weight: 700; font-size: 12.5px; margin-top: 8px; opacity: .9; }

/* ---------- Before / After ---------- */
.ba-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.ba-table th, .ba-table td { padding: 16px 22px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--line-soft); }
.ba-table thead th { background: var(--ink); color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.ba-table thead th:nth-child(3) { background: var(--green-700); }
.ba-table tbody tr:last-child td { border-bottom: none; }
.ba-table .asp { font-weight: 700; }
.ba-table .before { color: var(--ink-faint); }
.ba-table .after { color: var(--green-700); font-weight: 700; }
.ba-table tbody tr:hover { background: var(--green-50); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; }
.price {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.price:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price.feat { border-color: var(--green-500); box-shadow: 0 0 0 3px oklch(0.66 0.16 153 / 0.16), var(--shadow-md); position: relative; }
.price .ptag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green-600); color: #fff; font-size: 11.5px; font-weight: 700; padding: 5px 14px; border-radius: 100px; letter-spacing: .04em; }
.price .tier { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.price .amt { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; margin: 12px 0 2px; }
.price .amt small { font-size: 14px; font-weight: 600; color: var(--ink-faint); }
.price .per { font-size: 13px; color: var(--ink-faint); margin-bottom: 22px; }
.price ul { list-style: none; display: grid; gap: 11px; margin-bottom: 26px; flex: 1; }
.price li { display: flex; gap: 9px; font-size: 13.5px; color: var(--ink-soft); align-items: flex-start; }
.price li .ck { color: var(--green-600); flex: none; }
.price li b { color: var(--ink); }
.price-note { text-align: center; margin-top: 28px; font-size: 14.5px; color: var(--ink-soft); max-width: 760px; margin-left: auto; margin-right: auto; }
.price-note b { color: var(--green-700); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.testi { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 30px; position: relative; }
.testi .mark { font-family: var(--font-mono); font-size: 46px; color: var(--green-100); line-height: 0.6; height: 22px; }
.testi p { font-size: 17px; line-height: 1.55; color: var(--ink); margin: 10px 0 20px; }
.testi cite { display: flex; align-items: center; gap: 12px; font-style: normal; }
.testi .av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(145deg, var(--green-400), var(--green-700)); flex: none; }
.testi cite b { display: block; font-size: 14px; }
.testi cite span { font-size: 12.5px; color: var(--ink-faint); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 17.5px; font-weight: 700; color: var(--ink); font-family: inherit; }
.faq-q .pm { width: 26px; height: 26px; flex: none; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: all .2s; color: var(--green-700); }
.faq.open .faq-q .pm { background: var(--green-600); color: #fff; border-color: var(--green-600); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding-bottom: 22px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; max-width: 90%; }

/* ---------- Steps / final CTA ---------- */
.cta-final { background: linear-gradient(150deg, var(--green-700), var(--dark-2)); color: #fff; border-radius: var(--radius-lg); padding: 64px 56px; position: relative; overflow: hidden; }
.cta-final::before { content: ""; position: absolute; top: -120px; right: -80px; width: 420px; height: 420px; background: radial-gradient(circle, oklch(0.77 0.15 153 / 0.3), transparent 65%); }
.cta-final .inner { position: relative; z-index: 1; }
.cta-final h2 { font-size: clamp(30px, 4vw, 46px); max-width: 680px; }
.cta-final p { font-size: 18px; color: oklch(0.92 0.01 160 / 0.85); margin: 18px 0 32px; max-width: 560px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
.step { background: oklch(1 0 0 / 0.07); border: 1px solid oklch(1 0 0 / 0.12); border-radius: var(--radius); padding: 24px; }
.step .n { font-family: var(--font-mono); font-size: 13px; font-weight: 700; width: 34px; height: 34px; border-radius: 9px; background: var(--green-500); color: #fff; display: grid; place-items: center; margin-bottom: 16px; }
.step h4 { font-size: 17px; margin-bottom: 7px; }
.step p { font-size: 13.5px; color: oklch(0.92 0.01 160 / 0.78); margin: 0; line-height: 1.5; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
#rampoong-app .cta-final .btn-light { background: #fff; color: var(--green-700); }
#rampoong-app .cta-final .btn-light:hover { background: var(--green-50); }
#rampoong-app .cta-final .btn-outline { background: transparent; color: #fff; border-color: oklch(1 0 0 / 0.3); }
#rampoong-app .cta-final .btn-outline:hover { border-color: #fff; background: oklch(1 0 0 / 0.08); }

/* ---------- Footer ---------- */
.footer { padding: 64px 0 40px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer .brand { margin-bottom: 16px; }
.footer-blurb { font-size: 14px; color: var(--ink-soft); max-width: 280px; line-height: 1.6; }
.footer-col h5 { font-size: 13px; font-weight: 700; letter-spacing: .02em; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--ink-soft); padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--green-700); }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--ink-faint); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .phone-stage { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat { border-left: none; padding: 0; }
  .prob-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid, .integ-grid { grid-template-columns: 1fr; gap: 36px; }
  .uc-card { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .eco-sub-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .section { padding: 72px 0; }
  .wrap { padding: 0 18px; }
  .prob-grid, .cap-grid, .price-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cta-final { padding: 40px 26px; }
  .ba-table th, .ba-table td { padding: 12px 14px; font-size: 13px; }
  .hero { padding: 120px 0 60px; }
  .nav-cta .btn-ghost { display: none; }
}

/* ============================================================
   Rampoong — Landing Page (revamp)
   Extends styles.css. Adds 3-pillar system + new components.
   ============================================================ */

:root {
  /* Pillar accent hues (used sparingly, for wayfinding) */
  --mkt:      oklch(0.66 0.16 45);    /* Marketing / Link Bio — coral */
  --mkt-soft: oklch(0.96 0.04 45);
  --mkt-line: oklch(0.90 0.06 45);

  --com:      var(--green-600);        /* Commerce — green (hero brand) */
  --com-soft: var(--green-50);
  --com-line: var(--green-100);

  --aut:      oklch(0.52 0.13 268);    /* AI & Automation — indigo */
  --aut-soft: oklch(0.96 0.03 268);
  --aut-line: oklch(0.90 0.05 268);

  --geo:      oklch(0.52 0.19 300);    /* GEO Tools — violet (flagship) */
  --geo-soft: oklch(0.96 0.045 300);
  --geo-line: oklch(0.89 0.07 300);
}

/* brand mark gradient stays green; small tweak for platform feel */
.logo-mark.platform { background: linear-gradient(145deg, var(--green-400), var(--aut)); }

/* ---------- Hero: platform funnel ---------- */
.hero-funnel { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.fcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-sm);
  position: relative; transition: transform .25s ease, box-shadow .25s ease;
}
.fcard:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.fcard .ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; flex: none; }
.fcard .ico svg { width: 24px; height: 24px; }
.fcard .stage { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.fcard h4 { font-size: 18px; margin: 2px 0 3px; }
.fcard p { font-size: 13.5px; color: var(--ink-soft); }
.fcard .pill { margin-left: auto; font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; padding: 5px 11px; border-radius: 100px; flex: none; }
.fcard.mkt .ico { background: var(--mkt-soft); color: var(--mkt); }
.fcard.mkt .pill { background: var(--mkt-soft); color: var(--mkt); }
.fcard.com .ico { background: var(--com-soft); color: var(--com); }
.fcard.com .pill { background: var(--com-soft); color: var(--green-700); }
.fcard.aut .ico { background: var(--aut-soft); color: var(--aut); }
.fcard.aut .pill { background: var(--aut-soft); color: var(--aut); }
.funnel-link { display: flex; justify-content: center; color: var(--ink-faint); margin: -4px 0; }
.funnel-link svg { width: 20px; height: 20px; }

/* ---------- Pillars overview ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar {
  border-radius: var(--radius-lg); padding: 34px 30px; border: 1px solid var(--line);
  background: #fff; position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pillar::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; }
.pillar.mkt::before { background: var(--mkt); }
.pillar.com::before { background: var(--com); }
.pillar.aut::before { background: var(--aut); }
.pillar .ico { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px; }
.pillar .ico svg { width: 28px; height: 28px; }
.pillar.mkt .ico { background: var(--mkt-soft); color: var(--mkt); }
.pillar.com .ico { background: var(--com-soft); color: var(--com); }
.pillar.aut .ico { background: var(--aut-soft); color: var(--aut); }
.pillar .tag { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.pillar.mkt .tag { color: var(--mkt); }
.pillar.com .tag { color: var(--green-700); }
.pillar.aut .tag { color: var(--aut); }
.pillar h3 { font-size: 23px; margin: 8px 0 10px; }
.pillar > p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 20px; }
.pillar ul { list-style: none; padding-left: 0; margin: 0 0 24px; display: grid; gap: 12px; }
.pillar li { display: flex; gap: 9px; font-size: 14px; color: var(--ink-soft); align-items: flex-start; }
.pillar li .ck { flex: none; margin-top: 3px; }
.pillar li .txt-wrap { display: inline; }
.pillar li .txt-wrap b { color: var(--ink); }
.pillar li .txt-wrap .desc { color: var(--ink-soft); }
.pillar li .txt-wrap .desc::before { content: " "; }
.pillar.mkt li .ck { color: var(--mkt); } .pillar.com li .ck { color: var(--com); } .pillar.aut li .ck { color: var(--aut); }
.pillar .plink { margin-top: auto; padding-top: 18px; font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 7px; }
.pillar.mkt .plink { color: var(--mkt); } .pillar.com .plink { color: var(--green-700); } .pillar.aut .plink { color: var(--aut); }
.pillar .plink svg { width: 16px; height: 16px; transition: transform .2s; }
.pillar:hover .plink svg { transform: translateX(4px); }

/* ---------- Deep-dive section header chip ---------- */
.dd-chip { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 7px 13px; border-radius: 100px; }
.dd-chip.mkt { background: var(--mkt-soft); color: var(--mkt); border: 1px solid var(--mkt-line); }
.dd-chip.com { background: var(--com-soft); color: var(--green-700); border: 1px solid var(--com-line); }
.dd-chip.aut { background: var(--aut-soft); color: var(--aut); border: 1px solid var(--aut-line); }
.dd-chip.geo { background: var(--geo-soft); color: var(--geo); border: 1px solid var(--geo-line); }
.dd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.dd-grid.flip .dd-visual { order: 2; }
.dd-copy h2 { font-size: clamp(28px, 3.6vw, 44px); margin: 16px 0 14px; }
.dd-copy > p { font-size: 18px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 24px; }
.dd-feats { list-style: none; display: grid; gap: 14px; }
.dd-feats li { display: flex; gap: 13px; align-items: flex-start; }
.dd-feats .fi { width: 36px; height: 36px; border-radius: 10px; flex: none; display: grid; place-items: center; }
.dd-feats .fi svg { width: 18px; height: 18px; }
.dd-feats .ft b { display: block; font-size: 15.5px; }
.dd-feats .ft span { font-size: 14px; color: var(--ink-soft); }
.mkt .fi { background: var(--mkt-soft); color: var(--mkt); }
.com .fi { background: var(--com-soft); color: var(--com); }
.aut .fi { background: var(--aut-soft); color: var(--aut); }
.geo .fi { background: var(--geo-soft); color: var(--geo); }

/* ---------- Link Bio mock ---------- */
.bio-stage { display: flex; justify-content: center; position: relative; }
.bio-stage::after { content:""; position:absolute; inset: 6% 14%; background: radial-gradient(circle, oklch(0.66 0.16 45 / 0.16), transparent 65%); filter: blur(20px); z-index: 0; }
.bio-phone { position: relative; z-index: 1; width: 310px; background: #0f1512; border-radius: 42px; padding: 11px; box-shadow: var(--shadow-lg), 0 0 0 1px oklch(0.3 0.02 160 / 0.3); }
.bio-screen { border-radius: 33px; overflow: hidden; height: 580px; background: linear-gradient(170deg, oklch(0.97 0.03 45), oklch(0.96 0.02 30)); padding: 30px 22px; display: flex; flex-direction: column; align-items: center; gap: 13px; overflow-y: auto; }
.bio-avatar { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(145deg, var(--mkt), oklch(0.55 0.16 28)); display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 26px; box-shadow: var(--shadow-md); flex: none; }
.bio-name { font-weight: 800; font-size: 18px; }
.bio-handle { font-size: 13px; color: var(--ink-faint); margin-top: -8px; }
.bio-link { width: 100%; background: #fff; border: 1px solid oklch(0.9 0.03 45); border-radius: 14px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 14px; box-shadow: var(--shadow-sm); transition: transform .15s; flex: none; }
.bio-link:hover { transform: translateY(-2px); }
.bio-link .lic { width: 30px; height: 30px; border-radius: 8px; background: var(--mkt-soft); color: var(--mkt); display: grid; place-items: center; flex: none; }
.bio-link .lic svg { width: 16px; height: 16px; }
.bio-link.primary { background: var(--mkt); color: #fff; border-color: var(--mkt); }
.bio-link.primary .lic { background: oklch(1 0 0 / 0.2); color: #fff; }
.bio-link .arr { margin-left: auto; opacity: .4; }

/* ---------- Store (toko online) mock ---------- */
.store-mock { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.store-top { background: var(--green-700); color: #fff; padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.store-top .st-logo { width: 34px; height: 34px; border-radius: 9px; background: oklch(1 0 0 / 0.18); display: grid; place-items: center; flex: none; font-weight: 800; }
.store-top .st-name { font-weight: 700; font-size: 15px; }
.store-top .st-cart { margin-left: auto; display: flex; align-items: center; gap: 6px; font-size: 13px; background: oklch(1 0 0 / 0.15); padding: 6px 12px; border-radius: 100px; }
.store-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 20px; }
.product { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.product .ph { height: 96px; background: repeating-linear-gradient(45deg, oklch(0.96 0.02 153), oklch(0.96 0.02 153) 10px, oklch(0.94 0.03 153) 10px, oklch(0.94 0.03 153) 20px); display: grid; place-items: center; color: var(--green-700); font-family: var(--font-mono); font-size: 11px; }
.product .pinfo { padding: 11px 12px; }
.product .pname { font-size: 13.5px; font-weight: 700; }
.product .pprice { font-size: 13px; color: var(--green-700); font-weight: 700; margin-top: 2px; }
.product .pstock { font-size: 11px; color: var(--ink-faint); margin-top: 2px; }
.store-bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-top: 1px solid var(--line); background: var(--green-50); }
.store-bar .tot { font-weight: 800; font-size: 15px; }
.store-bar .tot small { font-weight: 600; color: var(--ink-faint); font-size: 12px; display: block; }

/* ---------- Modular pricing builder ---------- */
.builder { display: grid; grid-template-columns: 1.55fr 0.9fr; gap: 26px; align-items: start; }
.modules { display: grid; gap: 14px; }
.module {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 20px 22px;
  transition: border-color .18s, box-shadow .18s; cursor: pointer;
}
.module.on { box-shadow: var(--shadow-sm); }
.module.on.mkt { border-color: var(--mkt); } .module.on.com { border-color: var(--com); } .module.on.aut { border-color: var(--aut); }
.mod-head { display: flex; align-items: center; gap: 14px; }
.mod-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.mod-ico svg { width: 22px; height: 22px; }
.module.mkt .mod-ico { background: var(--mkt-soft); color: var(--mkt); }
.module.com .mod-ico { background: var(--com-soft); color: var(--com); }
.module.aut .mod-ico { background: var(--aut-soft); color: var(--aut); }
.mod-head .mt { flex: 1; }
.mod-head h4 { font-size: 17px; }
.mod-head p { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
.mod-toggle { width: 50px; height: 28px; border-radius: 100px; background: var(--line); position: relative; flex: none; transition: background .2s; }
.mod-toggle::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); transition: transform .2s; }
.module.on.mkt .mod-toggle { background: var(--mkt); }
.module.on.com .mod-toggle { background: var(--com); }
.module.on.aut .mod-toggle { background: var(--aut); }
.module.on .mod-toggle::after { transform: translateX(22px); }
.mod-tiers { display: none; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.module.on .mod-tiers { display: flex; flex-wrap: wrap; }
.tier-opt { flex: 1; min-width: 130px; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 11px 14px; cursor: pointer; transition: all .15s; }
.tier-opt .tn { font-size: 13px; font-weight: 700; display: flex; justify-content: space-between; gap: 8px; align-items: baseline; }
.tier-opt .tp { font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft); }
.tier-opt .td { font-size: 11.5px; color: var(--ink-faint); margin-top: 3px; }
.tier-opt.sel { border-color: var(--ink); background: var(--bg); }
.module.on.mkt .tier-opt.sel { border-color: var(--mkt); background: var(--mkt-soft); }
.module.on.com .tier-opt.sel { border-color: var(--com); background: var(--com-soft); }
.module.on.aut .tier-opt.sel { border-color: var(--aut); background: var(--aut-soft); }

.summary { position: sticky; top: 96px; background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow-lg); }
.summary h4 { font-size: 17px; margin-bottom: 4px; }
.summary .sub { font-size: 13px; color: oklch(0.9 0.01 160 / 0.7); margin-bottom: 18px; }
.sum-list { list-style: none; display: grid; gap: 10px; margin-bottom: 18px; min-height: 30px; }
.sum-list li { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; }
.sum-list li span:first-child { color: oklch(0.92 0.01 160 / 0.85); }
.sum-list li span:last-child { font-family: var(--font-mono); font-weight: 600; }
.sum-empty { font-size: 13.5px; color: oklch(0.9 0.01 160 / 0.6); font-style: italic; }
.sum-total { border-top: 1px solid oklch(1 0 0 / 0.16); padding-top: 16px; display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.sum-total .lbl { font-size: 14px; color: oklch(0.92 0.01 160 / 0.85); }
.sum-total .val { font-family: var(--font-mono); font-size: 26px; font-weight: 700; color: var(--green-400); letter-spacing: -0.02em; }
.sum-total .val small { font-size: 14px; color: oklch(0.9 0.01 160 / 0.7); }
.summary .btn { width: 100%; }
.summary .fineprint { font-size: 11.5px; color: oklch(0.9 0.01 160 / 0.55); margin-top: 12px; text-align: center; line-height: 1.5; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .pillars { grid-template-columns: 1fr; }
  .dd-grid, .dd-grid.flip { grid-template-columns: 1fr; gap: 40px; }
  .dd-grid.flip .dd-visual { order: -1; }
  .builder { grid-template-columns: 1fr; }
  .summary { position: static; }
}
@media (max-width: 560px) {
  .store-grid { grid-template-columns: 1fr; }
  .fcard .pill { display: none; }
}

/* ============================================================
   Pricing — subscription packages (data-driven)
   ============================================================ */
.bill-toggle {
  display: flex; gap: 4px; padding: 5px; border-radius: 100px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  width: fit-content; margin: 0 auto 48px;
}
.bill-opt {
  border: none; background: transparent; font-family: inherit; font-weight: 700; font-size: 14.5px;
  color: var(--ink-soft); padding: 11px 22px; border-radius: 100px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 9px; transition: all .18s ease;
}
.bill-opt.active { background: var(--green-600); color: #fff; box-shadow: 0 4px 12px oklch(0.55 0.15 153 / 0.3); }
.bill-opt .save {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: .02em;
  padding: 3px 8px; border-radius: 100px; background: var(--amber); color: var(--amber-ink);
}
.bill-opt.active .save { background: oklch(1 0 0 / 0.22); color: #fff; }

.pricing2 {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 18px;
  max-width: 1200px; margin: 0 auto;
}
.pricing2 .plan { flex: 1 1 260px; max-width: 420px; }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column; position: relative;
  transition: transform .2s, box-shadow .2s;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.plan.popular { border-color: var(--green-500); box-shadow: 0 0 0 3px oklch(0.66 0.16 153 / 0.16), var(--shadow-md); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green-600); color: #fff; font-size: 11.5px; font-weight: 700;
  padding: 5px 15px; border-radius: 100px; letter-spacing: .04em; white-space: nowrap;
}
.plan-tier { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.plan-price { display: flex; align-items: baseline; gap: 7px; margin: 14px 0 2px; flex-wrap: wrap; }
.plan-price .amt { font-size: 33px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.plan-price .per { font-size: 14px; font-weight: 600; color: var(--ink-faint); }
.plan-price .suffix { font-size: 15px; font-weight: 700; color: var(--ink-soft); }
.plan-annual { font-size: 12.5px; color: var(--ink-faint); min-height: 18px; margin-bottom: 4px; }
.plan-annual b { color: var(--green-700); font-weight: 700; }
.plan-aud { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 22px; }
.plan .btn { width: 100%; margin-bottom: 24px; }

.plan-modules { display: grid; gap: 18px; }
.modgroup { display: grid; gap: 9px; }
.modgroup-label {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.modgroup-label .md { width: 7px; height: 7px; border-radius: 2px; flex: none; }
.modgroup.mkt .modgroup-label { color: var(--mkt); } .modgroup.mkt .md { background: var(--mkt); }
.modgroup.com .modgroup-label { color: var(--green-700); } .modgroup.com .md { background: var(--com); }
.modgroup.aut .modgroup-label { color: var(--aut); } .modgroup.aut .md { background: var(--aut); }
.modgroup.geo .modgroup-label { color: var(--geo); } .modgroup.geo .md { background: var(--geo); }
.modgroup.gen .modgroup-label { color: var(--ink-faint); } .modgroup.gen .md { background: var(--ink-faint); }
.plan-feat { display: flex; gap: 9px; font-size: 13.5px; color: var(--ink-soft); align-items: flex-start; line-height: 1.4; }
.plan-feat .ck { flex: none; margin-top: 2px; color: var(--green-600); }
.plan-feat.off { color: var(--ink-faint); opacity: .7; }
.plan-feat.off .ck { color: var(--ink-faint); }
.plan-feat b { color: var(--ink); font-weight: 700; }

@media (max-width: 980px) {
  .pricing2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pricing2 { grid-template-columns: 1fr; }
  .bill-opt { padding: 10px 16px; font-size: 13.5px; }
}

/* ============================================================
   Revamp v2 — all-in-one platform components
   ============================================================ */

/* ---------- Hero: platform board ---------- */
.platform-board {
  position: relative; z-index: 1; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; max-width: 480px; margin: 0 auto;
}
.pb-head { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.pb-dots { display: flex; gap: 6px; }
.pb-dots span { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
.pb-dots span:nth-child(1){ background: oklch(0.78 0.16 28); } .pb-dots span:nth-child(2){ background: oklch(0.85 0.14 85); } .pb-dots span:nth-child(3){ background: var(--green-400); }
.pb-title { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); letter-spacing: .02em; }
.pb-title b { color: var(--ink); font-weight: 700; }
.pb-grid { padding: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pb-tile { border: 1px solid var(--line); border-radius: 14px; padding: 15px 15px; transition: transform .2s, box-shadow .2s; }
.pb-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.pb-tile .ti { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; margin-bottom: 11px; }
.pb-tile .ti svg { width: 18px; height: 18px; }
.pb-tile h5 { font-size: 13.5px; font-weight: 700; letter-spacing: -0.01em; }
.pb-tile .st { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-faint); margin-top: 3px; }
.pb-tile.mkt .ti { background: var(--mkt-soft); color: var(--mkt); }
.pb-tile.com .ti { background: var(--com-soft); color: var(--com); }
.pb-tile.aut .ti { background: var(--aut-soft); color: var(--aut); }
.pb-tile.geo { grid-column: span 2; background: linear-gradient(135deg, var(--geo), oklch(0.42 0.17 295)); border: none; color: #fff; display: flex; align-items: center; gap: 16px; }
.pb-tile.geo .gscore { font-family: var(--font-mono); font-size: 38px; font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.pb-tile.geo .gscore small { font-size: 15px; opacity: .7; }
.pb-tile.geo .gmeta { flex: 1; }
.pb-tile.geo .gmeta .gl { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.pb-tile.geo .gmeta h5 { font-size: 15px; margin-top: 2px; }
.pb-tile.geo .gbadge { font-size: 11px; font-weight: 700; background: oklch(1 0 0 / 0.22); padding: 4px 10px; border-radius: 100px; margin-top: 7px; display: inline-block; }
.pb-spark { display: flex; align-items: flex-end; gap: 3px; height: 38px; }
.pb-spark i { width: 6px; border-radius: 2px; background: oklch(1 0 0 / 0.5); display: block; }

/* ---------- Capability suite grid ---------- */
.suite { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.scard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px;
  transition: transform .2s, box-shadow .2s, border-color .2s; position: relative; display: flex; flex-direction: column;
}
.scard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.scard .ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px; }
.scard .ico svg { width: 23px; height: 23px; }
.scard.mkt .ico { background: var(--mkt-soft); color: var(--mkt); } .scard.mkt:hover { border-color: var(--mkt-line); }
.scard.com .ico { background: var(--com-soft); color: var(--com); } .scard.com:hover { border-color: var(--com-line); }
.scard.aut .ico { background: var(--aut-soft); color: var(--aut); } .scard.aut:hover { border-color: var(--aut-line); }
.scard.geo .ico { background: var(--geo-soft); color: var(--geo); } .scard.geo:hover { border-color: var(--geo-line); }
.scard h4 { font-size: 16.5px; margin-bottom: 6px; letter-spacing: -0.01em; }
.scard p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.scard .cat { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; margin-top: auto; padding-top: 14px; font-weight: 600; }
.scard.mkt .cat { color: var(--mkt); } .scard.com .cat { color: var(--green-700); } .scard.aut .cat { color: var(--aut); } .scard.geo .cat { color: var(--geo); }
.scard .flag { position: absolute; top: 16px; right: 16px; font-size: 10px; font-weight: 700; letter-spacing: .04em; background: var(--geo); color: #fff; padding: 4px 9px; border-radius: 100px; }

/* ---------- GEO flagship section ---------- */
.geo-flag { background: linear-gradient(165deg, oklch(0.22 0.04 295), oklch(0.18 0.03 290)); color: #fff; overflow: hidden; }
.geo-flag .section-head h2 { color: #fff; }
.geo-flag .section-head p { color: oklch(0.9 0.02 300 / 0.82); }
.geo-flag .dd-chip.geo { background: oklch(1 0 0 / 0.1); color: oklch(0.85 0.1 300); border-color: oklch(1 0 0 / 0.18); }
.geo-flag .dd-copy h2 { color: #fff; }
.geo-flag .dd-copy > p { color: oklch(0.9 0.02 300 / 0.82); }
.geo-flag .dd-feats .ft b { color: #fff; }
.geo-flag .dd-feats .ft span { color: oklch(0.88 0.02 300 / 0.75); }
.geo-flag .dd-feats .fi { background: oklch(1 0 0 / 0.1); color: oklch(0.82 0.12 300); }

.geo-card { background: oklch(1 0 0 / 0.05); border: 1px solid oklch(1 0 0 / 0.12); border-radius: var(--radius-lg); padding: 24px; backdrop-filter: blur(6px); }
.geo-url { display: flex; gap: 9px; background: oklch(1 0 0 / 0.08); border: 1px solid oklch(1 0 0 / 0.14); border-radius: 12px; padding: 7px 7px 7px 14px; align-items: center; margin-bottom: 20px; }
.geo-url .lk { flex: 1; font-family: var(--font-mono); font-size: 12.5px; color: oklch(0.9 0.02 300 / 0.9); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.geo-url .lk .pre { color: oklch(0.75 0.12 300); }
.geo-url .fetch { background: var(--geo); color: #fff; border: none; font-family: var(--font-sans); font-weight: 700; font-size: 12.5px; padding: 9px 16px; border-radius: 8px; flex: none; }
.geo-result { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 20px; align-items: center; }
.geo-gauge { text-align: center; }
.geo-gauge .num { font-family: var(--font-mono); font-size: 58px; font-weight: 700; line-height: 1; letter-spacing: -0.03em; background: linear-gradient(120deg, oklch(0.85 0.13 300), oklch(0.78 0.16 280)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.geo-gauge .num small { font-size: 20px; -webkit-text-fill-color: oklch(0.8 0.02 300 / 0.6); }
.geo-gauge .status { display: inline-block; margin-top: 8px; font-size: 12.5px; font-weight: 700; padding: 5px 13px; border-radius: 100px; background: oklch(0.55 0.15 153 / 0.25); color: oklch(0.85 0.16 153); }
.geo-gauge .cap { font-size: 11.5px; color: oklch(0.85 0.02 300 / 0.6); margin-top: 10px; }
.radar { width: 100%; max-width: 240px; margin: 0 auto; display: block; }
.geo-dims { display: grid; gap: 9px; margin-top: 4px; }
.gdim { }
.gdim .gd-top { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 4px; }
.gdim .gd-top span:first-child { color: oklch(0.9 0.02 300 / 0.85); }
.gdim .gd-top span:last-child { font-family: var(--font-mono); color: oklch(0.82 0.12 300); font-weight: 600; }
.gdim .bar { height: 6px; border-radius: 100px; background: oklch(1 0 0 / 0.1); overflow: hidden; }
.gdim .bar i { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, oklch(0.6 0.16 290), oklch(0.72 0.15 300)); }

/* ---------- Workflow pipeline (AI Agent) ---------- */
.wf-canvas { background: var(--aut-soft); border: 1px solid var(--aut-line); border-radius: var(--radius-lg); padding: 28px 26px; background-image: radial-gradient(oklch(0.52 0.13 268 / 0.14) 1px, transparent 1px); background-size: 16px 16px; }
.wf-pipe { display: flex; flex-direction: column; gap: 0; }
.wf-node { background: #fff; border: 1px solid var(--aut-line); border-radius: 14px; padding: 14px 16px; display: flex; align-items: center; gap: 13px; box-shadow: var(--shadow-sm); position: relative; z-index: 1; }
.wf-node .nico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.wf-node .nico svg { width: 19px; height: 19px; }
.wf-node .tg { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.wf-node h5 { font-size: 14.5px; margin-top: 1px; }
.wf-node.trigger .nico { background: var(--com-soft); color: var(--com); }
.wf-node.llm .nico { background: var(--aut-soft); color: var(--aut); }
.wf-node.skill .nico { background: var(--geo-soft); color: var(--geo); }
.wf-node.output .nico { background: var(--mkt-soft); color: var(--mkt); }
.wf-connect { width: 2px; height: 22px; background: var(--aut-line); margin-left: 35px; position: relative; }
.wf-connect::after { content: ""; position: absolute; bottom: 0; left: -3px; width: 8px; height: 8px; border-right: 2px solid var(--aut-line); border-bottom: 2px solid var(--aut-line); transform: rotate(45deg); }
.wf-node .ntag { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--aut); background: var(--aut-soft); padding: 4px 9px; border-radius: 100px; flex: none; }

/* ---------- Knowledge Base + Drive ---------- */
.kb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.kb-files { display: grid; gap: 12px; }
.kb-file { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 15px 18px; box-shadow: var(--shadow-sm); }
.kb-file .ft { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; flex: none; font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: #fff; }
.kb-file .ft.pdf { background: oklch(0.58 0.18 28); } .kb-file .ft.doc { background: oklch(0.5 0.14 255); } .kb-file .ft.xls { background: var(--green-600); } .kb-file .ft.drv { background: oklch(0.7 0.15 95); }
.kb-file .fn { font-weight: 700; font-size: 14px; flex: 1; }
.kb-file .fn small { display: block; font-weight: 500; font-size: 12px; color: var(--ink-faint); margin-top: 1px; }
.kb-file .fstat { font-family: var(--font-mono); font-size: 11.5px; color: var(--green-700); display: flex; align-items: center; gap: 5px; flex: none; }
.kb-drive { margin-top: 16px; display: flex; align-items: center; gap: 12px; background: #fff; border: 1px dashed var(--aut-line); border-radius: var(--radius-sm); padding: 15px 18px; }
.kb-drive .di { width: 34px; height: 34px; border-radius: 9px; background: var(--aut-soft); color: var(--aut); display: grid; place-items: center; flex: none; }
.kb-drive .dt { flex: 1; font-size: 13.5px; font-weight: 600; }
.kb-drive .dbtn { font-size: 12.5px; font-weight: 700; color: var(--aut); }

@media (max-width: 980px) {
  .suite { grid-template-columns: repeat(2, 1fr); }
  .geo-result { grid-template-columns: 1fr; gap: 24px; }
  .kb-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .suite { grid-template-columns: 1fr; }
  .pb-tile.geo { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Theme Bridge — Custom Logo (Customizer) & menu tambahan
   ============================================================ */
.logo-mark.rp-has-custom-logo {
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.rp-custom-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* Footer dengan kolom menu tambahan (Blog) jadi 5 kolom */
.footer-grid.has-menu { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; }
@media (max-width: 980px) {
  .footer-grid.has-menu { grid-template-columns: 1fr 1fr; }
}
