/* =====================================================
   BRANDMARK.ID — STYLESHEET v5
   Responsive: Mobile 320px → Tablet 768px → Desktop 1280px+
   WordPress: move to style.css (child theme)
===================================================== */

/* ── TOKENS ─────────────────────────── */
:root {
  --violet:      #5b3fe4;
  --violet-d:    #4027c0;
  --violet-lt:   #ece8fd;
  --violet-mid:  #7b63eb;
  --green:       #059669;
  --green-lt:    #d1fae5;
  --green-mid:   #34d399;
  --amber:       #d97706;
  --amber-lt:    #fef3c7;
  --coral:       #e55353;
  --coral-lt:    #fee2e2;
  --sky:         #0284c7;
  --sky-lt:      #e0f2fe;
  --pink:        #db2777;
  --pink-lt:     #fce7f3;
  --ink:         #111827;
  --ink-soft:    #374151;
  --muted:       #6b7280;
  --border:      #e5e7eb;
  --border-soft: #f3f4f6;
  --surface:     #ffffff;
  --canvas:      #f9fafb;
  --r-xs: 4px; --r-sm: 8px; --r: 12px;
  --r-lg: 16px; --r-xl: 24px; --r-2xl: 32px;
  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,.1),  0 3px 8px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 48px rgba(0,0,0,.12), 0 6px 16px rgba(0,0,0,.07);
  --fs-xs:  11px; --fs-sm: 13px; --fs-base: 15px;
  --fs-md:  17px; --fs-lg: 20px; --fs-xl:  24px;
  --fs-2xl: 30px; --fs-3xl: 38px; --fs-4xl: 52px;
}

/* ── RESET ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--surface); color: var(--ink);
  font-size: var(--fs-base); line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── LAYOUT ─────────────────────────── */
.wrap     { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.wrap-sm  { width: 100%; max-width: 680px;  margin: 0 auto; padding: 0 24px; }
.wrap-md  { width: 100%; max-width: 880px;  margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ─────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase;
}
h1 { font-size: clamp(32px, 5.5vw, 60px); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; }
h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; line-height: 1.15; letter-spacing: -.025em; }
h3 { font-size: clamp(18px, 2.5vw, 22px); font-weight: 700; line-height: 1.3; }
h4 { font-size: var(--fs-base); font-weight: 700; line-height: 1.4; }
p  { color: var(--muted); line-height: 1.75; }

/* ── BUTTONS ────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: inherit; font-weight: 700; font-size: var(--fs-sm);
  padding: 11px 22px; border-radius: var(--r-sm);
  border: none; cursor: pointer; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap; -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.97); }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-primary { background: var(--violet); color: #fff; }
.btn-primary:hover { background: var(--violet-d); box-shadow: 0 6px 20px rgba(91,63,228,.3); transform: translateY(-1px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: #047857; box-shadow: 0 6px 20px rgba(5,150,105,.3); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--violet-d); }
.btn-white:hover { box-shadow: 0 6px 20px rgba(255,255,255,.3); transform: translateY(-1px); }
.btn-ghost-white { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.25); }
.btn-ghost-white:hover { background: rgba(255,255,255,.2); transform: translateY(-1px); }
.btn-lg { font-size: var(--fs-base); padding: 13px 26px; border-radius: var(--r); }
.btn-full { width: 100%; }

/* ── NAV ────────────────────────────── */
/* WP: header.php */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(255,255,255,.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; padding: 0 24px; max-width: 1160px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 17px; letter-spacing: -.4px; color: var(--ink);
}
.nav-logo-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--violet), var(--violet-d));
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 15px; height: 15px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.nav-logo-dot { color: var(--violet-mid); }
/* WP: wp_nav_menu() */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: var(--fs-sm); font-weight: 500; color: var(--muted);
  padding: 7px 13px; border-radius: var(--r-sm);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: var(--canvas); }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--ink); transition: transform .25s, opacity .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none; position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 400; padding: 24px;
  flex-direction: column; gap: 4px;
  overflow-y: auto; border-top: 1px solid var(--border);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: var(--fs-md); font-weight: 600; color: var(--ink);
  padding: 14px 16px; border-radius: var(--r-sm);
  transition: background .15s;
}
.nav-drawer a:hover { background: var(--canvas); }
.nav-drawer-cta { margin-top: 12px; }

/* ── HERO ───────────────────────────── */
/* WP: template-parts/hero.php */
.hero {
  padding: 120px 0 72px;
  background: linear-gradient(160deg, #f0edff 0%, #fff 40%, #ecfdf5 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  width: min(700px, 90vw); height: min(700px, 90vw);
  top: -30%; right: -15%;
  background: radial-gradient(circle, rgba(91,63,228,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  width: min(500px, 70vw); height: min(500px, 70vw);
  bottom: -20%; left: -10%;
  background: radial-gradient(circle, rgba(5,150,105,.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px; align-items: center;
  position: relative;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--violet-lt); color: var(--violet);
  padding: 5px 13px; border-radius: 100px; margin-bottom: 20px;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
}
.hero-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--violet); flex-shrink: 0; }
.hero h1 { color: var(--ink); margin-bottom: 18px; }
.hero h1 mark {
  background: linear-gradient(90deg, var(--violet), #7c3aed);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: clamp(15px, 2vw, 18px); color: var(--muted); line-height: 1.75; margin-bottom: 28px; max-width: 500px; }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-proof { display: flex; align-items: center; gap: 10px; font-size: var(--fs-sm); color: var(--muted); flex-wrap: wrap; }
.hero-stars { color: #f59e0b; letter-spacing: -1px; }

/* Hero visual card */
.hero-card {
  background: var(--surface); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  overflow: hidden;
}
.hc-header {
  background: linear-gradient(135deg, #3b1fa3 0%, var(--violet) 100%);
  padding: 16px 20px; display: flex; align-items: center; justify-content: space-between;
}
.hc-title { font-size: var(--fs-sm); font-weight: 600; color: rgba(255,255,255,.8); }
.hc-dots { display: flex; gap: 5px; }
.hc-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.25); }
.hc-body { padding: 18px 20px; }
.hc-lbl { font-size: var(--fs-xs); font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.hc-searchbar {
  display: flex; align-items: center; gap: 8px;
  background: var(--canvas); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 9px 13px; margin-bottom: 16px;
  font-size: var(--fs-sm); color: var(--muted);
}
.hc-searchbar svg { width: 13px; height: 13px; stroke: var(--muted); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.hc-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 11px; border-radius: var(--r-xs); margin-bottom: 6px;
  background: var(--canvas); border: 1px solid var(--border);
}
.hc-row-name { font-size: var(--fs-sm); font-weight: 700; color: var(--ink); }
.hc-row-sub  { font-size: 11px; color: var(--muted); }
.chip { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px; white-space: nowrap; }
.chip-r { background: var(--coral-lt); color: #991b1b; }
.chip-a { background: var(--amber-lt); color: #92400e; }
.chip-g { background: var(--green-lt); color: #065f46; }
.hc-score {
  margin-top: 14px; padding: 13px 15px;
  background: linear-gradient(135deg, var(--green-lt), #f0fff8);
  border-radius: var(--r-sm); border: 1px solid var(--green-lt);
}
.hc-score-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.hc-score-lbl { font-size: var(--fs-xs); color: var(--muted); }
.hc-score-val { font-size: 22px; font-weight: 800; color: var(--green); }
.hc-bar { height: 4px; background: rgba(5,150,105,.15); border-radius: 2px; overflow: hidden; }
.hc-bar-fill { height: 100%; border-radius: 2px; }

/* ── TICKER ─────────────────────────── */
.ticker { background: var(--ink); padding: 13px 0; overflow: hidden; }
.ticker-track {
  display: flex; gap: 0;
  animation: ticker 24s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ti { display: flex; align-items: center; gap: 8px; white-space: nowrap; padding: 0 28px; flex-shrink: 0; font-size: var(--fs-sm); font-weight: 500; color: rgba(255,255,255,.5); }
.ti-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--violet-mid); flex-shrink: 0; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── SECTION ────────────────────────── */
section { padding: 80px 0; }
.s-tag { margin-bottom: 10px; }
.s-tag .eyebrow { padding: 4px 12px; border-radius: 100px; }
.s-title { margin-bottom: 12px; color: var(--ink); }
.s-desc { font-size: clamp(15px,2vw,17px); color: var(--muted); line-height: 1.75; }
.s-center { text-align: center; }
.s-center .s-desc { max-width: 560px; margin-inline: auto; }

/* ── STEPS / HOW ────────────────────── */
/* WP: template-parts/how-it-works.php */
.how-sec { background: var(--surface); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border-radius: var(--r-lg); overflow: hidden; margin-top: 48px;
}
.step {
  background: var(--surface); padding: 28px 24px;
  transition: background .2s;
  position: relative;
}
.step:hover { background: var(--canvas); }
.step:hover .step-no { background: var(--violet); color: #fff; }
.step-no {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--violet-lt); color: var(--violet);
  font-size: var(--fs-sm); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: background .2s, color .2s;
}
.step h4 { margin-bottom: 8px; color: var(--ink); }
.step p  { font-size: var(--fs-sm); color: var(--muted); line-height: 1.7; }

/* ── CEK MEREK ──────────────────────── */
/* WP: template-parts/brand-checker.php */
.cek-sec {
  background: linear-gradient(135deg, #f5f3ff 0%, #f0fdf4 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cek-box {
  background: var(--surface); border-radius: var(--r-xl);
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  padding: 32px; margin-top: 36px;
}
.cek-row {
  display: flex; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.cek-row:focus-within { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(91,63,228,.1); }
.cek-row input {
  flex: 1; min-width: 0; border: none; outline: none;
  padding: 13px 16px; font-family: inherit;
  font-size: var(--fs-base); color: var(--ink); background: transparent;
}
.cek-row input::placeholder { color: #9ca3af; }
.cek-row button {
  background: var(--violet); color: #fff; border: none;
  padding: 0 20px; font-family: inherit; font-size: var(--fs-sm);
  font-weight: 700; cursor: pointer; display: flex; align-items: center;
  gap: 7px; transition: background .15s; white-space: nowrap; flex-shrink: 0;
}
.cek-row button:hover { background: var(--violet-d); }
.cek-row button:disabled { background: #9ca3af; cursor: not-allowed; }
.cek-spin { width: 15px; height: 15px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; display: none; }
.cek-hint { text-align: center; font-size: var(--fs-xs); color: var(--muted); margin-top: 10px; }
#cek-result { margin-top: 20px; }
.result-card { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.rc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 20px 22px; border-bottom: 1px solid var(--border); }
.rc-kw { font-size: var(--fs-xs); font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 3px; }
.rc-name { font-size: clamp(17px,3vw,22px); font-weight: 800; color: var(--ink); }
.risk-pill { padding: 4px 12px; border-radius: 100px; font-size: var(--fs-xs); font-weight: 700; white-space: nowrap; flex-shrink: 0; }
.rp-aman   { background: var(--green-lt); color: #065f46; }
.rp-perlu  { background: var(--amber-lt); color: #92400e; }
.rp-tinggi { background: var(--coral-lt); color: #991b1b; }
.rc-body { padding: 20px 22px; }
.meter-row { display: flex; justify-content: space-between; font-size: var(--fs-sm); color: var(--muted); margin-bottom: 8px; }
.meter-track { height: 6px; background: var(--canvas); border-radius: 3px; overflow: hidden; margin-bottom: 18px; }
.meter-fill { height: 100%; border-radius: 3px; width: 0; transition: width .9s cubic-bezier(.4,0,.2,1); }
.mirip-label { font-size: var(--fs-xs); font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.mirip-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 11px; background: var(--canvas); border-radius: var(--r-xs); margin-bottom: 5px; }
.mirip-name { font-size: var(--fs-sm); font-weight: 700; color: var(--ink); }
.mirip-meta { font-size: 11px; color: var(--muted); }
.mirip-pct  { font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 4px; background: var(--ink); color: #fff; white-space: nowrap; }
.rc-suggestion { margin: 0 22px 18px; padding: 12px 14px; background: var(--amber-lt); border-left: 3px solid var(--amber); border-radius: 0 var(--r-xs) var(--r-xs) 0; font-size: var(--fs-sm); color: #78350f; line-height: 1.65; }
.rc-disc { padding: 12px 22px; border-top: 1px solid var(--border); font-size: var(--fs-xs); color: var(--muted); background: var(--canvas); }
.rc-actions { display: flex; gap: 8px; justify-content: center; padding: 16px 22px; flex-wrap: wrap; }

/* ── FEATURES ───────────────────────── */
/* WP: template-parts/features.php */
.feat-sec { background: var(--ink); }
.feat-sec .s-tag .eyebrow { background: rgba(91,63,228,.3); color: #a78bfa; }
.feat-sec h2 { color: #fff; }
.feat-sec .s-desc { color: rgba(255,255,255,.5); }
.feat-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,.07);
  border-radius: var(--r-xl); overflow: hidden; margin-top: 48px;
}
.feat-card { background: var(--ink); padding: 30px 26px; transition: background .2s; }
.feat-card:hover { background: #1a1a2e; }
.feat-card:hover .fi { transform: scale(1.08); }
.fi {
  width: 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: transform .2s; flex-shrink: 0;
}
.fi svg { width: 20px; height: 20px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fi-v { background: var(--violet-lt); } .fi-v svg { stroke: var(--violet); }
.fi-g { background: var(--green-lt); }  .fi-g svg { stroke: var(--green); }
.fi-a { background: var(--amber-lt); }  .fi-a svg { stroke: var(--amber); }
.fi-c { background: var(--coral-lt); }  .fi-c svg { stroke: var(--coral); }
.fi-s { background: var(--sky-lt); }    .fi-s svg { stroke: var(--sky); }
.fi-p { background: var(--pink-lt); }   .fi-p svg { stroke: var(--pink); }
.feat-card h4 { color: rgba(255,255,255,.88); margin-bottom: 9px; font-size: var(--fs-base); }
.feat-card p  { font-size: var(--fs-sm); color: rgba(255,255,255,.42); line-height: 1.75; }

/* ── PRICING ────────────────────────── */
/* WP: template-parts/pricing.php */
.price-sec { background: var(--canvas); }
.price-sec .s-tag .eyebrow { background: var(--violet-lt); color: var(--violet); }
.plans-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin: 48px 0 36px;
}
.plan-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 30px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.plan-card.featured { border-color: var(--violet); box-shadow: 0 0 0 1px var(--violet); }
.plan-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--violet), var(--green-mid)); }
.plan-badge { position: absolute; top: 16px; right: 16px; background: var(--violet); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; }
.plan-tier { font-size: var(--fs-xs); font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 5px; }
.plan-tagline { font-size: var(--fs-sm); color: var(--muted); line-height: 1.6; margin-bottom: 22px; }
.plan-amount { display: flex; align-items: baseline; gap: 2px; margin-bottom: 3px; }
.plan-curr { font-size: 16px; font-weight: 700; color: var(--muted); }
.plan-num  { font-size: clamp(32px,4vw,42px); font-weight: 800; color: var(--ink); letter-spacing: -1.5px; line-height: 1; }
.plan-unit { font-size: var(--fs-sm); color: var(--muted); margin-bottom: 6px; }
.plan-tag { display: inline-flex; align-items: center; gap: 5px; background: var(--green-lt); color: #065f46; font-size: var(--fs-xs); font-weight: 600; padding: 3px 10px; border-radius: 100px; margin-bottom: 22px; }
.plan-div { height: 1px; background: var(--border); margin-bottom: 18px; }
.plan-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.pf { display: flex; align-items: flex-start; gap: 9px; font-size: var(--fs-sm); color: var(--muted); line-height: 1.55; }
.pf-ic { width: 17px; height: 17px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.pf-ic svg { width: 9px; height: 9px; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.pf-v .pf-ic { background: var(--violet-lt); } .pf-v .pf-ic svg { stroke: var(--violet); }
.pf-g .pf-ic { background: var(--green-lt); }  .pf-g .pf-ic svg { stroke: var(--green); }
.pf-g { color: var(--green); font-weight: 600; }

/* Breakdown */
.breakdown { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px; }
.breakdown h3 { font-size: var(--fs-base); color: var(--ink); margin-bottom: 18px; }
.bd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.bd-item { background: var(--canvas); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px; }
.bd-lbl { font-size: var(--fs-xs); font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 5px; }
.bd-amount { font-size: clamp(18px,2.5vw,22px); font-weight: 800; color: var(--ink); margin-bottom: 5px; }
.bd-desc { font-size: var(--fs-xs); color: var(--muted); line-height: 1.65; }

/* Refund accordion */
.refund-acc { border: 1.5px solid #fbbf24; border-radius: var(--r-lg); overflow: hidden; }
.refund-btn {
  width: 100%; background: #fffbeb; border: none; cursor: pointer;
  padding: 14px 18px; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  font-family: inherit; font-size: var(--fs-sm); font-weight: 700; color: #78350f;
  text-align: left; transition: background .2s; -webkit-tap-highlight-color: transparent;
}
.refund-btn:hover { background: #fef3c7; }
.refund-btn-l { display: flex; align-items: center; gap: 9px; }
.refund-ic { width: 28px; height: 28px; border-radius: 50%; background: rgba(251,191,36,.25); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.refund-ic svg { width: 13px; height: 13px; stroke: #b45309; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.refund-chev { width: 16px; height: 16px; stroke: #b45309; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; transition: transform .3s; }
.refund-acc.open .refund-chev { transform: rotate(180deg); }
.refund-panel { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); background: #fffdf5; }
.refund-acc.open .refund-panel { max-height: 500px; }
.refund-inner { padding: 0 18px 18px; border-top: 1px solid #fde68a; }
.refund-row { display: flex; gap: 11px; padding: 13px 0; border-bottom: 1px solid #fde68a; }
.refund-row:last-child { border-bottom: none; padding-bottom: 0; }
.rr-ic { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.rr-ic svg { width: 13px; height: 13px; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.rri-r { background: var(--coral-lt); } .rri-r svg { stroke: var(--coral); }
.rri-a { background: var(--amber-lt); } .rri-a svg { stroke: var(--amber); }
.rri-g { background: var(--green-lt); } .rri-g svg { stroke: var(--green); }
.rr-text { font-size: var(--fs-sm); color: #5c3b00; line-height: 1.7; }
.rr-text strong { font-weight: 700; }

/* ── PROTECTION ─────────────────────── */
/* WP: template-parts/brand-protection.php */
.prot-sec { background: var(--surface); }
.prot-sec .s-tag .eyebrow { background: var(--green-lt); color: var(--green); }
.prot-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 48px; }
.prot-card {
  background: var(--canvas); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 26px 22px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.prot-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border); }
.prot-card:hover .pi { transform: scale(1.08); }
.pi {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 15px; transition: transform .2s;
}
.pi svg { width: 21px; height: 21px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pi-v { background: var(--violet-lt); } .pi-v svg { stroke: var(--violet); }
.pi-g { background: var(--green-lt); }  .pi-g svg { stroke: var(--green); }
.pi-a { background: var(--amber-lt); }  .pi-a svg { stroke: var(--amber); }
.pi-s { background: var(--sky-lt); }    .pi-s svg { stroke: var(--sky); }
.prot-card h4 { font-size: var(--fs-base); margin-bottom: 7px; color: var(--ink); }
.prot-card p  { font-size: var(--fs-sm); color: var(--muted); line-height: 1.7; }

/* ── FAQ ────────────────────────────── */
/* WP: template-parts/faq.php */
.faq-sec { background: var(--canvas); border-top: 1px solid var(--border); }
.faq-sec .s-tag .eyebrow { background: var(--sky-lt); color: var(--sky); }
.faq-list { margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%; background: none; border: none; padding: 18px 0;
  text-align: left; cursor: pointer; display: flex;
  align-items: center; justify-content: space-between; gap: 14px;
  font-family: inherit; font-size: var(--fs-base); font-weight: 700;
  color: var(--ink); transition: color .15s; -webkit-tap-highlight-color: transparent;
}
.faq-trigger:hover { color: var(--violet); }
.faq-ico {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--border); display: flex; align-items: center;
  justify-content: center; transition: background .2s, border-color .2s, transform .3s;
}
.faq-ico svg { width: 12px; height: 12px; stroke: var(--muted); fill: none; stroke-width: 2.5; stroke-linecap: round; }
.faq-item.open .faq-ico { background: var(--violet); border-color: var(--violet); transform: rotate(45deg); }
.faq-item.open .faq-ico svg { stroke: #fff; }
.faq-ans { font-size: var(--fs-base); color: var(--muted); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s; }
.faq-item.open .faq-ans { max-height: 300px; padding-bottom: 18px; }

/* ── BLOG ───────────────────────────── */
/* WP: index.php — WP_Query loop */
.blog-sec { background: var(--surface); }
.blog-sec .s-tag .eyebrow { background: var(--coral-lt); color: var(--coral); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
/* WP: template-parts/post-card.php */
.post-card {
  background: var(--canvas); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.post-thumb { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 40px; flex-shrink: 0; }
.pc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pc-tag { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 3px 9px; border-radius: 100px; margin-bottom: 10px; }
.pct-v { background: var(--violet-lt); color: var(--violet); }
.pct-g { background: var(--green-lt); color: #065f46; }
.pct-c { background: var(--coral-lt); color: #991b1b; }
.pc-title { font-size: var(--fs-base); font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.4; flex: 1; }
.pc-title a:hover { color: var(--violet); }
.pc-excerpt { font-size: var(--fs-sm); color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.pc-foot { display: flex; align-items: center; justify-content: space-between; font-size: var(--fs-xs); color: var(--muted); margin-top: auto; }
.pc-read { font-weight: 700; color: var(--violet); display: flex; align-items: center; gap: 4px; transition: gap .15s; }
.pc-read:hover { gap: 7px; }
.pc-read svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.blog-more { text-align: center; margin-top: 36px; }

/* ── CTA ────────────────────────────── */
/* WP: template-parts/cta.php */
.cta-sec {
  background: linear-gradient(135deg, #3b1fa3 0%, var(--violet) 60%, #6d28d9 100%);
  padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-sec::before { content: ''; position: absolute; width: min(600px,80vw); height: min(600px,80vw); top: -40%; right: -15%; background: radial-gradient(circle, rgba(255,255,255,.07), transparent 65%); }
.cta-sec::after  { content: ''; position: absolute; width: min(400px,60vw); height: min(400px,60vw); bottom: -30%; left: -10%; background: radial-gradient(circle, rgba(52,211,153,.2), transparent 65%); }
.cta-inner { position: relative; }
.cta-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); padding: 4px 13px; border-radius: 100px; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.cta-sec h2 { color: #fff; margin-bottom: 14px; }
.cta-sec p { color: rgba(255,255,255,.65); font-size: clamp(15px,2vw,18px); margin-bottom: 32px; max-width: 480px; margin-inline: auto; }
.cta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────── */
/* WP: footer.php */
.site-footer { background: var(--ink); padding: 36px 0; }
.foot-wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.foot-logo { font-size: 15px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 8px; }
.foot-logo-dot { color: #a78bfa; }
/* WP: wp_nav_menu() */
.foot-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.foot-nav a { font-size: var(--fs-sm); color: rgba(255,255,255,.38); transition: color .15s; }
.foot-nav a:hover { color: rgba(255,255,255,.75); }
.foot-cr { font-size: var(--fs-xs); color: rgba(255,255,255,.22); }

/* ── LANG TOGGLE ────────────────────── */
.lang-toggle {
  display: flex; align-items: center; gap: 2px;
  background: var(--canvas); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 3px; flex-shrink: 0;
}
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  font-family: inherit; font-size: 12px; font-weight: 600;
  padding: 5px 10px; border-radius: 6px; border: none;
  cursor: pointer; color: var(--muted);
  background: transparent; transition: background .15s, color .15s;
  -webkit-tap-highlight-color: transparent; line-height: 1;
}
.lang-btn:hover { color: var(--ink); background: var(--border-soft); }
.lang-btn.active { background: var(--surface); color: var(--violet); box-shadow: var(--shadow-xs); }
.nav-drawer-lang {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin: 4px 0;
}
.nav-drawer-lang .lang-btn { font-size: 14px; padding: 10px 16px; border-radius: var(--r-sm); justify-content: flex-start; }
.nav-drawer-lang .lang-btn.active { background: var(--violet-lt); color: var(--violet); }

/* ── REVEAL ─────────────────────────── */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.rv.on { opacity: 1; transform: none; }
.rv-delay-1 { transition-delay: .05s; }
.rv-delay-2 { transition-delay: .1s; }
.rv-delay-3 { transition-delay: .15s; }

/* ── UTILS ──────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes hc-fade-in  { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes hc-fade-out { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(-6px); } }
.hc-animating-out { animation: hc-fade-out .3s ease forwards; }
.hc-animating-in  { animation: hc-fade-in  .35s ease forwards; }
/* Typing cursor blink */
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hc-cursor { display: inline-block; width: 2px; height: 14px; background: var(--violet); margin-left: 2px; vertical-align: middle; border-radius: 1px; animation: blink .7s ease infinite; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ==============================================
   RESPONSIVE BREAKPOINTS
   ── 1200px  wide desktop
   ── 1024px  laptop / small desktop
   ──  768px  tablet portrait
   ──  480px  large phone
   ──  360px  small phone
   ============================================== */

/* 1200px — tighten hero card */
@media (max-width: 1200px) {
  .hero-grid { grid-template-columns: 1fr 380px; gap: 48px; }
}

/* 1024px — tablet landscape / small laptop */
@media (max-width: 1024px) {
  .wrap, .wrap-sm, .wrap-md { padding: 0 20px; }
  .nav-wrap { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-right .btn-lg { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 100px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-card { display: none; }
  .hero h1 { text-align: center; }
  .hero-pill { margin-left: auto; margin-right: auto; display: inline-flex; }
  .hero-desc { text-align: center; max-width: 600px; margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-proof { justify-content: center; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .prot-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  section { padding: 72px 0; }
}

/* 768px — tablet portrait */
@media (max-width: 768px) {
  h1 { font-size: clamp(28px, 7vw, 40px); }
  h2 { font-size: clamp(24px, 5.5vw, 34px); }
  section { padding: 64px 0; }
  .feat-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .bd-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 56px; }
  .foot-wrap { flex-direction: column; align-items: flex-start; gap: 14px; }
  .foot-nav { gap: 12px; }
}

/* 480px — large phone */
@media (max-width: 480px) {
  .nav-wrap { padding: 0 16px; }
  .wrap, .wrap-sm, .wrap-md { padding: 0 16px; }
  section { padding: 56px 0; }
  .hero { padding: 84px 0 48px; }
  .cek-row { flex-direction: column; border-radius: var(--r-sm); }
  .cek-row input { border-radius: var(--r-sm) var(--r-sm) 0 0; border: none; border-bottom: 1px solid var(--border); padding: 14px 16px; }
  .cek-row button { border-radius: 0 0 var(--r-sm) var(--r-sm); padding: 14px 20px; justify-content: center; }
  .cek-row:focus-within { border-color: var(--violet); }
  .cek-box { padding: 20px 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .prot-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
  .rc-head { flex-direction: column; gap: 8px; }
  .rc-actions { flex-direction: column; }
  .rc-actions .btn { width: 100%; }
  .breakdown { padding: 20px 16px; }
  .refund-btn { font-size: var(--fs-xs); }
}

/* 360px — small phone */
@media (max-width: 360px) {
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  .feat-card { padding: 22px 18px; }
  .prot-card { padding: 20px 16px; }
  .plan-card { padding: 22px 18px; }
  .step { padding: 22px 18px; }
}
