/* =========================================
   IMPERION DATA SYSTEMS — DESIGN SYSTEM v2
   Light Mode Default | Dark Mode Toggle
   ========================================= */

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

/* ─── CSS Custom Properties: Light Mode (Default) ─── */
:root {
  --bg-primary:   #f8fafc;
  --bg-surface:   #ffffff;
  --bg-card:      #ffffff;
  --bg-elevated:  #f1f5f9;
  --border:       #e2e8f0;
  --border-hover: #3d5a90;
  --accent:       #3d5a90;       /* mature slate-blue */
  --accent-hover: #2e4675;
  --accent-glow:  rgba(61,90,144,0.13);
  --navy:         #0e1d38;       /* midnight navy — footer, CTA strip */
  --text-primary: #0f172a;
  --text-muted:   #475569;
  --text-subtle:  #94a3b8;
  --shadow-sm:    0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md:    0 4px 16px rgba(15,23,42,0.08);
  --shadow-lg:    0 20px 48px rgba(15,23,42,0.1);
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    16px;
  --radius-xl:    22px;
}

/* ─── Dark Mode Overrides ─── */
html.dark-mode {
  --bg-primary:   #07090d;
  --bg-surface:   #0d1117;
  --bg-card:      #111827;
  --bg-elevated:  #141f2e;
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(107,142,192,0.5);
  --accent:       #7094c8;       /* softer, muted blue for dark backgrounds */
  --accent-hover: #5a7db7;
  --accent-glow:  rgba(112,148,200,0.22);
  --navy:         #8ab0d8;       /* muted pastel blue for dark-mode text uses */
  --text-primary: #f1f5f9;
  --text-muted:   #94a3b8;
  --text-subtle:  #4b5563;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.6);
}

/* ─── Theme Transition (applied briefly during toggle) ─── */
html.theme-transitioning,
html.theme-transitioning *,
html.theme-transitioning *::before,
html.theme-transitioning *::after {
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease !important;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* hard stop any horizontal bleed */
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  line-height: 1.6;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── Responsive Grid Utilities ─── */
/* Use .grid-2col / .grid-3col on any element with an inline grid style    */
/* so media queries can override it with !important                        */
.grid-2col {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: var(--g2-gap, 48px);
}
.grid-3col {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: var(--g3-gap, 16px);
}

/* ─── Navigation ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(248,250,252,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
html.dark-mode .site-nav {
  background: rgba(7,9,13,0.88);
}
.site-nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  margin-right: auto;
}
.brand-logo-img, .footer-logo-img {
  transition: opacity 0.3s ease;
}

html.dark-mode .light-logo {
  display: none !important;
}
html.dark-mode .dark-logo {
  display: block !important;
}

.nav-logo-text {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.nav-logo-text span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.18s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link.active {
  color: var(--accent);
}

/* Theme Toggle */
.theme-toggle {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
html.dark-mode .theme-toggle .icon-sun { display: block; }
html.dark-mode .theme-toggle .icon-moon { display: none; }

/* CTA */
.nav-cta {
  padding: 9px 18px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--accent-glow);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.28s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px 20px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.18s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .mobile-cta {
  display: block;
  margin-top: 16px;
  padding: 13px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-align: center;
  border-bottom: none;
}

/* ─── Page wrapper ─── */
.page-content { padding-top: 68px; }

/* ─── Containers ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Sections ─── */
.section     { padding: 88px 0; }
.section-sm  { padding: 56px 0; }
.section-lg  { padding: 110px 0; }
.section-alt { background: var(--bg-elevated); }
.section-border-top    { border-top: 1px solid var(--border); }
.section-border-bottom { border-bottom: 1px solid var(--border); }

/* ─── Typography ─── */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text-primary);
}
.section-subtitle {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 14px;
}
.accent-text { color: var(--accent); }
.navy-text   { color: var(--navy); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  transition: all 0.18s;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 3px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover {
  background: #1e40af;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,58,138,0.2);
}
.btn-sm  { padding: 9px 18px; font-size: 13px; }
.btn-lg  { padding: 14px 28px; font-size: 15px; }

/* ─── Cards ─── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.card-hover {
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}
.glass-card {
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
html.dark-mode .glass-card {
  background: rgba(255,255,255,0.03);
}

/* ─── Trust Strip ─── */
.trust-strip {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-strip-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-icon {
  width: 28px; height: 28px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 14px; height: 14px; color: var(--accent); }
html.dark-mode .trust-icon {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.2);
}
.trust-sep {
  width: 1px; height: 18px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── Bento Grid ─── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  display: block;
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}
.bento-icon {
  width: 44px; height: 44px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
html.dark-mode .bento-icon {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.2);
}
.bento-icon svg { width: 20px; height: 20px; color: var(--accent); }
.bento-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.bento-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
.bento-arrow {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

/* ─── Tick List ─── */
.tick-list { list-style: none; }
.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  border-bottom: 1px solid var(--border);
}
.tick-list li:last-child { border-bottom: none; }
.tick-icon {
  width: 18px; height: 18px;
  min-width: 18px;
  background: rgba(37,99,235,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
html.dark-mode .tick-icon { background: rgba(59,130,246,0.1); }
.tick-icon svg { width: 10px; height: 10px; color: var(--accent); }

/* ─── Service Z-Pattern ─── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; padding-bottom: 0; }
.service-block.reverse .service-text { order: 2; }
.service-block.reverse .service-visual { order: 1; }

.service-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  margin-bottom: 10px;
}
.service-block h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 12px;
}
.service-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ─── Service Visual Card ─── */
.service-visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* ─── Stat Badges ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}
.badge-blue   { background: rgba(61,90,144,0.08);  color: var(--accent);  border: 1px solid rgba(61,90,144,0.18); }
.badge-navy   { background: rgba(14,29,56,0.07);    color: var(--navy);    border: 1px solid rgba(14,29,56,0.15); }
.badge-green  { background: rgba(22,163,74,0.08);   color: #16a34a;        border: 1px solid rgba(22,163,74,0.15); }
.badge-orange { background: rgba(234,88,12,0.08);   color: #ea580c;        border: 1px solid rgba(234,88,12,0.15); }
.badge-red    { background: rgba(220,38,38,0.08);   color: #dc2626;        border: 1px solid rgba(220,38,38,0.15); }
html.dark-mode .badge-blue  { background: rgba(112,148,200,0.12); border-color: rgba(112,148,200,0.22); }
html.dark-mode .badge-navy  { background: rgba(138,176,216,0.1);  border-color: rgba(138,176,216,0.2); }
html.dark-mode .badge-green { background: rgba(34,197,94,0.1);    border-color: rgba(34,197,94,0.2);   color: #4ade80; }

/* ─── CTA Strip ─── */
.cta-strip {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(59,130,246,0.3), transparent 60%),
              radial-gradient(ellipse at 70% 100%, rgba(37,99,235,0.2), transparent 60%);
  pointer-events: none;
}
.cta-strip .eyebrow { color: #93c5fd; }
.cta-strip h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 12px;
}
.cta-strip p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.cta-strip .btn-white {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}
.cta-strip .btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
}
.cta-strip .btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.25);
}
.cta-strip .btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  transform: translateY(-1px);
}

/* ─── Kanban Mockup ─── */
.kanban-mock {
  background: #0a0e16;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.kanban-titlebar {
  background: #0d1117;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.kb-dot { width: 9px; height: 9px; border-radius: 50%; }
.kanban-body {
  padding: 14px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.kanban-body::-webkit-scrollbar { display: none; }
.kanban-col { flex: 0 0 168px; }
.kanban-col-header {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 5px;
  margin-bottom: 9px;
  text-align: center;
}
.col-hot  { background: rgba(239,68,68,0.15); color: #f87171; }
.col-warm { background: rgba(251,146,60,0.15); color: #fb923c; }
.col-cold { background: rgba(96,165,250,0.15); color: #60a5fa; }
.kanban-card-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px;
  padding: 9px;
  margin-bottom: 7px;
  font-size: 11px;
}
.kanban-card-item .kc-name { font-weight: 700; color: #f1f5f9; margin-bottom: 3px; }
.kanban-card-item .kc-meta { color: #64748b; font-size: 10px; line-height: 1.5; }
.kanban-score {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 4px;
  margin-top: 5px;
}
.score-hot  { background: rgba(239,68,68,0.2);  color: #f87171; }
.score-warm { background: rgba(251,146,60,0.2);  color: #fb923c; }
.score-cold { background: rgba(96,165,250,0.2); color: #60a5fa; }
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  animation: pulse-live 1.6s ease-in-out infinite;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ─── WhatsApp Mock ─── */
.wa-mock {
  background: #0d1f13;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.wa-header {
  background: #0a1a10;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.wa-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #10b981;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.wa-name   { font-size: 12px; font-weight: 700; color: #f1f5f9; }
.wa-status { font-size: 10px; color: #22c55e; }
.wa-body   { padding: 12px; display: flex; flex-direction: column; gap: 7px; }
.wa-msg {
  max-width: 88%;
  padding: 7px 10px;
  border-radius: 9px;
  font-size: 11px;
  line-height: 1.5;
}
.wa-msg.ai   { background: rgba(255,255,255,0.06); color: #94a3b8; align-self: flex-start; border-radius: 3px 9px 9px 9px; }
.wa-msg.user { background: rgba(16,185,129,0.18);  color: #a7f3d0; align-self: flex-end;  border-radius: 9px 3px 9px 9px; }

/* ─── Pipeline Steps ─── */
.pipeline-steps { display: flex; flex-direction: column; }
.pipeline-step  { display: flex; gap: 16px; padding-bottom: 28px; }
.pipeline-step:last-child { padding-bottom: 0; }
.pipeline-step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.pipeline-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  position: relative; z-index: 1;
}
html.dark-mode .pipeline-step-num {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.3);
}
.pipeline-step-line {
  width: 1px; flex: 1;
  background: var(--border);
  margin-top: 6px;
}
.pipeline-step:last-child .pipeline-step-line { display: none; }
.pipeline-step-content { padding-top: 6px; }
.pipeline-step-content h3 {
  font-size: 15px; font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}
.pipeline-step-content p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── Methodology Grid ─── */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.method-step {
  background: var(--bg-surface);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border);
}
.method-step:last-child { border-right: none; }
.method-step-bg {
  position: absolute;
  top: -10px; left: -8px;
  font-size: 100px; font-weight: 900;
  color: rgba(61,90,144,0.04);
  line-height: 1;
  pointer-events: none; user-select: none;
}
html.dark-mode .method-step-bg { color: rgba(255,255,255,0.025); }
.method-step-icon {
  width: 40px; height: 40px;
  background: rgba(61,90,144,0.08);
  border: 1px solid rgba(61,90,144,0.15);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
html.dark-mode .method-step-icon { background: rgba(112,148,200,0.1); border-color: rgba(112,148,200,0.2); }
.method-step-icon svg { width: 18px; height: 18px; color: var(--accent); }
.method-step h3 {
  font-size: 17px; font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.method-step p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ─── Stats Row ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat-cell {
  background: var(--bg-surface);
  padding: 32px 20px;
  text-align: center;
}
.stat-val {
  font-size: clamp(28px, 3.5vw, 38px); font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* ─── Pillar Cards ─── */
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s, border-color 0.22s;
}
.pillar-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-hover); }
.pillar-num {
  font-size: 64px; font-weight: 900; line-height: 1;
  color: rgba(37,99,235,0.04);
  position: absolute; top: 14px; right: 22px;
  letter-spacing: -0.05em; pointer-events: none;
}
html.dark-mode .pillar-num { color: rgba(255,255,255,0.03); }
.pillar-card h3 {
  font-size: 19px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}
.pillar-points { display: flex; flex-direction: column; gap: 14px; }
.pillar-point  { display: flex; gap: 12px; align-items: flex-start; }
.pp-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
html.dark-mode .pp-icon { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.2); }
.pp-icon svg { width: 11px; height: 11px; color: var(--accent); }
.pp-text h4 { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.pp-text p  { font-size: 12px; color: var(--text-muted); line-height: 1.55; }

/* ─── Onboarding Steps ─── */
.onboarding-steps { display: flex; flex-direction: column; gap: 20px; }
.ob-step { display: flex; gap: 16px; align-items: flex-start; }
.ob-num {
  font-size: 12px; font-weight: 800;
  color: var(--accent);
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 7px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: 0.04em;
}
html.dark-mode .ob-num { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.2); }
.ob-content h3 {
  font-size: 15px; font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.ob-content p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.ob-content ul { margin-top: 8px; display: flex; flex-direction: column; gap: 4px; }
.ob-content ul li {
  font-size: 12px; color: var(--text-muted);
  display: flex; gap: 7px; align-items: flex-start;
}
.ob-content ul li::before { content: '→'; color: var(--accent); flex-shrink: 0; font-weight: 700; }

/* ─── Leader Card ─── */
.leader-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
}
.leader-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.leader-photo {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; object-position: top center;
  filter: grayscale(100%);
  transition: filter 0.4s;
}
.leader-card:hover .leader-photo { filter: grayscale(40%); }
.leader-info { padding: 24px; }
.leader-name  { font-size: 18px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; margin-bottom: 3px; }
.leader-title { font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.leader-bio   { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ─── Contact Form ─── */
.form-group    { display: flex; flex-direction: column; gap: 5px; }
.form-label    { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: var(--bg-surface);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-subtle); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  cursor: pointer;
}
html.dark-mode .form-input,
html.dark-mode .form-select,
html.dark-mode .form-textarea {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
html.dark-mode .form-input:focus,
html.dark-mode .form-select:focus,
html.dark-mode .form-textarea:focus {
  background: rgba(255,255,255,0.06);
  border-color: var(--accent);
}
.form-select option { background: var(--bg-card); color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 15px; font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer; border: none; font-family: inherit;
}
.form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ─── Contact Info Panel ─── */
.contact-info-item {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
html.dark-mode .ci-icon { background: rgba(255,255,255,0.06); }
.ci-icon svg { width: 16px; height: 16px; }
.ci-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-subtle); margin-bottom: 2px; }
.ci-value { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.ci-value a { transition: color 0.18s; }
.ci-value a:hover { color: var(--accent); }

/* ─── Action Button ─── */
.action-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  width: 100%; text-align: left;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
}
.action-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(37,99,235,0.04); }
html.dark-mode .action-btn:hover { background: rgba(59,130,246,0.06); }
.action-btn-icon {
  width: 32px; height: 32px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ─── Form Success ─── */
.form-success { display: none; text-align: center; padding: 36px 20px; }
.form-success.show { display: block; }
.form-success-icon {
  width: 56px; height: 56px;
  background: rgba(37,99,235,0.08);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success-icon svg { width: 24px; height: 24px; color: var(--accent); }
.form-success h3 { font-size: 20px; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.form-success p  { font-size: 14px; color: var(--text-muted); }

/* ─── Legal Modal ─── */
.legal-modal {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  padding: 20px; overflow-y: auto;
}
.legal-modal.open { display: flex; align-items: center; justify-content: center; }
.legal-modal-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 640px; width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.legal-close {
  position: absolute; top: 14px; right: 18px;
  font-size: 22px; color: var(--text-subtle);
  cursor: pointer; line-height: 1; transition: color 0.18s;
}
.legal-close:hover { color: var(--text-primary); }
.legal-modal-box h2 { font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
.legal-modal-box p, .legal-modal-box li { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.legal-modal-box h3 { font-size: 14px; font-weight: 700; color: var(--text-primary); margin: 16px 0 6px; }
.legal-modal-box ul { padding-left: 18px; list-style: disc; }

/* ─── Map ─── */
.map-container {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.map-svg { width: 100%; height: auto; }
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
}
.map-pin-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--accent);
  position: relative; z-index: 2;
  animation: ping-dot 2.2s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes ping-dot {
  0%   { box-shadow: 0 0 0 0 rgba(37,99,235,0.7), 0 0 12px rgba(37,99,235,0.6); }
  70%  { box-shadow: 0 0 0 18px rgba(37,99,235,0), 0 0 12px rgba(37,99,235,0.6); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0), 0 0 12px rgba(37,99,235,0.6); }
}
.map-pin-label {
  position: absolute;
  bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 100px;
  white-space: nowrap;
}
.map-pin-label::after {
  content: '';
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--accent);
}

/* ─── Footer ─── */
.site-footer {
  background: var(--navy);
  padding: 56px 0 28px;
}
html.dark-mode .site-footer { background: #04060a; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
html.dark-mode .footer-grid { border-bottom-color: var(--border); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 12px; max-width: 260px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.18s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.18s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-logo-text { font-size: 17px; font-weight: 900; letter-spacing: -0.03em; color: #fff; }
.footer-logo-text span { color: #8ab0d8; }

/* ─── Anchor Offset for Sticky Nav ─── */
/* Ensures #id links land below the 68px fixed nav */
[id] { scroll-margin-top: 88px; }

/* ─── Form Error State ─── */
.form-error {
  display: none;
  padding: 11px 14px;
  background: rgba(220,38,38,0.05);
  border: 1px solid rgba(220,38,38,0.18);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: #dc2626;
  margin-bottom: 16px;
  line-height: 1.5;
}
.form-error.show { display: block; }

/* ─── Leader Card Extras ─── */
.leader-background {
  font-size: 11px;
  color: var(--text-subtle);
  font-weight: 500;
  margin-top: 1px;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

/* ─── Company Registration Card ─── */
.company-reg-card {
  margin-top: 20px;
  padding: 16px 22px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
  align-items: center;
}
.company-reg-card .creg-name {
  font-size: 13px; font-weight: 700;
  color: var(--text-primary);
  width: 100%;
  margin-bottom: 2px;
}
.company-reg-card .creg-detail {
  font-size: 11px; color: var(--text-subtle); font-weight: 500;
  display: flex; align-items: center; gap: 5px;
}

/* ─── "What Happens Next" Timeline ─── */
.what-next-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.what-next-step {
  padding: 28px 20px;
  text-align: center;
  background: var(--bg-surface);
  border-right: 1px solid var(--border);
  position: relative;
}
.what-next-step:last-child { border-right: none; }
.wn-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(61,90,144,0.08);
  border: 1px solid rgba(61,90,144,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--accent);
  margin: 0 auto 12px;
}
.wn-title {
  font-size: 14px; font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.wn-desc {
  font-size: 12px; color: var(--text-muted); line-height: 1.6;
}
.wn-time {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(61,90,144,0.07);
  border: 1px solid rgba(61,90,144,0.12);
  padding: 2px 8px; border-radius: 100px;
}

/* ─── Scroll Reveal ─── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal       { transform: translateY(22px); }
.reveal-left  { transform: translateX(-22px); }
.reveal-right { transform: translateX(22px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.26s; }
.delay-4 { transition-delay: 0.34s; }
.delay-5 { transition-delay: 0.42s; }

/* ─── Hero Background ─── */
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
html.dark-mode .hero-grid-bg {
  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);
}
.hero-gradient {
  position: absolute; pointer-events: none;
  border-radius: 50%; filter: blur(80px);
}

/* ─── Tablet: 768px – 1024px ─── */
@media (max-width: 1024px) {
  .service-block {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0;
  }
  .service-block.reverse .service-text { order: 1; }
  .service-block.reverse .service-visual { order: 2; }
  /* Methodology: collapse to 1-col with horizontal borders */
  .methodology-grid { grid-template-columns: 1fr; }
  .method-step { border-right: none; border-bottom: 1px solid var(--border); }
  .method-step:last-child { border-bottom: none; }
  /* What-next: 2-col on tablet */
  .what-next-timeline { grid-template-columns: repeat(2, 1fr); }
  .what-next-step { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .what-next-step:nth-child(2n) { border-right: none; }
  .what-next-step:nth-last-child(-n+2) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  /* Collapse all .grid-2col on tablet too */
  .grid-2col { grid-template-columns: 1fr !important; gap: 36px !important; }
  .grid-3col { grid-template-columns: 1fr !important; }
}

/* ─── Mobile: ≤ 768px ─── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .theme-toggle { display: flex; }

  /* Sections */
  .section    { padding: 56px 0; }
  .section-sm { padding: 36px 0; }
  .section-lg { padding: 72px 0; }

  /* Inner-page hero padding — reduce for mobile */
  section[style*="padding:88px"] { padding-top: 56px !important; padding-bottom: 44px !important; }
  section[style*="padding: 88px"] { padding-top: 56px !important; padding-bottom: 44px !important; }

  /* Hero padding */
  .hero-section { padding: 72px 0 52px !important; }

  /* Grids collapse */
  .bento-grid           { grid-template-columns: 1fr; }
  .methodology-grid     { grid-template-columns: 1fr; }
  .method-step          { border-right: none; border-bottom: 1px solid var(--border); }
  .method-step:last-child { border-bottom: none; }
  .stats-row            { grid-template-columns: repeat(2, 1fr); }
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* What-next: 1-col on mobile */
  .what-next-timeline   { grid-template-columns: 1fr; }
  .what-next-step       { border-right: none; border-bottom: 1px solid var(--border); }
  .what-next-step:last-child { border-bottom: none; }

  /* Grids collapse */
  .bento-grid           { grid-template-columns: 1fr; }
  .methodology-grid     { grid-template-columns: 1fr; }
  .stats-row            { grid-template-columns: repeat(2, 1fr); }
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Utility grid helpers (catch both inline and class-based) */
  .grid-2col            { grid-template-columns: 1fr !important; gap: 28px !important; }
  .grid-3col            { grid-template-columns: 1fr !important; gap: 14px !important; }

  /* Catch any remaining inline-style two-column grids */
  [style*="grid-template-columns:1fr 1fr"]        { display: block !important; }
  [style*="grid-template-columns: 1fr 1fr"]       { display: block !important; }
  [style*="grid-template-columns:1fr 1.4fr"]      { display: block !important; }
  [style*="grid-template-columns:1fr 1.5fr"]      { display: block !important; }
  [style*="grid-template-columns:repeat(3,1fr)"]  { display: block !important; }
  [style*="grid-template-columns: repeat(3,1fr)"] { display: block !important; }

  /* Inline gap resets for block-displayed grids */
  [style*="grid-template-columns:1fr 1fr"] > *,
  [style*="grid-template-columns: 1fr 1fr"] > * { margin-bottom: 24px; }
  [style*="grid-template-columns:1fr 1fr"] > *:last-child,
  [style*="grid-template-columns: 1fr 1fr"] > *:last-child { margin-bottom: 0; }

  /* CTA strip */
  .cta-strip            { padding: 36px 20px; }
  .cta-strip h2         { font-size: 22px; }
  .cta-strip p          { font-size: 14px; }

  /* Footer */
  .footer-bottom        { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Service visual card */
  .service-visual-card  { padding: 14px; }

  /* Kanban — scroll horizontally, never bleed */
  .kanban-mock          { max-width: 100%; border-radius: 12px; }
  .kanban-body          { padding: 10px; }
  .kanban-col           { flex: 0 0 140px; }

  /* WhatsApp overlay */
  .wa-overlay-mobile-hide { display: none !important; }

  /* Leader cards */
  .leader-photo         { aspect-ratio: 4/3; }

  /* Pillar grid */
  .pillar-grid-2col     { grid-template-columns: 1fr !important; }

  /* Revenue OS named grids */
  .ros-hero-grid        { grid-template-columns: 1fr !important; }
  .ros-problem-grid     { grid-template-columns: 1fr !important; }

  /* Contact split */
  .contact-wrapper      { grid-template-columns: 1fr !important; }
  .contact-info-panel   { position: static !important; }
  .form-row-2col        { grid-template-columns: 1fr !important; }

  /* Prevent absolute-positioned hero orbs from bleeding */
  section[style*="overflow:hidden"],
  section[style*="overflow: hidden"] { overflow: hidden !important; }

  /* Ensure inline-style flex rows wrap */
  [style*="display:flex"]     { flex-wrap: wrap; }
  [style*="display: flex"]    { flex-wrap: wrap; }
}

/* ─── Mobile: ≤ 480px ─── */
@media (max-width: 480px) {
  .container            { padding: 0 14px; }
  .stats-row            { grid-template-columns: 1fr 1fr; }
  .stat-val             { font-size: 28px; }
  .cta-strip            { padding: 28px 16px; }
  .trust-sep            { display: none; }
  .trust-strip-items    { gap: 8px 16px; }
  .trust-item           { font-size: 12px; }
  .kanban-col           { flex: 0 0 120px; }
  .pillar-card          { padding: 20px; }
  .method-step          { padding: 24px 18px; }
  .bento-card           { padding: 20px; }
  .footer-brand p       { max-width: 100%; }
  .footer-grid          { grid-template-columns: 1fr; gap: 20px; }
  .hero-section         { padding: 60px 0 44px !important; }
  .section-title        { font-size: clamp(24px, 7vw, 34px); }
  .section-subtitle     { font-size: 14px; }
  .btn-lg               { padding: 12px 20px; font-size: 14px; }
  .cta-strip .btn-white,
  .cta-strip .btn-outline-white { width: 100%; justify-content: center; }
  /* Stop flex button rows from overflowing */
  [style*="display:flex"][style*="gap:12px"]    { gap: 10px !important; }
  [style*="display: flex"][style*="gap: 12px"]  { gap: 10px !important; }
}
