/* Simantep Landing Page styles */
:root {
  --brand-50: #fff5f3;
  --brand-100: #ffe4df;
  --brand-200: #ffc7bb;
  --brand-300: #ff9d8a;
  --brand-400: #ff6b50;
  --brand-500: #ed3a1a;
  --brand-600: #d12a0d;
  --brand-700: #a8210b;
  --brand-800: #7d1808;
  --brand-900: #4a1006;
  --bg: #fbf9f7;
  --surface: #ffffff;
  --surface-2: #faf6f3;
  --border: #ece6e1;
  --border-strong: #d9d2cb;
  --ink-900: #1a1614;
  --ink-700: #3d3530;
  --ink-500: #6b605a;
  --ink-400: #948880;
  --green: #1c8e5a;

  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Consolas, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink-900);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { flex-shrink: 0; }

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

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0;
  z-index: 50;
  background: rgba(251, 249, 247, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex; align-items: center;
  height: 68px;
  gap: 28px;
}
.nav-brand {
  display: flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 19px; letter-spacing: -0.02em;
  color: var(--brand-600);
}
.nav-brand img { width: 34px; height: 34px; object-fit: contain; }
.nav-links {
  display: flex; gap: 4px;
  margin-left: 24px;
}
.nav-links a {
  padding: 8px 12px;
  font-size: 14px;
  color: var(--ink-700);
  font-weight: 500;
  border-radius: 8px;
}
.nav-links a:hover { background: var(--surface-2); color: var(--ink-900); }
.nav-cta { margin-left: auto; display: flex; gap: 8px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.08s, box-shadow 0.12s, background 0.12s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand-500); color: white;
  box-shadow: 0 1px 0 rgba(168,33,11,0.2), inset 0 1px 0 rgba(255,255,255,0.18), 0 6px 20px -6px rgba(237,58,26,0.5);
}
.btn-primary:hover { background: var(--brand-600); }
.btn-secondary {
  background: var(--surface);
  color: var(--ink-900);
  border-color: var(--border-strong);
}
.btn-secondary:hover { background: var(--surface-2); }
.btn-ghost { color: var(--ink-700); }
.btn-ghost:hover { background: var(--surface-2); }
.btn-lg { padding: 13px 22px; font-size: 15px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(237,58,26,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(237,58,26,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 6px;
  background: var(--brand-50);
  color: var(--brand-700);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  border: 1px solid var(--brand-100);
  margin-bottom: 22px;
}
.hero-eyebrow .pill {
  font-size: 10.5px;
  background: white;
  color: var(--brand-700);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--brand-500);
  position: relative;
  white-space: nowrap;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px; bottom: 4px;
  height: 10px;
  background: var(--brand-100);
  z-index: -1;
  border-radius: 2px;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-500);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-500);
}
.hero-trust .avatars { display: flex; }
.hero-trust .avatars span {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  background: linear-gradient(135deg, var(--brand-300), var(--brand-600));
  display: grid; place-items: center;
  color: white; font-weight: 700; font-size: 11px;
}
.hero-trust .avatars span:first-child { margin-left: 0; }
.hero-trust strong { color: var(--ink-900); font-weight: 700; }

/* HERO MOCK */
.hero-mock {
  position: relative;
}
.mock-card {
  background: white;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow:
    0 30px 60px -30px rgba(20, 10, 5, 0.18),
    0 12px 24px -10px rgba(20, 10, 5, 0.08);
  overflow: hidden;
  transform: rotate(-1deg);
  transition: transform 0.4s;
}
.mock-card:hover { transform: rotate(0); }
.mock-head {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.mock-head .dot { width: 11px; height: 11px; border-radius: 50%; background: #ddd; }
.mock-head .dot.r { background: #ff6058; }
.mock-head .dot.y { background: #ffc02e; }
.mock-head .dot.g { background: #28cd42; }
.mock-head .url {
  flex: 1; font-family: var(--font-mono); font-size: 11px; color: var(--ink-500);
  text-align: center;
}
.mock-body { padding: 18px; background: var(--surface-2); }

/* mini metric grid in mock */
.mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.mock-metric {
  background: white;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid var(--border);
}
.mock-metric .l { font-size: 10.5px; color: var(--ink-500); font-weight: 600; }
.mock-metric .v { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; margin-top: 2px; }
.mock-metric .d { font-size: 10.5px; color: var(--green); font-weight: 600; margin-top: 2px; }

.mock-chart {
  background: white; border: 1px solid var(--border);
  border-radius: 10px; padding: 12px; margin-bottom: 12px;
}
.mock-chart .l { font-size: 10.5px; color: var(--ink-500); font-weight: 600; margin-bottom: 8px; }
.mock-bars { display: flex; align-items: flex-end; gap: 4px; height: 64px; }
.mock-bars span {
  flex: 1; border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--brand-500), var(--brand-300));
}

.mock-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: white; border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 12px;
}
.mock-row .mp { width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0; display: grid; place-items: center; color: white; font-weight: 800; font-size: 9px; }
.mock-row .id { font-family: var(--font-mono); font-weight: 600; }
.mock-row .name { color: var(--ink-700); flex: 1; }
.mock-row .chip {
  font-size: 10px; padding: 2px 7px; border-radius: 999px;
  background: #e8f5ed; color: var(--green); font-weight: 700;
}
.mock-row .chip.amber { background: #fdf3dd; color: #c47a06; }

/* Floating cards around mock */
.float-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 12px 28px -10px rgba(20,10,5,0.18);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  z-index: 2;
}
.float-card .ico {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--brand-500);
  color: white;
  display: grid; place-items: center;
}
.float-card.green .ico { background: var(--green); }
.float-card .t { font-weight: 700; font-size: 13px; line-height: 1.2; }
.float-card .s { font-size: 11.5px; color: var(--ink-500); }
.float-1 { top: 36px; left: -42px; animation: floaty 6s ease-in-out infinite; }
.float-2 { bottom: 50px; right: -26px; animation: floaty 7s ease-in-out infinite reverse; animation-delay: -1s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============ LOGOS STRIP ============ */
.logos {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.logos-label {
  text-align: center;
  font-size: 12px; color: var(--ink-500);
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700;
  margin-bottom: 18px;
}
.logos-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}
.logos-row .mp-logo {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 700;
  color: var(--ink-700);
  padding: 8px;
}
.mp-icon-lg {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 800; color: white;
}

/* ============ SECTIONS ============ */
.section {
  padding: 100px 0;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--brand-600);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 16px;
  max-width: 720px;
}
.section-title em { font-style: normal; color: var(--brand-500); }
.section-sub {
  font-size: 17px;
  color: var(--ink-500);
  max-width: 600px;
  margin: 0;
}
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center .section-title,
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ============ FEATURE GRID ============ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.16s, box-shadow 0.16s, border-color 0.16s;
}
.feature-card:hover {
  border-color: var(--brand-200);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(237, 58, 26, 0.18);
}
.feature-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--brand-50);
  color: var(--brand-600);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.feature-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.feature-desc {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.55;
  margin: 0;
}
.feature-card.featured {
  background: linear-gradient(160deg, var(--brand-500), var(--brand-700));
  color: white;
  border-color: transparent;
}
.feature-card.featured .feature-icon {
  background: rgba(255,255,255,0.16); color: white;
}
.feature-card.featured .feature-desc { color: rgba(255,255,255,0.86); }

/* ============ "GAMPANG" 3-step ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--brand-500);
  color: white;
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 14px;
}
.step h4 {
  font-size: 17px; font-weight: 700; margin: 0 0 6px; letter-spacing: -0.01em;
}
.step p { font-size: 14px; color: var(--ink-500); margin: 0; }

/* ============ COMPARE / VS ============ */
.compare {
  background: linear-gradient(165deg, #1a1614 0%, #2a1f1a 100%);
  color: white;
  border-radius: 22px;
  padding: 48px 48px 56px;
  position: relative;
  overflow: hidden;
}
.compare::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 80% 20%, rgba(237,58,26,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.compare-head { position: relative; max-width: 680px; }
.compare .section-eyebrow { color: var(--brand-300); }
.compare-title {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 14px;
}
.compare-sub { color: rgba(255,255,255,0.7); margin: 0; font-size: 16px; }
.compare-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
  margin-top: 36px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
}
.compare-grid > div {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}
.compare-grid > div:nth-child(3n+2) { background: rgba(237,58,26,0.08); }
.compare-grid .h {
  background: rgba(255,255,255,0.06) !important;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
}
.compare-grid .h.brand {
  background: var(--brand-500) !important;
  color: white;
  display: flex; align-items: center; gap: 8px;
}
.compare-grid .feat { color: rgba(255,255,255,0.92); font-weight: 500; }
.compare-grid .y { color: white; font-weight: 700; }
.compare-grid .y::before { content: '✓ '; color: var(--brand-300); }
.compare-grid .n { color: rgba(255,255,255,0.4); }
.compare-grid .n::before { content: '— '; }

/* ============ API SECTION ============ */
.api-show {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.code-block {
  background: #1e1814;
  color: #f4ece4;
  border-radius: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(20,10,5,0.4);
}
.code-tabs {
  display: flex; gap: 2px;
  background: #15110e;
  padding: 8px 8px 0;
  border-bottom: 1px solid #2a2320;
}
.code-tabs span {
  padding: 8px 14px;
  font-size: 12px;
  color: #9a8f86;
  border-radius: 7px 7px 0 0;
}
.code-tabs span.active { background: #1e1814; color: #fff; }
.code-block pre {
  margin: 0;
  padding: 22px 24px;
  overflow-x: auto;
}
.tok-key { color: #ffb084; }
.tok-str { color: #b3e597; }
.tok-num { color: #ffd29c; }
.tok-com { color: #7a6e64; font-style: italic; }
.tok-kw  { color: #ff9275; }

.api-points { display: flex; flex-direction: column; gap: 18px; }
.api-point { display: flex; gap: 14px; }
.api-point .ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--brand-50);
  color: var(--brand-600);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.api-point h4 { margin: 2px 0 4px; font-size: 16px; font-weight: 700; }
.api-point p { margin: 0; font-size: 14px; color: var(--ink-500); }

/* ============ TESTIMONIAL ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 18px;
}
.testimonial blockquote {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}
.testimonial blockquote::before { content: '“'; color: var(--brand-500); font-size: 28px; line-height: 0; vertical-align: -6px; margin-right: 2px; font-weight: 800; }
.t-author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.t-author .ava {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-300), var(--brand-700));
  color: white; font-weight: 700;
  display: grid; place-items: center;
  font-size: 13px;
}
.t-author .meta strong { display: block; font-size: 13.5px; }
.t-author .meta span { font-size: 12px; color: var(--ink-500); }

/* ============ PRICING ============ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.price-card.featured {
  border-color: var(--brand-500);
  border-width: 2px;
  box-shadow: 0 24px 48px -24px rgba(237,58,26,0.28);
}
.price-card .badge {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--brand-500);
  color: white;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-name { font-size: 17px; font-weight: 700; }
.price-desc { font-size: 13.5px; color: var(--ink-500); margin-top: -10px; }
.price-amount { display: flex; align-items: baseline; gap: 6px; }
.price-amount strong { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; }
.price-amount span { color: var(--ink-500); font-size: 14px; }
.price-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-700); }
.price-list li::before {
  content: '✓';
  color: var(--brand-500);
  font-weight: 800;
  flex-shrink: 0;
}

/* ============ FAQ ============ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 18px 4px;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 22px; font-weight: 400;
  color: var(--ink-500);
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); color: var(--brand-500); }
.faq details p {
  margin: 12px 0 0;
  color: var(--ink-500);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-700) 100%);
  border-radius: 22px;
  padding: 60px 48px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 0% 0%, rgba(255,255,255,0.18) 0%, transparent 50%),
    radial-gradient(ellipse 60% 100% at 100% 100%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  position: relative;
}
.cta-band p {
  font-size: 17px; color: rgba(255,255,255,0.9);
  margin: 0 auto 28px;
  max-width: 560px;
  position: relative;
}
.cta-band .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-band .btn-primary {
  background: white; color: var(--brand-700);
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.2);
}
.cta-band .btn-primary:hover { background: rgba(255,255,255,0.9); }
.cta-band .btn-secondary {
  background: transparent; color: white; border-color: rgba(255,255,255,0.3);
}
.cta-band .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* ============ FOOTER ============ */
.footer {
  padding: 60px 0 36px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}
.footer h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--ink-500);
  margin: 0 0 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer ul a { font-size: 14px; color: var(--ink-700); }
.footer ul a:hover { color: var(--brand-600); }
.footer-brand p { font-size: 14px; color: var(--ink-500); margin: 12px 0 0; max-width: 320px; line-height: 1.55; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--ink-500);
}
.footer-bottom-links { display: flex; gap: 18px; }

/* responsive */
@media (max-width: 960px) {
  .hero-grid, .api-show { grid-template-columns: 1fr; }
  .features, .steps, .testimonials, .pricing, .compare-grid { grid-template-columns: 1fr !important; }
  .compare-grid { display: flex; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .logos-row { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: none; }
  .float-1, .float-2 { display: none; }
}
