:root {
  --blue: #075fff;
  --blue-dark: #0046dc;
  --cyan: #11b7ff;
  --teal: #11c7a6;
  --ink: #080d24;
  --muted: #536074;
  --line: #dce5f4;
  --soft: #f4f8ff;
  --green: #17c964;
  --shadow: 0 28px 82px rgba(9, 42, 91, .16);
  --shadow-soft: 0 18px 48px rgba(9, 42, 91, .095);
  --shadow-lift: 0 30px 72px rgba(7, 35, 82, .18), 0 10px 24px rgba(7,95,255,.11);
  --shadow-glow: 0 0 0 1px rgba(7,95,255,.16), 0 34px 88px rgba(7,95,255,.18);
  --surface: rgba(255,255,255,.94);
  --surface-strong: rgba(255,255,255,.98);
  --surface-blue: #f7fbff;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, rgba(17,183,255,.1), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f7fbff 45%, #fff 100%);
  line-height: 1.55;
}
body.modal-open {
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  transform: translateY(-150%);
  transition: transform .18s ease;
}
.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  min-height: 78px;
  margin: 0;
  padding: 0 clamp(16px, 2.4vw, 38px);
  border-bottom: 1px solid rgba(220, 229, 244, .68);
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82)),
    rgba(255,255,255,.9);
  backdrop-filter: blur(18px) saturate(1.08);
  box-shadow: 0 10px 34px rgba(9, 42, 91, .055);
  transition: transform .26s ease, box-shadow .24s ease, background .24s ease;
}
.site-header.header-hidden {
  transform: translateY(-112%);
  box-shadow: none;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  font-weight: 900;
  letter-spacing: 0;
  font-size: clamp(27px, 2.6vw, 35px);
  line-height: 1;
  position: relative;
}
.brand-mark { color: #1385ee; font-style: italic; }
.brand-text { color: #45484e; margin-left: 2px; }
.main-nav {
  margin-left: clamp(18px, 2.4vw, 36px);
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.15;
  flex: 0 1 auto;
}
.main-nav a, .nav-group { padding: 10px 12px; }
.main-nav a {
  position: relative;
  isolation: isolate;
  white-space: nowrap;
  flex: 0 0 auto;
  border: 1px solid transparent;
  border-radius: 11px;
  color: #253247;
  transition: color .18s ease, transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.main-nav a:hover {
  color: var(--blue-dark);
  transform: translateY(-1px);
  border-color: rgba(7,95,255,.12);
  background: rgba(247,251,255,.82);
  box-shadow: 0 10px 22px rgba(9,42,91,.045);
}
.main-nav a.active {
  color: var(--blue-dark);
  border-color: rgba(7,95,255,.16);
  background:
    linear-gradient(180deg, rgba(232,242,255,.96), rgba(255,255,255,.92));
  box-shadow: 0 10px 24px rgba(7,95,255,.08), inset 0 1px 0 rgba(255,255,255,.92);
}
.main-nav a.active::after {
  display: none;
}
.main-nav a:not(.active)::after {
  display: none;
}
.main-nav a:not(.active):hover::after {
  display: none;
}
.nav-group { display: inline-flex; gap: 7px; align-items: center; }
.header-cta {
  margin-left: auto;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 12px 28px rgba(7,95,255,.24);
  white-space: nowrap;
  flex: 0 0 auto;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.header-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.32), transparent 52%);
  opacity: .75;
  pointer-events: none;
  z-index: -1;
}
.header-cta::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transform: skewX(-18deg);
  transition: left .42s ease;
  pointer-events: none;
  z-index: 1;
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(7,95,255,.34), 0 0 0 4px rgba(7,95,255,.08);
  filter: saturate(1.08);
}
.header-cta:hover::after {
  left: 118%;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(214, 225, 242, .95);
  border-radius: 13px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 24px rgba(9, 42, 91, .07);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 9px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav-cta {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, .85fr) minmax(500px, 1.15fr);
  gap: clamp(30px, 4vw, 64px);
  margin: 24px clamp(18px, 3vw, 42px) 32px;
  padding: clamp(38px, 5vw, 72px) clamp(38px, 5vw, 72px) clamp(22px, 2.4vw, 34px);
  border: 1px solid rgba(220, 229, 244, .82);
  border-radius: 26px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.94), rgba(246,250,255,.86)),
    radial-gradient(circle at 76% 42%, rgba(7,95,255,.13), transparent 36%);
  box-shadow: 0 24px 70px rgba(9, 42, 91, .11), inset 0 1px 0 rgba(255,255,255,.82);
  overflow: hidden;
}
.hero > * {
  min-width: 0;
}
.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: 4vw;
  top: 28px;
  background: linear-gradient(135deg, #eaf3ff, #f6fbff);
  border-radius: 50%;
  z-index: -1;
}
.eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 10px;
  letter-spacing: 0;
  font-size: 13px;
}
.centered { text-align: center; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(42px, 4.7vw, 70px);
  line-height: 1.04;
  margin-bottom: 20px;
  max-width: 720px;
}
h1 span, h2 span { color: var(--blue); }
.hero-text {
  max-width: 610px;
  color: #1a2435;
  font-size: 17px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 11px;
  border: 2px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
}
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,.72) inset;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease, gap .22s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,.24), transparent 52%),
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.22), transparent 32%);
  opacity: .72;
  pointer-events: none;
  z-index: -1;
  transition: opacity .22s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: auto 16px 7px;
  height: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity .22s ease, transform .22s ease;
}
.btn-primary { background: linear-gradient(135deg, #0a67ff 0%, #0049df 58%, #003dbd 100%); color: white; box-shadow: 0 14px 32px rgba(7,95,255,.24), inset 0 1px 0 rgba(255,255,255,.22); }
.btn-primary, .btn-green { transition: transform .22s ease, box-shadow .22s ease, background .22s ease, gap .22s ease; }
.btn:hover {
  gap: 20px;
  transform: translateY(-3px) scale(1.01);
}
.btn:hover::after {
  opacity: .96;
}
.btn:hover::before {
  opacity: .75;
  transform: scaleX(.92);
}
.btn:active {
  transform: translateY(-1px) scale(.99);
  box-shadow: 0 8px 20px rgba(9, 42, 91, .12), inset 0 2px 6px rgba(2, 31, 87, .12);
}
.btn:focus-visible,
.header-cta:focus-visible,
.main-nav a:focus-visible {
  outline: 3px solid rgba(17,183,255,.42);
  outline-offset: 3px;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1180ff 0%, #075fff 52%, #003ec4 100%);
  box-shadow: 0 22px 48px rgba(7,95,255,.34), 0 0 0 4px rgba(7,95,255,.08), inset 0 1px 0 rgba(255,255,255,.26);
}
.btn-green:hover {
  background: linear-gradient(135deg, #ffffff 0%, #eef6ff 58%, #dfeeff 100%);
  box-shadow: 0 20px 44px rgba(7,95,255,.22), 0 0 0 4px rgba(7,95,255,.08), inset 0 1px 0 rgba(255,255,255,.82);
}
.btn-outline { border-color: rgba(7,95,255,.32); color: var(--ink); background: rgba(255,255,255,.82); box-shadow: 0 10px 24px rgba(9, 42, 91, .06); }
.btn-outline:hover {
  color: var(--blue-dark);
  border-color: rgba(7,95,255,.62);
  background: linear-gradient(180deg, #fff, #f2f7ff);
  box-shadow: 0 18px 38px rgba(9, 42, 91, .12), 0 0 0 4px rgba(7,95,255,.06);
}
.reference-contact,
.mobile-nav-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.reference-contact::after,
.mobile-nav-cta::after {
  content: "";
  position: absolute;
  inset: -55% auto -55% -80%;
  width: 52%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  opacity: 0;
  pointer-events: none;
  transform: skewX(-18deg);
  transition: left .42s ease, opacity .2s ease;
}
.reference-contact:hover::after,
.mobile-nav-cta:hover::after {
  left: 118%;
  opacity: 1;
}
.btn-green {
  background: linear-gradient(135deg, #ffffff 0%, #eaf3ff 100%);
  color: var(--blue-dark);
  width: auto;
  min-width: 320px;
  border: 2px solid rgba(255, 255, 255, .92);
  box-shadow: 0 14px 30px rgba(2, 31, 87, .25), inset 0 0 0 1px rgba(7, 95, 255, .12);
}
.btn-green::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(7, 95, 255, .14);
}
.trust {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  max-width: 100%;
}
.trust p {
  color: #687386;
  text-transform: uppercase;
  font-size: clamp(10px, .78vw, 12px);
  font-weight: 800;
  margin: 0;
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 18px);
  flex-wrap: nowrap;
  min-width: 0;
  color: #1c2334;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 800;
  white-space: nowrap;
}
.trust-logos span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.trust-logos span:nth-child(4), .trust-logos span:nth-child(5) { font-size: clamp(11px, .92vw, 13px); font-weight: 900; text-transform: uppercase; }

.proof-strip {
  margin: 0 clamp(18px, 3vw, 42px) 28px;
  padding: clamp(18px, 2.2vw, 26px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid rgba(220, 229, 244, .9);
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-soft);
}
.proof-strip article {
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  border: 1px solid var(--line);
}
.proof-strip b {
  display: block;
  color: var(--blue);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}
.proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
  min-width: 0;
  overflow-wrap: anywhere;
}
.offer-focus {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 22px;
}
.offer-focus-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  max-width: 100%;
  text-align: center;
}
.offer-focus-copy h2 {
  max-width: 100%;
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.08;
}
.offer-focus-copy p:not(.eyebrow) {
  max-width: 900px;
}
.offer-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.offer-choice-grid a {
  position: relative;
  min-height: 168px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border: 1px solid rgba(214, 225, 242, .96);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: 0 16px 42px rgba(9, 42, 91, .08);
  color: inherit;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.offer-choice-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 12%, rgba(7,95,255,.14), transparent 34%);
  opacity: 0;
  transition: opacity .22s ease;
}
.offer-choice-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(7,95,255,.28);
  box-shadow: 0 24px 56px rgba(9, 42, 91, .13);
}
.offer-choice-grid a:hover::before {
  opacity: 1;
}
.offer-choice-grid span,
.offer-choice-grid strong,
.offer-choice-grid em {
  position: relative;
}
.offer-choice-grid span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(7,95,255,.1);
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}
.offer-choice-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
}
.offer-choice-grid em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
}
.offer-mini-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(214, 225, 242, .92);
  border-radius: 16px;
  background: rgba(214, 225, 242, .92);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(9,42,91,.06);
}
.offer-mini-flow span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: rgba(255,255,255,.94);
  color: #263244;
  font-size: 13px;
  font-weight: 900;
}
.homepage-proof-wall {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(7,95,255,.1), transparent 32%),
    radial-gradient(circle at 92% 10%, rgba(20,201,168,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,251,255,.96));
}
.proof-wall-head {
  max-width: 100%;
  margin-bottom: 22px;
}
.proof-wall-head h2 {
  max-width: 100%;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.04;
}
.proof-wall-head p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
}
.proof-wall-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.proof-case-card {
  position: relative;
  min-height: 286px;
  display: grid;
  align-content: end;
  padding: 22px;
  border: 1px solid rgba(214, 225, 242, .94);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(8,13,36,.12), rgba(8,13,36,.88)),
    radial-gradient(circle at 82% 12%, rgba(17,183,255,.52), transparent 30%),
    linear-gradient(135deg, #075fff, #080d24);
  color: #fff;
  box-shadow: 0 22px 58px rgba(9, 42, 91, .16);
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.proof-case-card::before {
  content: "";
  position: absolute;
  inset: 16px 16px auto auto;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  transform: rotate(8deg);
}
.proof-case-card > i[data-icon] {
  position: absolute;
  inset: 31px 31px auto auto;
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,.92);
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.18));
  z-index: 1;
}
.proof-case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(17,183,255,.42);
  box-shadow: 0 34px 84px rgba(7,95,255,.22);
}
.proof-case-card span,
.proof-case-card h3,
.proof-case-card p,
.proof-case-card em {
  position: relative;
  z-index: 1;
}
.proof-case-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #d9efff;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.proof-case-card h3 {
  margin: 20px 0 8px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
}
.proof-case-card p {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.48;
}
.proof-case-card em {
  margin-top: 18px;
  color: #fff;
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
@media (min-width: 1680px) {
  .offer-focus-copy h2 {
    white-space: nowrap;
  }
  .proof-wall-head h2 {
    white-space: nowrap;
  }
}
.proof-wall-bottom {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, 1fr) auto;
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}
.proof-metric-row,
.proof-quote-stack,
.proof-wall-actions {
  border: 1px solid rgba(214, 225, 242, .94);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 46px rgba(9, 42, 91, .08);
}
.proof-metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(214, 225, 242, .9);
}
.proof-metric-row span {
  min-height: 86px;
  display: grid;
  align-content: center;
  padding: 14px;
  background: rgba(255,255,255,.94);
  color: #263244;
  font-size: 13px;
  font-weight: 850;
}
.proof-metric-row b {
  display: block;
  color: var(--blue);
  font-size: 24px;
  line-height: 1.05;
}
.proof-quote-stack {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: rgba(214, 225, 242, .9);
}
.proof-quote-stack blockquote {
  margin: 0;
  padding: 18px;
  background: rgba(255,255,255,.94);
  color: #263244;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}
.proof-quote-stack cite {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 760;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.proof-wall-actions {
  min-width: 220px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
}
.proof-wall-actions .btn {
  width: 100%;
  justify-content: center;
}

.hero-visual { min-height: 510px; position: relative; }
.hero-visual .laptop,
.hero-visual .phone,
.hero-visual .metric-card,
.hero-visual .plant,
.hero-visual .drag-note {
  cursor: grab;
  user-select: none;
  touch-action: none;
}
.hero-visual .is-dragging {
  cursor: grabbing;
  z-index: 10;
}
.drag-note {
  position: absolute;
  right: 275px;
  top: 470px;
  z-index: 6;
  width: 104px;
  height: 92px;
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(-5deg);
  padding: 12px;
  border-radius: 5px;
  background: #fff18a;
  color: #1b2440;
  font-family: "Bradley Hand ITC", "Segoe Print", "Comic Sans MS", cursive;
  font-size: 22px;
  font-weight: 500;
  line-height: .98;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: 0 14px 28px rgba(73, 60, 0, .18);
  animation: noteBlink 1.25s ease-in-out infinite;
}
.drag-note::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-width: 0 0 16px 16px;
  border-style: solid;
  border-color: transparent transparent #e4ce42 transparent;
}
@keyframes noteBlink {
  0%, 100% {
    filter: brightness(1);
    transform: rotate(-5deg) scale(1);
  }
  50% {
    filter: brightness(1.15);
    transform: rotate(-5deg) scale(1.04);
  }
}
.laptop {
  width: 540px;
  max-width: 88%;
  position: absolute;
  right: 72px;
  top: 50px;
  transform: rotate(4deg);
  filter: drop-shadow(0 40px 42px rgba(9, 42, 91, .24));
}
.screen {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,255,.94));
  border: 11px solid #121318;
  border-bottom-width: 22px;
  border-radius: 18px;
  padding: 22px;
  aspect-ratio: 16/10;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), inset 0 -18px 36px rgba(7,95,255,.035);
}
.keyboard {
  height: 96px;
  background: linear-gradient(160deg, #cdd4dd, #f7f9fb 58%, #a9b2bf);
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
  border-radius: 0 0 20px 20px;
  margin-top: -1px;
  box-shadow: 0 18px 36px rgba(9, 42, 91, .1);
}
.window-title {
  font-weight: 900;
  margin-bottom: 18px;
  text-align: center;
}
.mini-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-bottom: 26px; }
.mini-stats span { border: 1px solid #e8edf5; border-radius: 8px; padding: 9px; color: #6a7587; font-size: 10px; }
.mini-stats b { display: block; color: var(--ink); font-size: 15px; }
.chart-row { display: flex; align-items: center; gap: 28px; }
.donut {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: conic-gradient(#0b63ff 0 38%, #7344e7 38% 63%, #14c9a8 63% 83%, #e8edf5 83%);
  position: relative;
}
.donut::after { content: ""; position: absolute; inset: 25px; background: white; border-radius: 50%; }
.channels span { display: block; color: #4f5c6d; font-size: 13px; margin: 7px 0; }
.channels i { display: inline-block; width: 10px; height: 10px; background: var(--blue); margin-right: 8px; border-radius: 2px; }
.phone {
  position: absolute;
  right: 24px;
  top: 238px;
  width: 142px;
  border: 8px solid #15171e;
  border-radius: 25px;
  background: white;
  padding: 18px 13px;
  box-shadow: 0 24px 58px rgba(9, 42, 91, .2), inset 0 0 0 1px rgba(255,255,255,.8);
}
.phone-notch { position: absolute; width: 56px; height: 9px; background: #15171e; border-radius: 0 0 10px 10px; top: 0; left: 50%; transform: translateX(-50%); }
.phone p { font-size: 11px; color: #697386; margin: 0; }
.phone b { display: block; font-size: 22px; margin-bottom: 8px; }
.bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 43px; }
.bar-chart span { width: 13px; background: #0b63ff; border-radius: 4px 4px 0 0; }
.bar-chart span:nth-child(1){height:18px}.bar-chart span:nth-child(2){height:26px}.bar-chart span:nth-child(3){height:33px}.bar-chart span:nth-child(4){height:22px}.bar-chart span:nth-child(5){height:42px}
.metric-card {
  position: absolute;
  left: 18px;
  width: 162px;
  background: white;
  padding: 14px;
  border: 1px solid #dfe7f3;
  border-radius: 16px;
  box-shadow: 0 22px 54px rgba(9, 42, 91, .16), inset 0 1px 0 rgba(255,255,255,.86);
  z-index: 2;
  transition: transform .22s ease, box-shadow .22s ease;
}
.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 68px rgba(7, 35, 82, .2), 0 0 0 4px rgba(7,95,255,.06);
}
.metric-card i { float: left; margin-right: 15px; }
.metric-card i { width: 34px; height: 34px; }
.metric-card strong { display: block; font-size: 22px; line-height: 1; }
.metric-card span { display: block; font-size: 11px; font-weight: 800; }
.metric-card em { display: block; clear: both; color: #0fb15d; font-size: 10px; font-style: normal; margin-top: 5px; padding-left: 41px; }
.metric-one { top: 46px; }
.metric-two { top: 182px; }
.metric-three { top: 318px; }
.plant {
  position: absolute;
  right: 70px;
  bottom: 190px;
  width: 116px;
  height: 122px;
  background: transparent;
  opacity: .82;
  filter: drop-shadow(0 12px 18px rgba(28, 64, 48, .14));
}
.plant span {
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 22px;
  height: 94px;
  background: linear-gradient(135deg, rgba(49, 114, 78, .84), rgba(27, 154, 101, .55));
  border-radius: 95% 0 95% 0;
  transform-origin: bottom center;
  clip-path: ellipse(45% 50% at 50% 50%);
}
.plant span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10%;
  width: 1px;
  height: 78%;
  background: rgba(238, 255, 245, .32);
  transform: translateX(-50%);
}
.plant span:nth-child(1) {
  height: 104px;
  transform: translateX(-50%) rotate(-8deg);
}
.plant span:nth-child(2) {
  height: 92px;
  width: 21px;
  transform: translateX(-48%) rotate(-34deg);
  background: linear-gradient(135deg, rgba(64, 129, 89, .78), rgba(32, 150, 103, .52));
}
.plant span:nth-child(3) {
  height: 88px;
  width: 21px;
  transform: translateX(-52%) rotate(31deg);
  background: linear-gradient(135deg, rgba(38, 96, 68, .8), rgba(22, 136, 91, .52));
}
.plant span:nth-child(4) {
  height: 70px;
  width: 19px;
  transform: translateX(-45%) rotate(-58deg);
  background: linear-gradient(135deg, rgba(82, 144, 99, .72), rgba(37, 158, 104, .48));
}
.plant span:nth-child(5) {
  height: 68px;
  width: 19px;
  transform: translateX(-55%) rotate(56deg);
  background: linear-gradient(135deg, rgba(40, 104, 74, .74), rgba(23, 133, 91, .48));
}

.section {
  margin: 0 clamp(18px, 3vw, 42px) 38px;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(220, 229, 244, .86);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
}
.section-intro {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}
.section-intro p:last-child {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 0;
}
.section h2 { text-align: center; font-size: clamp(30px, 3vw, 44px); line-height: 1.14; margin-bottom: 12px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(30, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.service-card-link {
  display: block;
  color: inherit;
  height: 100%;
  grid-column: span 10;
}
.service-card-link article {
  height: 100%;
}
.service-grid article {
  grid-column: span 10;
  min-height: clamp(190px, 13vw, 220px);
}
.service-grid article, .feature-grid article, .feature-card, .case-card, .blog-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(205, 218, 238, .82);
  border-radius: 16px;
  padding: clamp(20px, 2vw, 25px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.99), rgba(247,250,255,.96)),
    radial-gradient(circle at 92% 8%, rgba(17,183,255,.09), transparent 30%);
  box-shadow: 0 16px 38px rgba(9, 42, 91, .07), 0 1px 0 rgba(255,255,255,.95) inset;
}
.service-grid article::before, .feature-grid article::before, .feature-card::before, .case-card::before, .blog-card::before,
.quote-card::before, .industries-card::before, .testimonial-card::before, .service-copy::before, .service-sidebar::before,
.seo-panel::before, .landing-depth-card::before, .keyword-map-card::before, .contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--teal));
  opacity: .75;
  pointer-events: none;
  transition: height .22s ease, opacity .22s ease;
}
.service-grid article::after, .feature-grid article::after, .feature-card::after, .case-card::after, .blog-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -82px;
  top: -86px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7,95,255,.13), rgba(17,183,255,.08) 45%, transparent 70%);
  opacity: .8;
  pointer-events: none;
  z-index: -1;
  transition: transform .26s ease, opacity .26s ease;
}
.service-grid article::after {
  content: "ZDH";
  width: 138px;
  height: 138px;
  right: -34px;
  top: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(7,95,255,.08), rgba(20,201,168,.05));
  color: rgba(7,95,255,.16);
  font-size: 30px;
  font-weight: 950;
  letter-spacing: .05em;
  mask: none;
  -webkit-mask: none;
  opacity: .16;
  transform: rotate(-7deg);
}
.service-grid article:nth-child(n + 7) {
  grid-column: span 6;
  min-height: clamp(150px, 10vw, 176px);
  padding: clamp(17px, 1.6vw, 21px);
}
.service-grid .service-card-link:nth-child(n + 7) {
  grid-column: span 6;
}
.service-grid .service-card-link:nth-child(n + 7) article {
  min-height: clamp(150px, 10vw, 176px);
  padding: clamp(17px, 1.6vw, 21px);
}
.service-grid article:hover,
.feature-card:hover,
.case-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(7,95,255,.35);
  box-shadow: var(--shadow-lift);
}
.service-grid article:hover::before,
.feature-card:hover::before,
.case-card:hover::before,
.blog-card:hover::before {
  height: 5px;
  opacity: 1;
}
.service-grid article:hover::after,
.feature-card:hover::after,
.case-card:hover::after,
.blog-card:hover::after {
  transform: scale(1.18) translate(-8px, 8px);
  opacity: 1;
}
.service-grid article:hover::after {
  transform: rotate(-7deg) scale(1.08) translate(-10px, 0);
  opacity: .22;
}
.service-grid article,
.feature-card,
.case-card,
.blog-card { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.service-grid h3, .why-features h3 { font-size: 16px; line-height: 1.22; margin: 12px 0 8px; }
.service-grid p { font-size: 14px; line-height: 1.5; }
.service-grid article:nth-child(n + 7) h3 { font-size: 15px; }
.service-grid article:nth-child(n + 7) p { font-size: 13px; line-height: 1.45; }
.service-grid p, .why-features p, .site-footer p { color: #263244; margin-bottom: 0; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.card-link::after {
  content: "";
  width: 16px;
  height: 16px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .2s ease;
}
.service-card-link:hover .card-link::after,
.feature-card:hover .card-link::after,
.case-card:hover .card-link::after,
.blog-card:hover .card-link::after {
  transform: translateX(6px);
}
.service-grid article > i[data-icon],
.feature-card > i[data-icon],
.feature-grid article > i[data-icon],
.industries-card i[data-icon],
.service-sidebar i[data-icon] {
  color: var(--blue);
  filter: drop-shadow(0 10px 14px rgba(7,95,255,.14));
}
.service-grid article > i[data-icon],
.why-features article > i[data-icon],
.industry-icons i[data-icon],
.stats-card i[data-icon] {
  padding: 9px;
  border-radius: 14px;
  box-sizing: content-box;
  color: var(--blue);
  background-color: currentColor;
  box-shadow:
    0 0 0 1px rgba(7,95,255,.12),
    0 14px 32px rgba(7,95,255,.13);
}
i[data-icon] {
  width: 40px;
  height: 40px;
  display: inline-block;
  color: var(--blue);
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}
[data-icon="users"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E")}
[data-icon="chart"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='M7 16V9M12 16V5M17 16v-7'/%3E%3C/svg%3E")}
[data-icon="target"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M16 8l5-5M18 3h3v3'/%3E%3C/svg%3E")}
[data-icon="megaphone"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='m3 11 18-5v12L3 13v-2Z'/%3E%3Cpath d='M7 14v5a2 2 0 0 0 4 0v-4'/%3E%3C/svg%3E")}
[data-icon="thumb"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Ccircle cx='7' cy='7' r='3'/%3E%3Ccircle cx='17' cy='6' r='3'/%3E%3Ccircle cx='16' cy='17' r='3'/%3E%3Cpath d='m9.7 8.3 4.6 5.9M14.2 7.2l-4.4 7.7'/%3E%3C/svg%3E")}
[data-icon="monitor"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Crect x='3' y='4' width='18' height='12' rx='1'/%3E%3Cpath d='M8 20h8M12 16v4'/%3E%3C/svg%3E")}
[data-icon="affiliate"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Ccircle cx='6' cy='7' r='3'/%3E%3Ccircle cx='18' cy='7' r='3'/%3E%3Cpath d='M4 21v-2a4 4 0 0 1 4-4h1M20 21v-2a4 4 0 0 0-4-4h-1'/%3E%3C/svg%3E")}
[data-icon="headset"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M4 12a8 8 0 0 1 16 0v5a2 2 0 0 1-2 2h-2v-7h4M4 12h4v7H6a2 2 0 0 1-2-2v-5Z'/%3E%3C/svg%3E")}
[data-icon="pen"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='m15 4 5 5-8.4 8.4-5.8 1.4 1.4-5.8L15 4Z'/%3E%3Cpath d='m13.7 5.3 5 5M6 21c2.4-1 3.6-2.2 4-4'/%3E%3C/svg%3E")}
[data-icon="play"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m10 9 5 3-5 3V9Z'/%3E%3C/svg%3E")}
[data-icon="script"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h9l3 3v15H6z'/%3E%3Cpath d='M14 3v4h4M9 11h6M9 15h6M9 19h3'/%3E%3C/svg%3E")}
[data-icon="search"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Ccircle cx='10' cy='10' r='7'/%3E%3Cpath d='m15 15 6 6'/%3E%3C/svg%3E")}
[data-icon="dollar"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 6v12M15 9a3 3 0 0 0-3-1.5c-2 0-3 1-3 2.5s6 1 6 4-5 3-7 1'/%3E%3C/svg%3E")}
[data-icon="badge"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='m12 2 3 3 4 .5.5 4 2.5 2.5-2.5 3-.5 4-4 .5-3 2.5-3-2.5-4-.5-.5-4L2 12l2.5-2.5.5-4L9 5z'/%3E%3Cpath d='m8 12 3 3 5-6'/%3E%3C/svg%3E")}
[data-icon="user-check"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M2 21v-2a4 4 0 0 1 4-4h5M16 19l2 2 4-5'/%3E%3C/svg%3E")}
[data-icon="cart"],[data-icon="home"],[data-icon="heart"],[data-icon="cap"],[data-icon="wallet"],[data-icon="chip"],[data-icon="scale"],[data-icon="dots"]{--icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Crect x='4' y='4' width='16' height='16' rx='3'/%3E%3Cpath d='M8 12h8M12 8v8'/%3E%3C/svg%3E")}

.why-band {
  margin: 0 clamp(18px, 3vw, 42px) 42px;
  padding: clamp(34px, 4vw, 54px);
  border-radius: 26px;
  background:
    linear-gradient(120deg, #eff7ff, #f8fbff 60%, #ecf5ff);
  border: 1px solid rgba(220, 229, 244, .82);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 38px;
  align-items: start;
}
.why-copy h2 { font-size: 42px; line-height: 1.06; }
.why-copy p { color: #243044; }
.why-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-features article { padding: 10px 2px; }
.why-features i { width: 38px; height: 38px; float: left; margin-right: 12px; }
.stats-card {
  grid-column: 2;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 22px 14px;
}
.stats-card span { display: flex; align-items: center; justify-content: center; gap: 14px; border-right: 1px solid var(--line); font-size: 13px; }
.stats-card span:last-child { border-right: 0; }
.stats-card b { color: var(--blue); display: block; font-size: 34px; line-height: 1; }

.bottom-grid {
  display: grid;
  grid-template-columns: .95fr .9fr 1.25fr;
  gap: 24px;
  padding: 0 clamp(18px, 3vw, 42px) 46px;
  align-items: stretch;
}
.industries-card, .testimonial-card, .cta-form {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(214, 225, 242, .88);
  border-radius: 22px;
  padding: 30px;
  background: linear-gradient(180deg, var(--surface-strong), rgba(248,251,255,.96));
  box-shadow: var(--shadow-soft);
}
.industries-card,
.testimonial-card,
.service-copy,
.service-sidebar,
.seo-panel,
.landing-depth-card,
.keyword-map-card,
.case-study-detail article,
.service-bottom-form,
.contact-card {
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.industries-card:hover,
.testimonial-card:hover,
.service-copy:hover,
.service-sidebar:hover,
.seo-panel:hover,
.landing-depth-card:hover,
.keyword-map-card:hover,
.case-study-detail article:hover,
.service-bottom-form:hover,
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(7,95,255,.26);
  box-shadow: var(--shadow-glow);
}
.industries-card h2 { font-size: 30px; line-height: 1.16; }
.industry-icons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.industry-icons span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  padding: 10px;
  border-radius: 12px;
  background: #f7fbff;
}
.industry-icons i { width: 34px; height: 34px; }
blockquote { margin: 18px 0 32px; font-size: 18px; color: #172033; position: relative; padding-left: 36px; }
blockquote::before { content: "\201C"; color: var(--blue); font-size: 64px; position: absolute; left: 0; top: -22px; }
.testimonial-slider {
  min-height: 265px;
  display: flex;
  flex-direction: column;
}
.testimonial-slider blockquote {
  transition: opacity .22s ease, transform .22s ease;
}
.testimonial-slider.is-changing blockquote,
.testimonial-slider.is-changing .person {
  opacity: .25;
  transform: translateY(4px);
}
.person { display: flex; gap: 14px; align-items: center; }
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, var(--avatar-main, #b9c0c9) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 120%, var(--avatar-soft, #d9dde5) 0 55%, transparent 56%),
    #eef2f8;
}
.person span, .person em { display: block; font-style: normal; }
.person b {
  display: block;
  font-size: 13px;
  line-height: 1.15;
}
.person span {
  max-width: 190px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}
.person em { color: #ffb400; letter-spacing: 1.5px; font-size: 11px; }
.testimonial-dots {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}
.testimonial-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: #c9d4e5;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.testimonial-dots button.active {
  width: 26px;
  background: var(--blue);
}
.testimonial-page-grid {
  padding: 42px 4vw 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.quote-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(214, 225, 242, .9);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 34px);
  background: linear-gradient(180deg, var(--surface-strong), rgba(248,251,255,.96));
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.quote-card:hover {
  transform: translateY(-5px);
  border-color: rgba(7,95,255,.34);
  box-shadow: var(--shadow-glow);
}
.quote-card blockquote {
  margin-bottom: 26px;
}
.quote-card .person {
  margin-top: auto;
}
.quote-card .avatar {
  display: none;
}
.reference-contact {
  width: 100%;
  min-height: 44px;
  margin-top: 22px;
  border: 1px solid rgba(7,95,255,.28);
  border-radius: 11px;
  background: #f7fbff;
  color: var(--blue-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.reference-contact:hover {
  transform: translateY(-2px);
  border-color: rgba(7,95,255,.5);
  box-shadow: 0 12px 28px rgba(7,95,255,.14);
}
.testimonial-metrics {
  display: grid;
  gap: 16px;
}
.testimonial-metrics span {
  display: grid;
  grid-template-columns: 42px auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.testimonial-metrics span:last-child {
  border-bottom: 0;
}
.testimonial-metrics i {
  width: 38px;
  height: 38px;
}
.testimonial-metrics b {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}
.testimonial-metrics em {
  color: #263244;
  font-style: normal;
  font-weight: 800;
}
.cta-form {
  background:
    radial-gradient(circle at 88% 10%, rgba(255,255,255,.22), transparent 26%),
    radial-gradient(circle at 8% 92%, rgba(17,199,166,.2), transparent 30%),
    linear-gradient(135deg, #075fff, #0349d9);
  color: white;
  border: 0;
  box-shadow: 0 24px 64px rgba(7,95,255,.24);
}
#lead-form,
#strategy-call {
  scroll-margin-top: 96px;
}
.cta-form h2 { font-size: 34px; line-height: 1.1; margin-bottom: 10px; }
.cta-form h2 span { color: #a6d1ff; display: block; }
.cta-form p { font-weight: 700; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cbd7e8;
  border-radius: 10px;
  padding: 14px;
  font: inherit;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 8px 18px rgba(9, 42, 91, .04);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
input:focus, select:focus, textarea:focus {
  outline: 0;
  border-color: rgba(7,95,255,.58);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(7,95,255,.11), 0 12px 24px rgba(9, 42, 91, .08);
}
input:hover, select:hover, textarea:hover {
  border-color: rgba(7,95,255,.36);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 10px 22px rgba(9, 42, 91, .065);
}
textarea { min-height: 78px; resize: vertical; margin: 10px 0; }
.form-status { min-height: 22px; margin: 10px 0 0; color: #dfffe9; }
.form-note {
  margin: 10px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  line-height: 1.45;
}
.contact-card .form-note,
.service-bottom-form .form-note,
.footer-form .form-note {
  color: var(--muted);
}

.footer-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  gap: 10px;
  align-items: end;
  margin-top: 4px;
  padding: 18px;
  border: 1px solid rgba(220, 229, 244, .95);
  border-radius: 16px;
  background: linear-gradient(135deg, #f7fbff, #fff);
}
.footer-form h3 {
  margin: 0;
  font-size: 18px;
  text-transform: none;
}
.footer-form p {
  color: var(--muted);
  font-size: 13px;
}
.footer-form input {
  min-height: 46px;
}
.footer-form .btn {
  min-height: 46px;
  white-space: nowrap;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(5, 12, 32, .58);
  backdrop-filter: blur(8px);
}
.modal-backdrop.open {
  display: grid;
}
.strategy-modal {
  width: min(560px, 100%);
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(2, 31, 87, .34);
  overflow: hidden;
}
.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 28px 12px;
}
.modal-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}
.modal-head p {
  color: var(--muted);
  margin: 8px 0 0;
}
.modal-close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #f7fbff;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.strategy-modal form {
  padding: 16px 28px 28px;
}
.strategy-modal .btn {
  width: 100%;
  margin-top: 10px;
}
.selected-reference {
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7fbff;
  color: var(--blue-dark);
  font-weight: 900;
}
.thank-you-modal {
  position: relative;
  width: min(430px, 100%);
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  padding: 34px;
  text-align: center;
  box-shadow: 0 28px 80px rgba(2, 31, 87, .34);
}
.thank-you-modal .modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
}
.thank-you-modal h2 {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1;
}
.thank-you-modal p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 22px;
}
.thank-you-page {
  background:
    radial-gradient(circle at 88% 12%, rgba(20,201,168,.12), transparent 30%),
    radial-gradient(circle at 10% 8%, rgba(7,95,255,.12), transparent 32%),
    #fff;
}
.thank-you-experience {
  width: min(1180px, calc(100% - 48px));
  margin: 34px auto 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 22px;
  align-items: stretch;
}
.thank-you-main-card,
.thank-you-side-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(214, 225, 242, .94);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,251,255,.96));
  box-shadow: 0 24px 68px rgba(9, 42, 91, .12);
  padding: clamp(24px, 4vw, 44px);
}
.thank-you-main-card::before,
.thank-you-side-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 8%, rgba(7,95,255,.12), transparent 34%);
  z-index: -1;
}
.thank-you-main-card h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(42px, 5.4vw, 70px);
  line-height: 1.02;
}
.thank-you-main-card p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}
.thank-you-main-card p a {
  color: var(--blue);
  font-weight: 900;
}
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.thank-you-steps {
  display: grid;
  gap: 12px;
}
.thank-you-steps article {
  position: relative;
  padding: 16px 16px 16px 58px;
  border: 1px solid rgba(214, 225, 242, .92);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 30px rgba(9, 42, 91, .065);
}
.thank-you-steps span {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(7,95,255,.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}
.thank-you-steps h2 {
  margin: 0 0 4px;
  font-size: 18px;
}
.thank-you-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.thank-you-next-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.thank-you-next-grid a {
  padding: 20px;
  border: 1px solid rgba(214, 225, 242, .94);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 46px rgba(9, 42, 91, .08);
  color: inherit;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.thank-you-next-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(7,95,255,.26);
  box-shadow: 0 24px 58px rgba(9, 42, 91, .12);
}
.thank-you-next-grid span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(7,95,255,.09);
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.thank-you-next-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 20px;
}
.thank-you-next-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.site-footer {
  position: relative;
  isolation: isolate;
  margin-top: 18px;
  border-top: 1px solid rgba(214, 225, 242, .92);
  padding: 34px clamp(18px, 4vw, 54px) 24px;
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(4, minmax(145px, .72fr));
  gap: 28px;
  background:
    radial-gradient(circle at 6% 0%, rgba(7,95,255,.08), transparent 32%),
    radial-gradient(circle at 92% 18%, rgba(20,201,168,.12), transparent 30%),
    linear-gradient(180deg, #fff, #f7fbff);
}
.footer-cta-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .78fr) minmax(360px, 1.1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 8px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(7,95,255,.16);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(7,95,255,.08), rgba(20,201,168,.08)),
    rgba(255,255,255,.9);
  box-shadow: 0 22px 62px rgba(9, 42, 91, .1);
}
.footer-cta-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
}
.footer-cta-panel p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}
.footer-proof-chips {
  display: grid;
  gap: 10px;
}
.footer-proof-chips span {
  min-height: 54px;
  display: grid;
  align-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(214, 225, 242, .92);
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  color: #263244;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(9, 42, 91, .06);
}
.footer-proof-chips b {
  display: block;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.1;
}
.footer-cta-panel .footer-form {
  grid-column: auto;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin: 0;
  padding: 16px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 34px rgba(9, 42, 91, .08);
}
.footer-cta-panel .footer-form input,
.footer-cta-panel .footer-form select,
.footer-cta-panel .footer-form .btn {
  min-height: 46px;
}
.footer-cta-panel .footer-form .btn {
  width: 100%;
}
.footer-brand { font-size: 30px; margin-bottom: 16px; }
.footer-company p {
  max-width: 440px;
}
.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.footer-trust-row span {
  padding: 8px 10px;
  border: 1px solid rgba(214, 225, 242, .92);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: #263244;
  font-size: 12px;
  font-weight: 850;
}
.site-footer h3 {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .04em;
  margin-bottom: 12px;
  color: #647086;
}
.site-footer a {
  display: block;
  color: #243044;
  margin: 7px 0;
  transition: color .18s ease, transform .18s ease;
}
.site-footer a:hover {
  color: var(--blue);
  transform: translateX(2px);
}
.footer-link-group a {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 760;
}
.footer-link-group:last-of-type a:nth-last-child(-n + 2) {
  color: var(--blue);
  font-weight: 900;
}
.location-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.location-metrics span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7fbff;
  color: #263244;
  font-weight: 800;
}
.location-metrics b {
  display: block;
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}
.footer-form .form-status {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0;
  color: var(--blue);
}
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid #b9c5d6; border-radius: 50%; color: #3a4a61; }
.copyright { color: #8a95a6; text-align: center; padding-bottom: 18px; margin: 0; }

.sticky-growth-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 18;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: calc(100% - 32px);
  padding: 10px 10px 10px 18px;
  border: 1px solid rgba(214, 225, 242, .92);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 22px 58px rgba(9, 42, 91, .18);
  backdrop-filter: blur(18px);
  color: var(--ink);
  font-weight: 900;
  transform: translate(-50%, 120%);
  opacity: 0;
  pointer-events: none;
  transition: transform .24s ease, opacity .24s ease;
}
.sticky-growth-cta.visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-growth-cta .btn {
  min-height: 42px;
  padding: 0 18px;
  white-space: nowrap;
}

.offer-proof-strip {
  margin: 34px 4vw 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.offer-proof-strip article {
  min-width: 0;
  padding: 22px 24px;
  border: 1px solid rgba(214, 225, 242, .92);
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, #f7fbff);
  box-shadow: var(--shadow-soft);
}
.offer-proof-strip b {
  display: block;
  color: var(--blue);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  margin-bottom: 8px;
}
.offer-proof-strip span {
  color: #263244;
  font-weight: 850;
  line-height: 1.35;
}
.conversion-depth,
.audit-scorecard,
.decision-framework {
  padding: 52px 4vw;
}
.conversion-depth-head,
.audit-scorecard-head {
  max-width: 900px;
  margin-bottom: 26px;
}
.conversion-depth-head h2,
.audit-scorecard-head h2,
.decision-framework h2 {
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.08;
}
.conversion-depth-head p,
.audit-scorecard-head p {
  color: #263244;
  font-size: 17px;
}
.conversion-card-grid,
.scorecard-grid {
  display: grid;
  gap: 18px;
}
.conversion-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.scorecard-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.conversion-card-grid article,
.scorecard-grid article,
.decision-list article {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 225, 242, .92);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 0, rgba(7,95,255,.08), transparent 30%),
    linear-gradient(180deg, var(--surface-strong), rgba(248,251,255,.98));
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 2.5vw, 32px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.conversion-card-grid article:hover,
.scorecard-grid article:hover,
.decision-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(7,95,255,.34);
  box-shadow: var(--shadow-glow);
}
.conversion-card-grid span,
.scorecard-grid b {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(7,95,255,.1);
  color: var(--blue);
  font-weight: 950;
  margin-bottom: 22px;
}
.conversion-card-grid h3,
.scorecard-grid h3,
.decision-list h3 {
  font-size: 21px;
  line-height: 1.15;
  margin-bottom: 10px;
}
.conversion-card-grid p,
.scorecard-grid p,
.decision-list p {
  color: #263244;
  line-height: 1.58;
}
.decision-framework {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
  background: linear-gradient(135deg, rgba(247,251,255,.96), rgba(255,255,255,.98));
}
.audit-framework {
  background: #fff;
}
.decision-list {
  display: grid;
  gap: 16px;
}
.faq-section {
  padding-top: 0;
}

.thank-you-hero {
  min-height: calc(100vh - 220px);
}
.thank-you-page .modal-backdrop,
.thank-you-page .sticky-growth-cta {
  display: none;
}

.page-hero {
  padding: 58px 4vw 44px;
  background: linear-gradient(135deg, #f7fbff, #eaf3ff);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: center;
}
.page-hero > * {
  min-width: 0;
}
.page-hero h1 { max-width: 850px; }
.page-hero p { max-width: 680px; color: #253249; font-size: 18px; }
.page-visual {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  min-height: 250px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 26px;
}
.page-visual > i[data-icon] {
  width: 92px;
  height: 92px;
  margin-top: 8px;
}
.about-visual {
  min-height: 0;
  display: grid;
  align-content: center;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.about-stats span {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7fbff;
  color: #263244;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}
.about-stats i {
  width: 34px;
  height: 34px;
}
.about-stats b {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}
.feature-grid, .case-grid, .blog-grid {
  padding: 38px 4vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-grid article h2,
.feature-card h2 { font-size: 22px; }
.feature-card {
  display: block;
  color: inherit;
}
.service-detail {
  padding: 42px 4vw 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: start;
}
.service-copy,
.service-sidebar {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(214, 225, 242, .9);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface-strong), rgba(248,251,255,.96));
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 3vw, 36px);
}
.service-copy h2,
.service-sidebar h2 {
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.12;
}
.service-copy p,
.service-copy li,
.service-sidebar p {
  color: #263244;
  font-size: 16px;
}
.service-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.service-list li {
  position: relative;
  padding-left: 26px;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(7,95,255,.12);
}
.seo-section {
  padding: 0 4vw 56px;
}
.seo-route-panel {
  padding-top: 36px;
}
.compact-resource-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.compact-resource-grid .feature-card {
  min-height: 0;
}
.trending-finder {
  margin-bottom: 18px;
}
.trending-featured {
  padding: 18px 4vw 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.trending-featured .feature-card {
  min-height: 100%;
  padding: 24px;
}
.trending-hub {
  padding: 10px 4vw 54px;
  display: grid;
  gap: 30px;
}
.trending-section {
  padding-top: 26px;
  border-top: 1px solid rgba(214, 225, 242, .92);
}
.trending-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.trending-section-head h2 {
  max-width: 760px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.1;
}
.trending-section-head span {
  flex: 0 0 auto;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(214, 225, 242, .92);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.trending-resource-grid {
  padding: 0;
  content-visibility: visible;
  contain-intrinsic-size: none;
}
.trending-resource-grid .blog-card {
  min-height: 100%;
  padding: 24px;
}
.trending-resource-grid .blog-card h3 {
  margin: 6px 0 10px;
  font-size: 22px;
  line-height: 1.12;
}
.trending-resource-grid .blog-card p:not(.eyebrow) {
  color: var(--muted);
}
.blog-cta-panel {
  margin: 0 4vw 62px;
}
.diagnostic-shell {
  margin: 28px 4vw 54px;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(214, 225, 242, .92);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,251,255,.96)),
    radial-gradient(circle at 96% 4%, rgba(7,95,255,.12), transparent 36%);
  box-shadow: var(--shadow-soft);
}
.diagnostic-head {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin-bottom: 24px;
}
.diagnostic-head h2 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}
.diagnostic-head p:not(.eyebrow) {
  color: var(--muted);
}
.diagnostic-progress {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(214, 225, 242, .85);
  margin-bottom: 22px;
}
.diagnostic-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width .24s ease;
}
.diagnostic-steps {
  position: relative;
}
.diagnostic-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}
.diagnostic-step.active {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.diagnostic-step legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  color: var(--ink);
}
.diagnostic-step button {
  min-height: 74px;
  padding: 18px 20px;
  border: 1px solid rgba(214, 225, 242, .95);
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(9, 42, 91, .07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.diagnostic-step button:hover,
.diagnostic-step button.selected {
  transform: translateY(-2px);
  border-color: rgba(7, 95, 255, .34);
  background: linear-gradient(180deg, #fff, #f3f8ff);
  box-shadow: 0 22px 52px rgba(9, 42, 91, .12);
}
.diagnostic-step button.selected {
  color: var(--blue);
}
.diagnostic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.diagnostic-actions .btn:disabled {
  opacity: .42;
  cursor: not-allowed;
  transform: none;
}
.diagnostic-result {
  margin-top: 26px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(7, 95, 255, .2);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(7,95,255,.08), rgba(20,201,168,.08)), #fff;
}
.diagnostic-result h2 {
  margin: 4px 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}
.diagnostic-result p:not(.eyebrow) {
  color: var(--muted);
  max-width: 820px;
}
.diagnostic-result-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.seo-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(214, 225, 242, .9);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface-strong), rgba(248,251,255,.96));
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 3vw, 34px);
}
.seo-panel > p {
  max-width: 760px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.faq-item {
  border: 1px solid rgba(214, 225, 242, .9);
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(180deg, #fff, var(--surface-blue));
  box-shadow: 0 8px 22px rgba(9, 42, 91, .045);
}
.faq-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
}
.expanded-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.expanded-seo-grid article {
  border: 1px solid rgba(214, 225, 242, .9);
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(180deg, #fff, var(--surface-blue));
  box-shadow: 0 8px 22px rgba(9, 42, 91, .045);
}
.expanded-seo-grid h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.expanded-seo-grid p {
  margin: 0;
  color: var(--muted);
}
.seo-decision-table {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.seo-decision-table a {
  display: grid;
  grid-template-columns: minmax(160px, .4fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-radius: 14px;
  padding: 16px 18px;
  color: inherit;
  background: linear-gradient(180deg, #fff, var(--surface-blue));
  border: 1px solid rgba(214, 225, 242, .9);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.seo-decision-table a:hover {
  transform: translateY(-2px);
  border-color: rgba(7,95,255,.28);
  box-shadow: 0 14px 30px rgba(9, 42, 91, .08);
}
.seo-decision-table strong {
  color: var(--blue);
}
.seo-decision-table span {
  color: var(--muted);
}
.seo-proof-strip {
  margin-bottom: 56px;
}
.sitemap-directory {
  padding: 22px 4vw 64px;
  display: grid;
  gap: 34px;
}
.resource-finder {
  margin: 26px 4vw 8px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(214, 225, 242, .92);
  border-radius: 22px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,251,255,.96)),
    radial-gradient(circle at 95% 0%, rgba(17,183,255,.14), transparent 34%);
  box-shadow: var(--shadow-soft);
}
.proof-finder {
  margin: 24px 4vw 22px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(214, 225, 242, .92);
  border-radius: 22px;
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(340px, 1fr);
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,251,255,.96)),
    radial-gradient(circle at 100% 10%, rgba(7,95,255,.12), transparent 34%);
  box-shadow: var(--shadow-soft);
}
.resource-finder h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  margin: 0 0 10px;
}
.proof-finder h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  margin: 0 0 10px;
}
.resource-finder p:not(.eyebrow):not(.resource-count) {
  color: var(--muted);
  max-width: 680px;
}
.proof-finder p:not(.eyebrow):not(.resource-count) {
  color: var(--muted);
  max-width: 680px;
}
.resource-search-panel {
  border: 1px solid rgba(220, 229, 244, .94);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 18px 44px rgba(9,42,91,.08);
}
.proof-search-panel {
  display: grid;
  gap: 12px;
}
.proof-filter-group {
  display: grid;
  gap: 7px;
}
.proof-filter-group > span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.resource-search-panel label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ink);
}
.resource-search-panel input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(214, 225, 242, .96);
  border-radius: 12px;
  padding: 0 15px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 24px rgba(9,42,91,.06);
}
.resource-search-panel input:focus {
  outline: 3px solid rgba(17,183,255,.28);
  border-color: rgba(7,95,255,.45);
}
.resource-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.resource-filter-row button {
  min-height: 38px;
  border: 1px solid rgba(214, 225, 242, .94);
  border-radius: 999px;
  padding: 0 13px;
  background: #fff;
  color: var(--muted);
  font-weight: 850;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.resource-filter-row button:hover {
  transform: translateY(-1px);
  border-color: rgba(7,95,255,.28);
  color: var(--blue);
  box-shadow: 0 10px 22px rgba(9,42,91,.08);
}
.resource-filter-row button.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(7,95,255,.22);
}
.resource-count {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.sitemap-directory-section {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.sitemap-directory-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}
.sitemap-directory-head h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
}
.sitemap-directory-head span {
  flex: 0 0 auto;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(214, 225, 242, .92);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.sitemap-directory-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  padding: 0;
  margin: 0;
}
.sitemap-directory-list li {
  border-bottom: 1px solid rgba(220, 229, 244, .8);
}
.sitemap-directory-list a {
  display: grid;
  grid-template-columns: minmax(170px, .32fr) minmax(0, 1fr);
  gap: 14px;
  padding: 10px 0;
  color: inherit;
  border-radius: 0;
}
.sitemap-directory-list strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
}
.sitemap-directory-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.sitemap-directory-list a:hover strong {
  color: var(--blue);
}
.sitemap-directory-list a:hover span {
  color: #263244;
}
.landing-depth {
  padding: 0 4vw 56px;
}
.page-snapshot {
  padding: 0 4vw 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.page-snapshot article {
  position: relative;
  min-height: 176px;
  padding: 18px;
  border: 1px solid rgba(214, 225, 242, .92);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,251,255,.96)),
    radial-gradient(circle at 86% 10%, rgba(20,201,168,.18), transparent 36%);
  box-shadow: 0 16px 42px rgba(9, 42, 91, .07);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.page-snapshot article:hover {
  transform: translateY(-3px);
  border-color: rgba(7,95,255,.24);
  box-shadow: 0 22px 54px rgba(9, 42, 91, .11);
}
.page-snapshot span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(7,95,255,.09);
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.page-snapshot strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.16;
}
.page-snapshot p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
  font-weight: 720;
}
.page-snapshot a {
  color: var(--blue);
}
.service-snapshot {
  padding: 0 4vw 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.service-snapshot article {
  position: relative;
  min-height: 188px;
  padding: 19px;
  border: 1px solid rgba(214, 225, 242, .94);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(247,251,255,.97)),
    radial-gradient(circle at 86% 12%, rgba(7,95,255,.16), transparent 34%);
  box-shadow: 0 18px 46px rgba(9, 42, 91, .08);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.service-snapshot article::after {
  content: "";
  position: absolute;
  left: 19px;
  right: 19px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: .7;
}
.service-snapshot article:hover {
  transform: translateY(-3px);
  border-color: rgba(7,95,255,.26);
  box-shadow: 0 24px 58px rgba(9, 42, 91, .12);
}
.service-snapshot span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(7,95,255,.09);
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.service-snapshot strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.16;
}
.service-snapshot p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 720;
}
.service-snapshot a {
  color: var(--blue);
  font-weight: 900;
}
.landing-depth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 22px;
}
.landing-depth-card,
.keyword-map-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(214, 225, 242, .9);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface-strong), rgba(248,251,255,.96));
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 3vw, 36px);
}
.landing-depth-card h2,
.keyword-map-card h2 {
  font-size: clamp(27px, 2.7vw, 40px);
  line-height: 1.12;
}
.landing-depth-card p,
.keyword-map-card p {
  color: var(--muted);
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.check-grid span {
  display: block;
  padding: 14px 15px;
  border: 1px solid rgba(214, 225, 242, .9);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, var(--surface-blue));
  font-weight: 800;
  color: #1f2b3f;
  box-shadow: 0 8px 22px rgba(9, 42, 91, .045);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.check-grid span:hover {
  transform: translateY(-2px);
  border-color: rgba(7,95,255,.24);
  box-shadow: 0 14px 30px rgba(9, 42, 91, .08);
}
.process-steps {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  counter-reset: step;
}
.process-steps article {
  position: relative;
  padding: 16px 16px 16px 58px;
  border: 1px solid rgba(214, 225, 242, .9);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, var(--surface-blue));
  box-shadow: 0 8px 22px rgba(9, 42, 91, .045);
}
.process-steps article::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue);
  font-weight: 900;
}
.process-steps h3 {
  font-size: 17px;
  margin-bottom: 4px;
}
.keyword-map-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.keyword-map-list a,
.keyword-map-list span {
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, var(--surface-blue));
  border: 1px solid rgba(214, 225, 242, .9);
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.keyword-map-list a:hover,
.keyword-map-list span:hover {
  transform: translateY(-2px);
  border-color: rgba(7,95,255,.24);
  box-shadow: 0 12px 26px rgba(9, 42, 91, .075);
}
.service-sidebar {
  position: sticky;
  top: 96px;
}
.service-sidebar .btn {
  width: 100%;
  margin-top: 10px;
}
.service-pill-grid {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}
.service-pill-grid span {
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, var(--surface-blue));
  border: 1px solid rgba(214, 225, 242, .9);
  color: #1f2b3f;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-pill-grid span:hover {
  transform: translateY(-2px);
  border-color: rgba(7,95,255,.24);
  box-shadow: 0 12px 26px rgba(9, 42, 91, .075);
}
.case-card img, .blog-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 6px;
  background: linear-gradient(135deg, #0b63ff, #14c9a8);
}
.case-study-detail {
  padding: 42px 4vw 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.case-study-detail article,
.service-bottom-form {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(214, 225, 242, .9);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface-strong), rgba(248,251,255,.96));
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 3vw, 36px);
}
.proof-visual {
  display: grid;
  align-content: center;
  gap: 18px;
}
.proof-metric b {
  display: block;
  color: var(--blue);
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1;
}
.proof-metric em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}
.service-bottom-form {
  margin: 0 4vw 56px;
}
.service-bottom-form .contact-card {
  max-width: 980px;
  margin: 0 auto;
}
.article-panel,
.legal-copy {
  max-width: 1120px;
  margin: 0 auto;
}
.legal-copy p {
  font-size: 16px;
}
.cta-slim {
  margin: 20px 4vw 54px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #f7fbff);
  box-shadow: var(--shadow-soft);
  align-items: center;
}
.split-section {
  padding: 44px 4vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.contact-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(214, 225, 242, .9);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px;
  background: linear-gradient(180deg, var(--surface-strong), rgba(248,251,255,.96));
}
.contact-single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.contact-card .form-grid { grid-template-columns: 1fr 1fr; }
.contact-card button { margin-top: 10px; }
.about-form-section {
  padding: 0 4vw 50px;
}
.about-form-section .contact-card {
  max-width: 940px;
  margin: 0 auto;
}
.about-form-section .contact-card h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  margin-bottom: 10px;
}
.about-form-section .contact-card > p:not(.eyebrow):not(.form-status) {
  color: var(--muted);
  max-width: 640px;
}

@media (max-width: 1120px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 510px; }
  .service-grid article, .service-grid article:nth-child(n + 7),
  .service-grid .service-card-link, .service-grid .service-card-link:nth-child(n + 7) {
    grid-column: span 15;
    min-height: 0;
  }
  .why-band { grid-template-columns: 1fr; }
  .stats-card { grid-column: auto; }
  .bottom-grid, .site-footer { grid-template-columns: 1fr 1fr; }
  .cta-form { grid-column: 1 / -1; }
  .premium-case-grid,
  .premium-route-grid,
  .case-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-showcase-card.featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .proof-matrix-preview a {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .preview-proof-ledger {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 930px) {
  body {
    overflow-x: hidden;
  }
  .site-header {
    min-height: 74px;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 22px;
  }
  .brand {
    font-size: 30px;
  }
  .brand-mark::after {
    left: 42px;
    width: 34px;
  }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    margin-left: 0;
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(220, 229, 244, .96);
    border-radius: 20px;
    background:
      radial-gradient(circle at 88% 12%, rgba(7,95,255,.1), transparent 34%),
      linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,251,255,.98));
    box-shadow: 0 26px 68px rgba(9, 42, 91, .2);
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(.98);
    transform-origin: top center;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .main-nav a, .nav-group {
    width: 100%;
    padding: 13px 14px;
    border: 0;
    border-radius: 12px;
  }
  .main-nav a {
    font-size: 13px;
    font-weight: 850;
    transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
  }
  .main-nav a.active::after {
    display: none;
  }
  .main-nav a:not(.active)::after {
    display: none;
  }
  .main-nav a:hover {
    transform: translateX(3px);
    background: rgba(255,255,255,.92);
    box-shadow: 0 10px 22px rgba(9,42,91,.07);
  }
  .main-nav a.active {
    border: 1px solid rgba(7,95,255,.16);
    background: linear-gradient(180deg, rgba(232,242,255,.96), rgba(255,255,255,.94));
    box-shadow: 0 12px 28px rgba(7,95,255,.10);
  }
  .nav-group {
    justify-content: space-between;
  }
  .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    margin-top: 10px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(7,95,255,.22);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .mobile-nav-cta:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 18px 38px rgba(7,95,255,.3);
  }
  .hero {
    margin: 16px;
    padding: 30px 24px 24px;
    border-radius: 20px;
  }
  h1 {
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.08;
  }
  .hero-text {
    font-size: 16px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .trust-logos {
    gap: 10px;
  }
  .trust-logos span {
    font-size: 12px;
  }
  .hero-visual {
    min-height: 340px;
    width: 100%;
    transform: none;
    overflow: hidden;
    margin-top: 12px;
  }
  .laptop {
    width: 330px;
    max-width: none;
    right: 0;
    top: 76px;
    transform: rotate(4deg);
  }
  .screen {
    padding: 14px;
    border-width: 9px;
    border-bottom-width: 18px;
  }
  .keyboard {
    height: 74px;
  }
  .metric-card {
    left: 0;
    width: 142px;
    padding: 12px;
  }
  .metric-card strong {
    font-size: 20px;
  }
  .metric-card i {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  .metric-one { top: 18px; }
  .metric-two { top: 120px; }
  .metric-three { top: 222px; }
  .phone {
    width: 108px;
    right: 6px;
    top: 214px;
    border-width: 7px;
  }
  .plant {
    display: block;
    right: 22px;
    bottom: 58px;
    width: 68px;
    height: 72px;
    opacity: .58;
  }
  .plant span {
    width: 14px;
    height: 58px;
  }
  .drag-note {
    display: none;
  }
  .section, .why-band { margin-left: 16px; margin-right: 16px; padding: 28px; }
  .service-grid article,
  .service-grid article:nth-child(n + 7),
  .service-grid .service-card-link,
  .service-grid .service-card-link:nth-child(n + 7) {
    grid-column: auto;
    min-height: 0;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .why-features, .stats-card, .bottom-grid, .site-footer, .feature-grid, .case-grid, .blog-grid, .testimonial-page-grid, .split-section, .page-hero, .service-detail, .case-study-detail, .landing-depth-grid, .decision-framework, .buyer-intent-panel {
    grid-template-columns: 1fr;
  }
  .offer-proof-strip,
  .conversion-card-grid,
  .scorecard-grid,
  .case-depth-grid,
  .service-proof-grid,
  .proof-snapshot-grid,
  .proof-choice-grid {
    grid-template-columns: 1fr;
  }
  .compact-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trending-featured {
    grid-template-columns: 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }
  .trending-hub {
    padding-left: 16px;
    padding-right: 16px;
  }
  .trending-section-head {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
  .trending-section-head span {
    align-self: flex-start;
  }
  .blog-cta-panel {
    margin-left: 16px;
    margin-right: 16px;
  }
  .diagnostic-shell {
    margin-left: 16px;
    margin-right: 16px;
    padding: 22px;
  }
  .diagnostic-step.active {
    grid-template-columns: 1fr;
  }
  .diagnostic-step button {
    width: 100%;
    min-height: 64px;
  }
  .diagnostic-result-links .btn {
    width: 100%;
  }
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-card-metrics {
    grid-template-columns: 1fr;
  }
  .offer-focus {
    display: grid;
  }
  .page-hero,
  .service-detail,
  .seo-section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .service-bottom-form {
    width: auto;
    max-width: none;
    box-sizing: border-box;
    overflow: hidden;
  }
  .page-hero > div,
  .service-copy,
  .service-sidebar,
  .seo-panel {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .service-copy,
  .service-sidebar {
    padding: 24px;
  }
  .page-hero h1,
  .page-hero p,
  .service-copy p,
  .service-list li,
  .seo-panel p {
    width: 100%;
    max-width: calc(100vw - 72px);
    overflow-wrap: anywhere;
  }
  .page-visual .mini-stats {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .offer-focus {
    grid-template-columns: 1fr;
  }
  .offer-choice-grid,
  .offer-mini-flow {
    grid-template-columns: 1fr;
  }
  .offer-choice-grid a {
    min-height: 0;
  }
  .offer-mini-flow span {
    min-height: 48px;
  }
  .page-snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 16px;
    padding-right: 16px;
  }
  .service-snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 16px;
    padding-right: 16px;
  }
  .proof-wall-grid,
  .proof-wall-bottom {
    grid-template-columns: 1fr;
  }
  .proof-wall-actions {
    min-width: 0;
  }
  .expanded-seo-grid {
    grid-template-columns: 1fr;
  }
  .seo-decision-table a {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .sitemap-directory-list {
    grid-template-columns: 1fr;
  }
  .sitemap-directory-list a {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .check-grid {
    grid-template-columns: 1fr;
  }
  .service-sidebar {
    position: static;
  }
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stats-card span { border-right: 0; justify-content: flex-start; }
  .bottom-grid { padding-left: 16px; padding-right: 16px; }
  .form-grid, .contact-card .form-grid { grid-template-columns: 1fr; }
  .cta-form h2 {
    font-size: 32px;
  }
  .cta-form .btn-green {
    width: 100%;
    min-width: 0;
  }
  .strategy-modal {
    max-height: calc(100vh - 28px);
    overflow-y: auto;
  }
  .modal-head {
    padding: 22px 22px 10px;
  }
  .modal-head h2 {
    font-size: 27px;
  }
  .strategy-modal form {
    padding: 14px 22px 22px;
  }
  .footer-form {
    grid-template-columns: 1fr;
  }
  .footer-service-links {
    grid-template-columns: 1fr;
  }
  .location-metrics {
    grid-template-columns: 1fr;
  }
  .footer-form .form-status {
    grid-column: auto;
  }
  .resource-finder {
    grid-template-columns: 1fr;
    margin-left: 16px;
    margin-right: 16px;
    padding: 22px;
  }
  .proof-finder {
    grid-template-columns: 1fr;
    margin: 18px 16px;
    padding: 20px;
  }
  .resource-search-panel {
    min-width: 0;
  }
  .resource-filter-row button {
    flex: 1 1 auto;
  }
  .conversion-depth,
  .audit-scorecard,
  .decision-framework {
    padding: 34px 18px;
  }
  .offer-proof-strip {
    margin: 24px 18px 0;
  }
  .premium-work-section {
    width: calc(100% - 32px);
    padding: 24px 18px;
    border-radius: 22px;
  }
  .premium-case-grid,
  .premium-route-grid,
  .case-showcase-grid {
    grid-template-columns: 1fr;
  }
  .case-showcase-card.featured,
  .case-showcase-card:not(.featured) {
    grid-template-rows: 180px 1fr;
  }
  .showcase-metrics {
    grid-template-columns: 1fr;
  }
  .proof-command-center {
    min-height: 320px;
  }
  .proof-screen-main {
    inset: 52px 28px 68px 0;
    padding: 22px;
  }
  .proof-screen-main b {
    font-size: 48px;
  }
  .proof-screen-side {
    width: 142px;
    min-height: 108px;
    padding: 16px;
  }
  .proof-screen-side b {
    font-size: 28px;
  }
  .work-proposal-note {
    width: calc(100% - 32px);
  }
  .premium-case-card {
    grid-template-rows: 170px 1fr;
  }
  .premium-card-body {
    padding: 20px;
  }
  .preview-proof-ledger {
    width: calc(100% - 32px);
  }
  .sticky-growth-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    text-align: center;
    transform: translateY(120%);
  }
  .sticky-growth-cta.visible {
    transform: translateY(0);
  }
  .sticky-growth-cta .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 18px;
  }
  .hero {
    margin: 12px;
    padding: 24px 18px 18px;
  }
  .hero::after {
    width: 330px;
    height: 330px;
    right: -120px;
    top: 220px;
  }
  .eyebrow {
    font-size: 12px;
  }
  h1 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 38px);
    line-height: 1.06;
  }
  .hero-text {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
  }
  .btn {
    gap: 8px;
    min-height: 48px;
    padding: 0 14px;
    font-size: 11px;
    white-space: normal;
    text-align: center;
  }
  .hero-actions {
    margin-bottom: 16px;
  }
  .page-snapshot {
    grid-template-columns: 1fr;
  }
  .service-snapshot {
    grid-template-columns: 1fr;
  }
  .proof-metric-row {
    grid-template-columns: 1fr;
  }
  .proof-case-card {
    min-height: 250px;
  }
  .trust {
    display: grid;
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }
  .trust p {
    white-space: normal;
  }
  .trust-logos {
    flex-wrap: wrap;
    gap: 8px 12px;
    white-space: normal;
  }
  .trust-logos span,
  .trust-logos span:nth-child(4),
  .trust-logos span:nth-child(5) {
    font-size: 11px;
  }
  .compact-resource-grid {
    grid-template-columns: 1fr;
  }
  .sitemap-directory {
    padding-left: 18px;
    padding-right: 18px;
  }
  .sitemap-directory-head {
    display: grid;
    align-items: start;
  }
  .section,
  .why-band,
  .industries-card,
  .testimonial-card,
  .cta-form {
    border-radius: 18px;
  }
  .service-grid article,
  .service-grid article:nth-child(n + 7),
  .service-grid .service-card-link,
  .service-grid .service-card-link:nth-child(n + 7) {
    grid-column: auto;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .proof-strip {
    grid-template-columns: 1fr;
    margin-left: 12px;
    margin-right: 12px;
  }
  .service-bottom-form,
  .cta-slim {
    margin-left: 12px;
    margin-right: 12px;
  }
  .industry-icons {
    grid-template-columns: 1fr;
  }
  .stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 14px;
    box-shadow: var(--shadow-soft);
  }
  .stats-card span {
    display: grid;
    align-items: start;
    justify-content: stretch;
    gap: 3px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fbfdff;
    font-size: 12px;
    line-height: 1.25;
  }
  .stats-card span i {
    width: 30px;
    height: 30px;
  }
  .stats-card span b {
    font-size: 28px;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .testimonial-slider {
    min-height: 0;
  }
  .bottom-grid {
    gap: 18px;
  }
  .footer-form {
    padding: 16px;
  }
}


.proof-summary,
.testimonial-proof-summary,
.case-context {
  margin-top: 32px;
}

.case-card {
  color: inherit;
  text-decoration: none;
  display: block;
}

.case-card .card-link {
  margin-top: 14px;
  display: inline-flex;
}
.work-proof-strip {
  margin-top: 16px;
}
.enhanced-case-card {
  --case-accent: var(--blue);
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: 0;
  padding: 0;
  border-radius: 22px;
  border-color: rgba(190, 210, 236, .86);
  background:
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(247,251,255,.95)),
    radial-gradient(circle at 100% 0%, rgba(7,95,255,.10), transparent 34%);
  box-shadow: 0 18px 48px rgba(9, 42, 91, .10);
}
.enhanced-case-card img {
  width: 100%;
  height: 168px;
  margin: 0;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}
.enhanced-case-card .case-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 18px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 20px 42px rgba(0,0,0,.20);
  backdrop-filter: blur(12px);
}
.enhanced-case-card .case-icon i[data-icon] {
  width: 31px;
  height: 31px;
  color: var(--case-accent);
  background-color: currentColor;
}
.enhanced-case-card::after {
  content: "ZDH";
  position: absolute;
  top: 112px;
  right: 20px;
  color: rgba(7,95,255,.08);
  font-size: 46px;
  font-weight: 950;
  letter-spacing: .04em;
  pointer-events: none;
}
.enhanced-case-card[data-proof-services~="web-design"] {
  --case-accent: var(--cyan);
}
.enhanced-case-card[data-proof-services~="telemarketing"] {
  --case-accent: var(--teal);
}
.case-pill {
  justify-self: start;
  margin: 20px 22px 0;
  border: 1px solid rgba(7,95,255,.15);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(7,95,255,.07);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.enhanced-case-card h2,
.enhanced-case-card p,
.enhanced-case-card .case-card-metrics,
.enhanced-case-card .card-link {
  margin-left: 22px;
  margin-right: 22px;
}
.enhanced-case-card h2 {
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
}
.enhanced-case-card p {
  color: #304057;
  line-height: 1.55;
}
.case-card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
.case-card-metrics span {
  min-height: 70px;
  border: 1px solid rgba(205, 218, 238, .86);
  border-radius: 14px;
  padding: 11px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,251,255,.94)),
    radial-gradient(circle at 100% 0%, rgba(7,95,255,.08), transparent 40%);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.case-card-metrics b {
  display: block;
  color: var(--ink);
  font-size: 11px;
  text-transform: uppercase;
}
.enhanced-case-card .card-link {
  margin-top: 18px;
  margin-bottom: 22px;
}
.proof-choice-panel {
  margin-top: 12px;
}
.proof-choice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.proof-choice-grid a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 150px;
  border: 1px solid rgba(205, 218, 238, .88);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.99), rgba(247,251,255,.95)),
    radial-gradient(circle at 100% 0%, rgba(7,95,255,.08), transparent 34%);
  box-shadow: 0 16px 38px rgba(9,42,91,.075);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.proof-choice-grid a::after {
  content: "ZDH";
  position: absolute;
  inset: auto 14px 12px auto;
  color: rgba(7,95,255,.08);
  font-size: 34px;
  font-weight: 950;
  letter-spacing: .04em;
  z-index: -1;
}
.proof-choice-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(7,95,255,.32);
  box-shadow: var(--shadow-lift);
}
.proof-choice-grid span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.35;
}
.proof-choice-grid strong {
  font-size: 19px;
  line-height: 1.16;
}
.proof-choice-grid em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.service-proof-hub {
  padding: 40px 4vw 18px;
}
.service-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-proof-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 286px;
  padding: 24px;
  border: 1px solid rgba(205, 218, 238, .9);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,251,255,.94)),
    radial-gradient(circle at 100% 0%, rgba(17,183,255,.12), transparent 34%);
  box-shadow: 0 18px 48px rgba(9, 42, 91, .085);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-proof-grid article::after {
  content: "ZDH";
  position: absolute;
  inset: auto 18px 6px auto;
  height: auto;
  color: rgba(7,95,255,.075);
  background: none;
  font-size: 42px;
  font-weight: 950;
  letter-spacing: .04em;
  transform: none;
  pointer-events: none;
  z-index: -1;
}
.service-proof-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 95, 255, .22);
  box-shadow: 0 26px 70px rgba(9, 42, 91, .14);
}
.service-proof-grid article:hover::after {
  color: rgba(7,95,255,.11);
}
.service-proof-grid span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(7, 95, 255, .075);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
}
.service-proof-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
}
.service-proof-grid p {
  margin: 0 0 22px;
  color: var(--muted);
}
.service-proof-grid div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}
.service-proof-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(214, 225, 242, .96);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-weight: 850;
}
.service-proof-grid a:hover {
  border-color: transparent;
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}

.visual-proof-section {
  padding: 58px clamp(18px, 5vw, 68px);
  background:
    linear-gradient(180deg, rgba(248, 251, 255, .92), rgba(255, 255, 255, .98)),
    #fff;
}

.proof-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 28px auto 0;
}

.proof-screen {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 20px;
  border: 1px solid rgba(12, 26, 52, .10);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .10);
}

.proof-screen::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 42px;
  background: linear-gradient(90deg, rgba(7, 95, 255, .10), rgba(32, 201, 107, .10));
  border-bottom: 1px solid rgba(12, 26, 52, .07);
}

.proof-screen-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 34px;
}

.proof-screen-top span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-screen-top b {
  color: var(--blue);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
}

.proof-bars {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.proof-bars i {
  display: block;
  width: var(--bar);
  min-width: 24%;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(7, 95, 255, .88), rgba(32, 201, 107, .80));
  box-shadow: 0 8px 18px rgba(7, 95, 255, .16);
}

.proof-bars i:nth-child(2) {
  opacity: .78;
}

.proof-bars i:nth-child(3) {
  opacity: .62;
}

.proof-bars i:nth-child(4) {
  opacity: .46;
}

.proof-screen p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.case-proof-grid article {
  min-height: 180px;
}
.case-depth-panel {
  width: min(1180px, calc(100% - 48px));
  margin: 36px auto 18px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(214, 225, 242, .94);
  border-radius: 24px;
  background:
    radial-gradient(circle at 98% 0%, rgba(7, 95, 255, .1), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,251,255,.96));
  box-shadow: 0 22px 62px rgba(9, 42, 91, .1);
}
.case-depth-panel > div:first-child {
  max-width: 860px;
  margin-bottom: 24px;
}
.case-depth-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}
.case-depth-panel p:not(.eyebrow) {
  color: var(--muted);
}
.case-depth-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.case-depth-grid article {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(214, 225, 242, .9);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 34px rgba(9, 42, 91, .07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.case-depth-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 95, 255, .25);
  box-shadow: 0 22px 52px rgba(9, 42, 91, .12);
}
.case-depth-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(7, 95, 255, .1);
  color: var(--blue);
  font-weight: 950;
}
.case-depth-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.16;
}
.case-depth-grid p {
  margin: 0;
  font-size: 14px;
}

.preview-page .sticky-growth-cta {
  display: none;
}
.work-preview-hero {
  background:
    radial-gradient(circle at 86% 14%, rgba(20,201,168,.16), transparent 30%),
    radial-gradient(circle at 8% 0%, rgba(7,95,255,.12), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,251,255,.96));
}
.work-proposal-hero h1 {
  max-width: 780px;
}
.work-proposal-hero p:not(.eyebrow) {
  max-width: 720px;
}
.work-preview-visual {
  min-height: 360px;
  display: grid;
  place-items: center;
}
.proof-command-center {
  position: relative;
  width: min(100%, 500px);
  min-height: 390px;
}
.proof-screen-main,
.proof-screen-side {
  position: absolute;
  border: 1px solid rgba(205,218,238,.84);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(237,246,255,.94));
  box-shadow: 0 28px 80px rgba(9,42,91,.14);
}
.proof-screen-main {
  inset: 36px 64px 64px 0;
  display: grid;
  align-content: center;
  padding: 30px;
  transform: rotate(-3deg);
}
.proof-screen-main span,
.proof-screen-side span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.proof-screen-main b {
  margin-top: 10px;
  color: var(--blue);
  font-size: 70px;
  line-height: 1;
}
.proof-screen-main em,
.proof-screen-side em {
  color: #14a06f;
  font-style: normal;
  font-weight: 900;
}
.proof-screen-main div {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.proof-screen-main i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}
.proof-screen-main i:nth-child(2) { width: 82%; opacity: .82; }
.proof-screen-main i:nth-child(3) { width: 64%; opacity: .64; }
.proof-screen-main i:nth-child(4) { width: 44%; opacity: .46; }
.proof-screen-side {
  right: 0;
  width: 190px;
  min-height: 136px;
  display: grid;
  align-content: center;
  padding: 22px;
}
.proof-screen-side:nth-child(2) {
  top: 0;
}
.proof-screen-side:nth-child(3) {
  bottom: 0;
}
.proof-screen-side b {
  color: var(--ink);
  font-size: 38px;
  line-height: 1;
}
.preview-board {
  width: min(100%, 430px);
  aspect-ratio: 1.34;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(205,218,238,.92);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(237,246,255,.94));
  box-shadow: 0 28px 80px rgba(9,42,91,.14);
  transform: rotate(-2deg);
}
.preview-board span {
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 18%, rgba(20,201,168,.24), transparent 34%),
    linear-gradient(135deg, rgba(7,95,255,.98), rgba(8,13,36,.94));
  box-shadow: 0 18px 42px rgba(7,95,255,.18);
}
.preview-board span:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(237,246,255,.94));
  border: 1px solid rgba(205,218,238,.9);
}
.preview-board span:nth-child(3) {
  grid-column: 1 / -1;
  background:
    linear-gradient(90deg, rgba(7,95,255,.10), rgba(20,201,168,.12)),
    #fff;
  border: 1px solid rgba(205,218,238,.9);
}
.preview-board strong {
  grid-column: 1 / -1;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.preview-proof-ledger {
  width: min(1280px, calc(100% - 8vw));
  margin: -18px auto 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.preview-proof-ledger article {
  position: relative;
  overflow: hidden;
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(205,218,238,.88);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 42px rgba(9,42,91,.08);
}
.preview-proof-ledger span {
  color: var(--blue);
  font-weight: 950;
}
.preview-proof-ledger b {
  display: block;
  margin: 8px 0 5px;
  color: var(--ink);
  font-size: 18px;
}
.preview-proof-ledger em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}
.premium-work-section {
  width: min(1360px, calc(100% - 6vw));
  margin: 0 auto 42px;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(205,218,238,.82);
  border-radius: 28px;
  background:
    radial-gradient(circle at 96% 0%, rgba(20,201,168,.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,251,255,.96));
  box-shadow: 0 24px 72px rgba(9,42,91,.10);
}
.work-proposal-note {
  width: min(1040px, calc(100% - 8vw));
  margin: 0 auto 34px;
  padding: 18px 22px;
  border: 1px solid rgba(7,95,255,.18);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(7,95,255,.08), rgba(20,201,168,.08)),
    rgba(255,255,255,.92);
  box-shadow: 0 16px 42px rgba(9,42,91,.08);
}
.work-proposal-note p {
  margin: 0;
  color: #263244;
}
.work-case-showcase {
  padding-left: clamp(28px, 3vw, 46px);
  padding-right: clamp(28px, 3vw, 46px);
}
.case-showcase-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr .82fr;
  gap: 18px;
  align-items: stretch;
}
.case-showcase-card {
  --showcase-accent: var(--blue);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  min-height: 100%;
  border: 1px solid rgba(190,210,236,.86);
  border-radius: 24px;
  background: #fff;
  color: inherit;
  box-shadow: 0 22px 58px rgba(9,42,91,.105);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.case-showcase-card.featured {
  grid-row: span 2;
  grid-template-rows: minmax(260px, .95fr) 1fr;
}
.case-showcase-card:not(.featured) {
  grid-template-rows: 156px 1fr;
}
.case-showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(7,95,255,.28);
  box-shadow: 0 34px 86px rgba(9,42,91,.16);
}
.showcase-media {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 22px;
  background:
    radial-gradient(circle at 84% 18%, rgba(20,201,168,.28), transparent 32%),
    linear-gradient(135deg, var(--showcase-accent), #080d24);
}
.showcase-media::after {
  content: "ZDH";
  position: absolute;
  right: 16px;
  bottom: 8px;
  color: rgba(255,255,255,.12);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 950;
  letter-spacing: .04em;
}
.showcase-media > i[data-icon] {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 34px;
  height: 34px;
  padding: 12px;
  border-radius: 18px;
  color: #fff;
  background-color: currentColor;
  box-sizing: content-box;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,.18));
}
.lead-map {
  position: absolute;
  left: 28px;
  right: 86px;
  bottom: 30px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}
.lead-map span {
  display: block;
  min-height: 52px;
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
}
.lead-map span:nth-child(2) { min-height: 84px; }
.lead-map span:nth-child(3) { min-height: 122px; background: rgba(20,201,168,.86); }
.lead-map span:nth-child(4) { min-height: 96px; }
.lead-map span:nth-child(5) { min-height: 150px; background: rgba(255,255,255,.72); }
.site-frame {
  position: absolute;
  left: 24px;
  right: 80px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
}
.site-frame span {
  min-height: 28px;
  border-radius: 9px;
  background: var(--showcase-accent);
}
.site-frame span:first-child {
  grid-column: 1 / -1;
  min-height: 18px;
  opacity: .24;
}
.call-stack div,
.team-system div,
.seo-surface div {
  position: absolute;
  left: 24px;
  right: 80px;
  bottom: 28px;
  display: grid;
  gap: 10px;
}
.call-stack span,
.seo-surface span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
}
.call-stack span:nth-child(2) { width: 76%; margin-left: 18px; }
.call-stack span:nth-child(3) { width: 56%; margin-left: 36px; }
.team-system div {
  grid-template-columns: repeat(4, 42px);
  align-items: center;
}
.team-system span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
}
.seo-surface span:nth-child(1) { width: 88%; }
.seo-surface span:nth-child(2) { width: 68%; }
.seo-surface span:nth-child(3) { width: 46%; }
.showcase-body {
  position: relative;
  display: grid;
  align-content: start;
  padding: 24px;
}
.case-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}
.case-topline span,
.case-topline b {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.case-topline span {
  color: var(--blue);
  background: rgba(7,95,255,.08);
}
.case-topline b {
  color: #126a50;
  background: rgba(20,201,168,.10);
}
.case-showcase-card h3 {
  margin: 16px 0 10px;
  color: var(--ink);
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.06;
}
.case-showcase-card p {
  color: #34445c;
  line-height: 1.55;
}
.showcase-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}
.showcase-metrics span {
  min-height: 76px;
  padding: 10px;
  border: 1px solid rgba(205,218,238,.88);
  border-radius: 14px;
  background: rgba(247,251,255,.86);
  color: var(--muted);
  font-size: 12px;
}
.showcase-metrics b {
  display: block;
  color: var(--ink);
  font-size: 11px;
  text-transform: uppercase;
}
.case-showcase-card em {
  margin-top: auto;
  color: var(--blue);
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.web-card { --showcase-accent: #11b7ff; }
.calling-card { --showcase-accent: #14c9a8; }
.team-card { --showcase-accent: #3547ff; }
.seo-card { --showcase-accent: #0867ff; }
.premium-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.premium-case-card {
  --premium-accent: var(--blue);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100%;
  display: grid;
  grid-template-rows: 190px 1fr;
  border: 1px solid rgba(190,210,236,.86);
  border-radius: 24px;
  background: #fff;
  color: inherit;
  box-shadow: 0 22px 58px rgba(9,42,91,.11);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.premium-case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(7,95,255,.26);
  box-shadow: 0 34px 84px rgba(9,42,91,.16);
}
.premium-card-media {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at 82% 18%, rgba(20,201,168,.28), transparent 30%),
    linear-gradient(135deg, var(--premium-accent), #080d24);
}
.premium-card-media::after {
  content: "ZDH";
  position: absolute;
  right: 16px;
  bottom: 8px;
  color: rgba(255,255,255,.12);
  font-size: 46px;
  font-weight: 950;
  letter-spacing: .04em;
}
.premium-card-media > i[data-icon] {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  padding: 12px;
  border-radius: 18px;
  color: var(--premium-accent);
  background-color: currentColor;
  box-sizing: content-box;
  box-shadow: 0 18px 42px rgba(0,0,0,.2);
}
.pipeline-visual,
.dashboard-visual,
.call-visual,
.team-visual {
  position: absolute;
  left: 22px;
  right: 82px;
  bottom: 24px;
  display: grid;
  gap: 10px;
}
.pipeline-visual span,
.call-visual span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
}
.pipeline-visual span:nth-child(2) { width: 78%; }
.pipeline-visual span:nth-child(3) { width: 58%; }
.pipeline-visual span:nth-child(4) { width: 36%; }
.dashboard-visual {
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  height: 92px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
}
.dashboard-visual span {
  display: block;
  min-height: 32px;
  border-radius: 10px 10px 4px 4px;
  background: var(--premium-accent);
}
.dashboard-visual span:nth-child(2) { height: 46px; }
.dashboard-visual span:nth-child(3) { height: 68px; }
.dashboard-visual span:nth-child(4) { height: 82px; }
.call-visual span {
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(20,201,168,.72));
}
.call-visual span:nth-child(2) { margin-left: 22px; width: 82%; }
.call-visual span:nth-child(3) { margin-left: 44px; width: 64%; }
.call-visual span:nth-child(4) { margin-left: 66px; width: 48%; }
.team-visual {
  grid-template-columns: repeat(4, 48px);
  align-items: center;
}
.team-visual span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 26px rgba(0,0,0,.12);
}
.premium-card-body {
  position: relative;
  display: grid;
  align-content: start;
  padding: 24px;
}
.premium-card-body::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(7,95,255,.08), rgba(20,201,168,.06));
  opacity: .75;
}
.premium-case-card h3 {
  margin: 16px 0 10px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.08;
}
.premium-case-card p {
  color: #34445c;
  line-height: 1.55;
}
.premium-card-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 18px 0;
}
.premium-card-metrics span {
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid rgba(205,218,238,.9);
  border-radius: 14px;
  background: rgba(247,251,255,.86);
  color: var(--muted);
  font-size: 12px;
}
.premium-card-metrics b {
  display: block;
  color: var(--ink);
  font-size: 11px;
  text-transform: uppercase;
}
.premium-case-card em {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--blue);
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.web-card { --premium-accent: #11b7ff; }
.calling-card { --premium-accent: #14c9a8; }
.team-card { --premium-accent: #3547ff; }
.premium-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.premium-route-grid a {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  padding: 20px;
  border: 1px solid rgba(205,218,238,.88);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,251,255,.95));
  color: inherit;
  box-shadow: 0 16px 42px rgba(9,42,91,.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.premium-route-grid a::after {
  content: "ZDH";
  position: absolute;
  right: 14px;
  bottom: 10px;
  color: rgba(7,95,255,.08);
  font-size: 36px;
  font-weight: 950;
}
.premium-route-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(7,95,255,.24);
  box-shadow: 0 24px 62px rgba(9,42,91,.13);
}
.premium-route-grid span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.premium-route-grid strong {
  display: block;
  margin: 14px 0 8px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.14;
}
.premium-route-grid em {
  color: var(--muted);
  font-style: normal;
}
.proof-matrix-preview {
  display: grid;
  gap: 10px;
}
.proof-matrix-preview a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(130px, .42fr) minmax(0, 1fr) minmax(180px, .5fr);
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid rgba(205,218,238,.88);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  color: inherit;
  box-shadow: 0 12px 34px rgba(9,42,91,.055);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.proof-matrix-preview a:hover {
  transform: translateY(-2px);
  border-color: rgba(7,95,255,.22);
  box-shadow: 0 20px 48px rgba(9,42,91,.10);
}
.proof-matrix-preview span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.proof-matrix-preview strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}
.proof-matrix-preview em {
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
}
.evidence-preview-section {
  position: relative;
  overflow: hidden;
}
.evidence-preview-section::after {
  content: "PROOF";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  top: 28px;
  color: rgba(7,95,255,.045);
  font-size: clamp(72px, 10vw, 160px);
  font-weight: 950;
  letter-spacing: .04em;
  pointer-events: none;
}
.evidence-preview-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.evidence-preview-head h2,
.real-data-needed-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
}
.evidence-preview-head p:not(.eyebrow),
.real-data-needed-copy p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
}
.evidence-scorecard {
  display: grid;
  gap: 10px;
}
.evidence-scorecard span {
  min-height: 62px;
  display: grid;
  align-content: center;
  padding: 12px 16px;
  border: 1px solid rgba(205,218,238,.9);
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 34px rgba(9,42,91,.06);
  color: #263244;
  font-weight: 900;
}
.evidence-scorecard b {
  display: block;
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
}
.evidence-packet-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.evidence-packet-grid article,
.real-data-needed-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(205,218,238,.9);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,251,255,.95));
  box-shadow: 0 16px 42px rgba(9,42,91,.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.evidence-packet-grid article:hover,
.real-data-needed-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(7,95,255,.22);
  box-shadow: 0 24px 62px rgba(9,42,91,.13);
}
.evidence-packet-grid article::after,
.real-data-needed-grid article::after {
  content: "ZDH";
  position: absolute;
  right: 14px;
  bottom: 8px;
  color: rgba(7,95,255,.07);
  font-size: 38px;
  font-weight: 950;
  letter-spacing: .04em;
}
.evidence-packet-grid i[data-icon] {
  width: 36px;
  height: 36px;
  padding: 10px;
  border-radius: 16px;
  color: var(--blue);
  background-color: currentColor;
  box-shadow: 0 14px 32px rgba(7,95,255,.13);
  box-sizing: content-box;
}
.evidence-packet-grid span,
.real-data-needed-grid span {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.evidence-packet-grid h3 {
  margin: 10px 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.14;
}
.evidence-packet-grid p,
.real-data-needed-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.real-data-needed-section {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 30px;
  align-items: start;
  background:
    radial-gradient(circle at 0% 0%, rgba(7,95,255,.10), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,251,255,.95));
}
.real-data-needed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.real-data-needed-grid article {
  min-height: 154px;
  padding: 18px;
}
.real-data-needed-grid span {
  margin-top: 0;
}
.proof-intake-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7,95,255,.94), rgba(8,13,36,.97));
  color: #fff;
}
.proof-intake-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: .42;
  pointer-events: none;
}
.proof-intake-head,
.proof-intake-layout {
  position: relative;
  z-index: 1;
}
.proof-intake-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}
.proof-intake-head .eyebrow {
  color: #9be7d4;
}
.proof-intake-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3vw, 50px);
  line-height: 1.05;
}
.proof-intake-head p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}
.proof-intake-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .75fr);
  gap: 18px;
  align-items: stretch;
}
.proof-pack-list {
  display: grid;
  gap: 12px;
}
.proof-pack-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, .82fr) minmax(260px, .76fr);
  gap: 18px;
  align-items: center;
  min-height: 146px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  background: rgba(255,255,255,.09);
  box-shadow: 0 22px 58px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.proof-pack-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(155,231,212,.48);
  background: rgba(255,255,255,.13);
}
.proof-pack-list i[data-icon] {
  width: 34px;
  height: 34px;
  padding: 12px;
  border-radius: 18px;
  color: #9be7d4;
  background-color: currentColor;
  box-sizing: content-box;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.18));
}
.proof-pack-list span,
.proof-intake-card > span {
  color: #9be7d4;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.proof-pack-list h3 {
  margin: 8px 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.08;
}
.proof-pack-list p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}
.proof-pack-list ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.proof-pack-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,.84);
  font-size: 14px;
  line-height: 1.35;
}
.proof-pack-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9be7d4;
}
.proof-intake-card {
  display: grid;
  align-content: start;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  box-shadow: 0 28px 70px rgba(0,0,0,.2);
  backdrop-filter: blur(14px);
}
.proof-intake-card dl {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
.proof-intake-card dl div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.proof-intake-card dt {
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.proof-intake-card dd {
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.45;
}
.proof-intake-card p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}
.representative-pitch-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(20,201,168,.16), transparent 28%),
    linear-gradient(135deg, rgba(8,13,36,.98), rgba(7,95,255,.92));
  color: #fff;
}
.representative-pitch-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  opacity: .36;
  pointer-events: none;
}
.representative-pitch-section .proof-intake-head {
  margin-bottom: 22px;
}
.representative-pitch-section .proof-intake-head .eyebrow {
  color: #9be7d4;
}
.representative-pitch-section .proof-intake-head h2 {
  max-width: 900px;
  color: #fff;
}
.representative-pitch-section .proof-intake-head p {
  color: rgba(255,255,255,.78);
}
.representative-play-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.representative-play-grid article {
  display: grid;
  align-content: start;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.09);
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.representative-play-card::after {
  content: "ZDH";
  position: absolute;
  right: 14px;
  bottom: 10px;
  color: rgba(255,255,255,.08);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 950;
  letter-spacing: .06em;
  pointer-events: none;
}
.representative-play-grid i[data-icon] {
  width: 34px;
  height: 34px;
  padding: 12px;
  border-radius: 18px;
  color: #9be7d4;
  background-color: currentColor;
  box-sizing: content-box;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.18));
}
.representative-play-grid span {
  display: block;
  margin-top: 18px;
  color: #9be7d4;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.representative-play-grid h3 {
  margin: 10px 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.05;
}
.representative-play-grid p {
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.55;
}
.representative-play-grid ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.representative-play-grid li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,.86);
  line-height: 1.35;
}
.representative-play-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9be7d4;
}
.rep-card-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.rep-card-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.rep-card-actions a:hover {
  transform: translateY(-1px);
  border-color: rgba(155,231,212,.48);
  background: rgba(255,255,255,.14);
}
.rep-card-actions a:focus-visible {
  outline: 2px solid #9be7d4;
  outline-offset: 2px;
}
.representative-pitch-card {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  box-shadow: 0 18px 48px rgba(0,0,0,.14);
  backdrop-filter: blur(14px);
}
.representative-pitch-card span {
  color: #9be7d4;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.representative-pitch-card p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .case-showcase-grid,
  .premium-case-grid,
  .premium-route-grid,
  .evidence-packet-grid,
  .real-data-needed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evidence-preview-head,
  .real-data-needed-section,
  .proof-intake-head,
  .proof-intake-layout {
    grid-template-columns: 1fr;
  }

  .representative-play-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-showcase-card.featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .proof-matrix-preview a {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 760px) {
  .work-proposal-note,
  .premium-work-section,
  .preview-proof-ledger {
    width: calc(100% - 32px);
  }

  .premium-work-section {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .case-showcase-grid,
  .premium-case-grid,
  .premium-route-grid,
  .evidence-packet-grid,
  .real-data-needed-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .evidence-preview-head,
  .real-data-needed-section {
    gap: 18px;
  }

  .proof-intake-section::before {
    background-size: 34px 34px;
  }

  .proof-pack-list article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .proof-pack-list article ul {
    grid-column: 1 / -1;
    padding-left: 62px;
  }

  .representative-play-grid article {
    min-height: 0;
  }

  .rep-card-actions {
    gap: 8px;
  }

  .evidence-scorecard {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .evidence-scorecard span {
    min-height: 72px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .evidence-scorecard b {
    font-size: 24px;
  }

  .evidence-packet-grid article {
    min-height: 0;
  }

  .proof-intake-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .proof-pack-list article {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .proof-pack-list article ul {
    padding-left: 0;
  }

  .representative-play-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rep-card-actions a {
    width: 100%;
    justify-content: center;
  }

  .case-showcase-card.featured,
  .case-showcase-card:not(.featured),
  .premium-case-card {
    grid-template-rows: 180px 1fr;
  }

  .showcase-metrics {
    grid-template-columns: 1fr;
  }

  .proof-command-center {
    min-height: 320px;
  }

  .proof-screen-main {
    inset: 52px 28px 68px 0;
    padding: 22px;
  }

  .proof-screen-main b {
    font-size: 48px;
  }

  .proof-screen-side {
    width: 142px;
    min-height: 108px;
    padding: 16px;
  }

  .proof-screen-side b {
    font-size: 28px;
  }
}

.buyer-intent-panel {
  width: min(1180px, calc(100% - 48px));
  margin: 34px auto 18px;
  padding: clamp(24px, 3.5vw, 38px);
  border: 1px solid rgba(214, 225, 242, .94);
  border-radius: 24px;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1fr);
  gap: 26px;
  align-items: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 201, 168, .12), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,251,255,.96));
  box-shadow: 0 22px 62px rgba(9, 42, 91, .1);
}
.buyer-intent-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.08;
}
.buyer-intent-panel p:not(.eyebrow) {
  color: var(--muted);
}
.buyer-intent-grid {
  display: grid;
  gap: 12px;
}
.buyer-intent-grid article {
  position: relative;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(214, 225, 242, .92);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 30px rgba(9, 42, 91, .07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.buyer-intent-grid article::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
}
.buyer-intent-grid article:hover {
  transform: translateX(3px);
  border-color: rgba(7, 95, 255, .28);
  box-shadow: 0 20px 46px rgba(9, 42, 91, .12);
}
.buyer-intent-grid h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
.buyer-intent-grid p {
  margin: 0;
  font-size: 14px;
}

.faq-section {
  margin-top: 36px;
}

@media (max-width: 900px) {
  .buyer-intent-panel {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .buyer-intent-grid {
    width: 100%;
  }
  .buyer-intent-grid article {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .buyer-intent-panel {
    width: calc(100% - 24px);
    padding: 20px;
    border-radius: 18px;
  }
  .buyer-intent-grid article {
    padding: 16px 16px 16px 20px;
  }
}


.conversion-cta-strip {
  width: min(1180px, calc(100% - 48px));
  margin: 30px auto 10px;
  padding: 24px;
  border: 1px solid rgba(11, 99, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(11, 99, 255, 0.08), rgba(20, 201, 168, 0.08)),
    #fff;
  box-shadow: 0 18px 50px rgba(7, 16, 43, 0.08);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.conversion-cta-strip h2 {
  margin: 8px 0 8px;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  line-height: 1.08;
}

.conversion-cta-strip p:not(.eyebrow) {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
}

.conversion-link-panel .seo-decision-table {
  margin-top: 18px;
}

.feature-grid,
.case-grid,
.blog-grid,
.testimonial-page-grid,
.service-detail,
.seo-section,
.landing-depth,
.proof-strip,
.service-bottom-form,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}
.trending-resource-grid {
  content-visibility: visible;
  contain-intrinsic-size: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 760px) {
  .conversion-cta-strip {
    width: min(100% - 32px, 1180px);
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .conversion-cta-strip .btn {
    width: 100%;
    justify-content: center;
  }
  .trending-section,
  .trending-section-head,
  .trending-resource-grid,
  .trending-resource-grid .blog-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .trending-resource-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .trending-resource-grid .blog-card {
    min-width: 0;
  }
}

@media (max-width: 1100px) {
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-cta-panel {
    grid-template-columns: 1fr;
  }
  .footer-company {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .site-footer {
    grid-template-columns: 1fr;
    padding-left: 16px;
    padding-right: 16px;
    gap: 20px;
  }
  .footer-cta-panel,
  .footer-company {
    grid-column: auto;
  }
  .footer-cta-panel {
    padding: 20px;
    border-radius: 18px;
  }
  .footer-cta-panel .footer-form {
    grid-template-columns: 1fr;
  }
  .footer-proof-chips {
    grid-template-columns: 1fr;
  }
  .thank-you-experience,
  .thank-you-next-grid {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }
  .thank-you-main-card,
  .thank-you-side-card {
    padding: 22px;
    border-radius: 18px;
  }
  .thank-you-actions .btn {
    width: 100%;
  }
}
