/* ══════════════════════════════════════════
   Abhishek Dwivedi — Global Styles
   ══════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --bg: #f8f7f4;
  --surface: #ffffff;
  --surface2: #f1eee9;
  --ink: #0f172a;
  --ink2: #334155;
  --ink3: #596579;
  --border: #e2e8f0;
  --border2: #cbd5e1;
  --accent: #2563eb;
  --accent2: #1d4ed8;
  --accent-bg: #eff6ff;
  --accent-border: #bfdbfe;
  --green: #059669;
  --green-bg: #ecfdf5;
  --amber: #d97706;
  --amber-bg: #fffbeb;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow: 0 1px 4px rgba(0,0,0,.06), 0 4px 18px rgba(0,0,0,.04);
  --shadow-lg: 0 4px 28px rgba(0,0,0,.09), 0 1px 4px rgba(0,0,0,.04);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -.03em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.02em; }
h4 { font-size: .97rem; font-weight: 600; letter-spacing: -.01em; }
p { line-height: 1.7; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
svg { display: inline-block; vertical-align: middle; }

/* ── Scroll Progress ── */
#progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--accent); z-index: 9999; width: 0;
  transition: width .08s linear;
}

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.ad-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: padding .3s, background .3s, box-shadow .3s;
}
.ad-nav.scrolled {
  background: rgba(247,246,242,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 12px 48px;
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.15rem;
  color: var(--ink); letter-spacing: -.03em; white-space: nowrap; flex-shrink: 0;
}
.nav-logo .accent { color: var(--accent); }

.nav-links {
  display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; flex: 1;
  justify-content: center;
}
.nav-links > li > a, .nav-links > li > span {
  display: block; padding: 6px 12px; border-radius: 8px;
  font-size: .82rem; font-weight: 500; color: var(--ink2);
  transition: background .18s, color .18s; position: relative; white-space: nowrap;
}
.nav-links > li > a:hover { background: var(--accent-bg); color: var(--accent); }
.nav-links > li > a.active { color: var(--accent); background: var(--accent-bg); }

.nav-cta { display: flex; gap: 8px; flex-shrink: 0; }

/* ── Desktop: hide WhatsApp button at ≤1280px to reduce clutter ── */
@media (max-width: 1280px) {
  .ad-nav, .ad-nav.scrolled { padding: 14px 32px; }
  .nav-links { gap: 0; }
  .nav-links > li > a, .nav-links > li > span { padding: 6px 9px; font-size: .8rem; }
  .nav-cta .btn-outline-ad { display: none; }
}

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: flex; align-items: center; gap: 4px; cursor: pointer;
}
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 8px;
  min-width: 230px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, transform .2s;
  transform: translateX(-50%) translateY(6px);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 8px 12px; font-size: .81rem;
  color: var(--ink2); border-radius: 8px; transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover { background: var(--accent-bg); color: var(--accent); }

/* ── Hamburger trigger ── */
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  cursor: pointer; padding: 7px 9px; color: var(--ink);
  border-radius: 9px; transition: background .2s; flex-shrink: 0;
}
.nav-toggle:hover { background: var(--accent-bg); border-color: var(--accent-border); }

/* ── Overlay ── */
.mnav-overlay {
  display: none; position: fixed; inset: 0; z-index: 940;
  background: rgba(15,23,42,.55); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .28s;
}
.mnav-overlay.open { display: block; opacity: 1; }

/* ── Drawer ── */
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 950;
  width: min(340px, 88vw);
  background: var(--surface);
  display: flex; flex-direction: column;
  transform: translateX(110%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 48px rgba(0,0,0,.14);
}
.mobile-nav.open { transform: translateX(0); }

/* Drawer header */
.mnav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mnav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.15rem; color: var(--ink);
  letter-spacing: -.03em;
}
.mobile-close {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 7px; cursor: pointer; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.mobile-close:hover { background: var(--surface2); }

/* Nav links */
.mnav-links { flex: 1; padding: 12px 0; overflow-y: auto; }
.mnav-link {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 13px 24px;
  font-size: .95rem; font-weight: 500; color: var(--ink2);
  background: none; border: none; text-align: left; cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
  font-family: 'DM Sans', sans-serif;
}
.mnav-link:last-child { border-bottom: none; }
.mnav-link:hover, .mnav-link.active { background: var(--accent-bg); color: var(--accent); }

/* Services accordion */
.mnav-accordion { font-weight: 600; color: var(--ink); }
.mnav-chevron { transition: transform .25s; flex-shrink: 0; }
.mnav-accordion[aria-expanded="true"] .mnav-chevron { transform: rotate(180deg); }
.mnav-accordion[aria-expanded="true"] { background: var(--accent-bg); color: var(--accent); }

/* Sub-items */
.mnav-sub {
  display: none; background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.mnav-sub.open { display: block; }
.mnav-sub-link {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 24px 11px 36px;
  font-size: .85rem; font-weight: 500; color: var(--ink2);
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.mnav-sub-link:last-child { border-bottom: none; }
.mnav-sub-link:hover { background: var(--accent-bg); color: var(--accent); }
.mnav-sub-link svg { flex-shrink: 0; color: var(--ink3); }

/* CTA area */
.mnav-ctas {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
  flex-shrink: 0;
}
.mnav-ctas .btn-ad { justify-content: center; text-align: center; }

@media (max-width: 1100px) {
  .ad-nav, .ad-nav.scrolled { padding: 13px 20px; }
  .nav-links, .nav-cta { display: none !important; }
  .nav-toggle { display: flex; }
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn-ad {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px; border-radius: 9px;
  font-family: 'DM Sans', sans-serif; font-size: .875rem; font-weight: 500;
  cursor: pointer; border: none; transition: all .2s; white-space: nowrap;
}
.btn-primary-ad { background: var(--accent); color: #fff; }
.btn-primary-ad:hover { background: var(--accent2); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.35); }
.btn-outline-ad { background: transparent; border: 1.5px solid var(--border2); color: var(--ink); }
.btn-outline-ad:hover { border-color: var(--ink); background: var(--surface); color: var(--ink); }
.btn-dark-ad { background: var(--ink); color: #fff; }
.btn-dark-ad:hover { background: var(--ink2); color: #fff; transform: translateY(-1px); }
.btn-green-ad { background: #22c55e; color: #fff; }
.btn-green-ad:hover { background: #16a34a; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(34,197,94,.3); }
.btn-white-ad { background: #fff; color: var(--ink); font-weight: 600; }
.btn-white-ad:hover { background: #f0f0f0; color: var(--ink); transform: translateY(-1px); }
.btn-ghost-light { background: transparent; border: 2px solid rgba(255,255,255,.7); color: #fff; }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; }
.btn-lg-ad { padding: 15px 32px; font-size: .95rem; border-radius: 11px; }
.btn-sm-ad { padding: 8px 16px; font-size: .8rem; border-radius: 7px; }

/* ══════════════════════════════════════════
   FLOATING ELEMENTS
   ══════════════════════════════════════════ */
#wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  background: #22c55e; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(34,197,94,.4);
  cursor: pointer; transition: transform .2s, box-shadow .2s;
}
#wa-float:hover { transform: scale(1.09); box-shadow: 0 8px 32px rgba(34,197,94,.5); }

/* Sticky Bar */
#sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 700;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 12px 60px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 -4px 24px rgba(0,0,0,.06);
  transform: translateY(100%); transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
#sticky-bar.visible { transform: translateY(0); }
#sticky-close {
  background: none; border: none; color: var(--ink3); cursor: pointer;
  padding: 4px 8px; font-size: 1.1rem; line-height: 1; flex-shrink: 0;
  transition: color .2s;
}
#sticky-close:hover { color: var(--ink); }
.sticky-text { font-size: .875rem; color: var(--ink2); }
.sticky-text strong { color: var(--ink); }
.sticky-actions { display: flex; gap: 10px; }
/* mobile overrides handled in comprehensive responsive block below */

/* Toast */
#toast {
  position: fixed; bottom: 88px; left: 22px; z-index: 800;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 15px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  transform: translateX(-130%); transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  max-width: 265px;
}
#toast.show { transform: translateX(0); }
.toast-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.toast-text strong { font-size: .78rem; display: block; color: var(--ink); }
.toast-text span { font-size: .73rem; color: var(--ink3); }

/* ══════════════════════════════════════════
   SECTION UTILITIES
   ══════════════════════════════════════════ */
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.section-label::before {
  content: ''; display: block; width: 18px; height: 1.5px; background: var(--accent);
}
.section-sub {
  font-size: .97rem; color: var(--ink2); max-width: 520px;
  margin-top: 14px; line-height: 1.7;
}
.bg-light-ad { background: var(--bg); }
.bg-white-ad { background: var(--surface); }
.bg-dark-ad { background: var(--ink); color: #fff; }

/* ── Standard section padding ── */
section { padding: 96px 0; }

/* ══════════════════════════════════════════
   SECTION FOLDS (wave dividers)
   ══════════════════════════════════════════ */
.fold {
  display: block; line-height: 0; overflow: hidden;
  position: relative; z-index: 2;
}
.fold svg { display: block; width: 100%; height: auto; }
.fold--flip svg { transform: scaleX(-1); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; flex-direction: row; align-items: stretch;
  padding: 0; position: relative; overflow: hidden; background: #fff;
}
.hero-dot-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, #d1cfc9 1px, transparent 1px);
  background-size: 30px 30px; opacity: .45;
  will-change: transform;
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 35%, rgba(26,63,255,.06) 0%, transparent 65%),
              radial-gradient(ellipse 40% 40% at 15% 75%, rgba(26,63,255,.04) 0%, transparent 60%);
}
.hero-content {
  flex: 0 0 55%; position: relative; z-index: 2;
  padding: 160px 64px 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 5px 14px 5px 5px; border-radius: 100px;
  background: var(--accent-bg); border: 1px solid var(--accent-border);
  font-size: .73rem; font-weight: 500; color: var(--accent); margin-bottom: 28px;
  animation: fadeUp .7s ease both;
}
.hero-pill-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
h1.hero-title { margin-bottom: 22px; animation: fadeUp .7s .08s ease both; }
.hero-title .accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(.97rem, 1.5vw, 1.13rem); color: var(--ink2);
  max-width: 600px; margin-bottom: 36px; font-weight: 400;
  animation: fadeUp .7s .16s ease both;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 60px; animation: fadeUp .7s .24s ease both; }
/* ── Metrics Strip ── */
.metrics-strip {
  background: var(--ink);
  padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
.metrics-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(26,63,255,.25) 0%, transparent 65%);
  pointer-events: none;
}
.metrics-strip::after {
  content: ''; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(26,63,255,.5), transparent);
}
/* Header */
.metrics-header { text-align: center; margin-bottom: 56px; }
.metrics-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
  background: rgba(26,63,255,.12); border: 1px solid rgba(26,63,255,.25);
  border-radius: 100px; padding: 5px 16px; margin-bottom: 16px;
}
.metrics-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800;
  color: #fff; letter-spacing: -.03em; line-height: 1.15;
  margin: 0;
}
/* Grid */
.metrics-grid-wrap { /* reveal wrapper — handles fade-in, grid itself always visible */ }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
}
.metric-card {
  text-align: center;
  padding: 40px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
  transition: background .25s;
}
.metric-card:last-child { border-right: none; }
.metric-card:hover { background: rgba(255,255,255,.06); }
/* Hover accent line */
.metric-card::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--accent);
  transition: width .3s ease; border-radius: 2px;
}
.metric-card:hover::after { width: 60%; }
/* Icon */
.metric-icon-wrap { display: flex; justify-content: center; margin-bottom: 20px; }
.metric-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(26,63,255,.15); border: 1px solid rgba(26,63,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: #93a8ff;
}
/* Value */
.metric-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 3.5vw, 3.2rem); font-weight: 800; color: #fff;
  line-height: 1; letter-spacing: -.05em; margin-bottom: 10px;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.metric-prefix { font-size: .65em; color: #93a8ff; margin-right: 1px; }
.metric-suffix { color: var(--accent); font-size: .65em; }
.metric-title {
  font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.9);
  margin-bottom: 8px; letter-spacing: -.01em;
}
.metric-desc { font-size: .72rem; color: rgba(255,255,255,.4); line-height: 1.55; }
/* Legacy divider — hidden now */
.metric-divider { display: none; }

@media (max-width: 900px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-card { border-bottom: 1px solid rgba(255,255,255,.08); }
  .metric-card:nth-child(2) { border-right: none; }
  .metric-card:nth-child(3) { border-right: 1px solid rgba(255,255,255,.08); border-bottom: none; }
  .metric-card:nth-child(4) { border-right: none; border-bottom: none; }
}
@media (max-width: 600px) {
  .metrics-strip { padding: 60px 0 52px; }
  .metrics-header { margin-bottom: 40px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-card { padding: 28px 16px; }
  .metric-value { font-size: 2.2rem; }
  .metric-desc { display: none; }
}

.hero-card {
  flex: 0 0 45%; position: relative;
  display: none; flex-direction: column; justify-content: center;
  background: var(--bg);
  border-left: 1px solid var(--border);
  padding: 120px 52px 60px 48px;
  overflow-y: auto;
  animation: fadeUp 1s .45s ease both;
}
@media (min-width: 960px) { .hero-card { display: flex; } }

/* Subtle right-panel glow */
.hero-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(26,63,255,.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Panel title */
.hc-panel-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem; font-weight: 800; color: var(--ink);
  letter-spacing: -.03em; margin-bottom: 6px;
}
.hc-panel-sub {
  font-size: .78rem; color: var(--ink3); margin-bottom: 28px; line-height: 1.5;
}

/* Card header */
.hc-head { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.hc-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: livePulse 2s ease-in-out infinite;
}
.hc-label { font-size: .72rem; color: var(--ink2); font-family: 'Space Mono', monospace; font-weight: 400; flex: 1; }
.hc-live-badge {
  font-size: .58rem; font-weight: 700; letter-spacing: .1em;
  color: #dc2626; background: #fef2f2; border: 1px solid #fecaca;
  border-radius: 4px; padding: 2px 6px; font-family: 'Space Mono', monospace;
}

/* Sparkline chart */
.hc-chart { margin-bottom: 24px; border-radius: 12px; overflow: hidden; background: #fff; border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.hc-chart svg { display: block; width: 100%; height: 90px; }
.hc-chart-label { font-size: .62rem; color: var(--ink3); padding: 6px 12px 9px; font-family: 'Space Mono', monospace; }

/* Metric rows */
.mrow { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--border); }
.mrow:last-of-type { border: none; }
.mrow-lbl { font-size: .8rem; color: var(--ink2); display: flex; align-items: center; gap: 8px; font-weight: 500; }
.mrow-icon {
  width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.mrow-icon-green { background: #dcfce7; color: #16a34a; }
.mrow-icon-red { background: #fef2f2; color: #dc2626; }
.mrow-icon-blue { background: var(--accent-bg); color: var(--accent); }
.mrow-right { text-align: right; }
.mrow-val { font-weight: 700; font-size: 1.1rem; line-height: 1; font-family: 'Plus Jakarta Sans', sans-serif; }
.mrow-change { font-size: .65rem; color: var(--ink3); margin-top: 3px; }
.up { color: #16a34a; }

/* Card footer CTA */
.hc-footer {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  margin-top: 24px; padding: 14px 20px; border-radius: 10px;
  background: var(--accent-bg); border: 1px solid var(--accent-border);
  font-size: .78rem; font-weight: 600; color: var(--accent);
  transition: gap .2s, background .2s;
}
.hc-footer:hover { gap: 8px; background: rgba(26,63,255,.08); }

/* mobile hero handled in comprehensive responsive block below */

/* Page hero (inner pages) */
.page-hero {
  padding: 160px 0 80px; position: relative; overflow: hidden; background: #fff;
}
.page-hero .hero-dot-bg, .page-hero .hero-glow { position: absolute; inset: 0; }
.page-hero .hero-dot-bg {
  background-image: radial-gradient(circle, #d1cfc9 1px, transparent 1px);
  background-size: 30px 30px; opacity: .45;
}
.page-hero .hero-glow {
  background: radial-gradient(ellipse 70% 60% at 65% 35%, rgba(26,63,255,.06) 0%, transparent 65%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); margin-bottom: 18px; }
.page-hero .lead { font-size: 1.05rem; color: var(--ink2); max-width: 620px; line-height: 1.7; }
.breadcrumb-ad {
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
  font-size: .78rem; color: var(--ink3);
}
.breadcrumb-ad a { color: var(--accent); }
.breadcrumb-ad a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════ */
.trust-bar {
  background: var(--surface);
  padding: 28px 60px;
}
/* mobile trust-bar handled in comprehensive responsive block below */
.trust-label {
  font-size: .68rem; color: var(--ink3); letter-spacing: .14em;
  text-transform: uppercase; text-align: center; margin-bottom: 22px;
  font-family: 'Space Mono', monospace;
}
.brand-logos { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; }
.brand-chip {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 9px;
  border: 1px solid var(--border); background: var(--bg); transition: all .2s;
}
.brand-chip:hover { border-color: var(--border2); background: var(--surface); box-shadow: var(--shadow); }
.brand-chip span { font-size: .8rem; font-weight: 600; color: var(--ink2); }

/* ══════════════════════════════════════════
   SERVICE CARDS
   ══════════════════════════════════════════ */
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all .25s; position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.service-card:hover { border-color: var(--accent-border); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--accent-bg); border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--accent);
}
.service-card h3 { font-size: 1.03rem; margin-bottom: 9px; }
.service-card p { font-size: .845rem; color: var(--ink2); line-height: 1.65; margin-bottom: 16px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  padding: 3px 10px; border-radius: 100px;
  font-size: .66rem; font-weight: 500;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--ink2); font-family: 'Space Mono', monospace;
}
.service-card .btn-ad { margin-top: 16px; }

/* ══════════════════════════════════════════
   PLATFORMS
   ══════════════════════════════════════════ */
.platforms-section {
  padding: 96px 0; background: var(--bg);
}
/* Header */
.platforms-header { text-align: center; margin-bottom: 56px; }
.platforms-heading { margin-bottom: 14px; }
.platforms-sub {
  font-size: 1rem; color: var(--ink2); margin: 0 auto;
  max-width: 480px; line-height: 1.6;
}
/* Grid */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
/* Card */
.platform-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 36px 20px 30px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: default;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.09);
  border-color: var(--p-color, var(--accent));
}
/* Accent bar at bottom */
.platform-accent {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--p-color, var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s ease;
  border-radius: 0 0 16px 16px;
}
.platform-card:hover .platform-accent { transform: scaleX(1); }
/* Logo bubble */
.platform-logo {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--p-bg, var(--accent-bg));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: transform .22s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.platform-card:hover .platform-logo { transform: scale(1.07); }
.platform-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .92rem; font-weight: 700; color: var(--ink);
  margin-bottom: 5px; letter-spacing: -.01em;
}
.platform-type {
  font-size: .72rem; font-weight: 500;
  color: var(--p-color, var(--accent));
  background: var(--p-bg, var(--accent-bg));
  border-radius: 100px; padding: 3px 10px;
  display: inline-block;
}
/* Badge row */
.platforms-badge-row {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  padding-top: 8px;
}
.platforms-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 500; color: var(--ink2);
}
.platforms-badge svg { color: #16a34a; flex-shrink: 0; }

@media (max-width: 900px) {
  .platforms-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .platform-card { padding: 28px 14px 24px; }
  .platform-logo { width: 52px; height: 52px; border-radius: 14px; }
}
@media (max-width: 600px) {
  .platforms-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .platform-card { padding: 22px 10px 18px; border-radius: 12px; }
  .platform-logo { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px; }
  .platform-name { font-size: .78rem; }
  .platform-type { font-size: .65rem; padding: 2px 8px; }
  .platforms-badge-row { gap: 16px; }
}

/* Legacy pchip (keep for other pages) */
.pchip {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 18px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--bg);
  font-size: .845rem; font-weight: 500; color: var(--ink2); transition: all .2s;
}
.pchip:hover { border-color: var(--border2); background: var(--surface); box-shadow: var(--shadow); }

/* ══════════════════════════════════════════
   CALCULATOR
   ══════════════════════════════════════════ */
.calc-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow-lg);
}
.calc-card h3 { font-size: 1.15rem; margin-bottom: 24px; display: flex; align-items: center; gap: 9px; }
.calc-field { margin-bottom: 22px; }
.calc-field label {
  display: flex; justify-content: space-between;
  font-size: .78rem; font-weight: 500; color: var(--ink2); margin-bottom: 10px;
}
.calc-field label span { color: var(--ink); font-family: 'Space Mono', monospace; font-weight: 600; }
input[type=range] {
  width: 100%; -webkit-appearance: none; height: 4px;
  background: var(--border); border-radius: 2px; cursor: pointer; outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent); cursor: pointer;
  border: 2.5px solid #fff; box-shadow: 0 1px 6px rgba(26,63,255,.35);
}
.calc-results { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--border); }
.calc-result { background: var(--bg); border-radius: var(--radius); padding: 15px; text-align: center; }
.calc-result-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--accent); }
.calc-result-label { font-size: .68rem; color: var(--ink3); margin-top: 3px; }
.calc-disclaimer { font-size: .67rem; color: var(--ink3); text-align: center; margin-top: 9px; }

/* ══════════════════════════════════════════
   WHY US CARDS
   ══════════════════════════════════════════ */
.why-card {
  padding: 26px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--bg); transition: all .25s;
}
.why-card:hover { background: var(--surface); border-color: var(--border2); box-shadow: var(--shadow); transform: translateY(-2px); }
.why-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 15px; color: var(--accent);
}
.why-card h4 { margin-bottom: 7px; }
.why-card p { font-size: .845rem; color: var(--ink2); line-height: 1.65; }

/* ══════════════════════════════════════════
   CASE STUDIES
   ══════════════════════════════════════════ */
.case-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px; transition: all .25s;
}
.case-card:hover { border-color: var(--border2); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.case-header { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.case-avatar {
  width: 46px; height: 46px; border-radius: 11px; overflow: hidden;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  background: var(--bg);
}
.case-brand { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.02rem; }
.case-cat { font-size: .72rem; color: var(--ink3); margin-top: 2px; }
.case-stats { display: flex; gap: 22px; flex-wrap: wrap; }
.case-stat-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--ink); line-height: 1; }
.case-stat-lbl { font-size: .7rem; color: var(--ink3); margin-top: 3px; }
.case-div { width: 1px; background: var(--border); align-self: stretch; }

/* ══════════════════════════════════════════
   PROCESS
   ══════════════════════════════════════════ */
.pstep { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.pstep:last-child { border: none; }
.pstep-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-bg); border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Mono', monospace; font-weight: 600; font-size: .78rem; color: var(--accent);
}
.pstep-content h4 { margin-bottom: 5px; }
.pstep-content p { font-size: .845rem; color: var(--ink2); line-height: 1.65; }

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; transition: all .25s;
}
.testi-card:hover { border-color: var(--border2); box-shadow: var(--shadow); }
.testi-stars { display: flex; gap: 3px; color: #f59e0b; margin-bottom: 14px; }
.testi-quote { font-size: .855rem; line-height: 1.75; color: var(--ink2); margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .75rem; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: .855rem; }
.testi-role { font-size: .72rem; color: var(--ink3); }
.testi-cta-card {
  background: var(--accent); border-radius: var(--radius-lg); padding: 24px;
  display: flex; flex-direction: column;
}
.testi-cta-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 9px; }
.testi-cta-card p { color: rgba(255,255,255,.8); font-size: .845rem; margin-bottom: 22px; line-height: 1.65; flex: 1; }

/* ══════════════════════════════════════════
   INDUSTRIES
   ══════════════════════════════════════════ */
.ind-chip {
  display: flex; align-items: center; gap: 9px;
  padding: 13px 15px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--bg);
  font-size: .82rem; font-weight: 500; color: var(--ink2); transition: all .2s;
}
.ind-chip:hover { border-color: var(--accent-border); background: var(--accent-bg); color: var(--accent); }

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color .2s; margin-bottom: 2px;
}
.faq-item.open { border-color: var(--accent-border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 17px 19px; cursor: pointer;
  font-weight: 500; font-size: .895rem; user-select: none; gap: 12px;
}
.faq-q:hover { background: var(--surface); }
.faq-arrow {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .3s; color: var(--ink3);
}
.faq-item.open .faq-arrow { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 19px 17px; font-size: .855rem; color: var(--ink2); line-height: 1.7; }

/* ══════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════ */
.cta-banner {
  background: var(--ink); padding: 80px 0;
}
.cta-banner h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); color: #fff; }
.cta-banner p { color: rgba(255,255,255,.62); margin-top: 10px; font-size: .93rem; }

/* ══════════════════════════════════════════
   CONTACT / FORMS
   ══════════════════════════════════════════ */
.cinfo h3 { font-size: 1.35rem; margin-bottom: 12px; }
.cinfo > p { color: var(--ink2); font-size: .895rem; margin-bottom: 26px; line-height: 1.72; }
.cdetail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.cdetail-icon {
  width: 37px; height: 37px; border-radius: 9px;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--accent);
}
.cdetail-content small { font-size: .7rem; color: var(--ink3); display: block; margin-bottom: 2px; }
.cdetail-content span { font-size: .875rem; font-weight: 500; }
.certs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.cert {
  display: flex; align-items: center; gap: 5px;
  padding: 4px 11px; border-radius: 100px;
  background: var(--green-bg); border: 1px solid rgba(14,122,73,.18);
  font-size: .7rem; font-weight: 500; color: var(--green);
}
.form-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 34px;
}
.form-card h3 { font-size: 1.1rem; margin-bottom: 22px; }
.form-field { margin-bottom: 13px; }
.form-field label { display: block; font-size: .77rem; font-weight: 500; color: var(--ink2); margin-bottom: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 11px 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 9px; color: var(--ink);
  font-family: 'DM Sans', sans-serif; font-size: .875rem;
  outline: none; transition: border-color .2s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink3); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26,63,255,.09);
}
.form-field select {
  cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-field textarea { resize: vertical; min-height: 88px; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; min-height: 48px; }
.form-note {
  font-size: .68rem; color: var(--ink3); text-align: center; margin-top: 10px;
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.form-note span { display: flex; align-items: center; gap: 4px; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
  background: var(--ink); color: rgba(255,255,255,.65); padding: 64px 0 32px;
}
.footer-brand .logo {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.25rem;
  color: #fff; display: flex; align-items: center; gap: 0; margin-bottom: 13px;
}
.footer-brand .logo .accent { color: var(--accent); }
.footer-brand p { font-size: .83rem; line-height: 1.7; max-width: 265px; }
footer h4 {
  color: #fff; font-size: .83rem; font-weight: 600; margin-bottom: 15px;
  font-family: 'DM Sans', sans-serif; letter-spacing: 0;
}
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 9px; }
footer ul a { font-size: .82rem; color: rgba(255,255,255,.57); transition: color .2s; }
footer ul a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .77rem; flex-wrap: wrap; gap: 12px; margin-top: 48px;
}
.social-row { display: flex; gap: 9px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.57); transition: all .2s;
}
.social-btn:hover { color: #fff; border-color: rgba(255,255,255,.38); }

/* ══════════════════════════════════════════
   EXIT POPUP
   ══════════════════════════════════════════ */
#exit-popup {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.52); backdrop-filter: blur(5px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
#exit-popup.show { display: flex; }
.popup-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 42px; max-width: 460px; width: 100%;
  position: relative; box-shadow: var(--shadow-lg);
  animation: popIn .35s cubic-bezier(.34,1.56,.64,1);
  backface-visibility: hidden; transform: translateZ(0);
}
@keyframes popIn { from { opacity: 0; transform: scale(.87); } to { opacity: 1; transform: scale(1); } }
.popup-close {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--ink3); transition: all .2s;
}
.popup-close:hover { color: var(--ink); border-color: var(--border2); }
.popup-badge {
  display: inline-block; padding: 3px 11px; border-radius: 100px;
  background: var(--amber-bg); border: 1px solid rgba(146,83,10,.22);
  font-size: .7rem; font-weight: 600; color: var(--amber); margin-bottom: 15px;
}
.popup-box h3 { font-size: 1.45rem; margin-bottom: 9px; }
.popup-box > p { font-size: .875rem; color: var(--ink2); margin-bottom: 22px; line-height: 1.65; }
.popup-row { display: flex; gap: 9px; }
.popup-row input {
  flex: 1; padding: 11px 14px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 9px; font-family: 'DM Sans', sans-serif; font-size: .875rem;
  outline: none; color: var(--ink);
}
.popup-row input::placeholder { color: var(--ink3); }
.popup-row input:focus { border-color: var(--accent); }
.popup-skip {
  margin-top: 13px; background: none; border: none; color: var(--ink3);
  font-size: .77rem; cursor: pointer; text-decoration: underline;
  display: block; text-align: center; width: 100%; transition: color .2s;
}
.popup-skip:hover { color: var(--ink); }

/* ══════════════════════════════════════════
   SERVICE PAGE SPECIFIC
   ══════════════════════════════════════════ */
.content-section h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 18px; }
.content-section p { color: var(--ink2); line-height: 1.78; margin-bottom: 16px; }
.content-section ul { padding-left: 0; list-style: none; margin-bottom: 20px; }
.content-section ul li {
  padding: 8px 0 8px 28px; position: relative;
  font-size: .9rem; color: var(--ink2); line-height: 1.7;
}
.content-section ul li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent-bg); border: 1px solid var(--accent-border);
}
.content-section ul li::after {
  content: ''; position: absolute; left: 5px; top: 21px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

/* Pricing cards */
.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px; transition: all .25s;
  display: flex; flex-direction: column;
}
.pricing-card:hover { border-color: var(--accent-border); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured { border: 2px solid var(--accent); position: relative; }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; padding: 4px 16px;
  border-radius: 100px; font-size: .7rem; font-weight: 600; white-space: nowrap;
}
.pricing-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.pricing-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.2rem; font-weight: 800; margin: 12px 0; }
.pricing-price span { font-size: .85rem; font-weight: 400; color: var(--ink3); }
.pricing-desc { font-size: .85rem; color: var(--ink2); margin-bottom: 24px; line-height: 1.65; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 28px; flex: 1; }
.pricing-features li {
  padding: 7px 0; font-size: .84rem; color: var(--ink2);
  display: flex; align-items: flex-start; gap: 10px;
}
.pricing-features li svg { flex-shrink: 0; margin-top: 2px; }

/* Info box */
.info-box {
  padding: 20px; border-radius: var(--radius);
  background: var(--accent-bg); border: 1px solid var(--accent-border);
}
.info-box.green { background: var(--green-bg); border-color: rgba(14,122,73,.2); }

/* Stats row */
.stat-card {
  text-align: center; padding: 24px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.stat-card .stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.4rem; font-weight: 800;
  color: var(--accent); line-height: 1; margin-bottom: 6px;
}
.stat-card .stat-lbl { font-size: .78rem; color: var(--ink3); }

/* Check list */
.check-item {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px;
}
.check-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-bg); border: 1px solid rgba(14,122,73,.2);
  display: flex; align-items: center; justify-content: center;
}
.check-item p { margin: 0; font-size: .88rem; color: var(--ink2); }
.check-item strong { color: var(--ink); }

/* Schema / code block */
.code-block {
  background: var(--ink); color: #a8e6cf; border-radius: var(--radius);
  padding: 20px; font-family: 'Space Mono', monospace; font-size: .78rem;
  overflow-x: auto; line-height: 1.7;
}

/* ══════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE STYLES
   ══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   INTERACTIVE UX / CRO ENHANCEMENTS
   ══════════════════════════════════════════ */

/* ── Cursor Follower ── */
#cursor-glow {
  position: fixed; width: 28px; height: 28px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.25) 0%, transparent 70%);
  pointer-events: none; z-index: 9998; transform: translate(-50%, -50%);
  transition: width .3s, height .3s, background .3s;
  mix-blend-mode: screen;
}
#cursor-glow.cursor-hover {
  width: 52px; height: 52px;
  background: radial-gradient(circle, rgba(37,99,235,.18) 0%, transparent 70%);
}
@media (max-width: 991px) { #cursor-glow { display: none; } }

/* ── Magnetic Buttons ── */
.btn-magnetic { transition: transform .2s cubic-bezier(.25,.46,.45,.94); }

/* ── 3D Tilt Cards ── */
.tilt-card { transition: transform .15s ease; transform-style: preserve-3d; }

/* ── Glassmorphism Cards ── */
.glass-card {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.3);
  position: relative; overflow: hidden;
}
.glass-card::before {
  content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 70%);
  left: var(--glow-x, 50%); top: var(--glow-y, 50%);
  transform: translate(-50%, -50%); pointer-events: none;
  transition: opacity .3s; opacity: 0;
}
.glass-card:hover::before { opacity: 1; }

/* ── Text Reveal Animation ── */
.text-reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.text-reveal.text-revealed { opacity: 1; transform: translateY(0); }

/* Staggered children */
.reveal-child {
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-child.visible { opacity: 1; transform: translateY(0); }

/* ── Typed Text ── */
#typed-text { border-right: 2px solid var(--accent); padding-right: 4px; animation: blink .8s infinite; }
@keyframes blink { 0%,100% { border-color: var(--accent); } 50% { border-color: transparent; } }

/* ── Section Navigation Dots ── */
#section-nav {
  position: fixed; right: 24px; top: 50%; transform: translateY(-50%);
  z-index: 800; display: flex; flex-direction: column; gap: 14px;
}
.sec-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--border2); cursor: pointer;
  transition: all .3s; position: relative;
}
.sec-dot::before {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
}
.sec-dot:hover { background: var(--accent); transform: scale(1.3); }
.sec-dot.active { background: var(--accent); transform: scale(1.4); box-shadow: 0 0 0 4px var(--accent-bg); }
.sec-dot .sec-dot-label {
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: #fff; padding: 4px 10px; border-radius: 6px;
  font-size: .68rem; font-weight: 500; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.sec-dot:hover .sec-dot-label { opacity: 1; }
@media (max-width: 991px) { #section-nav { display: none; } }

/* ── Social Proof Bar (under nav) ── */
#social-proof-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 899;
  background: var(--accent); color: #fff; text-align: center;
  padding: 6px 20px; font-size: .72rem; font-weight: 500;
  transform: translateY(-100%); transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  letter-spacing: .02em;
}
#social-proof-bar.visible { transform: translateY(0); }
#social-proof-bar + .ad-nav { transition: top .4s; }
#social-proof-bar.visible + .ad-nav { top: 28px; }

/* ── Enhanced WhatsApp Widget ── */
#wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  background: #22c55e; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(34,197,94,.4);
  cursor: pointer; transition: transform .2s, box-shadow .2s;
  animation: waPulse 3s ease-in-out infinite;
}
#wa-float:hover { transform: scale(1.09); box-shadow: 0 8px 32px rgba(34,197,94,.5); animation: none; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 22px rgba(34,197,94,.4); }
  50% { box-shadow: 0 4px 22px rgba(34,197,94,.4), 0 0 0 12px rgba(34,197,94,.1); }
}
#wa-bubble {
  position: fixed; bottom: 92px; right: 28px; z-index: 800;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px 18px;
  box-shadow: var(--shadow-lg); max-width: 240px;
  transform: translateY(10px) scale(.95); opacity: 0;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
#wa-bubble.show { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
#wa-bubble::after {
  content: ''; position: absolute; bottom: -7px; right: 24px;
  width: 14px; height: 14px; background: var(--surface);
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
}
.wa-bubble-text { font-size: .82rem; color: var(--ink2); line-height: 1.5; }
.wa-bubble-text strong { color: var(--ink); display: block; margin-bottom: 4px; font-size: .78rem; }

/* ── Urgency Badge ── */
.urgency-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px;
  background: #fef2f2; border: 1px solid #fecaca;
  font-size: .72rem; font-weight: 600; color: #dc2626;
  animation: urgencyPulse 2s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%, 100% { opacity: 1; } 50% { opacity: .4; }
}
.urgency-dot { width: 6px; height: 6px; border-radius: 50%; background: #dc2626; }

/* ── Reading Time Badge ── */
.read-time-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 100px;
  background: var(--surface2); border: 1px solid var(--border);
  font-size: .7rem; font-weight: 500; color: var(--ink3);
}

/* ── Multi-Step Form ── */
.form-steps-header {
  display: flex; align-items: center; gap: 0; margin-bottom: 28px; position: relative;
}
.form-progress { position: absolute; top: 14px; left: 30px; right: 30px; height: 2px; background: var(--border); z-index: 0; }
.form-progress-fill { height: 100%; background: var(--accent); transition: width .4s ease; width: 33.3%; border-radius: 1px; }
.step-indicator {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Mono', monospace; font-size: .72rem; font-weight: 600;
  color: var(--ink3); position: relative; z-index: 1; transition: all .3s;
}
.step-indicator.active { background: var(--accent); border-color: var(--accent); color: #fff; transform: scale(1.1); }
.step-indicator.completed { background: var(--green); border-color: var(--green); color: #fff; }
.step-indicator-label {
  position: absolute; top: 36px; left: 50%; transform: translateX(-50%);
  font-size: .62rem; color: var(--ink3); white-space: nowrap; font-family: 'DM Sans', sans-serif;
}
.step-indicator.active .step-indicator-label { color: var(--accent); font-weight: 600; }
.form-step { display: none; animation: fadeUp .4s ease; }
.form-step.active { display: block; }
.form-step h4 { font-size: 1rem; margin-bottom: 6px; }
.form-step p { font-size: .82rem; color: var(--ink3); margin-bottom: 20px; }
.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 20px; }
.form-nav .btn-ad { flex: 1; justify-content: center; }
.is-invalid { border-color: #ef4444 !important; box-shadow: 0 0 0 3px rgba(239,68,68,.1) !important; }

/* Form success */
.form-success { text-align: center; padding: 30px 0; }
.form-success .success-icon { margin-bottom: 16px; }
.form-success h3 { font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: var(--ink2); font-size: .9rem; }

/* ── Testimonial Carousel (swipe) ── */
.testi-carousel {
  display: flex; gap: 16px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  cursor: grab; padding-bottom: 12px; margin-top: 48px;
  scrollbar-width: none;
}
.testi-carousel::-webkit-scrollbar { display: none; }
.testi-carousel.grabbing { cursor: grabbing; }
.testi-carousel .testi-card {
  min-width: 310px; max-width: 340px; flex-shrink: 0;
  scroll-snap-align: start;
}

/* ── Enhanced Toast ── */
#toast {
  position: fixed; bottom: 88px; left: 22px; z-index: 800;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 15px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  transform: translateX(-130%); transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  max-width: 280px;
}
#toast.show { transform: translateX(0); }
.toast-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; animation: toastPulse 2s infinite; }
@keyframes toastPulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }
.toast-text strong { font-size: .78rem; display: block; color: var(--ink); }
.toast-text span { font-size: .73rem; color: var(--ink3); }
.toast-time { font-size: .62rem; color: var(--ink3); margin-top: 2px; display: block; }

/* ── Gradient Accent Elements ── */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #7c3aed 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-border {
  border: none; position: relative;
}
.gradient-border::before {
  content: ''; position: absolute; inset: 0; padding: 1.5px; border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}

/* ── Calculator Presets ── */
.calc-presets { display: flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.calc-preset {
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid var(--border); background: var(--bg);
  font-size: .72rem; font-weight: 500; color: var(--ink2);
  cursor: pointer; transition: all .2s;
}
.calc-preset:hover, .calc-preset.active {
  background: var(--accent-bg); border-color: var(--accent-border); color: var(--accent);
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-dot-bg { animation: none !important; }
  .tilt-card { transition: none !important; }
  #cursor-glow { display: none !important; }
  .reveal, .text-reveal, .reveal-child { opacity: 1 !important; transform: none !important; transition: none !important; }
  @keyframes floatY { 0%, 100% { transform: translateY(-50%); } }
}

/* ── Tablet (max 991px) ── */
@media (max-width: 991px) {
  /* Sections padding */
  section { padding: 70px 30px; }
  .page-hero { padding: 130px 0 60px; }
  .cta-banner { padding: 60px 0; }
  footer { padding: 48px 0 24px; }
  .trust-bar { padding: 24px 30px; }

  /* Hero */
  .hero { flex-direction: column; min-height: auto; }
  .hero-content { flex: none; padding: 120px 30px 60px; }
  .hero-card { flex: none; border-left: none; border-top: 1px solid var(--border); padding: 48px 30px; }
  .hero-metrics { gap: 30px; }
  .hero-ctas { flex-direction: column; max-width: 320px; }
  .hero-ctas .btn-ad { justify-content: center; }

  /* Grids */
  .cases-grid, .process-layout, .calc-wrap, .faq-wrap, .contact-grid {
    grid-template-columns: 1fr !important;
  }

  /* Pricing */
  .pricing-card { margin-bottom: 16px; }
}

/* ── Mobile (max 768px) ── */
@media (max-width: 768px) {
  /* Base section padding */
  section { padding: 50px 16px; }
  .page-hero { padding: 110px 0 44px; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .cta-banner { padding: 44px 0; }
  footer { padding: 40px 0 20px; }
  .trust-bar { padding: 20px 16px; }

  /* Typography */
  h1 { font-size: clamp(2rem, 8vw, 3.2rem); }
  h2 { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
  h3 { font-size: 1.05rem; }

  /* Navbar */
  .nav-logo { font-size: 1rem; }

  /* Hero */
  .hero { flex-direction: column; min-height: auto; }
  .hero-content { padding: 100px 16px 50px; }
  .hero-card { padding: 36px 16px; }
  .hero-metrics { gap: 20px; padding-top: 28px; }
  .metric-num { font-size: 1.65rem; }
  .hero-sub { font-size: .93rem; }
  .hero-ctas .btn-ad { width: 100%; justify-content: center; }

  /* Buttons */
  .btn-lg-ad { padding: 13px 24px; font-size: .88rem; }

  /* Trust bar */
  .brand-logos { gap: 8px; }
  .brand-chip { padding: 6px 12px; }
  .brand-chip span { font-size: .72rem; }

  /* Service cards */
  .service-card { padding: 22px; }

  /* Calculator */
  .calc-card { padding: 24px; }
  .calc-results { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* Why cards */
  .why-card { padding: 20px; }

  /* Case studies */
  .case-card { padding: 22px; }
  .case-stat-val { font-size: 1.4rem; }
  .case-stats { gap: 14px; }

  /* Process steps */
  .pstep { gap: 14px; padding: 16px 0; }

  /* Testimonials */
  .testi-card { padding: 20px; }

  /* Industries */
  .ind-chip { padding: 10px 12px; font-size: .78rem; }

  /* FAQ */
  .faq-q { padding: 14px 16px; font-size: .84rem; }
  .faq-a-inner { padding: 0 16px 14px; font-size: .82rem; }

  /* CTA banner */
  .cta-banner h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }

  /* Contact form */
  .form-card { padding: 24px; }
  .contact-grid { gap: 30px; }
  .form-field textarea { resize: none; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-brand p { max-width: 100%; }

  /* Sticky bar */
  #sticky-bar { padding: 10px 16px; }
  .sticky-text { font-size: .78rem; }

  /* Toast */
  #toast { bottom: 78px; left: 12px; max-width: 230px; }

  /* Popup */
  .popup-box { padding: 28px 22px; }
  .popup-box h3 { font-size: 1.25rem; }
  .popup-row { flex-direction: column; }

  /* Pricing cards */
  .pricing-card { padding: 28px; }
  .pricing-price { font-size: 1.8rem; }

  /* Stat cards */
  .stat-card { padding: 18px; }
  .stat-card .stat-val { font-size: 1.9rem; }

  /* Content sections (service pages) */
  .content-section h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .content-section ul li { padding-left: 24px; font-size: .85rem; }

  /* Info box */
  .info-box { padding: 16px; }

  /* Platforms */
  .pchip { padding: 8px 14px; font-size: .78rem; }
}

/* ── Small phones (max 480px) ── */
@media (max-width: 480px) {
  section { padding: 40px 14px; }
  .page-hero { padding: 100px 0 36px; }
  .page-hero h1 { font-size: 1.7rem; }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.4rem; }

  .hero { flex-direction: column; }
  .hero-content { padding: 90px 14px 40px; }
  .hero-card { padding: 28px 14px; }
  .hero-metrics { flex-direction: column; gap: 16px; }

  .brand-logos { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .brand-chip { flex-shrink: 0; }

  .calc-results { grid-template-columns: 1fr; }

  .case-stats { flex-direction: column; gap: 12px; }
  .case-div { width: 100%; height: 1px; }

  .form-card { padding: 18px; }

  .pricing-badge { font-size: .62rem; padding: 3px 12px; }

  .cta-banner h2 { font-size: 1.3rem; }

  .popup-box { padding: 22px 16px; }
  .popup-box h3 { font-size: 1.1rem; }

  #wa-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  #wa-float svg { width: 22px; height: 22px; }
}

/* ══════════════════════════════════════════
   CRO ENHANCEMENTS v2
   ══════════════════════════════════════════ */

/* ── Who This Is For ── */
.who-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; border-radius: var(--radius);
  background: var(--bg); border: 1px solid var(--border);
  font-size: .875rem; color: var(--ink2); line-height: 1.55;
  transition: border-color .2s, background .2s;
}
.who-item:hover { background: var(--surface); border-color: var(--border2); }
.who-item.who-yes { border-left: 3px solid var(--green); }
.who-item.who-no { border-left: 3px solid #ef4444; }
.who-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-bg); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; margin-top: 1px;
}
.who-icon-no { background: #fef2f2; color: #dc2626; }

/* ── Live Visitor Counter ── */
.live-visitors {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; color: var(--ink3); margin-top: 10px;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

/* ── Countdown Timer ── */
.countdown-timer {
  display: flex; align-items: center; gap: 6px;
}
.cdown-unit {
  display: flex; flex-direction: column; align-items: center;
  background: var(--ink); color: #fff; border-radius: 6px;
  padding: 4px 10px; min-width: 44px;
}
.cdown-unit span { font-family: 'Space Mono', monospace; font-size: 1.05rem; font-weight: 700; line-height: 1.2; }
.cdown-unit small { font-size: .55rem; color: rgba(255,255,255,.6); letter-spacing: .08em; text-transform: uppercase; }
.cdown-sep { font-family: 'Space Mono', monospace; font-weight: 700; color: var(--accent); font-size: 1.1rem; }

/* ── Billing Toggle ── */
.billing-toggle {
  display: inline-flex; background: var(--surface2);
  border: 1px solid var(--border); border-radius: 10px; padding: 4px; gap: 4px;
}
.billing-btn {
  padding: 8px 20px; border-radius: 7px; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 500;
  color: var(--ink3); background: transparent; transition: all .2s;
  display: flex; align-items: center; gap: 8px;
}
.billing-btn.active { background: var(--surface); color: var(--ink); box-shadow: 0 1px 4px rgba(0,0,0,.1); }
.save-badge {
  background: var(--green-bg); color: var(--green);
  border: 1px solid rgba(14,122,73,.2); border-radius: 100px;
  padding: 1px 8px; font-size: .65rem; font-weight: 600;
}

/* ── Comparison Table ── */
.comparison-table {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--surface);
}
.comp-header, .comp-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
}
.comp-header { background: var(--ink); }
.comp-row { border-top: 1px solid var(--border); transition: background .2s; }
.comp-row:hover { background: var(--bg); }
.comp-cell {
  padding: 13px 16px; font-size: .82rem; display: flex; align-items: center;
}
.comp-header .comp-cell { color: rgba(255,255,255,.7); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.comp-label { font-weight: 600; color: var(--ink2); font-size: .8rem; }
.comp-label-col { }
.comp-alt { color: var(--ink3); }
.comp-us { color: var(--ink); font-weight: 500; }
.comp-best { color: var(--green); font-weight: 600; }
.comp-header .comp-us { color: #fff; background: rgba(255,255,255,.08); }
@media (max-width: 768px) {
  .comp-header, .comp-row { grid-template-columns: 1fr; }
  .comp-header .comp-cell:not(.comp-label-col):not(:last-child) { display: none; }
  .comp-row .comp-cell:not(.comp-label):not(.comp-us) { display: none; }
  .comparison-table { font-size: .78rem; }
}

/* ── Case Study Filter ── */
.filter-btn {
  padding: 7px 18px; border-radius: 100px; border: 1px solid var(--border);
  background: var(--bg); color: var(--ink2); font-size: .8rem; font-weight: 500;
  cursor: pointer; transition: all .2s; font-family: 'DM Sans', sans-serif;
}
.filter-btn:hover { border-color: var(--accent-border); color: var(--accent); background: var(--accent-bg); }
.filter-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── Form Field Hints ── */
.field-hint {
  font-size: .7rem; color: var(--ink3); margin-top: 4px; margin-bottom: 0;
  display: flex; align-items: center; gap: 4px;
}

/* ── Trust Badges Row (form) ── */
.trust-badges-row {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; justify-content: center;
}
.trust-badge-item {
  display: flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 500; color: var(--green);
  background: var(--green-bg); border: 1px solid rgba(14,122,73,.18);
  border-radius: 100px; padding: 4px 10px;
}

/* ── Form Risk Reversal ── */
.form-risk-reversal {
  font-size: .72rem; color: var(--ink3); text-align: center;
  margin-top: 10px; margin-bottom: 0;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ── Mobile Single CTA Bar ── */
@media (max-width: 768px) {
  #sticky-bar .sticky-text { display: none; }
  #sticky-bar { justify-content: center; padding: 10px 16px; }
  #sticky-bar .sticky-actions { width: 100%; }
  #sticky-bar .sticky-actions .btn-outline-ad { display: none; }
  #sticky-bar .sticky-actions .btn-primary-ad { width: 100%; justify-content: center; font-size: .9rem; min-height: 44px; }
}
