:root {
  --orange: #B5202A;
  --navy: #1A1A1A;
  --td: #111;
  --tm: #6B7280;
  --bg: #FDF8F5;
  --card: #fff;
  --border: #E5E7EB;
  --green: #059669;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--td);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--orange); font-weight: 600; text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  background: var(--navy);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.logo { font-size: 1.25rem; font-weight: 800; color: #fff; text-decoration: none; }
.logo span { color: var(--orange); }
.logo:hover { text-decoration: none; }
.site-nav { display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: center; }
.site-nav a {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
}
.site-nav a:hover { color: #fff; text-decoration: none; }
.site-nav a.active { color: #fff; }
.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .82rem !important;
}
.nav-cta:hover { background: #c73520; }

main { max-width: 820px; margin: 0 auto; padding: 40px 24px 72px; }
main.wide { max-width: 960px; }
h1 { font-size: 1.85rem; font-weight: 800; margin-bottom: 10px; color: var(--navy); line-height: 1.2; }
.lead { font-size: 1.05rem; color: #374151; margin-bottom: 28px; line-height: 1.65; }
.updated { font-size: .85rem; color: var(--tm); margin-bottom: 28px; }

article, .card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 26px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, .06);
  margin-bottom: 20px;
}
article h2, .card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}
article h2:first-child, .card h2:first-child { margin-top: 0; }
article h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin: 20px 0 8px; }
article p, article li, .card p, .card li {
  font-size: .95rem;
  color: #374151;
  margin-bottom: 12px;
}
article ul, article ol, .card ul { margin: 0 0 16px 20px; }

.summary-box {
  background: linear-gradient(135deg, #F9EAE4 0%, #fff 100%);
  border: 1px solid #FECACA;
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 24px;
}
.summary-box h2 { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--orange); margin: 0 0 12px; }
.summary-box p { font-size: .92rem; margin-bottom: 10px; color: #374151; }
.summary-box p:last-child { margin-bottom: 0; }
.summary-box ul { margin: 8px 0 0 18px; }
.summary-box li { font-size: .9rem; margin-bottom: 6px; color: #374151; }

.compare-wrap { overflow-x: auto; margin: 16px 0 8px; }
table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
  min-width: 640px;
}
table.compare th, table.compare td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
table.compare th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}
table.compare th:first-child { border-radius: 8px 0 0 0; }
table.compare tr:nth-child(even) td { background: #F9FAFB; }
table.compare td:first-child { font-weight: 600; color: var(--navy); white-space: nowrap; }
table.compare .yes { color: var(--green); font-weight: 700; }
table.compare .note { font-size: .75rem; color: var(--tm); display: block; margin-top: 4px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.plan-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  background: #fff;
}
.plan-card.featured { border-color: var(--orange); box-shadow: 0 4px 20px rgba(232, 68, 42, .12); }
.plan-name { font-size: .78rem; font-weight: 700; color: var(--tm); text-transform: uppercase; letter-spacing: .04em; }
.plan-price { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin: 8px 0 4px; }
.plan-price span { font-size: .85rem; font-weight: 600; color: var(--tm); }
.plan-feats { list-style: none; margin: 14px 0 0; padding: 0; }
.plan-feats li {
  font-size: .82rem;
  color: #374151;
  padding: 5px 0;
  border-top: 1px solid #F3F4F6;
  margin: 0;
}
.plan-feats li::before { content: '✓ '; color: var(--green); font-weight: 700; }

.cta-row { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff !important;
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none !important;
}
.btn-primary:hover { background: #c73520; }
.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--border);
  color: var(--navy) !important;
  font-weight: 600;
  font-size: .88rem;
  padding: 11px 18px;
  border-radius: 10px;
  text-decoration: none !important;
  background: #fff;
}

.faq-item { border-bottom: 1px solid var(--border); padding: 14px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 700; font-size: .92rem; color: var(--navy); margin-bottom: 6px; }
.faq-a { font-size: .9rem; color: #374151; margin: 0; }

.site-footer {
  text-align: center;
  padding: 24px;
  font-size: .78rem;
  color: var(--tm);
  border-top: 1px solid var(--border);
  background: #fff;
}
.site-footer a { margin: 0 8px; }

.disclaimer {
  font-size: .78rem;
  color: var(--tm);
  font-style: italic;
  margin-top: 12px;
}

/* Programmatic SEO data pages (/riset/) */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 18px 0 8px;
}
.stat {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  background: #fff;
}
.stat-num { font-size: 1.3rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.stat-label { font-size: .74rem; color: var(--tm); text-transform: uppercase; letter-spacing: .03em; margin-top: 4px; }
.stat-sub { font-size: .76rem; color: #374151; margin-top: 2px; }

.bar-row { display: flex; align-items: center; gap: 10px; margin: 6px 0; font-size: .82rem; }
.bar-label { flex: 0 0 132px; color: var(--navy); font-weight: 600; }
.bar-track { flex: 1; background: #F3F4F6; border-radius: 6px; height: 16px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--orange); border-radius: 6px; }
.bar-val { flex: 0 0 64px; text-align: right; color: var(--tm); }

.prod-name { font-weight: 600; color: var(--navy); }
.muted { color: var(--tm); }

.riset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.riset-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  background: #fff;
  display: block;
  text-decoration: none !important;
  transition: box-shadow .15s, border-color .15s;
}
.riset-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); border-color: var(--orange); }
.riset-card .rk { font-weight: 700; color: var(--navy); font-size: .95rem; }
.riset-card .rm { color: var(--tm); font-size: .8rem; margin-top: 6px; }
.cat-pill {
  display: inline-block; font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .03em; color: var(--orange); background: #F9EAE4; border-radius: 999px;
  padding: 2px 9px; margin-bottom: 8px;
}
.cat-head { font-size: 1rem; font-weight: 800; color: var(--navy); margin: 22px 0 4px; }

/* Harga (/harga/): 100% gratis hero + perbandingan kompetitor.
   Mirrors the same block in index.html's #view-harga so both surfaces stay
   visually identical; the --meta-* aliases keep that CSS copy-pasteable. */
main.wide.harga-free {
  /* Six-column comparison table needs more room than the 960px content pages */
  max-width: 1180px;
}
.harga-free {
  --meta-red: var(--orange);
  --meta-red-soft: #FEF2F2;
  --meta-ink: var(--navy);
  --meta-muted: var(--tm);
}
.fh-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 24px;
  margin: 0 0 4px;
}
.fh-hero-text { flex: 1 1 auto; min-width: 0; }
.fh-hero-mascot {
  flex: 0 0 auto;
  position: relative;
  min-width: 440px;
  display: flex;
  justify-content: center;
}
.fh-hero-mascot img { display: block; width: 304px; max-width: 100%; height: auto; }
.fh-h1 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--meta-ink);
}
.fh-h1 .accent { color: var(--meta-red); }
.fh-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 999px;
  background: #FFF1F1;
  color: var(--meta-red);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .04em;
  margin: 0 0 14px;
}
.fh-badge svg { flex-shrink: 0; }
.fh-lead {
  margin: 0;
  max-width: 480px;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--meta-muted);
}
/* The mascot sits in a stage so the capability chips can orbit it. */
.fh-stage { position: relative; }
.fh-chip {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #EDEDED;
  box-shadow: 0 6px 18px rgba(0,0,0,.07);
  white-space: nowrap;
  z-index: 2;
}
.fh-chip-ico { flex-shrink: 0; color: var(--meta-red); margin-top: 1px; }
.fh-chip b {
  display: block;
  font-size: .74rem;
  font-weight: 750;
  color: var(--meta-ink);
  line-height: 1.25;
}
.fh-chip span {
  display: block;
  font-size: .66rem;
  color: var(--meta-muted);
  line-height: 1.3;
  margin-top: 1px;
  white-space: normal;
  max-width: 108px;
}
.fh-chip--tl { top: 2%;  left: 0; }
.fh-chip--tr { top: -2%; right: 0; }
.fh-chip--br { top: 46%; right: 0; }
.fh-chip--bl { bottom: 4%; left: 0; }
/* Free-plan capability boxes */
.fh-feats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #EDEDED;
  border-radius: 18px;
  overflow: hidden;
  margin: 22px 0 14px;
  background: #fff;
}
.fh-feat {
  padding: 16px 18px 15px;
  border-right: 1px solid #F0F0F0;
}
.fh-feat:last-child { border-right: none; }
.fh-feat-ico { color: var(--meta-red); display: block; margin-bottom: 9px; }
.fh-feat b {
  display: block;
  font-size: .84rem;
  font-weight: 750;
  color: var(--meta-ink);
  line-height: 1.3;
}
.fh-feat span {
  display: block;
  font-size: .76rem;
  color: var(--meta-muted);
  margin-top: 3px;
  line-height: 1.4;
}
/* Comparison table */
.cmp {
  margin: 26px 0 4px;
  border: 1px solid #EDEDED;
  border-radius: 22px;
  padding: 24px 22px 20px;
  background: #fff;
  position: relative;
  z-index: 1;
}
.cmp-head { text-align: center; margin-bottom: 18px; }
.cmp-title {
  margin: 0 0 6px;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--meta-ink);
}
.cmp-sub { margin: 0; font-size: .84rem; color: var(--meta-muted); }
.cmp-sub strong { color: var(--meta-red); font-weight: 800; }
.cmp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp-hint {
  display: none;
  font-size: .72rem;
  color: var(--meta-muted);
  margin: 0 0 8px;
}
.cmp-table {
  width: 100%;
  min-width: 780px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .8rem;
  /* Fixed layout keeps six columns inside the container instead of letting the
     long price notes stretch the table past it — the wrapper only has to scroll
     once the viewport itself drops below min-width (phones). */
  table-layout: fixed;
}
.cmp-table th, .cmp-table td { overflow-wrap: break-word; }
.cmp-table thead th:first-child { width: 172px; }
/* The 2px red outline on this column pushes its content down by exactly that
   much, so trim its top padding to keep the logo and price level with the rest. */
.cmp-table thead th.is-laris { width: 152px; padding-top: 2px; }
.cmp-table th, .cmp-table td {
  padding: 10px 9px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #F1F1F1;
}
/* Top-aligned so the logo slot — and therefore the headline number under it —
   starts at the same y in every column. Bottom-aligning made columns with a
   two-line sub-note ride ~30px higher than the rest. */
.cmp-table thead th { vertical-align: top; padding-top: 4px; padding-bottom: 14px; }
/* Reserve two lines of sub-note so the header's lower edge stays even too. */
.cmp-price em { min-height: 2.7em; }
.cmp-table th:first-child, .cmp-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  text-align: left;
  background: #fff;
  min-width: 152px;
  font-weight: 600;
  color: #3F3F46;
}
.cmp-table thead th:first-child {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--meta-muted);
}
/* Each vendor's own wordmark, self-hosted in images/competitors/. */
/* Fixed-height slot: every logo is centred on the SAME horizontal line even
   though their own heights differ (16px Kalodata to 22px Shoptik). */
.cmp-logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  margin-bottom: 10px;
}
.cmp-tool-logo, .cmp-laris-logo {
  display: block;
  /* Sized per logo via the width/height attributes: aspect ratios run 2.3:1
     (Shoptik) to 5.7:1 (Kalodata), so a single height makes them look uneven. */
  width: auto;
  max-width: 100%;
  margin: 0;
  object-fit: contain;
}
/* One headline number per column, one short line under it. Anything more
   detailed belongs in the footnote — header cells have ~112px to work with. */
.cmp-price {
  display: block;
  font-size: .82rem;
  color: var(--meta-ink);
  line-height: 1.25;
}
/* The headline number is its own block and never wraps, so it sits at an
   identical height in all five columns. The sub-line below may wrap freely. */
.cmp-price b {
  display: block;
  font-weight: 800;
  white-space: nowrap;
}
.cmp-price em {
  display: block;
  font-style: normal;
  font-size: .66rem;
  font-weight: 500;
  color: var(--meta-muted);
  margin-top: 4px;
  line-height: 1.35;
}
/* Bottom Harga row mirrors the header: number on line 1, unit on line 2. */
.cmp-cost strong {
  display: block;
  font-weight: 800;
  font-size: .82rem;
  white-space: nowrap;
  color: var(--meta-ink);
}
.cmp-cost i {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: .66rem;
  color: var(--meta-muted);
  margin-top: 2px;
  white-space: nowrap;
}
/* LarisID column: tinted, outlined, and pinned visually while scrolling */
.cmp-table .is-laris { background: #FFF7F7; }
.cmp-table thead .is-laris { border-radius: 14px 14px 0 0; }
.cmp-table th.is-laris, .cmp-table td.is-laris {
  border-left: 2px solid var(--meta-red);
  border-right: 2px solid var(--meta-red);
}
.cmp-table thead th.is-laris { border-top: 2px solid var(--meta-red); }
.cmp-table tbody tr:last-child td.is-laris { border-bottom: 2px solid var(--meta-red); }
.cmp-laris-free {
  display: inline-block;
  margin-top: 7px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--meta-red);
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .03em;
}
.cmp-yes, .cmp-no, .cmp-part, .cmp-na {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 650;
  line-height: 1.3;
  /* Labels are sized to fit their column; nowrap guarantees every cell in a row
     is exactly one line, so the tick marks land on one level line. */
  white-space: nowrap;
}
.cmp-yes svg, .cmp-no svg, .cmp-part svg { flex-shrink: 0; }
.cmp-yes { color: #15803D; }
.cmp-no { color: #B42318; }
.cmp-part { color: #B45309; }
.cmp-na { color: #9CA3AF; font-weight: 500; }
.cmp-visit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 10px;
  border: 1px solid #E2E2E2;
  background: #fff;
  font-size: .74rem;
  font-weight: 700;
  color: #3F3F46;
  text-decoration: none;
  /* Must be allowed to wrap: with table-layout:fixed a nowrap button sets the
     table's minimum width and pushes the six columns past their container. */
  white-space: normal;
  text-align: center;
  justify-content: center;
}
.cmp-visit:hover { border-color: #C9C9C9; background: #FAFAFA; }
.cmp-visit--laris {
  border-color: var(--meta-red);
  color: var(--meta-red);
  background: #fff;
}
.cmp-visit--laris:hover { background: var(--meta-red); color: #fff; }
.cmp-foot {
  margin: 14px 0 0;
  font-size: .72rem;
  line-height: 1.55;
  color: var(--meta-muted);
  text-align: center;
}
.cmp-foot a { color: var(--meta-red); }
/* Rules / bonus block under the table */
.fh-rules { margin: 22px 0 0; }
.fh-rules h3 {
  margin: 0 0 10px;
  font-size: .95rem;
  font-weight: 800;
  color: var(--meta-ink);
}
.fh-rules ul { margin: 0 0 16px; padding-left: 18px; }
.fh-rules li {
  font-size: .85rem;
  line-height: 1.6;
  color: #3F3F46;
  margin-bottom: 6px;
}
.fh-rules li strong { color: var(--meta-ink); font-weight: 750; }

/* Static-page responsive mirror of index.html's media queries */
@media (max-width: 1040px) {
  .fh-chip { display: none; }
}
@media (max-width: 860px) {
  .fh-hero { align-items: flex-end; gap: 8px 12px; }
  .fh-hero-mascot { min-width: 0; }
  .fh-hero-mascot img { width: 150px; }
  .fh-feats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fh-feat:nth-child(2) { border-right: none; }
  .fh-feat:nth-child(-n+2) { border-bottom: 1px solid #F0F0F0; }
  .cmp { padding: 20px 14px 16px; }
  .cmp-hint { display: block; }
  .cmp-table th:first-child, .cmp-table td:first-child { min-width: 152px; }
}
@media (max-width: 460px) {
  .fh-hero-mascot img { width: 118px; }
  .fh-feats { grid-template-columns: 1fr; }
  .fh-feat { border-right: none; border-bottom: 1px solid #F0F0F0; }
  .fh-feat:last-child { border-bottom: none; }
}
