
:root {
  --ink: #0a0a0a;
  --ink-80: #1a1a1a;
  --ink-60: #2d2d2d;
  --mid: #555;
  --muted: #888;
  --muted2: #aaa;
  --line: #e0e0e0;
  --line-soft: #f0f0f0;
  --bg: #fafafa;
  --bg2: #f4f4f4;
  --white: #ffffff;
  --accent: #3b6fd4;
  --accent-light: #5a8ae6;
  --accent-dim: rgba(59,111,212,0.11);
  --accent-dimmer: rgba(59,111,212,0.05);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08), 0 12px 48px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10), 0 24px 80px rgba(0,0,0,0.06);
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --r: 12px;
  --r-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--line);
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 3px;
  user-select: none;
  text-decoration: none;
}

.nav-brand-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nav-brand-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--muted2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mid);
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
  display: block;
  letter-spacing: -0.01em;
}

.nav-links a:hover { color: var(--ink); background: var(--bg2); }
.nav-links a.active { color: var(--ink); }

.nav-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--ink-60) !important; color: var(--white) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
  border-radius: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--line);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  padding: 13px 16px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  letter-spacing: -0.01em;
}
.mobile-nav a:hover { background: var(--bg2); }
.mobile-nav .mobile-cta {
  background: var(--ink);
  color: var(--white) !important;
  margin-top: 12px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}
.mobile-nav-divider {
  height: 1px;
  background: var(--line);
  margin: 8px 0;
}
.mobile-nav-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  margin-top: 8px;
}

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after {
  content: '';
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4.5px solid var(--muted);
  transition: transform 0.18s;
  margin-left: 1px;
  flex-shrink: 0;
}

.dropdown-menu::before{content:"";position:absolute;top:-16px;left:0;right:0;height:16px;}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s, transform 0.16s, visibility 0.16s;
  z-index: 200;
  pointer-events: none;
}

.dropdown-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px 4px;
}
.dropdown-item {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s;
  text-decoration: none;
}
.dropdown-item:hover { background: var(--bg2); }
.dropdown-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 1px;
  letter-spacing: -0.01em;
}
.dropdown-item span { font-size: 11.5px; color: var(--muted2); }
.dropdown-divider { height: 1px; background: var(--line); margin: 6px 0; }

/* PAGES */
.page { display: block; }
.page { display: block; animation: pageIn 0.3s ease both; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SECTIONS */
.section { padding: 96px 52px; }
.section-inner { max-width: 1060px; margin: 0 auto; }
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 3.6vw, 46px);
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 700;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  max-width: min(560px, 100%);
  font-weight: 400;
}

/* BUTTONS */
.btn-dark {
  background: var(--ink);
  color: var(--white);
  padding: 13px 26px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.btn-dark:hover { background: var(--ink-60); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 13px 26px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--ink); background: var(--bg2); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.btn-accent:hover { background: #2a5ab8; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(59,111,212,0.28); }

/* MOUNTAIN SVG */
.mountain-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 55%;
  pointer-events: none;
  opacity: 0.06;
}

/* HERO */
.hero-section {
  position: relative;
  background: var(--white);
  overflow: hidden;
  min-height: calc(100svh - 64px);
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 80px 52px;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-accent-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,111,212,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow::before { content: none; }

.hero h1 {
  font-size: clamp(42px, 5.5vw, 70px);
  color: var(--ink);
  margin-bottom: 28px;
  font-weight: 700;
  line-height: 1.02;
}

.hero h1 .accent {
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}

.hero-lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: min(520px, 100%);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.hero-footnote {
  font-size: 13px;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-footnote::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* PROFILE CARD */
.profile-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--accent), rgba(59,111,212,0.10));
}

.profile-img-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--line);
  margin-bottom: 18px;
  background: var(--bg2);
}
.profile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
}

.profile-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.profile-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.profile-bio {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.profile-stat { text-align: center; }
.profile-stat-num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  letter-spacing: -0.03em;
}
.profile-stat-lbl {
  font-size: 10.5px;
  color: var(--muted2);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* MOUNTAIN (inline SVG in hero) */
.hero-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
}

/* MARQUEE */
.credibility-bar {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  overflow: clip;
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 35s linear infinite;
  width: max-content;
  align-items: center;
}
.marquee-item {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.marquee-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.service-tile {
  background: var(--white);
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.service-tile:nth-child(3n) { border-right: none; }
.service-tile:nth-last-child(-n+3) { border-bottom: none; }
.service-tile:hover { background: var(--ink); }
.service-tile:hover .tile-title { color: var(--white); }
.service-tile:hover .tile-body { color: rgba(255,255,255,0.5); }
.service-tile:hover .tile-icon { color: var(--accent); }

.tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--ink-60);
  transition: all 0.25s;
}
.tile-icon svg { display: block; }
.service-tile:hover .tile-icon { background: rgba(59,111,212,0.14); border-color: rgba(59,111,212,0.22); }

.tile-title {
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  transition: color 0.25s;
  letter-spacing: -0.02em;
}
.tile-body {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  transition: color 0.25s;
}

/* APPROACH STEPS */
.steps-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
  margin-top: 52px;
}
.steps-sticky { position: sticky; top: 80px; }
.steps-blurb { font-size: 15px; color: var(--muted); line-height: 1.8; margin-top: 14px; }
.steps-list { display: flex; flex-direction: column; gap: 4px; }
.step-row {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  transition: all 0.22s;
  cursor: default;
}
.step-row:hover { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); transform: translateX(3px); }
.step-num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  opacity: 0.6;
}
.step-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 5px; letter-spacing: -0.02em; }
.step-desc { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* QUOTE CARDS */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.quote-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: all 0.22s;
}
.quote-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(59,111,212,0.18); }
.quote-stars { color: var(--accent); font-size: 11px; letter-spacing: 3px; margin-bottom: 14px; }
.quote-text { font-size: 14.5px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 20px; font-style: normal; }
.quote-author { font-size: 12.5px; color: rgba(255,255,255,0.35); font-weight: 500; }
.quote-author strong { color: rgba(255,255,255,0.65); display: block; font-size: 13px; margin-bottom: 2px; font-style: normal; }

/* REPORT BAND */
.report-band {
  background: var(--ink);
  border-top: 1.5px solid var(--accent);
  padding: 28px 52px;
}
.report-band-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.report-band-eye {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.report-band-eye::before { content: none; }
.report-band h3 { font-family: var(--font-head); font-size: 21px; font-weight: 700; color: var(--white); margin-bottom: 4px; letter-spacing: -0.03em; }
.report-band p { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: min(480px, 100%); }

/* CTA BAND */
.cta-band {
  background: var(--ink);
  padding: 88px 52px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,111,212,0.07), transparent 70%);
  pointer-events: none;
}
.cta-inner { max-width: min(680px, 100%); margin: 0 auto; position: relative; }
.cta-inner h2 { color: var(--white); font-size: clamp(26px, 3.5vw, 42px); margin-bottom: 14px; }
.cta-inner p { font-size: 17px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 34px; }

/* ABOUT LAYOUT */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 52px;
}
.about-img-frame {
  width: 100%;
  padding-bottom: 110%;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg2);
}
.about-img-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 14%;
}
.about-img-block { position: relative; }
.about-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}
.about-accent .big {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  display: block;
}
.about-accent .sm {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-top: 1px;
}

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.check-item { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--mid); line-height: 1.65; }
.check-mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1.5px solid rgba(59,111,212,0.22);
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ICP GRID */
.icp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.icp-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--line);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.icp-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.icp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(59,111,212,0.18); }
.icp-card:hover::after { transform: scaleX(1); }
.icp-lbl { font-size: 10px; font-weight: 600; color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.icp-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 9px; letter-spacing: -0.02em; }
.icp-body { font-size: 13.5px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.icp-signal {
  font-size: 12px;
  color: var(--mid);
  font-style: normal;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.icp-signal::before { content: '\201C'; }
.icp-signal::after { content: '\201D'; }

/* SOLUTIONS */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.solution-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1px solid var(--line);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s;
}
.solution-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(59,111,212,0.14); }
.solution-card:hover::before { transform: scaleX(1); }
.sol-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.02em; }
.sol-body { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.sol-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.sol-list li {
  font-size: 13px;
  color: var(--ink-60);
  display: flex;
  align-items: center;
  gap: 9px;
}
.sol-list li::before { content: '→'; color: var(--accent); font-weight: 700; font-size: 11px; flex-shrink: 0; }

/* SMB CARDS */
.smb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.smb-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--line);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.smb-card:hover { border-color: rgba(59,111,212,0.18); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.smb-card-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.02em; }
.smb-card-body { font-size: 13.5px; color: var(--muted); line-height: 1.75; flex: 1; }
.smb-tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 5px;
  padding: 4px 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: flex-start;
}

/* FORMS */
.form-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 44px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.form-title { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 6px; letter-spacing: -0.03em; }
.form-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.7; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-60);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.18s, background 0.18s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.submit-btn {
  background: var(--ink);
  color: var(--white);
  padding: 14px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  display: block;
  width: 100%;
  margin-top: 6px;
  letter-spacing: -0.01em;
}
.submit-btn:hover { background: var(--ink-60); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* CONTACT LAYOUT */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  margin-top: 52px;
}
.contact-intro { font-size: 15px; color: var(--muted); line-height: 1.8; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: center;
}
.contact-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  color: var(--mid);
}
.contact-lbl { font-size: 10.5px; font-weight: 600; color: var(--muted2); text-transform: uppercase; letter-spacing: 0.09em; }
.contact-val { font-size: 14px; color: var(--ink); font-weight: 500; }
.contact-val a { color: var(--ink); text-decoration: none; }
.contact-val a:hover { color: var(--accent); }
.contact-aside {
  padding: 22px 24px;
  background: var(--ink);
  border-radius: var(--r);
  color: var(--white);
}
.contact-aside strong {
  color: var(--accent);
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-aside p { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* REFER */
.refer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 52px;
}
.refer-signals { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.refer-signal {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: all 0.2s;
}
.refer-signal:hover { border-color: var(--accent); transform: translateX(3px); }
.refer-signal-arrow { color: var(--accent); font-size: 12px; flex-shrink: 0; margin-top: 1px; font-weight: 700; }

/* REPORT GATE */
.report-gate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  margin-top: 52px;
}
.report-preview-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.report-preview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(59,111,212,0.10));
}
.report-chapter {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.report-chapter:last-child { border-bottom: none; }
.report-chapter-num {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 26px;
}
.report-chapter-title { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.report-chapter-sub { font-size: 12px; color: var(--muted); }

/* AI PIPELINE VISUAL */
.ai-pipeline {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
}
.pipeline-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 7px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  transition: all 0.18s;
}
.pipeline-row:hover { background: rgba(59,111,212,0.09); border-color: rgba(59,111,212,0.16); }
.pipeline-row:last-child { margin-bottom: 0; }
.pipeline-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.pipeline-label { flex: 1; }
.pipeline-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(200,147,42,0.12);
  border-radius: 4px;
  padding: 3px 7px;
  letter-spacing: 0.06em;
}

/* PAGE HERO DARK */
.page-hero {
  background: var(--ink);
  padding: 80px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(59,111,212,0.07), transparent 55%);
}
.page-hero h1 { color: var(--white); font-size: clamp(32px, 4.5vw, 54px); margin-bottom: 18px; position: relative; font-style: normal; }
.page-hero .hero-sub { color: rgba(255,255,255,0.5); font-size: 17px; max-width: min(600px, 100%); margin: 0 auto; line-height: 1.8; position: relative; }
.page-hero .section-label { position: relative; }

/* SMB HERO */
.smb-hero {
  background: var(--bg2);
  padding: 80px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.smb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,147,42,0.05), transparent 50%);
}
.smb-hero h1 { color: var(--ink); font-size: clamp(32px, 4.5vw, 52px); margin-bottom: 18px; position: relative; }
.smb-hero p { color: var(--muted); font-size: 17px; max-width: min(580px, 100%); margin: 0 auto; line-height: 1.8; position: relative; }

/* APPROACH PAGE */
.approach-page-step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.approach-page-step:last-child { border-bottom: none; }
.approach-big-num {
  font-family: var(--font-head);
  font-size: 62px;
  font-weight: 700;
  color: var(--line);
  line-height: 1;
  letter-spacing: -0.04em;
}
.approach-step-title { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.03em; }
.approach-step-body { font-size: 15px; color: var(--muted); line-height: 1.85; }

/* FOOTER */
footer {
  background: var(--ink);
  padding: 64px 52px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  max-width: 1060px;
  margin: 0 auto 48px;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  letter-spacing: -0.03em;
}
.footer-brand-sub {
  font-size: 10.5px;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-brand-bio {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-email a {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-email a:hover { color: var(--accent-light); }
.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: color 0.15s;
  text-decoration: none;
  display: block;
  letter-spacing: -0.01em;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  max-width: 1060px;
  margin: 0 auto;
}

/* DIAGNOSTIC */
#diagScorePanel {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 26px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  nav { padding: 0 22px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-section { padding: 56px 22px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-inner > :last-child { display: none; }
  .section { padding: 64px 22px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-tile { border-right: 1px solid var(--line) !important; border-bottom: 1px solid var(--line) !important; }
  .service-tile:nth-child(2n) { border-right: none !important; }
  .service-tile:nth-last-child(-n+2) { border-bottom: none !important; }
  .solutions-grid, .smb-grid { grid-template-columns: 1fr; }
  .about-layout, .refer-layout, .contact-layout, .steps-wrap { grid-template-columns: 1fr; gap: 36px; }
  .steps-sticky { position: static !important; }
  .quote-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .report-band { padding: 22px; }
  .report-band-inner { flex-direction: column; gap: 18px; }
  .icp-grid { grid-template-columns: 1fr 1fr; }
  .report-gate-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero, .smb-hero, .cta-band { padding: 60px 22px; }
  #diagScorePanel { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  nav { padding: 0 16px; }
  .hero-section { padding: 48px 16px; }
  .section { padding: 52px 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-tile { border-right: none !important; }
  .service-tile:nth-last-child(n) { border-bottom: 1px solid var(--line) !important; }
  .service-tile:last-child { border-bottom: none !important; }
  .icp-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .approach-page-step { grid-template-columns: 1fr; gap: 8px; }
  .approach-big-num { font-size: 44px; }
  .about-accent { position: static; margin-top: 14px; display: inline-block; }
  .footer-grid { padding: 0; }
  footer { padding: 52px 16px 28px; }
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ── TYPING HEADLINE ── */
.hero-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── PROBLEM FINDER WIDGET ── */
.prob-finder {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  margin-top: 32px;
  max-width: min(520px, 100%);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.prob-finder:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.prob-finder-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.prob-finder-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.prob-finder-prefix {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.prob-finder-select {
  flex: 1;
  min-width: 0;
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  cursor: pointer;
  transition: border-color 0.15s;
  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='%23888' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}
.prob-finder-select:focus { border-color: var(--accent); }
.prob-finder-result {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: 9px;
  border-left: 3px solid var(--accent);
  animation: slideDown 0.25s ease both;
}
@keyframes slideDown { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }
.prob-finder-result.show { display: block; }
.prob-finder-result-text {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 10px;
}
.prob-finder-result-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
}
.prob-finder-result-link:hover { text-decoration: none; }

/* ── ENHANCED CARD HOVERS ── */
.service-tile, .solution-card, .smb-card, .icp-card, .quote-card, .step-row {
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
.icp-card:hover, .smb-card:hover, .solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
}
.quote-card:hover {
  transform: translateY(-2px);
}

/* ── STAT COUNTERS ── */
.stat-num {
  font-variant-numeric: tabular-nums;
}

/* ── TOOL TRUST BAR ── */
.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: clip;
}
.trust-track {
  display: flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
  width: max-content;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: 0.04em;
  opacity: 0.7;
}
.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── PAGE TRANSITION ── */
.page.active {
  animation: pageIn 0.35s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BUTTON PRESS FEEL ── */
.btn-accent:active, .btn-dark:active, .btn-ghost:active {
  transform: translateY(1px) scale(0.99);
}

/* ── NAV ACTIVE INDICATOR ── */
.nav-links a.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 2px;
  animation: slideIn 0.2s ease;
}
@keyframes slideIn { from{transform:scaleX(0)} to{transform:scaleX(1)} }


/* ── ELECTRIC BLUE INITIAL LETTERS on brand name ── */
.nav-brand-name .il {
  color: #3b8bff;
  font-weight: 700;
}
.footer-brand-name .il {
  color: #3b8bff;
  font-weight: 700;
}

/* ── MOBILE FIRST FULL OVERHAUL ── */
@media (max-width: 1024px) {
  nav { padding: 0 20px; height: 60px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav { top: 60px; }
  .hero-section { padding: 48px 20px 64px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr !important; }
  .hero-inner > :last-child { display: none !important; }
  .hero h1 { font-size: clamp(34px, 6vw, 52px); }
  .hero-lead { font-size: 15px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a, .hero-actions button { width: 100%; text-align: center; justify-content: center; }
  .prob-finder { max-width: 100%; }
  .prob-finder-row { flex-direction: column; align-items: stretch; }
  .prob-finder-prefix { white-space: normal; }
  .prob-finder-select { width: 100%; }
  .section { padding: 60px 20px; }
  .section-inner { max-width: 100%; }
  .section-title { font-size: clamp(24px, 4vw, 38px); }
  .services-grid { grid-template-columns: 1fr 1fr !important; }
  .service-tile { border-right: 1px solid var(--line) !important; border-bottom: 1px solid var(--line) !important; padding: 24px 18px !important; }
  .service-tile:nth-child(2n) { border-right: none !important; }
  .service-tile:nth-last-child(-n+2) { border-bottom: none !important; }
  .steps-wrap { grid-template-columns: 1fr !important; gap: 32px; }
  .steps-sticky { position: static !important; }
  .quote-grid { grid-template-columns: 1fr !important; }
  .about-layout { grid-template-columns: 1fr !important; gap: 32px; }
  .about-img-frame { padding-bottom: 75% !important; }
  .about-accent { position: static !important; margin-top: 12px; display: inline-block; }
  .solutions-grid { grid-template-columns: 1fr !important; }
  .smb-grid { grid-template-columns: 1fr 1fr !important; }
  .icp-grid { grid-template-columns: 1fr 1fr !important; }
  .contact-layout { grid-template-columns: 1fr !important; gap: 32px; }
  .refer-layout { grid-template-columns: 1fr !important; gap: 32px; }
  .report-gate-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .report-band { padding: 20px; }
  .report-band-inner { flex-direction: column !important; gap: 16px; }
  .report-band-inner > a, .report-band-inner > button { width: 100%; justify-content: center; }
  .cta-band { padding: 60px 20px; }
  .page-hero { padding: 60px 20px; }
  .smb-hero { padding: 60px 20px; }
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="gap:60px"] { gap: 32px !important; }
  [style*="gap: 60px"] { gap: 32px !important; }
}

@media (max-width: 640px) {
  nav { padding: 0 14px; height: 56px; }
  .mobile-nav { top: 56px; padding: 14px; }
  .mobile-nav a { font-size: 15px; padding: 12px 14px; }
  .hero-section { padding: 40px 14px 56px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); line-height: 1.08; }
  .hero-lead { font-size: 14.5px; margin-bottom: 28px; }
  .hero-eyebrow { font-size: 10px; margin-bottom: 18px; }
  .section { padding: 48px 14px; }
  .section-title { font-size: clamp(22px, 5.5vw, 32px); }
  .section-sub { font-size: 15px; }
  .services-grid { grid-template-columns: 1fr !important; }
  .service-tile { border-right: none !important; padding: 22px 16px !important; }
  .service-tile:nth-last-child(n) { border-bottom: 1px solid var(--line) !important; }
  .service-tile:last-child { border-bottom: none !important; }
  .smb-grid { grid-template-columns: 1fr !important; }
  .icp-grid { grid-template-columns: 1fr !important; }
  .form-wrap { padding: 20px 14px; }
  .form-row { grid-template-columns: 1fr !important; }
  .approach-page-step { grid-template-columns: 1fr !important; gap: 6px; }
  .approach-big-num { font-size: 38px; }
  .cta-band { padding: 52px 14px; }
  .cta-inner h2 { font-size: clamp(22px, 5vw, 32px); }
  .cta-inner p { font-size: 15px; }
  .page-hero { padding: 48px 14px; }
  .page-hero h1 { font-size: clamp(26px, 6.5vw, 38px); }
  .page-hero .hero-sub { font-size: 15px; }
  .smb-hero { padding: 48px 14px; }
  .smb-hero h1 { font-size: clamp(26px, 6.5vw, 36px); }
  footer { padding: 48px 14px 24px; }
  .footer-grid { gap: 22px; }
  .profile-card { padding: 22px 16px; }
  .solution-card { padding: 22px 16px; }
  .smb-card { padding: 20px 16px; }
  .icp-card { padding: 20px 16px; }
  .quote-card { padding: 20px 16px; }
  .step-row { padding: 16px 14px; grid-template-columns: 36px 1fr !important; }
  .step-num { font-size: 18px; }
  .btn-dark, .btn-ghost, .btn-accent { padding: 12px 18px; font-size: 13.5px; }
  .nav-brand-name { font-size: 13px; }
  .nav-brand-sub { font-size: 9px; letter-spacing: 0.08em; }
  /* quiz/scorecard mobile */
  .qr-bar-row { grid-template-columns: 90px 1fr 36px !important; gap: 6px !important; }
  .qr-bar-lbl { font-size: 10.5px; }
  .sc-results-header, .quiz-result-top { grid-template-columns: 1fr 1fr !important; padding: 18px 14px !important; }
  .sc-kpi-val, .qr-kpi-val { font-size: 28px; }
  .quiz-q { font-size: 16px; }
  .quiz-card { padding: 20px 14px; }
  .quiz-opts { flex-direction: column; }
  .quiz-opt { width: 100%; }
  .sc-next-step, .qr-cta { flex-direction: column !important; gap: 14px !important; }
  .sc-next-step button, .qr-cta button, .sc-next-step a, .qr-cta a { width: 100% !important; justify-content: center !important; }
}

@media (max-width: 380px) {
  nav { padding: 0 10px; }
  .hero h1 { font-size: 26px; }
  .section { padding: 40px 10px; }
}

/* ── DWD MONOGRAM LOGO ── */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}
.nav-logo-mark {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 1px;
}
.nl-d {
  color: var(--ink);
}
.nl-w {
  color: var(--ink);
}
.nl-sep {
  color: #3b8bff;
  font-size: 18px;
  line-height: 1;
  margin: 0 1px;
  font-weight: 400;
}
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
@media (max-width: 480px) {
  .nav-logo-name { display: none; }
  .nav-logo-mark { font-size: 18px; }
}

/* ── OVERFLOW PREVENTION ── */
*, *::before, *::after { max-width: 100%; }
img, svg, video { max-width: 100%; height: auto; }
html { overflow-x: clip; }
.section-inner { overflow-x: clip; }
.hero-section { overflow-x: clip; }
.prob-finder { box-sizing: border-box; width: 100%; }
.prob-finder-row { flex-wrap: wrap; }
.prob-finder-select { min-width: 0; width: 100%; box-sizing: border-box; }
.trust-track, .marquee-track { max-width: none; }
table { max-width: 100%; overflow-x: auto; display: block; }

/* ── STRONGER MOBILE GRID COLLAPSE ── */
@media (max-width: 768px) {
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  [style*="display:grid"], [style*="display: grid"] {
    grid-template-columns: 1fr !important;
  }
  .smb-note {
    grid-template-columns: 1fr !important;
    padding: 28px 18px !important;
  }
  .sc-results-header {
    grid-template-columns: 1fr 1fr !important;
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
  }
  .hero-inner > *:last-child {
    display: none !important;
  }
  .about-layout,
  .refer-layout,
  .contact-layout,
  .steps-wrap,
  .solutions-grid,
  .quote-grid,
  .report-gate-grid {
    grid-template-columns: 1fr !important;
  }
  .icp-grid,
  .smb-grid {
    grid-template-columns: 1fr !important;
  }
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}
.skip-nav{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}.skip-nav:focus{position:fixed;top:12px;left:12px;z-index:9999;padding:8px 16px;background:var(--ink,#0a0a0a);color:#fff;border-radius:8px;font-size:14px;font-weight:600;text-decoration:none;width:auto;height:auto;overflow:visible}a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{outline:2px solid var(--accent,#3b6fd4);outline-offset:2px}