:root {
  --ink: #111318;
  --ink-2: #1b2230;
  --muted: #657080;
  --line: #dfe5ec;
  --soft: #f5f7fa;
  --paper: #ffffff;
  --lime: #b7f34b;
  --cyan: #17b6b0;
  --blue: #2364e8;
  --red: #d94b3d;
  --gold: #c28a16;
  --radius: 8px;
  --shadow: 0 28px 70px rgba(17, 19, 24, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
svg { max-width: 100%; }
h1, h2, h3, p, a, button, input, textarea, select, li { overflow-wrap: break-word; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 19, 24, .08);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand b { display: block; line-height: 1; font-size: 18px; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; }
.brand-invert small { color: #8d98a8; }
.mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,0) 42%),
    radial-gradient(circle at 72% 22%, var(--lime), transparent 30%),
    linear-gradient(135deg, var(--blue) 0%, var(--cyan) 48%, #121926 49%, #f0b429 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.52), 0 12px 30px rgba(23,182,176,.24);
  position: relative;
}
.mark::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255,255,255,.78);
  transform: rotate(-28deg);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #344052;
  font-size: 14px;
  font-weight: 650;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.nav-links > a { padding: 8px 0; border-bottom: 2px solid transparent; }
.nav-links > a:hover { color: var(--blue); border-color: var(--blue); }
.nav-dropdown {
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  cursor: pointer;
}
.nav-dropdown-trigger:hover {
  color: var(--blue);
  border-color: var(--blue);
}
.nav-dropdown-trigger span {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}
.nav-dropdown.open .nav-dropdown-trigger span {
  transform: translateY(2px) rotate(225deg);
}
.nav-dropdown-toggle {
  width: auto;
  height: auto;
}
.nav-dropdown-toggle::before {
  content: "";
  display: none;
}
.mega-menu {
  position: fixed;
  top: 74px;
  left: 50%;
  z-index: 30;
  width: min(1120px, calc(100vw - 32px));
  padding: 22px;
  border: 1px solid rgba(223,229,236,.9);
  border-radius: var(--radius);
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.nav-dropdown.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega-menu-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.mega-menu-head h3 {
  margin: 6px 0 0;
  font-size: 28px;
}
.mega-menu-head a {
  color: var(--blue);
  font-weight: 850;
  white-space: nowrap;
  border: 0;
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
}
.mega-menu-grid h4 {
  margin: 0 0 12px;
  font-size: 15px;
}
.mega-menu-grid a {
  display: block;
  padding: 7px 0;
  color: #435064;
  font-size: 14px;
  font-weight: 650;
  border-bottom: 1px solid rgba(223,229,236,.72);
}
.mega-menu-grid a:hover { color: var(--blue); }
.burger {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform .18s ease, opacity .18s ease;
}
.burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}
.nav-cta { background: var(--ink); color: #fff; }
.btn.primary { background: var(--lime); color: #111318; border-color: var(--lime); }
.btn.secondary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 14px 32px rgba(17,19,24,.14);
}
.btn.secondary:hover {
  transform: translateY(-1px);
  background: var(--ink-2);
}
.btn.ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }
.btn.light { background: #fff; color: var(--ink); border-color: rgba(255,255,255,.72); }
.btn.wide { width: 100%; }

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(23,182,176,.16), transparent 28%),
    radial-gradient(circle at 20% 84%, rgba(183,243,75,.1), transparent 24%),
    linear-gradient(135deg, #080b11 0%, #101720 52%, #141b26 100%);
  color: #fff;
}
#heroScene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .68;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 470px;
  gap: 48px;
  align-items: center;
  padding: 74px 0 88px;
}
.hero-grid > *,
.split-head > *,
.content-grid > *,
.contact-grid > *,
.cta-box > *,
.conversion-box > *,
.funnel-panel > *,
.visual-grid > *,
.footer-grid > * {
  min-width: 0;
}
.signal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #cfe8e6;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255,255,255,.06);
}
.signal span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(183,243,75,.12);
}
h1, h2, h3 { margin: 0; line-height: 1.06; letter-spacing: 0; }
h1 { margin-top: 22px; font-size: clamp(44px, 6.2vw, 86px); max-width: 820px; }
h2 { font-size: clamp(31px, 4.2vw, 56px); }
h3 { font-size: 21px; }
p { margin: 0; color: var(--muted); }
.hero-copy p {
  max-width: 720px;
  margin-top: 24px;
  color: #d9e1ec;
  font-size: clamp(18px, 2vw, 22px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-console {
  background: rgba(8, 12, 20, .72);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.console-head {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: #c8d3e0;
  font-size: 13px;
}
.console-head span { width: 10px; height: 10px; border-radius: 50%; background: #e45b50; }
.console-head span:nth-child(2) { background: #e4b94f; }
.console-head span:nth-child(3) { background: #55c56a; margin-right: 8px; }
.console-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.08);
}
.console-grid div {
  background: rgba(255,255,255,.055);
  padding: 22px;
}
.console-grid small { display: block; color: #9aa8b8; text-transform: uppercase; font-size: 11px; font-weight: 800; }
.console-grid strong { display: block; margin: 7px 0 14px; font-size: 34px; line-height: 1; }
.console-grid i { display: block; height: 8px; border-radius: 99px; background: linear-gradient(90deg, var(--lime), var(--cyan)); }
.console-feed { list-style: none; padding: 18px; margin: 0; display: grid; gap: 12px; }
.console-feed li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  color: #dce5ef;
  font-size: 14px;
}
.console-feed span { color: var(--lime); font-weight: 900; }

.section { padding: 86px 0; }
.section.muted, .trust-strip { background: var(--soft); }
.section.dark { background: #101722; color: #fff; }
.section.dark p { color: #b9c5d4; }
.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}
.split-head p { font-size: 18px; }
.section-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.strip-grid div { background: #fff; padding: 24px; }
.strip-grid strong { display: block; font-size: 28px; }
.strip-grid span { color: var(--muted); font-size: 14px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.featured-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.all-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.service-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(183,243,75,.18), transparent 34%),
    linear-gradient(180deg, rgba(245,247,250,.82), rgba(255,255,255,0) 52%),
    #fff;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.featured-service-grid .service-card {
  min-height: 390px;
  padding: 28px;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--lime));
  opacity: 0;
  transition: opacity .2s ease;
}
.service-card:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(17,19,24,.085); border-color: rgba(35,100,232,.35); }
.service-card:hover::after { opacity: 1; }
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.service-card-top b {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--lime);
  font-size: 15px;
}
.featured-service-grid .service-card-top b {
  width: 52px;
  height: 52px;
  background: var(--lime);
  color: var(--ink);
  font-size: 18px;
}
.service-card span {
  width: fit-content;
  max-width: 100%;
  padding: 6px 9px;
  border: 1px solid rgba(35,100,232,.18);
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.service-card h3 { margin-top: 26px; font-size: 28px; }
.featured-service-grid .service-card h3 { font-size: clamp(30px, 3vw, 40px); }
.service-card p { margin-top: 14px; font-size: 17px; }
.service-card ul { margin: auto 0 0; padding: 24px 0 0; list-style: none; display: grid; gap: 10px; border-top: 1px solid var(--line); }
.service-card li { color: #435064; font-size: 15px; padding-left: 18px; position: relative; }
.service-card li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); position: absolute; left: 0; top: .7em; }
.service-card em {
  margin-top: 22px;
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}
.section-actions {
  display: grid;
  place-items: center;
  margin-top: 32px;
}
.section-actions-inner {
  width: min(100%, 620px);
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.section-actions-inner .btn {
  min-width: 0;
  flex: 1 1 0;
  justify-content: center;
}

.service-directory-section {
  background: linear-gradient(180deg, #fff, var(--soft));
}
.service-directory {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #fff;
}
.service-directory article {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
}
.service-directory article:last-child { border-right: 0; }
.service-directory h3 {
  margin: 0 0 18px;
  font-size: 17px;
}
.service-directory a {
  display: block;
  padding: 9px 0;
  color: #435064;
  font-size: 15px;
  border-bottom: 1px solid rgba(223,229,236,.72);
}
.service-directory a:last-child { border-bottom: 0; }
.service-directory a:hover { color: var(--blue); }

.proof-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 46px;
  align-items: start;
}
.proof-grid > div:first-child p { margin-top: 18px; font-size: 18px; }
.proof-list { display: grid; gap: 14px; }
.proof-list article {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  border-radius: var(--radius);
  padding: 22px;
}
.proof-list h3 { color: #fff; }
.proof-list p { margin-top: 8px; }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.timeline article { background: #fff; padding: 22px; min-height: 280px; }
.timeline span { display: block; color: var(--blue); font-size: 13px; font-weight: 950; margin-bottom: 22px; }
.timeline p { margin-top: 12px; font-size: 15px; }

.keyword-grid, .price-grid, .case-grid, .blog-grid, .tile-grid, .industry-grid, .related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.keyword-grid article,
.tile-grid article,
.industry-grid article,
.price-card,
.case-card,
.blog-card,
.related-grid a,
.contact-card,
.side-panel,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(17,19,24,.045);
}
.keyword-grid p, .price-card p, .case-card p { margin-top: 12px; }
.tile-grid p,
.industry-grid p,
.related-grid p { margin-top: 12px; }
.tile-grid article,
.industry-grid article,
.related-grid a { min-height: 190px; }
.tile-grid article h3,
.industry-grid article h3,
.related-grid a h3 { font-size: 22px; }

.growth-map {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.growth-map article {
  position: relative;
  min-height: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 12%, rgba(183,243,75,.22), transparent 34%),
    linear-gradient(180deg, rgba(35,100,232,.06), transparent),
    #fff;
  box-shadow: 0 10px 28px rgba(17,19,24,.05);
  overflow: hidden;
}
.growth-map article::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 4px;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--lime));
}
.growth-map span,
.mini-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-weight: 950;
  margin-bottom: 18px;
}
.growth-map p,
.mini-steps p { margin-top: 12px; }
.growth-map p {
  color: #4d596b;
  font-size: 15px;
  line-height: 1.45;
}
.growth-map h3 { font-size: 24px; }
.compact-growth-section { padding-top: 70px; }
.compact-head { margin-bottom: 24px; }

.visual-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 360px;
  gap: 16px;
}
.chart-card,
.matrix-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(17,19,24,.045);
}
.chart-card svg { width: 100%; height: auto; margin-top: 14px; }
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}
.legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.matrix-card {
  display: grid;
  align-content: start;
  gap: 12px;
}
.matrix-row {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.matrix-row span { color: var(--muted); font-size: 14px; }

.mini-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.mini-steps article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  min-height: 250px;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px 20px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 850;
  color: var(--ink);
}
.faq-list p {
  margin-top: 12px;
  max-width: 860px;
}
.blog-card span {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}
.blog-card h3 { margin-top: 16px; }
.blog-card p { margin-top: 12px; }
.side-panel a { color: inherit; }
.cta-section { padding-top: 0; }
.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(35,100,232,.08), rgba(23,182,176,.08)),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.conversion-band {
  padding: 28px 0 0;
  background: linear-gradient(180deg, #fff, #f6f9fc);
}
.conversion-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(183,243,75,.2), transparent 32%),
    radial-gradient(circle at 82% 20%, rgba(23,182,176,.28), transparent 30%),
    #101722;
  box-shadow: var(--shadow);
}
.conversion-box h2 { font-size: clamp(28px, 3.2vw, 44px); }
.conversion-box p { margin-top: 12px; color: #c8d3e0; font-size: 17px; max-width: 720px; }
.conversion-actions { display: grid; gap: 10px; }

.funnel-section { padding: 42px 0 0; }
.funnel-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 26px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(35,100,232,.08), rgba(183,243,75,.12)),
    #fff;
  box-shadow: var(--shadow);
}
.funnel-panel p { margin-top: 14px; font-size: 18px; }
.funnel-options {
  display: grid;
  gap: 10px;
}
.funnel-options a {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.76);
}
.funnel-options a:hover { border-color: rgba(35,100,232,.45); }
.funnel-options b { color: var(--ink); }
.funnel-options span { color: var(--muted); font-size: 14px; }

.offer-ladder-section {
  background:
    linear-gradient(180deg, #fff 0%, #f5f7fa 100%);
}
.offer-ladder {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}
.offer-ladder article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #fff;
}
.offer-ladder span {
  color: var(--blue);
  font-weight: 950;
  margin-bottom: 20px;
}
.offer-ladder p { margin-top: 12px; }
.offer-ladder a,
.offer-ladder button {
  margin-top: auto;
  min-height: 42px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.blog-lead-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(17,19,24,.045);
}
.blog-lead-panel p { margin-top: 12px; font-size: 17px; }

.page-hero {
  padding: 66px 0 46px;
  background:
    linear-gradient(180deg, #f6f9fc 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.breadcrumbs { margin-bottom: 22px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { color: var(--blue); }
.page-hero h1 { max-width: 980px; font-size: clamp(40px, 5.3vw, 72px); }
.page-hero p { max-width: 760px; margin-top: 20px; font-size: 20px; color: #465366; }
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}
.article {
  max-width: 820px;
}
.article .intent {
  border-left: 4px solid var(--lime);
  padding: 16px 18px;
  background: #f5ffe3;
  color: #33410f;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 34px;
}
.article h2 { font-size: 34px; margin: 38px 0 14px; }
.article h2:first-child { margin-top: 0; }
.article p { font-size: 18px; color: #3e4a5a; }
.blog-read-section {
  background:
    linear-gradient(90deg, rgba(35,100,232,.04), transparent 18%, transparent 82%, rgba(23,182,176,.04)),
    #fff;
}
.blog-article {
  max-width: 860px;
}
.read-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.read-meta span,
.article-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: #264d9d;
  font-size: 12px;
  font-weight: 850;
}
.article-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 34px;
}
.article-block {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.article-block:first-of-type { border-top: 0; padding-top: 0; }
.article-block p + p { margin-top: 16px; }
.article-list,
.takeaways ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.article-list li,
.takeaways li {
  position: relative;
  padding-left: 24px;
  color: #3e4a5a;
  font-size: 17px;
}
.article-list li::before,
.takeaways li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
}
.article-callout {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  background: #edf4ff;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #233a66;
  font-weight: 750;
}
.takeaways {
  margin-top: 32px;
  padding: 26px;
  border-radius: var(--radius);
  background: #101722;
  color: #fff;
}
.takeaways h2 { color: #fff; margin: 0 0 16px; }
.takeaways li { color: #dce5ef; }
.side-panel {
  position: sticky;
  top: 98px;
}
.side-panel h3 { margin-bottom: 14px; }
.side-panel ul,
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}
.side-panel li,
.price-card li {
  color: #435064;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.side-panel li a:hover { color: var(--blue); }
.price-card span,
.case-card span {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}
.price-card h2 { margin-top: 14px; font-size: 38px; }
.price-card p { margin-bottom: 20px; }
.case-card strong { display: block; margin-top: 18px; font-size: 56px; line-height: 1; }
.case-card h3 { margin-top: 8px; }

.cases-preview-section {
  background: linear-gradient(180deg, #fff, var(--soft));
}
.home-case-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
  gap: 16px;
  align-items: stretch;
}
.home-case-feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(17,19,24,.08);
}
.home-case-dark {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 34px;
  background: var(--ink);
}
.home-case-dark h3 {
  margin-top: 26px;
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
}
.home-case-dark p {
  margin-top: 20px;
  color: #c6d0dd;
  font-size: 18px;
}
.home-case-dark .case-study-result {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.home-case-detail {
  padding: 34px;
}
.home-case-detail h4 {
  margin: 0 0 16px;
  font-size: 24px;
}
.home-case-detail ul {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.home-case-detail li {
  position: relative;
  padding-left: 22px;
  color: #435064;
  font-size: 17px;
}
.home-case-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--cyan);
}
.home-case-detail p {
  margin-top: 12px;
  font-size: 17px;
}
.home-case-detail blockquote {
  margin: 22px 0 0;
  padding: 20px 22px;
  border-left: 4px solid var(--lime);
  background: var(--soft);
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}
.home-case-side {
  display: grid;
  gap: 16px;
}
.home-case-side .case-highlight-card {
  min-height: 0;
}
.case-highlight-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(35,100,232,.08), rgba(23,182,176,.05) 42%, rgba(183,243,75,.12)),
    #fff;
  box-shadow: 0 16px 40px rgba(17,19,24,.07);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.case-highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(35,100,232,.35);
  box-shadow: 0 22px 52px rgba(17,19,24,.1);
}
.case-highlight-card span,
.case-study-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.case-highlight-card strong {
  margin-top: 26px;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 78px);
  line-height: .9;
}
.case-highlight-card h3 {
  margin-top: 12px;
  font-size: 22px;
}
.case-highlight-card p {
  margin-top: 16px;
}
.case-highlight-card small {
  margin-top: auto;
  color: var(--muted);
  font-weight: 800;
}
.case-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.case-strip-grid div {
  padding: 24px;
  background: #fff;
}
.case-strip-grid strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}
.case-strip-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}
.case-study-list {
  display: grid;
  gap: 18px;
}
.case-study {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(17,19,24,.055);
}
.case-study-main {
  padding: 30px;
  background: var(--ink);
}
.case-study-main h3 {
  margin-top: 22px;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
}
.case-study-main p {
  margin-top: 16px;
  color: #b6c1cf;
}
.case-study-kicker span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border-radius: var(--radius);
  background: var(--lime);
  color: var(--ink);
}
.home-case-dark .case-study-kicker {
  color: var(--blue);
  font-size: 15px;
}
.home-case-dark .case-study-kicker span {
  width: 54px;
  height: 54px;
  font-size: 18px;
}
.case-study-result {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.case-study-result strong {
  color: var(--lime);
  font-size: 56px;
  line-height: 1;
}
.case-study-result span {
  color: #fff;
  font-weight: 850;
}
.case-study-result small {
  color: #8d98a8;
}
.case-study-detail {
  padding: 30px;
}
.case-study-detail h4 {
  margin: 0 0 14px;
  font-size: 18px;
}
.case-study-detail ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.case-study-detail li {
  position: relative;
  padding-left: 18px;
  color: #435064;
}
.case-study-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--cyan);
}
.case-study-detail blockquote {
  margin: 18px 0 24px;
  padding: 18px;
  border-left: 4px solid var(--lime);
  background: var(--soft);
  color: var(--ink);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}
.contact-card p { margin-top: 12px; }
.lead-form { display: grid; gap: 12px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
input, textarea, select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
}
textarea { min-height: 120px; resize: vertical; }
.check { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 13px; }
.check input { width: 16px; min-height: 16px; margin-top: 3px; }
.check a { color: var(--blue); }
.legal-note > p:first-child {
  padding: 16px;
  border-radius: var(--radius);
  background: #fff8df;
  color: #5e4610;
}

.footer {
  background: #0c111a;
  color: #fff;
  padding: 48px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 30px;
}
.footer p { color: #99a6b7; margin-top: 16px; max-width: 360px; }
.footer h3 { font-size: 15px; margin-bottom: 14px; }
.footer a:not(.brand) { display: block; color: #b6c1cf; margin: 8px 0; font-size: 14px; }
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display: none;
}
.cookie.show { display: block; }
.cookie-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.cookie-inner p { font-size: 14px; }
.cookie-inner a { color: var(--blue); }
.cookie-inner button {
  min-width: 78px;
  min-height: 40px;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal.show { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 20, .72);
  backdrop-filter: blur(8px);
}
.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: var(--radius);
  background: #fff;
  padding: 30px;
  box-shadow: var(--shadow);
}
.modal-dialog h2 { font-size: clamp(30px, 4vw, 48px); }
.modal-dialog > p { margin: 12px 0 22px; font-size: 17px; }
.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.modal-form {
  padding: 0;
  border: 0;
  box-shadow: none;
}
.form-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: #435064;
  font-size: 14px;
  font-weight: 750;
}
.form-status.success {
  border-color: rgba(23,182,176,.34);
  background: rgba(23,182,176,.09);
  color: #0d5d58;
}
.form-status.error {
  border-color: rgba(202,71,71,.32);
  background: #fff1f1;
  color: #8a2424;
}
body.modal-open { overflow: hidden; }
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.floating-actions > * { pointer-events: auto; }
.float-discuss {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .18s ease, background .18s ease;
}
.float-discuss:hover { background: var(--ink-2); transform: translateY(-1px); }
.float-discuss:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.float-discuss-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(183,243,75,.22);
}
.back-top {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease;
}
.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie.show ~ .floating-actions { bottom: 92px; }
.modal-dialog-compact {
  width: min(440px, 100%);
  padding: 26px;
}
.modal-dialog-compact h2 { font-size: clamp(22px, 3vw, 28px); }
.modal-dialog-compact > p { margin: 10px 0 18px; font-size: 15px; }

@media (max-width: 1080px) {
  .hero-grid, .split-head, .proof-grid, .cta-box, .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .conversion-box, .visual-grid, .funnel-panel, .blog-lead-panel { grid-template-columns: 1fr; }
  .hero-console { max-width: 620px; }
  .home-case-showcase,
  .home-case-feature,
  .case-strip-grid,
  .case-study { grid-template-columns: 1fr; }
  .home-case-dark { min-height: 420px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-service-grid,
  .all-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-directory article { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-directory article:nth-last-child(-n+1) { border-bottom: 0; }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .growth-map, .mini-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-ladder { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .strip-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .side-panel { position: static; }
}
@media (max-width: 900px) {
  .container { width: min(100% - 24px, 1180px); }
  .nav {
    min-height: 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 12px;
    padding: 10px 0;
  }
  .brand b { font-size: 16px; }
  .brand small { font-size: 11px; }
  .burger { display: inline-flex; }
  .nav-menu {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    margin-left: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 18px 42px rgba(17,19,24,.12);
  }
  .nav-menu.open {
    display: grid;
    gap: 12px;
  }
  .nav-links {
    display: grid;
    gap: 2px;
    width: 100%;
  }
  .nav-links > a,
  .nav-dropdown-trigger {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border: 0;
    border-radius: var(--radius);
    background: var(--soft);
  }
  .nav-links > a:hover,
  .nav-dropdown-trigger:hover { border: 0; background: #eaf1ff; }
  .nav-dropdown {
    display: grid;
    grid-template-columns: 1fr;
  }
  .mega-menu {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    padding: 16px;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }
  .nav-dropdown.open .mega-menu { display: none; }
  .mega-menu-head {
    display: grid;
    gap: 8px;
    align-items: start;
  }
  .mega-menu-head h3 { font-size: 22px; }
  .mega-menu-head a { white-space: normal; }
  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .nav-cta { width: 100%; min-height: 44px; }
  .hero { min-height: auto; }
  .hero-grid { padding: 48px 0 62px; gap: 28px; }
  h1 { font-size: clamp(34px, 10vw, 44px); }
  h2 { font-size: clamp(28px, 8vw, 38px); }
  h3 { font-size: 20px; }
  .page-hero { padding: 44px 0 34px; }
  .page-hero h1 { font-size: clamp(33px, 9vw, 46px); }
  .page-hero p,
  .hero-copy p,
  .split-head p,
  .article p { font-size: 16px; }
  .signal {
    display: inline-flex;
    max-width: 100%;
    white-space: normal;
  }
  .hero-actions .btn { width: 100%; }
  .service-grid, .featured-service-grid, .all-service-grid, .service-directory, .timeline, .keyword-grid, .price-grid, .case-grid, .home-case-showcase, .home-case-feature, .case-strip-grid, .blog-grid, .tile-grid, .industry-grid, .related-grid, .growth-map, .mini-steps, .offer-ladder, .strip-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .console-grid { grid-template-columns: 1fr 1fr; }
  .hero-console,
  .console-grid strong,
  .case-card strong { max-width: 100%; }
  .console-grid div { padding: 18px; }
  .console-grid strong { font-size: 28px; }
  .service-card,
  .service-directory article,
  .home-case-dark,
  .case-highlight-card,
  .timeline article,
  .growth-map article,
  .offer-ladder article,
  .tile-grid article,
  .industry-grid article,
  .related-grid a { min-height: auto; }
  .conversion-box,
  .funnel-panel,
  .blog-lead-panel,
  .cta-box { padding: 20px; }
  .cta-box { padding: 22px; }
  .funnel-panel, .blog-lead-panel { padding: 22px; }
  .visual-grid { gap: 12px; }
  .chart-card,
  .matrix-card,
  .side-panel,
  .lead-form,
  .contact-card { padding: 20px; }
  input, textarea, select { min-width: 0; }
  .modal-dialog { padding: 22px; }
  .modal { padding: 10px; align-items: flex-start; }
  .modal-dialog {
    max-height: none;
    margin: 10px 0 22px;
  }
  .cookie-inner { display: grid; }
  .section-actions-inner {
    display: grid;
    width: 100%;
    gap: 10px;
  }
  .section-actions-inner .btn { width: 100%; }
  .home-case-dark {
    min-height: 360px;
    padding: 24px;
  }
  .home-case-dark h3 { font-size: clamp(32px, 10vw, 46px); }
  .home-case-detail { padding: 24px; }
  .home-case-detail li,
  .home-case-detail p { font-size: 16px; }
  .case-highlight-card {
    padding: 22px;
    min-height: 260px;
  }
  .case-highlight-card strong { font-size: clamp(46px, 15vw, 68px); }
  .case-study-main,
  .case-study-detail { padding: 24px; }
  .floating-actions { right: 12px; bottom: 12px; gap: 8px; }
  .cookie.show ~ .floating-actions { bottom: 136px; }
  .float-discuss { padding: 10px 14px; font-size: 14px; }
  .float-discuss-label { display: inline; }
  .modal-dialog-compact { padding: 22px; }
}

@media (max-width: 420px) {
  .container { width: min(100% - 20px, 1180px); }
  .mark { width: 34px; height: 34px; }
  .brand { gap: 9px; }
  .console-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 36px; }
  .section { padding: 46px 0; }
  .conversion-box,
  .funnel-panel,
  .blog-lead-panel,
  .cta-box,
  .modal-dialog { padding: 18px; }
  .home-case-dark { min-height: 320px; }
  .case-study-result strong { font-size: 46px; }
  .read-meta span,
  .article-summary span { max-width: 100%; }
}
