/* ═══════════════════════════════════
   WhatKaBot — Shared Stylesheet
   ═══════════════════════════════════ */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:      #1a1612;
  --dark:     #1b1925;
  --orange:   #e8602c;
  --cream:    #f5ede3;
  --warm:     #f9f5f0;
  --white:    #ffffff;
  --muted:    #8a7e74;
  --faint:    #e6ddd4;
  --green:    #25d366;
  --purple:   #9370f0;
  --font:     'Plus Jakarta Sans', sans-serif;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 16px 60px rgba(0,0,0,0.12);
  --shadow-xl:  0 32px 100px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body { font-family: var(--font); background: var(--warm); color: var(--ink); -webkit-font-smoothing: antialiased; line-height: 1.5; }
a { text-decoration: none; color: inherit; }
a:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

/* ── Layout ── */
.wrap      { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.wrap-wide { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: 800px; margin: 0 auto; padding: 0 40px; }

.section-pad { padding: 112px 0; }
.section-pad-sm { padding: 80px 0; }
.section-pad-lg { padding: 140px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Typography ── */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow-muted { color: rgba(255,255,255,0.35); }

.section-title {
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.06;
  text-wrap: pretty;
}
.title-white { color: white; }
.section-sub {
  font-size: 17px; font-weight: 500; color: var(--muted);
  line-height: 1.65; max-width: 540px; margin-top: 16px;
  text-wrap: pretty;
}
.sub-white { color: rgba(255,255,255,0.45); max-width: 540px; }

.page-hero-title {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 800; letter-spacing: -0.045em; line-height: 1.02;
  text-wrap: pretty;
}
.page-hero-title em { font-style: normal; color: var(--orange); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 12px;
  font-family: var(--font); font-size: 15px; font-weight: 700; letter-spacing: -0.02em;
  cursor: pointer; border: none; transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: #d4501e; box-shadow: 0 8px 24px rgba(232,96,44,0.35); }

.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: #2a2635; box-shadow: 0 8px 24px rgba(27,25,37,0.3); }

.btn-ghost-light {
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.14);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--faint);
}
.btn-outline:hover { background: var(--cream); border-color: #c8c0b8; }

.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: 10px; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 13px; }

/* ── Nav ── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(249,245,240,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--faint);
  transition: box-shadow 0.2s;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }

.nav-inner {
  display: flex; align-items: center;
  height: 64px; gap: 0;
}

.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 19px; font-weight: 800; letter-spacing: -0.03em; color: var(--dark);
  margin-right: auto; flex-shrink: 0;
}
.nav-logo-icon {
  width: 33px; height: 33px; background: var(--orange); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-txt span { color: var(--orange); }

.nav-links {
  display: flex; align-items: center; gap: 6px;
  margin-right: 24px;
}
.nav-link {
  font-size: 13px; font-weight: 600; color: var(--muted);
  padding: 6px 12px; border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--ink); background: rgba(0,0,0,0.04); }
.nav-link.active { color: var(--ink); }

.nav-cta {
  background: var(--dark); color: white;
  padding: 9px 20px; border-radius: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: -0.01em;
  transition: background 0.15s, transform 0.1s;
  flex-shrink: 0;
}
.nav-cta:hover { background: #2a2635; transform: translateY(-1px); }

.nav-mobile-btn {
  display: none; background: none; border: none;
  width: 36px; height: 36px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-mobile-btn span {
  display: block; width: 20px; height: 2px; background: var(--ink);
  border-radius: 1px; transition: transform 0.2s, opacity 0.2s;
}

/* Mobile drawer */
.nav-drawer {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--warm); z-index: 199;
  padding: 24px 20px;
  flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer .nav-link {
  font-size: 16px; padding: 12px 16px; border-radius: 12px;
}
.nav-drawer .nav-cta {
  margin-top: 16px; text-align: center; padding: 13px 24px; font-size: 15px;
}

/* ── Footer ── */
.site-footer {
  background: #131018;
  padding: 72px 0 44px;
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 18px; font-weight: 800; letter-spacing: -0.03em; color: white;
  margin-bottom: 12px;
}
.footer-logo-icon {
  width: 30px; height: 30px; background: var(--orange); border-radius: 7px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.footer-logo span { color: var(--orange); }
.footer-tagline {
  font-size: 13px; color: rgba(255,255,255,0.35); font-weight: 500;
  line-height: 1.6; max-width: 250px;
}
.footer-col-title {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.48);
  transition: color 0.15s;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; flex-wrap: wrap; gap: 14px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.22); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ── Hero variants ── */
.hero-dark {
  background: var(--dark);
  position: relative; overflow: hidden;
}
.hero-dark::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px; pointer-events: none;
}
.hero-cream { background: var(--cream); }
.hero-white { background: var(--white); }
.hero-inner { position: relative; z-index: 1; }
.hero-center { text-align: center; display: flex; flex-direction: column; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 6px 16px 6px 10px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}
.hero-badge-light {
  background: rgba(232,96,44,0.08); border: 1px solid rgba(232,96,44,0.2);
  color: var(--orange); border-radius: 20px; padding: 6px 16px 6px 10px;
  font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 32px;
}
.badge-dot-green {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.4} }

/* ── Card base ── */
.card {
  background: white; border-radius: 18px;
  border: 1px solid var(--faint);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  border-color: #d0c8bf;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  transition: background 0.2s, border-color 0.2s;
}
.card-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); }

/* ── Channel cards ── */
.ch-card { padding: 28px 24px; }
.ch-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex-shrink: 0;
}
.ch-name { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.ch-desc { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 500; }
.ch-tag {
  display: inline-block; margin-top: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 5px;
}

/* ── Feature rows ── */
.feat-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; border-radius: 14px;
  border: 1px solid var(--faint); background: var(--warm);
  transition: border-color 0.2s;
}
.feat-row:hover { border-color: #cec8c0; }
.feat-icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.feat-title { font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 3px; letter-spacing: -0.01em; }
.feat-desc { font-size: 13px; color: var(--muted); line-height: 1.5; font-weight: 500; }

/* ── Pricing cards ── */
.pricing-card {
  background: white; border-radius: 22px;
  padding: 36px 30px;
  border: 1px solid var(--faint);
  position: relative; overflow: hidden;
}
.pricing-card.featured {
  background: var(--dark); border-color: var(--dark);
  box-shadow: 0 32px 80px rgba(27,25,37,0.22);
}
.featured-flag {
  position: absolute; top: 0; right: 28px;
  background: var(--orange); color: white;
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 0 0 10px 10px;
}
.pricing-plan { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.pricing-card:not(.featured) .pricing-plan { color: var(--muted); }
.pricing-card.featured .pricing-plan { color: rgba(255,255,255,0.45); }
.pricing-price { font-size: 54px; font-weight: 800; letter-spacing: -0.05em; line-height: 1; }
.pricing-card:not(.featured) .pricing-price { color: var(--ink); }
.pricing-card.featured .pricing-price { color: white; }
.pricing-price-sub { font-size: 15px; font-weight: 600; color: var(--muted); padding-bottom: 6px; }
.pricing-card.featured .pricing-price-sub { color: rgba(255,255,255,0.4); }
.pricing-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 10px 0 24px; font-weight: 500; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.45); }
.pricing-divider { height: 1px; background: var(--faint); margin-bottom: 22px; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
.pricing-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; }
.pf { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--ink); }
.pricing-card.featured .pf { color: rgba(255,255,255,0.8); }
.pf-check { width: 20px; height: 20px; border-radius: 6px; background: #d6f5ea; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pricing-card.featured .pf-check { background: rgba(45,181,132,0.2); }
.pf-none { width: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; color: #c8bfb8; }
.btn-pricing-dark { display: block; text-align: center; padding: 12px 24px; border-radius: 12px; font-size: 14px; font-weight: 700; background: var(--orange); color: white; transition: background 0.15s, transform 0.1s; }
.btn-pricing-dark:hover { background: #d4501e; transform: translateY(-1px); }
.btn-pricing-outline { display: block; text-align: center; padding: 12px 24px; border-radius: 12px; font-size: 14px; font-weight: 700; border: 1.5px solid var(--faint); color: var(--ink); transition: background 0.15s, transform 0.1s; }
.btn-pricing-outline:hover { background: var(--cream); transform: translateY(-1px); }

/* ── Compare table ── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table thead th {
  font-size: 14px; font-weight: 800; letter-spacing: -0.01em;
  padding: 16px 20px; text-align: left;
  border-bottom: 2px solid var(--faint);
}
.compare-table thead th:first-child { color: var(--muted); font-weight: 600; width: 40%; }
.compare-table thead th.ours { color: var(--orange); }
.compare-table thead th:not(:first-child) { text-align: center; }
.compare-table tbody tr td {
  padding: 14px 20px; border-bottom: 1px solid var(--faint);
  font-size: 14px; font-weight: 600;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--warm); }
.compare-table tbody tr td:not(:first-child) { text-align: center; }
.compare-table tbody tr td:first-child { color: var(--muted); font-weight: 500; }
.c-yes { color: #2db584; font-size: 17px; }
.c-no  { color: #ddd5cc; font-size: 17px; }
.c-part { font-size: 11px; font-weight: 700; color: #a07830; background: #fff5e0; padding: 2px 8px; border-radius: 5px; }
.c-price { font-weight: 800; color: var(--ink); }

/* ── FAQ Accordion ── */
.faq-item { border-bottom: 1px solid var(--faint); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; cursor: pointer;
  font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em;
}
.faq-q svg { flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  font-size: 15px; font-weight: 500; color: var(--muted);
  line-height: 1.65; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }

/* ── CTA band ── */
.cta-band { background: var(--dark); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title { font-size: clamp(34px, 4vw, 54px); font-weight: 800; color: white; letter-spacing: -0.04em; margin-bottom: 14px; }
.cta-title em { font-style: normal; color: var(--orange); }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.42); font-weight: 500; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 18px; font-size: 12px; color: rgba(255,255,255,0.22); }

/* ── Check list ── */
.check-list { display: flex; flex-direction: column; gap: 13px; }
.check-item { display: flex; align-items: flex-start; gap: 11px; }
.check-circle { width: 22px; height: 22px; border-radius: 50%; background: #d6f5ea; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.check-dark { background: rgba(45,181,132,0.2); }
.check-label { font-size: 14px; font-weight: 600; color: var(--ink); }
.check-label-white { color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 600; }
.check-sub { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 1px; }
.check-sub-white { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 500; margin-top: 1px; }

/* ── Channel pills (hero) ── */
.ch-pills { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.ch-pill-lbl { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.28); letter-spacing: 0.08em; text-transform: uppercase; margin-right: 4px; }
.ch-pill {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 7px 14px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.65);
}
.ch-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ── Stat cards ── */
.stat-strip { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 48px; margin-top: 48px; }
.stat-item { flex: 1; padding-right: 40px; }
.stat-item + .stat-item { padding-left: 40px; border-left: 1px solid rgba(255,255,255,0.08); }
.stat-val { font-size: 40px; font-weight: 800; color: white; letter-spacing: -0.05em; }
.stat-lbl { font-size: 13px; color: rgba(255,255,255,0.35); font-weight: 500; margin-top: 4px; }

.stat-row { display: flex; gap: 36px; padding: 40px 0; border-top: 1px solid var(--faint); border-bottom: 1px solid var(--faint); flex-wrap: wrap; }
.stat-row-item { flex: 1; min-width: 140px; }
.stat-row-val { font-size: 36px; font-weight: 800; letter-spacing: -0.04em; color: var(--ink); }
.stat-row-lbl { font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 4px; }

/* ── Section divider ── */
.divider { height: 1px; background: var(--faint); margin: 0; }
.divider-dark { height: 1px; background: rgba(255,255,255,0.08); }

/* ── Numbered steps ── */
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--orange); color: white;
  font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-num-outline {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--faint); color: var(--muted);
  font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── Inline inbox mockup ── */
.inbox-ui { background: #ede8e2; border-radius: 18px; overflow: hidden; border: 1px solid var(--faint); box-shadow: var(--shadow-xl); font-size: 11px; }
.inbox-topbar { background: var(--dark); padding: 10px 14px; display: flex; align-items: center; gap: 7px; }
.tl { width: 10px; height: 10px; border-radius: 50%; }
.inbox-body { display: grid; grid-template-columns: 148px 1fr 118px; height: 340px; min-height: 300px; }
.pane-left { background: #f5f0ea; border-right: 1px solid var(--faint); padding: 10px 8px; display: flex; flex-direction: column; gap: 2px; overflow: hidden; }
.pane-left-hd { font-size: 8px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; padding: 2px 6px 8px; }
.pane-item { padding: 8px 8px; border-radius: 8px; cursor: default; }
.pane-item.active { background: white; box-shadow: var(--shadow-sm); }
.pane-item-top { display: flex; justify-content: space-between; margin-bottom: 2px; }
.pane-item-name { font-size: 10px; font-weight: 700; color: var(--ink); }
.pane-item-time { font-size: 8px; color: #b0a498; }
.pane-item-snip { font-size: 9px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pane-mid { background: var(--warm); display: flex; flex-direction: column; }
.pane-mid-top { background: white; padding: 9px 12px; border-bottom: 1px solid var(--faint); display: flex; align-items: center; justify-content: space-between; }
.pane-mid-name { font-size: 11px; font-weight: 800; color: var(--ink); }
.pane-mid-sub { font-size: 8px; color: var(--muted); }
.pane-msgs { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 7px; overflow: hidden; }
.msg-in { max-width: 72%; padding: 7px 9px; border-radius: 10px 10px 10px 3px; font-size: 9px; line-height: 1.5; background: white; color: var(--ink); align-self: flex-start; }
.msg-out { max-width: 72%; padding: 7px 9px; border-radius: 10px 10px 3px 10px; font-size: 9px; line-height: 1.5; background: var(--dark); color: white; align-self: flex-end; }
.msg-ai { max-width: 72%; padding: 7px 9px; border-radius: 10px 10px 3px 10px; font-size: 9px; line-height: 1.5; background: #edeaff; color: #4830a8; border: 1px solid #d8d0ff; align-self: flex-end; }
.pane-compose { background: white; padding: 8px 10px; border-top: 1px solid var(--faint); display: flex; align-items: center; gap: 6px; }
.compose-in { flex: 1; background: var(--cream); border-radius: 6px; padding: 5px 8px; font-size: 9px; color: #b0a498; }
.compose-ai { background: var(--purple); color: white; border-radius: 6px; padding: 5px 8px; font-size: 8px; font-weight: 700; }
.pane-right { background: white; border-left: 1px solid var(--faint); padding: 10px 8px; overflow: hidden; }
.pr-title { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 10px; }
.pr-stat { margin-bottom: 8px; }
.pr-lbl { font-size: 8px; color: var(--muted); font-weight: 600; margin-bottom: 1px; }
.pr-val { font-size: 10px; font-weight: 700; color: var(--ink); }

/* ── Responsive ── */
@media (max-width: 1040px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { flex-direction: column; gap: 24px; }
  .stat-item { padding-right: 0; }
  .stat-item + .stat-item { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; }
}
@media (max-width: 768px) {
  .wrap, .wrap-wide, .wrap-narrow { padding: 0 20px; }
  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 48px 0; }
  .section-pad-lg { padding: 80px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-btn { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero-title { font-size: clamp(28px, 5vw, 48px); }
  .section-title { font-size: clamp(24px, 3.5vw, 42px); }
  .cta-title { font-size: clamp(24px, 3.5vw, 40px); }
  .ch-pills { flex-direction: column; align-items: flex-start; }
  .ch-pill-lbl { display: block; margin-bottom: 12px; }
  .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn, .btn-lg, .btn-sm { width: 100%; text-align: center; }
  .footer-logo-icon { width: 24px; height: 24px; }
  .nav-inner { height: auto; min-height: 56px; }
  .stat-val { font-size: 28px; }
  .pricing-card { padding: 24px 20px; }
  .pricing-price { font-size: 36px; }
  .featured-flag { right: 16px; padding: 4px 10px; font-size: 9px; }
}
@media (max-width: 480px) {
  .wrap, .wrap-wide, .wrap-narrow { padding: 0 16px; }
  .section-pad { padding: 48px 0; }
  .section-title { font-size: clamp(20px, 4vw, 32px); line-height: 1.1; }
  .page-hero-title { font-size: clamp(24px, 5vw, 40px); line-height: 1.1; }
  .stat-val { font-size: 24px; }
  .stat-lbl { font-size: 12px; }
  .proof-store { font-size: 12px; }
  .ch-card { padding: 20px 16px; }
  .feat-row { padding: 12px 14px; gap: 10px; }
  .check-item { gap: 8px; }
  .check-label { font-size: 13px; }
  .footer-tagline { max-width: 100%; }
  .cta-sub { font-size: 14px; }
  .review-card-h { padding: 16px 20px; }
  .review-card-h[style*="margin-left"] { margin-left: 0 !important; }
  .inbox-body { grid-template-columns: 120px 1fr; height: 280px; }
  .pane-right { display: none; }
  .inbox-topbar { padding: 8px 10px; }
  .compare-table thead th, .compare-table tbody tr td { padding: 10px 12px; font-size: 12px; }
  .compare-table thead th:first-child { width: 45%; }
  .stat-row { gap: 16px; padding: 24px 0; }
  .stat-row-item { min-width: 100px; }
  .nav-drawer .nav-link { font-size: 14px; padding: 10px 14px; }
}
