/* ============================================================
   PESANWEBID — COMPLETE REDESIGN 2026
   Design System: Clean · Minimal · Professional · Trustworthy
   Brand: Navy #001C47 | Royal Blue #0052CC | Accent Cyan #00A3E0
   Font: Inter (UI) + Sora (Headings)
   ============================================================ */

/* ── IMPORT ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Sora:wght@400;600;700;800&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:        #001C47;
  --navy-soft:   #0A2A5E;
  --blue:        #0052CC;
  --blue-mid:    #0064F0;
  --blue-light:  #EEF4FF;
  --cyan:        #00A3E0;
  --cyan-light:  #E0F6FF;
  --slate:       #F6F8FC;
  --border:      #E4E9F2;
  --text-dark:   #111827;
  --text-mid:    #374151;
  --text-muted:  #6B7280;
  --white:       #FFFFFF;
  --green:       #16A34A;
  --green-light: #DCFCE7;
  --orange:      #EA580C;
  --orange-light:#FFF0E8;
  --purple:      #7C3AED;
  --purple-light:#F3EEFF;
  --yellow:      #D97706;
  --yellow-light:#FFFBEB;
  --red:         #DC2626;
  --red-light:   #FFF1F1;
  --wa:          #25D366;
  --wa-dark:     #128C4B;

  --font-ui:     'Inter', -apple-system, sans-serif;
  --font-head:   'Sora', 'Inter', sans-serif;

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 999px;

  --shadow-xs: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-md: 0 10px 15px -3px rgba(0,28,71,.08), 0 4px 6px -4px rgba(0,28,71,.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,28,71,.10), 0 8px 10px -6px rgba(0,28,71,.06);
  --shadow-xl: 0 25px 50px -12px rgba(0,28,71,.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 760px; }
.section { padding: 96px 0; }
.section--alt { background: var(--slate); }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; color: var(--navy); font-weight: 700; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .section-desc { margin-inline: auto; }
.text-grad {
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-full);
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  transition: all .25s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn i { font-size: 1em; }
.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,82,204,.3);
}
.btn--primary:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,82,204,.35);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}
.btn--wa {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,.25);
}
.btn--wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,.3);
}
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }
.btn--outline-blue {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn--outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

/* ── BADGE / TAG ────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 0.8125rem;
  font-weight: 600;
}
.badge--blue { background: var(--blue-light); color: var(--blue); }
.badge--green { background: var(--green-light); color: var(--green); }
.badge--white { background: rgba(255,255,255,.15); color: var(--white); border: 1px solid rgba(255,255,255,.25); }

/* ── ANNOUNCEMENT BAR ───────────────────────────────────── */
.ann-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.ann-bar strong { color: var(--white); }
.ann-bar a {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── HEADER ─────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.header__logo img { height: 44px; width: auto; object-fit: contain; }
.header__nav { display: flex; gap: 8px; align-items: center; }
.nav-menu__cta { display: none; }
.nav-item {
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all .2s;
}
.nav-item:hover { color: var(--blue); background: var(--blue-light); }
.header__actions { display: flex; gap: 12px; align-items: center; }
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--blue-light);
  border: none;
  border-radius: 50%;
  padding: 0;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.hamburger:hover { background: var(--cyan-light); }
.hamburger:active { transform: scale(.94); }
.hamburger__line {
  width: 21px;
  height: 2px;
  background: var(--navy);
  border-radius: var(--r-full);
  transform-origin: center;
  transition: transform .3s var(--ease), opacity .2s ease, width .3s var(--ease);
}
.hamburger.is-open .hamburger__line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open .hamburger__line:nth-child(2) { width: 0; opacity: 0; }
.hamburger.is-open .hamburger__line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 96px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 90% -10%, rgba(0,163,224,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at -10% 80%, rgba(0,82,204,.06) 0%, transparent 55%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero__eyebrow { margin-bottom: 20px; }
.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__trust {
  display: flex;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}
.trust-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.trust-item__icon--blue { background: var(--blue-light); color: var(--blue); }
.trust-item__icon--green { background: var(--green-light); color: var(--green); }
.trust-item__icon--orange { background: var(--orange-light); color: var(--orange); }
.trust-item strong { display: block; font-weight: 600; color: var(--text-dark); font-size: 0.875rem; }
.trust-item span { color: var(--text-muted); font-size: 0.8rem; }

/* Hero Mockup */
.hero__visual { position: relative; }
.browser-mock {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: #F1F5F9;
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 5px; }
.b-dot { width: 9px; height: 9px; border-radius: 50%; }
.b-dot--r { background: #FF5F56; }
.b-dot--y { background: #FEBC2E; }
.b-dot--g { background: #27C93F; }
.browser-url {
  flex: 1;
  background: var(--white);
  border-radius: var(--r-full);
  padding: 5px 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'Courier New', monospace;
  display: flex;
  align-items: center;
  gap: 6px;
}
.browser-url i { color: var(--green); }
.browser-body { padding: 20px; background: #FAFBFD; }
.mock-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--r-md);
  padding: 24px;
  color: var(--white);
  margin-bottom: 14px;
}
.mock-ppdb {
  display: inline-block;
  background: var(--yellow);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  letter-spacing: .5px;
}
.mock-hero h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 6px; }
.mock-hero p { font-size: 0.82rem; opacity: .85; margin-bottom: 14px; }
.mock-cta-btn {
  display: inline-block;
  background: var(--white);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
}
.mock-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mock-feat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 8px;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
.mock-feat i { font-size: 1rem; }
/* Floating Badges on Mockup */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
}
.float-badge--left { left: -28px; bottom: 60px; }
.float-badge--right { right: -24px; top: 60px; }
.float-badge i { font-size: 1.2rem; }

/* ── WHY SECTION (CARDS) ────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all .3s var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ── COMPARISON ─────────────────────────────────────────── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.compare-card {
  border-radius: var(--r-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
}
.compare-card--bad { background: var(--white); }
.compare-card--good {
  background: linear-gradient(155deg, #F0F9FF 0%, #EEF4FF 100%);
  border-color: rgba(0,82,204,.15);
  box-shadow: var(--shadow-md);
}
.compare-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.compare-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.compare-card__icon--bad { background: var(--red-light); color: var(--red); }
.compare-card__icon--good { background: var(--green-light); color: var(--green); }
.compare-card__head h3 { font-size: 1.1rem; margin-bottom: 2px; }
.compare-card__head span { font-size: 0.82rem; color: var(--text-muted); }
.compare-list { display: flex; flex-direction: column; gap: 14px; }
.compare-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9375rem;
}
.compare-list li i { margin-top: 3px; flex-shrink: 0; font-size: 0.9rem; }
.compare-list--bad i { color: var(--red); }
.compare-list--good i { color: var(--green); }

/* ── HOW IT WORKS ───────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(100%/3/2);
  right: calc(100%/3/2);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step__num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 14px rgba(0,82,204,.3);
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ── DEMO TABS ──────────────────────────────────────────── */
.tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  transition: all .25s;
}
.tab-btn i { font-size: 1em; }
.tab-btn:hover { border-color: var(--blue); color: var(--blue); }
.tab-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(0,82,204,.25);
}
.demo-pane { display: none; }
.demo-pane.active { display: block; animation: fadeUp .35s var(--ease); }
@keyframes fadeUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.demo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.demo-card__header {
  padding: 36px 40px;
  color: var(--white);
}
.demo-card__header--blue { background: linear-gradient(135deg, var(--navy) 0%, var(--blue-mid) 100%); }
.demo-card__header--green { background: linear-gradient(135deg, #064E3B 0%, #059669 100%); }
.demo-card__header--purple { background: linear-gradient(135deg, #4C1D95 0%, #7C3AED 100%); }
.demo-card__header span {
  display: inline-block;
  background: rgba(255,255,255,.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.demo-card__header h3 { color: var(--white); font-size: 1.5rem; }
.demo-card__body {
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
}
.demo-feat {
  background: var(--slate);
  border-radius: var(--r-md);
  padding: 24px;
}
.demo-feat h4 {
  font-size: 0.9rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.demo-feat h4 i { font-size: 1rem; }
.demo-feat p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.toggle-label { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.toggle-label small { display: block; font-size: 0.75rem; color: var(--blue); font-weight: 600; }
.toggle-label.on { color: var(--text-dark); }
/* pill toggle */
.pill-toggle {
  width: 52px; height: 28px;
  background: var(--blue);
  border-radius: var(--r-full);
  position: relative;
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.pill-toggle::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  background: var(--white);
  border-radius: 50%;
  top: 4px; left: 4px;
  transition: transform .25s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.pill-toggle.toggled { background: var(--wa); }
.pill-toggle.toggled::after { transform: translateX(24px); }
/* hidden native checkbox */
#pricingToggle { display: none; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  position: relative;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card--star {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,82,204,.08), var(--shadow-lg);
  transform: scale(1.02);
}
.price-card--star:hover { transform: scale(1.02) translateY(-4px); }
.price-card--dark {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.price-star-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--r-full);
  white-space: nowrap;
  letter-spacing: .4px;
}
.price-card__tier {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--navy);
  margin-bottom: 4px;
}
.price-card--dark .price-card__tier { color: var(--white); }
.price-card__for {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  min-height: 36px;
  line-height: 1.5;
}
.price-card--dark .price-card__for { color: rgba(255,255,255,.6); }
.price-card__amount {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.price-card--dark .price-card__amount { border-color: rgba(255,255,255,.12); }
.price-prefix { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.price-card--dark .price-prefix { color: rgba(255,255,255,.5); }
.price-main { display: flex; align-items: baseline; gap: 2px; margin: 4px 0; }
.price-rp { font-size: 1rem; font-weight: 700; color: var(--navy); }
.price-card--dark .price-rp { color: var(--white); }
.price-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.price-card--star .price-num { color: var(--blue); }
.price-card--dark .price-num { color: var(--white); }
.price-period { font-size: 0.8rem; color: var(--text-muted); }
.price-card--dark .price-period { color: rgba(255,255,255,.5); }
.price-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.875rem;
}
.price-card__features li { display: flex; gap: 9px; align-items: flex-start; }
.price-card__features li i {
  margin-top: 3px;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.feat-check { color: var(--blue); }
.feat-star { color: var(--yellow); }
.price-card--dark .price-card__features { color: rgba(255,255,255,.85); }

/* ── WIZARD ─────────────────────────────────────────────── */
.wizard-wrap {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--r-xl);
  padding: 60px;
  color: var(--white);
}
.wizard-wrap h2 { color: var(--white); font-size: clamp(1.5rem,3vw,2rem); margin: 12px 0; }
.wizard-wrap p { color: rgba(255,255,255,.8); margin-bottom: 40px; font-size: 1rem; }
.quiz-q {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: rgba(255,255,255,.9);
}
.quiz-opts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.quiz-opt input { display: none; }
.quiz-opt span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.quiz-opt span:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); }
.quiz-opt input:checked + span {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  font-weight: 600;
}
.wizard-result {
  display: none;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px;
  margin-top: 28px;
}
.wizard-result.show { display: block; animation: fadeUp .35s var(--ease); }
.result-badge {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 10px;
  letter-spacing: .5px;
}
.wizard-result h3 { font-size: 1.4rem; margin-bottom: 6px; }
.wizard-result p { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 6px; }
.result-price { font-size: 1.7rem; font-family: var(--font-head); font-weight: 800; color: var(--blue); margin: 14px 0 24px; }
.btn-reset { background: none; border: none; color: var(--text-muted); font-size: 0.875rem; text-decoration: underline; margin-top: 12px; display: block; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.9875rem;
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
}
.faq-q i { transition: transform .3s var(--ease); color: var(--blue); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; }

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-section { padding: 80px 0; }
.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: var(--r-xl);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(0,163,224,.15) 0%, transparent 60%);
}
.cta-box h2 { color: var(--white); font-size: clamp(1.5rem,3vw,2.2rem); margin-bottom: 14px; position: relative; }
.cta-box p { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 520px; margin: 0 auto 36px; position: relative; }
.cta-box .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__logo { height: 44px; margin-bottom: 16px; }
.footer__desc { font-size: 0.9rem; line-height: 1.7; max-width: 320px; margin-bottom: 16px; }
.footer__tagline {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  color: var(--cyan);
}
.footer h4 { color: var(--white); font-size: 0.9375rem; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; font-size: 0.9rem; }
.footer-contact a { display: flex; align-items: center; gap: 10px; transition: color .2s; }
.footer-contact a:hover { color: var(--white); }
.footer-contact i { font-size: 1rem; width: 18px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
}

/* ── FLOATING WA ─────────────────────────────────────────── */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--wa);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  z-index: 9999;
  transition: all .3s var(--ease);
}
.floating-wa:hover { transform: scale(1.1); background: var(--wa-dark); }
.wa-tip {
  position: absolute;
  right: 68px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: var(--r-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.floating-wa:hover .wa-tip { opacity: 1; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .header__inner { height: 68px; gap: 16px; }

  .header__nav { display: none; }

  .header__actions { gap: 8px; }
  .header__actions .header__cta { display: none; }

  .hamburger { display: inline-flex; }

  .header__nav.open {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--border);
    border-top: 0;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    box-shadow: var(--shadow-md);
  }

  .header__nav.open .nav-item { padding: 12px 14px; }
  .header__nav.open .nav-menu__cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 10px;
    padding: 13px 16px;
  }
  .hero__grid { gap: 40px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero { padding: 64px 0 72px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__text { max-width: 680px; }
  .hero__visual { width: min(100%, 560px); margin-inline: auto; }
  .float-badge--left { left: -18px; }
  .float-badge--right { right: -18px; }
}

@media (max-width: 768px) {
  .hero__visual { display: none; }
  .compare-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step { text-align: left; display: flex; gap: 20px; }
  .step__num { margin: 0; flex-shrink: 0; width: 48px; height: 48px; font-size: 1rem; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--star { transform: none; }
  .demo-card__body { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .wizard-wrap { padding: 36px 24px; }
  .cta-box { padding: 48px 24px; }
  .section { padding: 64px 0; }
}

@media (max-width: 560px) {
  .container { padding-inline: 16px; }
  .ann-bar { align-items: flex-start; flex-wrap: wrap; gap: 6px 10px; padding: 10px 16px; }
  .ann-bar a { width: 100%; }
  .header__inner { height: 62px; }
  .header__logo img { height: 38px; }
  .hamburger { width: 40px; height: 40px; }
  .header__nav.open { left: 8px; right: 8px; padding: 8px; }
  .header__nav.open .nav-item { padding: 11px 12px; }
  .hero { padding: 48px 0 56px; }
  .hero__title { font-size: 2rem; }
  .hero__sub { margin-bottom: 28px; font-size: 1rem; }
  .hero__cta,
  .cta-box .cta-btns { flex-direction: column; }
  .hero__cta .btn,
  .cta-box .btn { width: 100%; justify-content: center; }
  .hero__trust { gap: 16px; margin-top: 8px; padding-top: 24px; }
  .trust-item { width: 100%; }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 36px; }
  .why-card,
  .compare-card { padding: 24px 20px; }
  .demo-card__header,
  .demo-card__body { padding: 24px 20px; }
  .tabs { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .tab-btn { flex: 0 0 auto; }
  .wizard-wrap,
  .cta-box { border-radius: var(--r-lg); padding: 32px 20px; }
  .wizard-result { padding: 24px 20px; }
  .faq-q { padding: 18px 20px; }
  .faq-a p { padding: 0 20px 18px; }
  .floating-wa { right: 16px; bottom: 16px; width: 52px; height: 52px; font-size: 1.55rem; }
  .wa-tip { display: none; }
}

/* ── UTILITIES ──────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }

/* Icon colors for why-cards */
.ic-blue { background: var(--blue-light); color: var(--blue); }
.ic-green { background: var(--green-light); color: var(--green); }
.ic-orange { background: var(--orange-light); color: var(--orange); }
.ic-purple { background: var(--purple-light); color: var(--purple); }
.ic-cyan { background: var(--cyan-light); color: var(--cyan); }
.ic-yellow { background: var(--yellow-light); color: var(--yellow); }

/* ── COMPARISON TABLE ───────────────────────────────────── */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 860px;
}

.compare-table thead tr {
  background: var(--navy);
  color: var(--white);
}

.compare-table thead th {
  padding: 18px 14px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
  border-right: 1px solid rgba(255,255,255,.08);
}

.compare-table thead th.col-fitur {
  text-align: left;
  min-width: 200px;
}

.compare-table thead th.col-star {
  background: var(--blue);
}

.th-price {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  opacity: .8;
  margin-top: 2px;
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}

.compare-table tbody tr:hover { background: #F8FAFF; }

.compare-table tbody td {
  padding: 13px 14px;
  text-align: center;
  color: var(--text-mid);
  border-right: 1px solid var(--border);
  line-height: 1.4;
}

.compare-table tbody td:first-child {
  text-align: left;
  color: var(--text-dark);
  font-weight: 500;
  background: var(--white);
}

.compare-table td.col-star {
  background: #EEF4FF;
  font-weight: 600;
  color: var(--blue);
}

/* Group header rows */
.row-group td {
  background: var(--slate);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.8rem;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 10px 14px;
  text-align: left !important;
}

.row-invest td {
  background: #EEF4FF;
  color: var(--navy);
  font-size: 0.95rem;
  border-top: 2px solid var(--blue);
}

.row-renew td {
  background: #F8FAFF;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.c-yes { color: var(--green); font-size: 1rem; }
.c-no  { color: #D1D5DB; font-size: 1rem; }

/* ── CLIENT LOGO GRID ───────────────────────────────────── */
.client-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.client-logo-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: calc(20% - 14px);
  min-width: 140px;
  max-width: 180px;
  min-height: 110px;
  box-shadow: var(--shadow-xs);
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}

.client-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,82,204,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}

.client-logo-wrap:hover {
  box-shadow: 0 8px 24px rgba(0,82,204,.12);
  transform: translateY(-3px);
  border-color: rgba(0,82,204,.2);
}

.client-logo-wrap:hover::before { opacity: 1; }

.client-logo-wrap img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(70%) opacity(75%);
  transition: all .3s var(--ease);
  position: relative;
  z-index: 1;
}

.client-logo-wrap:hover img {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.05);
}

/* ── PAYMENT LOGOS ──────────────────────────────────────── */
.payment-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.payment-logos img {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  padding: 8px 10px;
  height: 36px;
  width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .7;
  transition: opacity .2s;
}

.payment-logos img:hover {
  opacity: 1;
}

.payment-logo--shopeepay {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
}

.payment-logo--shopeepay img {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transform: scale(1.7);
}

/* ── FOOTER GRID 4 COL ──────────────────────────────────── */
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer__col-brand { max-width: 340px; }

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col-brand { max-width: 100%; }
  .client-logo-wrap { width: calc(25% - 13px); }
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .client-logo-wrap { width: calc(33.333% - 12px); }
  .payment-logos { grid-template-columns: repeat(3, 1fr); }
  .compare-table { min-width: 700px; }
}

@media (max-width: 480px) {
  .client-logo-wrap { width: calc(50% - 9px); }
}

/* Client name label */
.client-name {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
  letter-spacing: .1px;
}

/* Client count bar */
.client-count {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Row-group icon colors */
.rg-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-right: 8px;
  vertical-align: middle;
}
.rg-blue  { background: var(--blue-light);   color: var(--blue); }
.rg-purple{ background: var(--purple-light);  color: var(--purple); }
.rg-green { background: var(--green-light);   color: var(--green); }
.rg-orange{ background: var(--orange-light);  color: var(--orange); }
.rg-yellow{ background: var(--yellow-light);  color: var(--yellow); }
