/* =========================================================
   EXCLUSIVE AI CONSULTING — Corporate Trust direction
   exclusiveconsulting.ai
   Brand: white surfaces, black wordmark, cyan #1ea7e0 (logo
   mark), CTA blue #0a6cf2.
========================================================= */
 
/* ========== HOMEPAGE WEB DESIGN PACKAGES ========== */
.web-design-home {
  background:
    radial-gradient(circle at top left, rgba(30,167,224,.16), transparent 34%),
    linear-gradient(180deg, #f5f9ff 0%, #eef5ff 100%);
}
.web-package-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.web-package-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.03)),
    linear-gradient(135deg, #0a6cf2 0%, #0757c6 58%, #063b8d 100%);
  color: #fff;
  box-shadow: 0 24px 70px rgba(10,108,242,.22);
}
.web-package-card--featured {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(10,108,242,.3);
}
.web-package-card__label {
  margin: 0 0 12px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.web-package-card h3 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -.04em;
}
.web-package-card p:not(.web-package-card__label) {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 15px;
  line-height: 1.65;
}
.web-package-card ul {
  margin: 22px 0 26px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.18);
  list-style: none;
  display: grid;
  gap: 10px;
}
.web-package-card li {
  display: flex;
  gap: 9px;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.45;
}
.web-package-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--brand-cyan);
  box-shadow: 0 0 0 4px rgba(30,167,224,.16);
}
.web-package-card .cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}
.web-design-process {
  max-width: var(--container);
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.web-design-process article {
  padding: 18px;
  border: 1px solid rgba(10,108,242,.16);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
}
.web-design-process strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 15px;
}
.web-design-process span {
  display: block;
  color: var(--mute);
  font-size: 14px;
  line-height: 1.55;
}
.inline-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0 32px;
}
.inline-package-grid article {
  padding: 20px;
  border: 1px solid rgba(10,108,242,.16);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.inline-package-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 18px;
}
.inline-package-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand-blue);
  font-size: 22px;
  font-weight: 900;
}
.inline-package-grid p {
  margin: 0;
  color: var(--mute);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .web-package-grid,
  .web-design-process,
  .inline-package-grid {
    grid-template-columns: 1fr;
  }
  .web-package-card--featured {
    transform: none;
  }
}
@media (max-width: 760px) {
  .web-design-home .section__head {
    margin-bottom: 22px;
  }
  .web-package-grid {
    gap: 14px;
  }
  .web-package-card {
    padding: 24px 22px;
  }
  .web-package-card h3 {
    font-size: 42px;
  }
  .web-package-card p:not(.web-package-card__label) {
    font-size: 15px;
  }
  .web-package-card li {
    font-size: 14px;
  }
}

:root {
  --brand-cyan: #1ea7e0;
  --brand-cyan-2: #22d3ee;
  --brand-blue: #0a6cf2;
  --brand-blue-hov: #0856c8;
  --brand-blue-soft: #e8f0ff;
  --ink: #0c0d10;
  --ink-2: #2c3340;
  --mute: #5a6271;
  --line: #e6e8ee;
  --soft: #f5f7fb;
  --paper: #ffffff;
  --good: #1f7a3b;

  --radius: 3px;
  --radius-lg: 4px;
  --shadow-sm: 0 1px 2px rgba(12,13,16,.06);
  --shadow: 0 8px 28px rgba(12,13,16,.08);
  --shadow-lg: 0 24px 60px rgba(10,108,242,.18);

  --container: 1180px;
  --pad: clamp(20px, 4vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--ink);
}

.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 14px;
}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; padding: 10px 16px;
  background: var(--ink); color: #fff; z-index: 100; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; outline: 2px solid var(--brand-cyan); }

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-strip {
  font-size: 12.5px;
  color: var(--mute);
  border-bottom: 1px solid var(--line);
  background: #fafbfd;
}
.header-strip__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px var(--pad);
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.header-strip span { display: inline-flex; align-items: center; gap: 6px; }
.header-strip a { color: var(--mute); }
.header-strip a:hover { color: var(--brand-blue); }

.header-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; }
.brand img {
  height: 38px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.primary-nav {
  display: flex;
  gap: 26px;
  justify-content: center;
  font-weight: 500;
  font-size: 15px;
}
.primary-nav a {
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] {
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  text-decoration: none;
}
.primary-nav details { position: relative; }
.primary-nav summary {
  list-style: none;
  cursor: pointer;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.primary-nav summary::-webkit-details-marker { display: none; }
.primary-nav summary::after { content: " ▾"; font-size: 10px; color: var(--mute); }
.primary-nav details[open] summary { color: var(--brand-blue); border-color: var(--brand-blue); }
.primary-nav .submenu {
  position: absolute; top: calc(100% + 6px); left: -14px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 10px; min-width: 280px; display: flex; flex-direction: column; gap: 2px;
  z-index: 60;
}
.primary-nav .submenu a {
  padding: 10px 12px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
}
.primary-nav .submenu a:hover { background: var(--soft); color: var(--brand-blue); }

.cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-blue); color: #fff;
  border: 1.5px solid var(--brand-blue);
  padding: 11px 18px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 14.5px;
  transition: background .15s, transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.cta:hover { background: var(--brand-blue-hov); border-color: var(--brand-blue-hov); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.cta--lg { padding: 15px 26px; font-size: 16px; }
.cta--ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line);
}
.cta--ghost:hover { background: #fff; border-color: var(--brand-blue); color: var(--brand-blue); box-shadow: var(--shadow-sm); }
.cta--white { background: #fff; color: var(--brand-blue); border-color: #fff; }
.cta--white:hover { background: #f1f5ff; color: var(--brand-blue); border-color: #f1f5ff; }

/* Hide mobile-only CTA by default; only shown inside open mobile menu */
.mobile-cta { display: none !important; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: transparent; border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 8px 10px;
  color: var(--ink);
}
.menu-toggle svg { width: 22px; height: 22px; display: block; }

/* ========== HERO ========== */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 480px at 75% -10%, rgba(30,167,224,.10), transparent 60%),
    radial-gradient(900px 420px at 0% 0%, rgba(10,108,242,.07), transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .52;
  background:
    linear-gradient(90deg, rgba(10,108,242,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(30,167,224,.07) 1px, transparent 1px),
    radial-gradient(circle at 86% 28%, rgba(30,167,224,.18) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 48%, rgba(10,108,242,.16) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 58%, rgba(30,167,224,.16) 0 2px, transparent 3px);
  background-size: 52px 52px, 52px 52px, auto, auto, auto;
  mask-image: linear-gradient(90deg, transparent 0%, transparent 42%, #000 72%, transparent 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .16;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.78) 42%, rgba(255,255,255,.34) 100%),
    url("../assets/photos/hero-executive-office-ai.jpg") center right / cover no-repeat;
  filter: saturate(.82) contrast(1.05);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 84px) var(--pad) clamp(56px, 8vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}
.hero__copy,
.hero__side {
  min-width: 0;
}
.hero__copy { padding-top: clamp(4px, 1.5vw, 18px); }
.hero__side { display: grid; gap: 18px; }
.hero__image {
  width: min(560px, 100%);
  margin: 0 0 22px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(10,108,242,.12);
  box-shadow: 0 20px 60px rgba(10,108,242,.14);
  position: relative;
}
.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,108,242,.30), rgba(30,167,224,.08) 45%, rgba(255,255,255,.22)),
    linear-gradient(0deg, rgba(255,255,255,.34), transparent 40%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero__image img {
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  filter: saturate(.9) contrast(1.03);
}
.hero__slider::after {
  display: none;
}
.hero__slider .service-slider__viewport {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border-radius: var(--radius-lg);
  box-shadow: none;
}
.hero__slider .service-slide {
  position: absolute;
  inset: 0;
}
.hero__slider .service-slide[hidden] {
  display: none !important;
}
.hero__slider .service-slide__copy {
  left: 28px;
  right: 24px;
  bottom: 28px;
  max-width: 430px;
}
.hero__slider .service-slide__copy span {
  margin-bottom: 8px;
  font-size: 10px;
}
.hero__slider .service-slide__copy h3 {
  font-size: clamp(28px, 3.7vw, 42px);
  line-height: .96;
}
.hero__slider .service-slide__copy p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.45;
}
.hero__slider .service-slider__controls {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  z-index: 4;
  margin-top: 0;
  pointer-events: none;
}
.hero__slider .service-slider__button,
.hero__slider .service-slider__dots button {
  pointer-events: auto;
}
.hero__slider .service-slider__button {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(255,255,255,.86);
  font-size: 24px;
}
.hero__slider .service-slider__dots {
  align-items: center;
}
.hero__slider .service-slider__dots button {
  width: 24px;
  background: rgba(255,255,255,.40);
}
.hero__slider .service-slider__dots button.is-active {
  background: #7ee7ff;
}
.hero h1 {
  font-size: clamp(34px, 3.9vw, 48px);
  font-weight: 800;
  letter-spacing: -.025em;
  margin: 0 0 18px;
}
.hero h1 span { color: var(--brand-blue); }
.hero__lede {
  font-size: clamp(16.5px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 28px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.hero__bullets li { display: inline-flex; align-items: center; gap: 8px; }
.hero__bullets svg { width: 18px; height: 18px; color: var(--brand-cyan); flex-shrink: 0; }

.snapshot {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 26px 28px 22px;
  position: relative;
}
.snapshot::before {
  content: "";
  position: absolute; inset: -1px -1px auto -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.snapshot__head { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--mute); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.snapshot__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-cyan); box-shadow: 0 0 0 4px rgba(30,167,224,.18); }
.snapshot__body { display: grid; gap: 14px; }
.snapshot__stat {
  padding: 12px 0;
  border-top: 1px dashed var(--line);
  display: grid;
  grid-template-columns: minmax(92px, auto) 1fr;
  align-items: baseline;
  gap: 14px;
}
.snapshot__stat:first-child { border-top: 0; padding-top: 0; }
.snapshot__num { font-size: 28px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; white-space: nowrap; line-height: 1.05; }
.snapshot__lbl { color: var(--mute); font-size: 14px; line-height: 1.4; }
.snapshot__foot { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 12px; color: var(--mute); }
.snapshot__foot a {
  color: var(--brand-blue);
  font-weight: 700;
}

/* ========== COMPETITIVE AI PRESSURE ========== */
.competitor-section {
  padding: clamp(46px, 7vw, 82px) var(--pad);
  background:
    radial-gradient(760px 420px at 8% 10%, rgba(48, 218, 255, .30), transparent 64%),
    radial-gradient(720px 380px at 96% 8%, rgba(255, 255, 255, .18), transparent 58%),
    linear-gradient(135deg, #0a6cf2 0%, #0856c8 52%, #043b91 100%);
  color: #fff;
}
.competitor-section__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.competitor-section .eyebrow {
  color: var(--brand-cyan-2);
}
.competitor-section h2 {
  margin: 0 0 16px;
  max-width: 12ch;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .98;
  letter-spacing: -.045em;
}
.competitor-section__copy p:not(.eyebrow) {
  margin: 0 0 24px;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.6;
}
.competitor-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.competitor-stat {
  min-height: 172px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.14);
  box-shadow: 0 18px 46px rgba(4, 35, 85, .18);
  backdrop-filter: blur(10px);
}
.competitor-stat strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -.035em;
}
.competitor-stat span {
  display: block;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.45;
}
.competitor-section__source {
  grid-column: 1 / -1;
  margin: -10px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.24);
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.5;
}
.competitor-section__source a {
  color: #fff;
  font-weight: 700;
}

/* ========== TRUST STRIP ========== */
.trust {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  padding: 28px var(--pad);
}
.trust__inner { max-width: var(--container); margin: 0 auto; text-align: center; }
.trust__title {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
  margin: 0 0 16px;
}
.trust__logos {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 18px 34px;
}
.trust__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 34px;
  opacity: 1;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.trust__logo img {
  display: block;
  width: auto;
  max-width: 122px;
  max-height: 24px;
  object-fit: contain;
  opacity: 1;
}
.trust--certifications {
  background: transparent;
}
.trust__logos--certifications {
  display: grid;
  grid-template-columns: repeat(6, minmax(112px, 1fr));
  gap: 14px;
}
.trust__logo--cert {
  min-width: 0;
  width: 100%;
  height: 82px;
  padding: 14px;
  background: transparent;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: none;
  opacity: 1;
}
.trust__logo--cert img {
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
  opacity: 1;
}

.reputation-strip {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px var(--pad);
}
.reputation-strip__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, .8fr) 2fr;
  gap: 18px;
  align-items: center;
}
.reputation-strip__title {
  margin: 0;
  color: var(--mute);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.45;
  text-transform: uppercase;
}
.reputation-strip__links {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, .9fr) minmax(270px, 1.18fr);
  gap: 10px;
}
.reputation-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 58px;
  padding: 10px 13px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(19, 30, 52, .1);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.reputation-card:hover,
.reputation-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(10, 108, 242, .28);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
  outline: none;
}
.reputation-card__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  color: var(--brand-blue);
  min-width: 0;
}
.reputation-mark {
  display: block;
  width: auto;
  height: 30px;
  max-width: 128px;
  overflow: visible;
  color: var(--brand-blue);
}
.reputation-mark path,
.reputation-mark rect,
.reputation-mark circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reputation-mark--google path,
.reputation-mark--yelp path {
  fill: currentColor;
  stroke: none;
}
.reputation-mark--instagram rect {
  fill: none;
}
.reputation-mark text {
  fill: currentColor;
  stroke: none;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.04em;
}
.reputation-card__meta {
  display: grid;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
  text-align: right;
}
.reputation-card__meta strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.15;
  overflow-wrap: anywhere;
  white-space: normal;
}
.reputation-card--instagram .reputation-card__meta strong {
  font-size: 12px;
  letter-spacing: -.02em;
}
.reputation-card__meta small {
  color: var(--mute);
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
}

.quick-lead {
  max-width: 1060px;
  margin: 28px auto 0;
  padding: clamp(22px, 3.5vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: .95fr 1.35fr;
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  text-align: left;
}
.form-head {
  grid-column: 1 / -1;
}
.form-head h2 {
  font-size: 24px;
  margin: 0 0 8px;
}
.form-head p:not(.eyebrow) {
  color: var(--mute);
  margin: 0 0 4px;
  font-size: 14.5px;
}
.quick-lead__copy h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.1;
}
.quick-lead__copy p:not(.eyebrow) {
  color: var(--mute);
  font-size: 16px;
  margin: 0;
}
.quick-lead__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quick-lead__form label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
}
.quick-lead__form button,
.quick-lead__form .form-success {
  grid-column: 1 / -1;
}
.quick-lead__form input,
.quick-lead__form select,
.quick-lead__form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .15s, box-shadow .15s;
}
.quick-lead__form textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.45;
}
.quick-lead__form input:focus,
.quick-lead__form select:focus,
.quick-lead__form textarea:focus {
  outline: 0;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(10,108,242,.12);
}
.quick-lead__form button {
  justify-content: center;
  background: var(--brand-blue);
  color: #fff;
  border: 0;
  padding: 13px 22px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.quick-lead__form button:hover { background: var(--brand-blue-hov); transform: translateY(-1px); }
.quick-lead__form--hero {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 20px;
  grid-template-columns: 1fr 1fr;
}
.quick-lead__form--hero fieldset,
.quick-lead__form--hero .form-head,
.quick-lead__form--hero .form-actions,
.quick-lead__form--hero button,
.quick-lead__form--hero .form-success {
  grid-column: 1 / -1;
}
.staged-lead-form {
  gap: 14px;
}
.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 14px;
}
.form-progress span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--mute);
  font-size: 12px;
  font-weight: 800;
  background: var(--soft);
}
.form-progress span.is-active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}
.form-step {
  display: none;
  border: 0 !important;
  padding: 0;
  margin: 0;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.staged-lead-form .form-step:not(.is-active) {
  display: none !important;
}
.form-step.is-active {
  display: grid;
}
.form-step legend {
  grid-column: 1 / -1;
  padding: 0 0 2px;
  font-size: 12px;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.form-step .wide-field,
.form-step textarea {
  grid-column: 1 / -1;
}
.form-actions {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 10px;
  align-items: center;
}
.quick-lead__form .form-actions button {
  grid-column: auto;
}
.quick-lead__form .form-back {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.quick-lead__form .form-back:hover {
  background: var(--soft);
  transform: translateY(-1px);
}

/* ========== SECTION ========== */
.section { padding: clamp(56px, 8vw, 96px) var(--pad); }
.section--compact { padding-top: clamp(44px, 6vw, 72px); padding-bottom: clamp(44px, 6vw, 72px); }
.section__head { max-width: var(--container); margin: 0 auto clamp(28px, 4vw, 48px); text-align: center; }
.section__head h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; margin: 0 0 12px; }
.section__head p { color: var(--mute); font-size: 17px; max-width: 64ch; margin: 0 auto; }
.section--alt { background: var(--soft); }
.section--ink {
  background: linear-gradient(135deg, #06121f 0%, #0c2447 60%, #0a6cf2 130%);
  color: #e8eef9;
}
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: #b9c6dc; }

/* ========== AI SEARCH VISIBILITY HOME FEATURE ========== */
.ai-visibility-home {
  padding: clamp(54px, 7vw, 92px) var(--pad);
  background:
    radial-gradient(760px 420px at 8% 10%, rgba(48, 218, 255, .26), transparent 64%),
    radial-gradient(620px 360px at 95% 16%, rgba(255, 255, 255, .18), transparent 58%),
    linear-gradient(135deg, #0a6cf2 0%, #0856c8 52%, #043b91 100%);
  color: #fff;
}
.ai-visibility-home__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .72fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.ai-visibility-home .eyebrow { color: #93f2ff; }
.ai-visibility-home h2 {
  color: #fff;
  font-size: clamp(32px, 4.7vw, 58px);
  line-height: 1.02;
  letter-spacing: -.05em;
  max-width: 12ch;
}
.ai-visibility-home__copy p:not(.eyebrow) {
  color: rgba(255,255,255,.84);
  font-size: clamp(17px, 2vw, 20px);
  max-width: 62ch;
}
.ai-visibility-home__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.ai-visibility-home__actions .cta--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.ai-visibility-home__actions .cta--ghost:hover {
  color: var(--brand-blue);
  background: #fff;
}
.ai-visibility-home__panel {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  background: rgba(255,255,255,.14);
  box-shadow: 0 24px 70px rgba(4, 35, 85, .20);
  backdrop-filter: blur(12px);
}
.ai-visibility-home__panel h3 { color: #fff; font-size: 28px; margin-bottom: 8px; }
.ai-visibility-home__panel strong {
  display: block;
  margin: 8px 0 14px;
  color: #fff;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -.05em;
}
.ai-visibility-home__panel p { color: rgba(255,255,255,.82); margin: 0 0 18px; }
.ai-visibility-home__panel ul {
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.24);
  color: rgba(255,255,255,.88);
  display: grid;
  gap: 10px;
}
.ai-visibility-home__panel li { margin-left: 18px; }
.visibility-check-form {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.24);
}
.visibility-check-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.visibility-check-form label {
  display: grid;
  gap: 6px;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.visibility-check-form input,
.visibility-check-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  padding: 10px 12px;
  color: #102033;
  background: rgba(255,255,255,.94);
  font: inherit;
}
.visibility-check-form__note {
  margin: 14px 0 14px !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 13px;
  line-height: 1.45;
}
.visibility-check-form .form-success {
  margin: 12px 0 0 !important;
  color: #ffffff !important;
  font-weight: 800;
}

/* ========== SERVICES GRID ========== */
.services {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  position: relative;
  display: flex; flex-direction: column;
}
.service:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(10,108,242,.25);
}
.service--featured-blue {
  border-color: rgba(10,108,242,.32);
  background:
    linear-gradient(180deg, rgba(232,240,255,.72), #fff);
}
.service__icon {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(30,167,224,.10), rgba(10,108,242,.10));
  color: var(--brand-blue);
  margin-bottom: 16px;
}
.service__icon svg { width: 24px; height: 24px; }
.service h3 { font-size: 19px; margin: 0 0 8px; font-weight: 700; }
.service p { color: var(--mute); font-size: 15px; margin: 0 0 16px; }
.service__link {
  margin-top: auto;
  font-weight: 600;
  font-size: 14px;
  color: var(--brand-blue);
  display: inline-flex; align-items: center; gap: 6px;
}
.service__link::after { content: "→"; transition: transform .15s; }
.service:hover .service__link::after { transform: translateX(3px); }
.service--wide { grid-column: span 3; }
@media (min-width: 720px) { .service--wide { grid-column: span 1; } }

/* ========== APP DEVELOPMENT SHOWCASE ========== */
.app-showcase {
  overflow: hidden;
}
.app-case-list {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}
.app-case {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(232,240,255,.62));
  border: 1px solid rgba(10,108,242,.16);
  border-radius: var(--radius-lg);
  padding: clamp(16px, 2vw, 26px);
  box-shadow: var(--shadow-soft);
}
.app-case--reverse {
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
}
.app-case--reverse .app-case__image {
  order: 2;
}
.app-case__image {
  min-width: 0;
}
.app-case__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 60px rgba(12, 13, 16, .14);
  border: 1px solid rgba(12, 13, 16, .08);
}
.app-case__copy {
  min-width: 0;
  padding: clamp(4px, 1vw, 10px);
}
.app-case__copy h3 {
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.05;
  margin-bottom: 14px;
}
.app-case__copy p:not(.eyebrow) {
  color: var(--ink-2);
  font-size: 16px;
  margin-bottom: 18px;
}
.app-case__copy ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}
.app-case__copy li {
  color: var(--mute);
  font-size: 14.5px;
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
}
.app-case__copy li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--brand-cyan);
  margin-top: 8px;
  box-shadow: 0 0 0 5px rgba(30, 167, 224, .10);
}

/* ========== PORTFOLIO / CASE STUDIES ========== */
.portfolio-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.portfolio-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.portfolio-card__image {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.portfolio-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  transition: transform .18s ease;
}
.portfolio-card:hover .portfolio-card__image img { transform: scale(1.015); }
.portfolio-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.portfolio-card__body h3 {
  font-size: 22px;
  margin: 0;
}
.portfolio-card__body p {
  color: var(--mute);
  margin: 0;
}
.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.portfolio-tags li {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: var(--brand-blue-soft);
  border: 1px solid rgba(10,108,242,.16);
  border-radius: var(--radius);
  padding: 7px 9px;
}
.case-study-list {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 34px;
}
.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
}
.case-study:nth-child(even) .case-study__media { order: 2; }
.case-study__media {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--soft);
  box-shadow: 0 16px 44px rgba(12,13,16,.10);
}
.case-study__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}
.case-study__content h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
}
.case-study__content p { color: var(--mute); }
.case-study__content ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.case-study__content li {
  padding-left: 18px;
  position: relative;
  color: var(--ink-2);
}
.case-study__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  background: var(--brand-blue);
  border-radius: 999px;
}
.portfolio-proof {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.portfolio-proof article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.portfolio-proof strong {
  display: block;
  font-size: 17px;
  margin-bottom: 8px;
}
.portfolio-proof span {
  display: block;
  color: var(--mute);
  font-size: 14px;
}

/* ========== AUDIT / PACKAGES / PROOF ========== */
.audit-grid,
.package-grid,
.proof-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.audit-grid { grid-template-columns: repeat(4, 1fr); }
.package-grid { grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.proof-grid { grid-template-columns: repeat(3, 1fr); }
.audit-card,
.package-card,
.proof-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.audit-card { padding: 22px; }
.audit-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10,108,242,.08);
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.audit-card h3,
.package-card h3,
.proof-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}
.audit-card p,
.package-card p,
.proof-card p {
  color: var(--mute);
  margin: 0;
  font-size: 15px;
}
.package-card {
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.package-card--featured {
  border-color: rgba(10,108,242,.38);
  box-shadow: 0 20px 70px rgba(10,108,242,.12);
}
.package-card ul {
  list-style: none;
  padding: 18px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
}
.package-card li {
  color: var(--ink-2);
  font-size: 14px;
  display: flex;
  gap: 8px;
}
.package-card li::before {
  content: "✓";
  color: var(--brand-cyan);
  font-weight: 800;
}
.package-card .package-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.offer-note {
  max-width: var(--container);
  margin: 18px auto 0;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(10,108,242,.18);
  border-radius: var(--radius-lg);
  color: var(--ink-2);
  box-shadow: var(--shadow-soft);
  line-height: 1.5;
}
.signup-panel,
.audit-form-layout {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(22px, 4vw, 40px);
  align-items: start;
}
.audit-form-layout {
  grid-template-columns: .85fr 1.15fr;
}
.signup-panel > *,
.audit-form-layout > * {
  min-width: 0;
}
.signup-panel__copy h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
  margin: 0 0 12px;
}
.signup-panel__copy p:not(.eyebrow) {
  color: var(--mute);
  font-size: 17px;
}
.signup-panel__copy ul {
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--ink-2);
  display: grid;
  gap: 10px;
}
.proof-card {
  padding: 24px;
  border-left: 4px solid var(--brand-blue);
}

/* ========== INDUSTRY GRID ========== */
.industries {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-directory { grid-template-columns: repeat(4, 1fr); }
.industry {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px 14px 22px;
  position: relative;
  transition: transform .15s, box-shadow .15s;
  color: var(--ink);
}
.industry:hover { transform: translateY(-3px); box-shadow: var(--shadow); text-decoration: none; }
.industry__art {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 18px;
  background: var(--soft);
  filter: saturate(.92) contrast(1.02);
}
.industry__num {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--brand-cyan);
  margin: 0 10px 10px;
}
.industry h4 { font-size: 17px; margin: 0 10px 6px; font-weight: 700; }
.industry p { color: var(--mute); font-size: 14px; margin: 0 10px 16px; }
.industry__link { display: inline-flex; margin: 0 10px; color: var(--brand-blue); font-weight: 700; font-size: 13px; }

/* ========== INDUSTRY DETAIL PAGES ========== */
.industry-detail {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}
.industry-visual {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.industry-visual img { border-radius: var(--radius-lg); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(12, 31, 58, .08);
  border-bottom: 1px solid rgba(12, 31, 58, .08);
}
.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-2);
  padding: 13px 0;
  border-top: 1px solid rgba(12, 31, 58, .08);
  font-size: 15px;
  line-height: 1.5;
}
.check-list li:first-child {
  border-top: 0;
}
.check-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: var(--radius-lg);
  background: var(--brand-cyan);
  box-shadow: 0 0 0 5px rgba(30, 167, 224, .10);
}
.check-list svg {
  display: none;
}
.industry-page-hero .page-hero__inner { max-width: 980px; }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.solution-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.solution-card h3 { font-size: 18px; margin-bottom: 8px; }
.solution-card p { color: var(--mute); margin: 0; font-size: 14.5px; }
.security-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.security-badge {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.security-badge svg { width: 26px; height: 26px; flex: 0 0 auto; color: var(--brand-blue); }
.security-badge strong { display: block; font-size: 14px; margin-bottom: 2px; }
.security-badge span { display: block; color: var(--mute); font-size: 12.5px; line-height: 1.35; }

/* ========== DEMO PORTFOLIO MOCKUPS ========== */
.demo-lab {
  max-width: var(--container);
  margin: 0 auto;
}
.demo-lab__intro {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(260px, .26fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: end;
  margin-bottom: clamp(26px, 4vw, 46px);
}
.demo-lab__intro h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -.025em;
  margin: 0 0 12px;
}
.demo-lab__intro p:not(.eyebrow) {
  color: var(--ink-2);
  font-size: 17px;
  margin: 0;
}
.demo-note {
  background: rgba(10,108,242,.06);
  border: 1px solid rgba(10,108,242,.14);
  border-radius: var(--radius-lg);
  padding: 16px;
  color: var(--ink-2);
  font-size: 13.5px !important;
  line-height: 1.5;
}
.demo-note strong { color: var(--ink); }
.demo-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  gap: 18px;
  align-items: stretch;
}
.demo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10,108,242,.10);
  background: #fff;
  box-shadow: 0 24px 70px rgba(7,27,52,.10);
}
.demo-card--medical {
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(520px 280px at 12% 8%, rgba(30,167,224,.18), transparent 60%),
    linear-gradient(145deg, #fff 0%, #f5fbff 45%, #eef7ff 100%);
}
.demo-card--legal {
  padding: clamp(22px, 4vw, 34px);
  color: #f8fbff;
  border-color: rgba(255,255,255,.12);
  background:
    radial-gradient(520px 280px at 15% 0%, rgba(30,167,224,.30), transparent 58%),
    linear-gradient(145deg, #071526 0%, #0b2038 48%, #102f4d 100%);
}
.demo-card__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-lg);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: rgba(10,108,242,.08);
  margin-bottom: 13px;
}
.demo-card--legal .demo-pill {
  color: #aee8ff;
  background: rgba(255,255,255,.08);
}
.demo-card h3 {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -.025em;
  margin: 0 0 10px;
}
.demo-card--legal h3 { color: #fff; }
.demo-card p {
  color: var(--ink-2);
  margin: 0;
}
.demo-card--legal p { color: rgba(248,251,255,.78); }
.demo-window {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10,108,242,.12);
  background: rgba(255,255,255,.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
  overflow: hidden;
}
.demo-card--legal .demo-window {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
}
.demo-window__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(10,108,242,.10);
  font-size: 12.5px;
  color: var(--mute);
  font-weight: 700;
}
.demo-card--legal .demo-window__bar {
  color: rgba(248,251,255,.62);
  border-bottom-color: rgba(255,255,255,.10);
}
.demo-dots {
  display: inline-flex;
  gap: 5px;
}
.demo-dots span {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-lg);
  background: rgba(10,108,242,.22);
}
.demo-card--legal .demo-dots span { background: rgba(174,232,255,.34); }
.care-board {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 14px;
  padding: 16px;
}
.care-queue,
.care-chart,
.legal-pipeline,
.legal-scorecard {
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(10,108,242,.10);
  padding: 14px;
}
.demo-card--legal .legal-pipeline,
.demo-card--legal .legal-scorecard {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.10);
}
.care-queue h4,
.care-chart h4,
.legal-pipeline h4,
.legal-scorecard h4 {
  font-size: 13px;
  margin: 0 0 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.demo-card--legal .legal-pipeline h4,
.demo-card--legal .legal-scorecard h4 { color: #fff; }
.care-item,
.matter-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid rgba(10,108,242,.08);
}
.demo-card--legal .matter-row { border-top-color: rgba(255,255,255,.10); }
.care-item:first-of-type,
.matter-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.care-item strong,
.matter-row strong {
  display: block;
  font-size: 14px;
}
.demo-card--legal .matter-row strong { color: #fff; }
.care-item span,
.matter-row span {
  color: var(--mute);
  font-size: 12.5px;
}
.demo-card--legal .matter-row span { color: rgba(248,251,255,.58); }
.status-chip {
  flex: 0 0 auto;
  border-radius: var(--radius-lg);
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--brand-blue);
  background: rgba(10,108,242,.09);
  white-space: nowrap;
}
.demo-card--legal .status-chip {
  color: #aee8ff;
  background: rgba(174,232,255,.10);
}
.care-bars {
  display: grid;
  gap: 10px;
}
.care-bars span {
  display: block;
  height: 11px;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
}
.care-bars span:nth-child(2) { width: 74%; opacity: .75; }
.care-bars span:nth-child(3) { width: 48%; opacity: .55; }
.legal-board {
  display: grid;
  gap: 14px;
  padding: 16px;
}
.pipeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.pipeline-step {
  min-height: 92px;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}
.pipeline-step b {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
  color: #fff;
}
.pipeline-step span {
  display: block;
  color: rgba(248,251,255,.62);
  font-size: 12px;
}
.demo-side {
  display: grid;
  gap: 18px;
}
.demo-stats {
  display: grid;
  gap: 12px;
}
.demo-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.demo-stat strong {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--brand-blue);
  margin-bottom: 6px;
}
.demo-stat span {
  display: block;
  color: var(--ink-2);
  font-size: 14px;
}
.mini-chat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mini-chat--legal {
  background: #fbfbfc;
  border-color: rgba(7,21,38,.10);
}
.mini-chat__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(10,108,242,.07), rgba(30,167,224,.05));
}
.mini-chat__head strong { display: block; }
.mini-chat__head span {
  color: var(--mute);
  font-size: 12.5px;
}
.chat-live-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: var(--radius-lg);
  background: #20c997;
  box-shadow: 0 0 0 5px rgba(32,201,151,.12);
}
.mini-chat__body {
  display: grid;
  gap: 10px;
  padding: 16px;
}
.chat-bubble {
  max-width: 86%;
  border-radius: var(--radius-lg);
  padding: 11px 13px;
  font-size: 13.5px;
  line-height: 1.45;
}
.chat-bubble--bot {
  background: #eef6ff;
  color: #10233b;
  border-bottom-left-radius: 6px;
}
.chat-bubble--user {
  justify-self: end;
  background: var(--brand-blue);
  color: #fff;
  border-bottom-right-radius: 6px;
}
.demo-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.demo-card--legal .cta--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
}

/* ========== CTA STRIP ========== */
.cta-strip {
  background: linear-gradient(135deg, var(--brand-blue) 0%, #0855c0 100%);
  color: #fff;
  padding: clamp(36px, 5vw, 56px) var(--pad);
}
.cta-strip__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h3 { color: #fff; font-size: clamp(22px, 2.4vw, 28px); margin: 0 0 4px; font-weight: 700; }
.cta-strip p { color: rgba(255,255,255,.85); margin: 0; font-size: 15.5px; }

/* ========== PROCESS / STEPS ========== */
.steps {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.step {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.step__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid rgba(11,116,234,.16);
}

.step__body {
  padding: 22px;
}
.step h4 { font-size: 16px; margin: 0 0 6px; }
.step p { color: var(--mute); font-size: 14px; margin: 0; }

/* ========== FINAL CTA ========== */
.final-cta {
  text-align: center;
  padding: clamp(56px, 8vw, 96px) var(--pad);
  background: var(--soft);
  border-top: 1px solid var(--line);
}
.final-cta h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 0 0 14px; font-weight: 800; }
.final-cta p { color: var(--mute); font-size: 17px; max-width: 56ch; margin: 0 auto 24px; }

/* ========== CONTACT FORM ========== */
.form-card {
  max-width: 640px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}
.form-card label { display: block; margin-bottom: 14px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.form-card input, .form-card select, .form-card textarea {
  display: block; width: 100%; margin-top: 6px;
  padding: 11px 13px;
  font: inherit; color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color .15s, box-shadow .15s;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: 0; border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(10,108,242,.12);
}
.form-card textarea { min-height: 120px; resize: vertical; }
.form-card button {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-blue); color: #fff;
  border: 0;
  padding: 13px 22px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 15px;
  transition: background .15s;
}
.form-card button:hover { background: var(--brand-blue-hov); }
.form-card .fine { font-size: 12.5px; color: var(--mute); margin: 12px 0 0; }
.form-success {
  background: #e9f6ee; color: var(--good);
  border: 1px solid #c2e4cf;
  padding: 12px 14px; border-radius: var(--radius-lg);
  font-size: 14px; margin-top: 14px;
}

/* ========== START PROJECT PAGE ========== */
.start-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(10,108,242,.13), transparent 30%),
    linear-gradient(135deg, #eef5fb 0%, #f7fafc 48%, #e9f1f7 100%);
  color: var(--ink);
  min-height: 100vh;
}
.start-header,
.start-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.start-header {
  padding: 24px 0 10px;
}
.start-header .brand img {
  width: 220px;
  height: auto;
  display: block;
}
.start-header__note {
  border: 1px solid rgba(10,108,242,.18);
  background: rgba(255,255,255,.72);
  color: var(--ink-2);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.start-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 22px auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: stretch;
}
.start-hero__copy,
.start-summary,
.start-card,
.start-side {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(138,154,178,.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(11,27,51,.09);
}
.start-hero__copy {
  padding: clamp(28px, 5vw, 54px);
}
.start-hero h1 {
  max-width: 780px;
  margin: 0 0 14px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: .93;
  letter-spacing: -.065em;
  font-weight: 850;
}
.start-hero__copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}
.start-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.start-points span {
  border: 1px solid rgba(10,108,242,.18);
  background: rgba(10,108,242,.08);
  color: #0b4ea2;
  border-radius: var(--radius);
  padding: 9px 11px;
  font-size: 13px;
  font-weight: 800;
}
.start-summary {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, #0b1b33, #0a6cf2);
  color: #fff;
}
.start-summary span {
  color: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.start-summary strong {
  display: block;
  margin: 8px 0 12px;
  font-size: clamp(56px, 8vw, 78px);
  line-height: .9;
  letter-spacing: -.06em;
}
.start-summary p {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}
.start-checkout {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto clamp(48px, 8vw, 90px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 24px;
  align-items: start;
}
.start-card {
  padding: clamp(22px, 4vw, 34px);
}
.start-card__head {
  margin-bottom: 18px;
}
.start-card__head h2,
.start-side h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1;
  letter-spacing: -.04em;
}
.start-card__head p:not(.eyebrow),
.start-side p {
  color: var(--mute);
  line-height: 1.55;
}
.start-form {
  grid-template-columns: 1fr 1fr;
}
.start-form .wide-field,
.start-form .start-payment-note,
.start-form button,
.start-form .form-success {
  grid-column: 1 / -1;
}
.start-payment-note {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(10,108,242,.18);
  background: rgba(10,108,242,.07);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink-2);
  font-size: 13.5px;
}
.start-payment-note strong {
  color: var(--ink);
  font-size: 14px;
}
.start-side {
  padding: clamp(22px, 4vw, 32px);
}
.start-side ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}
.start-side li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-2);
  line-height: 1.45;
}
.start-side li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(10,108,242,.12);
}
.start-footer {
  padding: 24px 0 34px;
  border-top: 1px solid rgba(138,154,178,.22);
  color: var(--mute);
  font-size: 14px;
}
.start-footer a {
  color: var(--brand-blue);
  font-weight: 800;
}

@media (max-width: 860px) {
  .start-header,
  .start-footer,
  .start-hero,
  .start-checkout {
    width: min(100% - 28px, 680px);
  }
  .start-header {
    align-items: flex-start;
  }
  .start-header .brand img {
    width: 190px;
  }
  .start-header__note {
    font-size: 11px;
    padding: 8px 10px;
  }
  .start-hero,
  .start-checkout {
    grid-template-columns: 1fr;
  }
  .start-hero {
    margin-top: 14px;
  }
  .start-summary {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .start-header {
    flex-direction: column;
  }
  .start-form {
    grid-template-columns: 1fr;
  }
  .start-hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }
  .start-points {
    flex-direction: column;
  }
  .start-points span {
    width: 100%;
  }
}

/* ========== SERVICE PAGE LAYOUT ========== */
.page-hero {
  background:
    radial-gradient(900px 420px at 80% -20%, rgba(30,167,224,.10), transparent 60%),
    var(--soft);
  border-bottom: 1px solid var(--line);
  padding: clamp(40px, 6vw, 72px) var(--pad);
}
.page-hero__inner { max-width: var(--container); margin: 0 auto; }
.page-hero h1 { font-size: clamp(30px, 3.8vw, 46px); margin: 0 0 14px; font-weight: 800; max-width: 22ch; }
.page-hero p { font-size: 17px; color: var(--ink-2); max-width: 64ch; margin: 0 0 22px; }
.page-photo-band {
  padding: clamp(28px, 5vw, 56px) var(--pad) 0;
  background: #fff;
}
.page-photo-band--alt {
  background: var(--soft);
  padding-bottom: clamp(28px, 5vw, 56px);
}
.page-photo {
  max-width: var(--container);
  margin: 0 auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(9, 31, 67, .12);
  border: 1px solid rgba(10, 108, 242, .10);
  background: #f3f7ff;
}
.page-photo img {
  width: 100%;
  height: clamp(260px, 42vw, 520px);
  object-fit: cover;
  display: block;
}
.page-photo--split img { height: clamp(240px, 34vw, 420px); }
.founder-card {
  background: var(--deep-blue);
  border: 1px solid rgba(10, 108, 242, .16);
  border-radius: var(--radius-sm);
  box-shadow: 0 22px 60px rgba(9, 31, 67, .14);
  overflow: hidden;
}
.founder-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}
.founder-card__caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px;
  background: linear-gradient(135deg, #071b35 0%, #0b2d57 100%);
  color: #fff;
}
.founder-card__caption strong { font-size: 18px; }
.founder-card__caption span { color: rgba(255,255,255,.72); font-size: 14px; }
.breadcrumbs { font-size: 13px; color: var(--mute); margin: 0 0 14px; }
.breadcrumbs a { color: var(--mute); }
.breadcrumbs a:hover { color: var(--brand-blue); }

.about-owner-section {
  padding-top: clamp(50px, 7vw, 88px);
  background:
    radial-gradient(760px 360px at 84% 8%, rgba(30,167,224,.12), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,.24), rgba(238,245,255,.34));
}

.about-founder {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 58px);
  max-width: 1120px;
  align-items: center;
}

.about-owner-copy {
  max-width: 720px;
}

.about-owner-copy .eyebrow {
  margin-bottom: 12px;
}

.about-owner-title {
  margin: 0 0 22px;
  color: var(--brand-blue);
  font-size: clamp(38px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 760px;
}

.about-owner-copy p:not(.eyebrow) {
  margin: 0;
  color: #344054;
  font-size: clamp(16px, 1.3vw, 17px);
  line-height: 1.76;
}

.about-owner-copy p:not(.eyebrow) + p {
  margin-top: 16px;
}

.about-beliefs-section {
  background:
    radial-gradient(680px 260px at 12% 8%, rgba(10,108,242,.08), transparent 66%),
    #eef3f8;
}

.about-beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
}

.about-belief-card {
  padding: clamp(28px, 3.5vw, 42px);
  border: 1px solid rgba(11,116,234,.18);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.68);
  box-shadow: 0 18px 46px rgba(15,23,42,.07);
}

.about-belief-card h2 {
  margin-top: 0;
  color: var(--brand-blue);
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -.035em;
}

.about-belief-card p,
.about-belief-card li {
  color: #3f4a5d;
}

.about-belief-card ul {
  margin-bottom: 0;
  padding-left: 20px;
}

@media (max-width: 760px) {
  .about-owner-section {
    padding-top: 34px;
  }

  .about-founder,
  .about-beliefs-grid {
    grid-template-columns: 1fr;
  }

  .about-owner-title {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.02;
  }

  .about-belief-card {
    padding: 24px;
  }
}

.page-body {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--pad);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.page-body article h2 { font-size: 26px; margin-top: 1.6em; }
.page-body article h3 { font-size: 19px; margin-top: 1.4em; }
.page-body article p, .page-body article li { font-size: 16px; color: var(--ink-2); }
.page-body article ul { padding-left: 1.2em; }
.page-body article li { margin-bottom: 8px; }

.sidebar {
  position: sticky; top: 120px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar h4 { font-size: 16px; margin: 0 0 6px; }
.sidebar p { font-size: 14px; color: var(--mute); margin: 0 0 16px; }
.sidebar .cta { width: 100%; justify-content: center; }
.sidebar ul { list-style: none; padding: 0; margin: 16px 0 0; font-size: 14px; }
.sidebar ul li { padding: 10px 0; border-top: 1px solid var(--line); }
.sidebar ul li:first-child { border-top: 0; }
.sidebar ul a { color: var(--ink-2); display: block; }
.sidebar ul a:hover { color: var(--brand-blue); text-decoration: none; }

/* ========== FAQ ========== */
.faqs { max-width: var(--container); margin: 0 auto; }
.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer;
  padding: 18px 22px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--mute); font-weight: 400; line-height: 1; }
.faq[open] summary::after { content: "−"; color: var(--brand-blue); }
.faq[open] summary { color: var(--brand-blue); }
.faq__body { padding: 0 22px 18px; color: var(--ink-2); font-size: 15px; }

/* ========== FOOTER ========== */
.site-footer {
  background: #0a0d14;
  color: #b9c1d2;
  padding: 56px var(--pad) 28px;
  font-size: 14.5px;
}
.site-footer__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
.site-footer h5 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #b9c1d2; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__brand img {
  display: block;
  width: min(260px, 100%);
  height: auto;
  max-width: 100%;
  aspect-ratio: 760 / 128;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 14px;
}
.site-footer__brand p { font-size: 14px; color: #95a0b8; margin: 0; max-width: 30ch; }
.site-footer__payments {
  max-width: var(--container);
  margin: 34px auto 0;
  padding: 16px 0 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-footer__payments-label {
  color: #95a0b8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.payment-logos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.payment-logo {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #eef4ff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1;
}
.payment-logo--square::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 3px;
  margin-right: 7px;
}
.payment-logo--cards {
  gap: 5px;
  letter-spacing: .04em;
}
.payment-logo--cards b {
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.payment-logo--cashapp {
  color: #ebfff2;
  background: rgba(0,214,96,.16);
  border-color: rgba(0,214,96,.28);
}
.payment-logo--venmo {
  color: #eaf3ff;
  background: rgba(61,149,255,.15);
  border-color: rgba(61,149,255,.28);
}
.payment-logo--zelle {
  color: #f3eaff;
  background: rgba(109,62,223,.17);
  border-color: rgba(153,119,255,.30);
}
.site-footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 22px;
  font-size: 13px;
  color: #828ca5;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1180px) and (min-width: 981px) {
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .case-study { grid-template-columns: 1fr; }
  .case-study:nth-child(even) .case-study__media { order: 0; }
  .portfolio-proof { grid-template-columns: repeat(2, 1fr); }
  .audit-grid, .package-grid, .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .trust__logos--certifications { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .signup-panel,
  .audit-form-layout { grid-template-columns: 1fr; }
  .industries { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .page-body { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .quick-lead { grid-template-columns: 1fr; }
  .industry-detail { grid-template-columns: 1fr; }
  .about-founder { grid-template-columns: 1fr !important; }
  .founder-card { max-width: 360px; }
  .solution-grid, .security-badges { grid-template-columns: 1fr 1fr; }
  .competitor-section__inner { grid-template-columns: 1fr; }
  .competitor-section h2 { max-width: 16ch; }
  .reputation-strip__inner { grid-template-columns: 1fr; text-align: center; }
  .reputation-strip__links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ai-visibility-home__inner { grid-template-columns: 1fr; }
  .ai-visibility-home h2 { max-width: 15ch; }
  .visibility-check-form__grid { grid-template-columns: 1fr; }
  .demo-lab__intro,
  .demo-showcase { grid-template-columns: 1fr; }
  .demo-side { grid-template-columns: repeat(3, 1fr); }
  .mini-chat { grid-column: 1 / -1; }
  .app-case,
  .app-case--reverse {
    grid-template-columns: 1fr;
  }
  .app-case--reverse .app-case__image {
    order: 0;
  }
}
@media (max-width: 760px) {
  .ai-visibility-home {
    scroll-margin-top: 5.5rem;
    padding-bottom: clamp(5rem, 18vw, 7rem);
  }

  .hero::after {
    opacity: .11;
    background:
      linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 70%, rgba(255,255,255,.94) 100%),
      url("../assets/photos/hero-executive-office-ai.jpg") center top / cover no-repeat;
  }
  .header-strip { display: none; }
  .menu-toggle { display: inline-flex; order: 2; }
  .primary-nav { display: none; }
  .header-main > .cta { display: none; }
  .header-main { grid-template-columns: 1fr auto; justify-content: space-between; gap: 12px; position: relative; }
  .brand img { height: 32px; max-width: 180px; }
  .nav-open .primary-nav {
    display: flex; flex-direction: column; gap: 0; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 16px;
    box-shadow: var(--shadow);
    z-index: 60;
  }
  .nav-open .primary-nav > a, .nav-open .primary-nav summary {
    padding: 14px 0; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 16px;
  }
  .nav-open .primary-nav details { border-bottom: 1px solid var(--line); }
  .nav-open .primary-nav details summary { border-bottom: 0; }
  .nav-open .primary-nav details .submenu {
    position: static; box-shadow: none; border: 0; padding: 0 0 12px 12px;
    min-width: auto;
  }
  .nav-open .primary-nav details .submenu a { padding: 8px 10px; font-size: 14px; }
  .nav-open .primary-nav::after {
    content: ""; display: block; margin-top: 8px;
  }
  .nav-open .primary-nav .mobile-cta {
    display: inline-flex !important; margin-top: 12px; justify-content: center;
    color: #fff;
    border-bottom: 0;
  }

  .services { grid-template-columns: 1fr; }
  .portfolio-proof { grid-template-columns: 1fr; }
  .portfolio-card__body, .case-study { padding: 18px; }
  .audit-grid, .package-grid, .proof-grid { grid-template-columns: 1fr; }
  .audit-form-layout .form-card { order: -1; }
  .signup-panel { gap: 22px; }
  .container[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .industries { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__payments {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 28px;
  }
  .payment-logos {
    justify-content: flex-start;
    gap: 7px;
  }
  .payment-logo {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 11px;
  }
  .cta-strip__inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .hero__inner {
    padding-top: 34px;
    padding-bottom: 42px;
    gap: 24px;
  }
  .hero__copy { padding-top: 0; }
  .hero__image {
    margin-bottom: 18px;
    border-radius: var(--radius-lg);
  }
  .hero__image img { aspect-ratio: auto; }
  .hero__slider .service-slider__viewport {
    min-height: 360px;
  }
  .hero__slider .service-slide__copy {
    left: 20px;
    right: 20px;
    bottom: 86px;
  }
  .hero__slider .service-slide__copy h3 {
    font-size: clamp(26px, 7.8vw, 34px);
  }
  .hero__slider .service-slide__copy p {
    font-size: 14px;
    color: rgba(255,255,255,.92);
  }
  .hero__slider .service-slider__controls {
    left: 14px;
    right: 14px;
    bottom: 12px;
  }
  .hero h1 { font-size: 31px; margin-bottom: 14px; }
  .hero__lede { margin-bottom: 20px; }
  .hero__cta { margin-bottom: 0; }
  .hero__cta .cta--ghost { display: none; }
  .hero__bullets { display: none; }
  .hero__side { gap: 14px; }
  .snapshot { padding: 20px; }
  .snapshot__stat { grid-template-columns: minmax(84px, auto) 1fr; gap: 12px; align-items: start; }
  .snapshot__num { font-size: 26px; }
  .trust { padding-top: 24px; }
  .trust__logos { gap: 14px 24px; }
  .trust__logo { height: 30px; min-width: 58px; }
  .trust__logo img { max-width: 104px; max-height: 21px; }
  .trust__logos--certifications {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .trust__logo--cert {
    height: 76px;
    padding: 12px;
  }
  .trust__logo--cert img {
    max-width: 100%;
    max-height: 46px;
  }
  .reputation-strip {
    padding: 16px var(--pad);
  }
  .reputation-strip__inner {
    gap: 12px;
  }
  .reputation-strip__links {
    grid-template-columns: 1fr;
  }
  .reputation-card {
    min-height: 54px;
    padding: 10px 12px;
  }
  .reputation-card__meta strong,
  .reputation-card__meta small {
    white-space: normal;
  }
  .quick-lead { margin-top: 22px; padding: 22px; }
  .quick-lead__form { grid-template-columns: 1fr; }
  .quick-lead__form--hero { grid-template-columns: 1fr; padding: 20px; }
  .quick-lead__form--hero fieldset,
  .quick-lead__form--hero .form-step,
  .quick-lead__form--hero .form-head,
  .quick-lead__form--hero button,
  .quick-lead__form--hero .form-success { grid-column: auto; }
  .form-step,
  .form-actions {
    grid-template-columns: 1fr;
  }
  .staged-lead-form .form-step.is-active {
    display: grid;
    grid-template-columns: 1fr;
  }
  .staged-lead-form .form-step:not(.is-active) {
    display: none !important;
  }
  .quick-lead__form .form-actions button {
    grid-column: 1;
  }
  .solution-grid, .security-badges { grid-template-columns: 1fr; }
  .competitor-section { padding: 42px var(--pad); }
  .competitor-stats { grid-template-columns: 1fr; }
  .competitor-stat { min-height: 0; }
  .demo-side,
  .care-board { grid-template-columns: 1fr; }
  .pipeline-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pipeline-step { min-height: 78px; }
  .legal-board { padding: 12px; }
  .demo-card__top { flex-direction: column; }
  .demo-card,
  .mini-chat,
  .demo-stat { border-radius: var(--radius-lg); }
  .demo-window { border-radius: var(--radius-lg); }
  .demo-actions .cta { width: 100%; justify-content: center; }
  .care-item,
  .matter-row { align-items: flex-start; }
  .app-case {
    padding: 14px;
  }
  .app-case__copy {
    padding: 8px 2px 2px;
  }
  .app-case__copy h3 {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  .industries, .steps { grid-template-columns: 1fr; }
  .snapshot__stat { grid-template-columns: 1fr; gap: 6px; }
  .snapshot__num { font-size: 28px; }
  .competitor-section h2 { font-size: 34px; }
  .trust__logo--cert { height: 70px; }
}

/* ========== BLOG ========== */
.blog-index-hero .page-hero__inner { max-width: 980px; }
.blog-index-section {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
}
.blog-category-nav {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px;
  border: 1px solid rgba(11,116,234,.16);
  border-radius: var(--radius-sm);
  background: rgba(246,250,255,.88);
  box-shadow: 0 14px 36px rgba(15,23,42,.06);
}
.blog-category-nav span {
  color: var(--mute);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.blog-category-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(11,116,234,.18);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.72);
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.blog-category-nav a:hover,
.blog-category-nav a:focus-visible {
  background: rgba(11,116,234,.09);
  border-color: rgba(11,116,234,.35);
}
.blog-category {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  scroll-margin-top: 110px;
}
.blog-latest {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
.blog-latest__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.blog-latest__head .eyebrow,
.blog-latest__head h2 {
  margin: 0;
}
.blog-latest__head h2 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.05;
  letter-spacing: -.035em;
  text-align: right;
}
.blog-category__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 24px;
  align-items: end;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(11,116,234,.14);
}
.blog-category__head .eyebrow,
.blog-category__head h2,
.blog-category__head p {
  margin: 0;
}
.blog-category__head .eyebrow {
  grid-column: 1 / -1;
}
.blog-category__head h2 {
  color: var(--ink);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.blog-category__head p {
  color: var(--mute);
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.blog-grid--category {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.blog-grid--latest {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.blog-grid--latest .blog-card {
  min-height: 0;
  padding-bottom: 16px;
  border-radius: var(--radius-sm);
}
.blog-grid--latest .blog-card > img {
  aspect-ratio: 16 / 10;
}
.blog-grid--latest .blog-card span {
  margin: 14px 14px 0;
  font-size: 10px;
  letter-spacing: .08em;
}
.blog-grid--latest .blog-card h2 {
  margin: 8px 14px 0;
  font-size: 17px;
  line-height: 1.12;
  letter-spacing: -.025em;
}
.blog-grid--latest .blog-card p {
  display: none;
}
.blog-grid--latest .blog-card small {
  margin: 12px 14px 0;
  font-size: 11px;
}
.blog-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 0 0 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(10,108,242,.35);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.blog-card > img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}
.blog-card span {
  display: block;
  margin: 22px 26px 0;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.blog-card h2 {
  margin: 12px 26px 10px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -.03em;
}
.blog-card p {
  margin: 0 26px;
  color: var(--ink-2);
  line-height: 1.58;
}
.blog-card small {
  display: block;
  margin: 20px 26px 0;
  color: var(--mute);
  font-weight: 700;
}
.blog-post {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}
.blog-post__hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 84px 24px 44px;
}
.blog-post__hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: .98;
  letter-spacing: -.06em;
}
.blog-post__hero p:not(.eyebrow):not(.breadcrumbs) {
  max-width: 820px;
  color: var(--ink-2);
  font-size: 21px;
  line-height: 1.55;
}
.blog-post__meta {
  margin-top: 18px;
  color: var(--mute);
  font-size: 14px;
  font-weight: 700;
}
.blog-post__image {
  max-width: 980px;
  margin: 0 auto 42px;
  padding: 0 24px;
}
.blog-post__image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}
.blog-post__body {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.blog-post__body > h2 {
  margin: 42px 0 12px;
  font-size: 32px;
  letter-spacing: -.035em;
}
.blog-post__body > h3 {
  margin: 28px 0 10px;
  font-size: 23px;
}
.blog-post__body > p,
.blog-post__body > ul,
.blog-post__body > ol {
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.75;
}
.blog-post__body li { margin: 8px 0; }
.blog-cta {
  margin-top: 48px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.blog-cta h2,
.blog-cta p { color: #fff; }
.blog-cta p { max-width: 680px; }

@media (max-width: 900px) {
  .blog-category-nav {
    justify-content: flex-start;
  }
  .blog-category-nav span {
    flex-basis: 100%;
  }
  .blog-category__head {
    grid-template-columns: 1fr;
  }
  .blog-category__head p {
    text-align: left;
  }
  .blog-latest__head {
    display: grid;
    gap: 8px;
  }
  .blog-latest__head h2 {
    text-align: left;
  }
  .blog-grid,
  .blog-grid--category { grid-template-columns: 1fr; }
  .blog-grid--latest { grid-template-columns: 1fr; }
  .blog-card { min-height: auto; }
  .blog-post__hero { padding-top: 56px; }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .blog-grid--latest {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Blog index conversion layout: keep more articles visible above the desktop fold. */
.blog-index-hero {
  padding-top: clamp(24px, 3vw, 34px);
  padding-bottom: clamp(24px, 3vw, 34px);
}
.blog-index-hero h1 {
  max-width: 28ch;
  font-size: clamp(30px, 3.2vw, 40px);
}
.blog-index-hero p {
  margin-bottom: 14px;
}
.blog-index-section.section {
  padding-top: clamp(22px, 3vw, 34px);
}
.blog-index-section {
  gap: clamp(26px, 3.4vw, 42px);
}
.blog-grid--latest {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (min-width: 901px) and (max-width: 1280px) {
  .blog-grid--latest {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .blog-grid--latest {
    grid-template-columns: 1fr;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   SOFT GRAY MOCKUP
   A calmer light-mode direction. Keeps the brand bright and
   readable while replacing harsh white surfaces with layered gray.
========================================================= */

:root {
  --brand-blue: #0b74ea;
  --brand-blue-hov: #075ec0;
  --brand-cyan: #28b8df;
  --brand-cyan-2: #6bd7ee;
  --brand-blue-soft: rgba(11, 116, 234, .095);
  --ink: #111827;
  --ink-2: #445166;
  --mute: #68768a;
  --line: #d7dee8;
  --soft: #e9eef5;
  --paper: #f3f6fa;
  --good: #12805c;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06);
  --shadow: 0 16px 38px rgba(15,23,42,.10);
  --shadow-md: 0 22px 54px rgba(15,23,42,.12);
  --shadow-lg: 0 28px 74px rgba(11,116,234,.16);
}

body {
  color: var(--ink);
  background:
    radial-gradient(860px 420px at 84% -12%, rgba(11,116,234,.10), transparent 62%),
    radial-gradient(720px 380px at 0% 6%, rgba(40,184,223,.08), transparent 64%),
    linear-gradient(180deg, #eef3f8 0%, #e9eef5 48%, #edf2f7 100%);
}

.header-strip {
  color: #617087;
  background: rgba(233,238,245,.92);
  border-bottom-color: #d8e0ea;
}
.header-strip a { color: #37465c; }
.site-header {
  background: rgba(246,248,251,.90);
  border-bottom-color: #d8e0ea;
  box-shadow: 0 10px 28px rgba(15,23,42,.06);
}
.primary-nav a,
.primary-nav summary,
.menu-toggle { color: #172033; }
.primary-nav .submenu {
  background: #f7f9fc;
  border-color: #d8e0ea;
  box-shadow: 0 22px 52px rgba(15,23,42,.12);
}
.primary-nav .submenu a:hover {
  color: var(--brand-blue);
  background: rgba(11,116,234,.08);
}
.menu-toggle { border-color: #cfd8e5; }

.hero {
  background:
    linear-gradient(180deg, rgba(238,243,248,.78), rgba(233,238,245,.92)),
    #e9eef5;
  border-bottom-color: #d8e0ea;
}
.hero::before {
  opacity: .32;
  background:
    linear-gradient(90deg, rgba(148,163,184,.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(148,163,184,.14) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero::after {
  opacity: .18;
  background:
    linear-gradient(90deg, rgba(238,243,248,.92) 0%, rgba(238,243,248,.78) 44%, rgba(238,243,248,.35) 100%),
    url("../assets/photos/hero-executive-office-ai.jpg") center right / cover no-repeat;
  filter: saturate(.9) contrast(1.02) brightness(1.03);
}
.hero__content p,
.hero__content li,
.hero p:not(.eyebrow),
.page-hero p:not(.eyebrow):not(.breadcrumbs) { color: #445166; }

.section,
.trust,
.packages,
.blog-preview,
.portfolio-preview {
  background: transparent;
}
.section--alt,
.pain,
.ai-visibility,
.case-study-preview {
  background:
    linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.18)),
    #e5ebf3;
  border-top: 1px solid #d6dee9;
  border-bottom: 1px solid #d6dee9;
}

.proof-card,
.service-card,
.solution-card,
.industry-card,
.package-card,
.case-card,
.blog-card,
.portfolio-card,
.mockup-card,
.stat-card,
.contact-card,
.form-card,
.founder-card,
.industry-visual,
.service-visual {
  background: rgba(248,250,253,.86);
  border-color: #d7dee8;
  box-shadow: 0 18px 42px rgba(15,23,42,.09);
}

.quick-lead,
.quick-lead__form--hero {
  background: rgba(248,250,253,.90);
  border-color: #d4dde9;
  box-shadow: 0 24px 62px rgba(15,23,42,.13);
}
.quick-lead__form input,
.quick-lead__form select,
.quick-lead__form textarea,
.form-card input,
.form-card select,
.form-card textarea,
input,
select,
textarea {
  color: #172033;
  background: #f9fbfd;
  border-color: #d1dbe8;
}
input::placeholder,
textarea::placeholder { color: #8794a6; }

.cta {
  background: linear-gradient(135deg, #0b74ea, #075ec0);
  border-color: #0b74ea;
  box-shadow: 0 14px 34px rgba(11,116,234,.18);
}
.cta:hover {
  background: linear-gradient(135deg, #1688ff, #0868d8);
  border-color: #1688ff;
}
.cta--ghost {
  color: #172033;
  background: rgba(255,255,255,.36);
  border-color: #cfd8e5;
}
.cta--ghost:hover {
  color: var(--brand-blue);
  background: rgba(11,116,234,.08);
  border-color: rgba(11,116,234,.28);
}
.cta--white,
.cta-strip .cta--white {
  color: var(--brand-blue);
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 16px 38px rgba(4, 34, 82, .18);
}
.cta--white:hover,
.cta-strip .cta--white:hover {
  color: var(--brand-blue-hov);
  background: #f4f8ff;
  border-color: #f4f8ff;
}
.cta-strip .cta--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .62);
}
.cta-strip .cta--ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .82);
  box-shadow: none;
}

.page-hero,
.blog-post__hero {
  background:
    radial-gradient(800px 360px at 82% 0%, rgba(11,116,234,.10), transparent 64%),
    linear-gradient(180deg, rgba(255,255,255,.35), transparent),
    #eef3f8;
  border-bottom: 1px solid #d8e0ea;
}
.breadcrumbs,
.breadcrumbs a { color: #6b7a8f; }
.eyebrow { color: #0870d6; }

.industry__art,
.portfolio-card img,
.case-card img,
.service-visual img,
.industry-visual img,
.blog-post__image img {
  filter: saturate(.94) contrast(1.01) brightness(.99);
}

.site-footer {
  background: #dfe7f1;
  border-top: 1px solid #cfd8e5;
}
.site-footer p,
.site-footer li,
.site-footer a,
.site-footer__bottom { color: #4f5f75; }

.blog-cta,
.cta-strip {
  background: linear-gradient(135deg, #0b74ea, #1478d7 52%, #28b8df);
  color: #fff;
}

@media (max-width: 860px) {
  .primary-nav {
    background: rgba(246,248,251,.98);
    border-bottom-color: #d8e0ea;
  }
}

/* =========================================================
   CONSISTENT SOFT BLUE CARD SYSTEM
   Matches the AI Search Visibility card treatment the user liked:
   light blue surface, blue border, soft gradient, spacious padding,
   and clear blue action links.
========================================================= */

.service,
.service--featured-blue,
.industry,
.proof-card,
.audit-card,
.package-card,
.step,
.solution-card,
.security-badge,
.portfolio-card,
.portfolio-proof article,
.case-study,
.blog-card,
.offer-note,
.contact-card,
.form-card,
.founder-card,
.stat-card,
.mockup-card {
  background:
    radial-gradient(520px 240px at 0% 0%, rgba(40,184,223,.11), transparent 62%),
    linear-gradient(180deg, rgba(246,250,255,.94) 0%, rgba(239,246,253,.88) 100%);
  border: 1px solid rgba(11,116,234,.22);
  box-shadow: 0 18px 44px rgba(15,23,42,.075);
}

.service:hover,
.industry:hover,
.package-card:hover,
.step:hover,
.solution-card:hover,
.portfolio-card:hover,
.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11,116,234,.42);
  box-shadow: 0 24px 58px rgba(11,116,234,.12);
}

.service {
  padding: clamp(28px, 3.4vw, 42px);
}

.service__icon {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.78), transparent 36%),
    linear-gradient(135deg, rgba(218,242,252,.95), rgba(232,242,255,.95));
  color: var(--brand-blue);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
  margin-bottom: 24px;
}

.service__icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 2.25;
}

.service h3,
.industry h4,
.package-card h3,
.proof-card h3,
.step h4,
.solution-card h3,
.security-badge strong,
.portfolio-card__body h3,
.blog-card h2 {
  color: #111827;
}

.service h3 {
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-bottom: 14px;
}

.service p {
  color: #68768a;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
  margin-bottom: 22px;
}

.service__link {
  color: var(--brand-blue);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 800;
  letter-spacing: -.015em;
}

.industry {
  padding: 18px 18px 26px;
}

.industry__art,
.portfolio-card__image,
.blog-card > img {
  border-bottom-color: rgba(11,116,234,.14);
}

.industry__link {
  color: var(--brand-blue);
  font-weight: 800;
}

.package-card,
.proof-card,
.solution-card,
.audit-card {
  padding: clamp(24px, 3vw, 34px);
}

.package-card ul {
  border-top-color: rgba(11,116,234,.16);
}

.package-card--featured {
  border-color: rgba(11,116,234,.46);
  box-shadow: 0 24px 64px rgba(11,116,234,.13);
}

.proof-card {
  border-left: 1px solid rgba(11,116,234,.22);
}

.audit-card span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.78), transparent 36%),
    linear-gradient(135deg, rgba(218,242,252,.95), rgba(232,242,255,.95));
  color: var(--brand-blue);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
  margin-bottom: 16px;
}

.competitor-section {
  background:
    radial-gradient(760px 420px at 8% 10%, rgba(40,184,223,.18), transparent 64%),
    radial-gradient(720px 380px at 96% 8%, rgba(11,116,234,.08), transparent 58%),
    linear-gradient(180deg, #edf4fb 0%, #e7eef7 100%);
  color: var(--ink);
}

.competitor-section .eyebrow,
.competitor-section__source a {
  color: var(--brand-blue);
}

.competitor-section h2 {
  color: var(--ink);
}

.competitor-section__copy p:not(.eyebrow),
.competitor-section__source {
  color: var(--ink-2);
}

.competitor-stat {
  background:
    radial-gradient(420px 220px at 0% 0%, rgba(40,184,223,.10), transparent 62%),
    linear-gradient(180deg, rgba(246,250,255,.94) 0%, rgba(239,246,253,.88) 100%);
  border: 1px solid rgba(11,116,234,.22);
  box-shadow: 0 18px 44px rgba(15,23,42,.075);
  backdrop-filter: none;
}

.competitor-stat strong {
  color: var(--brand-blue);
}

.competitor-stat span {
  color: var(--ink-2);
}

.competitor-section__source {
  border-top-color: rgba(11,116,234,.16);
}

/* ========== SYSTEMS PREVIEW SECTION ========== */
.systems-preview-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 28px);
}

.system-demo-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(250px, 1fr);
  gap: clamp(18px, 2.8vw, 30px);
  align-items: center;
  padding: clamp(22px, 3.2vw, 34px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(520px 240px at 0% 0%, rgba(40,184,223,.11), transparent 62%),
    linear-gradient(180deg, rgba(246,250,255,.94) 0%, rgba(239,246,253,.88) 100%);
  border: 1px solid rgba(11,116,234,.22);
  box-shadow: 0 18px 44px rgba(15,23,42,.075);
  overflow: hidden;
}

.system-demo-card__body h3 {
  margin: 10px 0 12px;
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.system-demo-card__body p {
  color: var(--ink-2);
  margin: 0;
  line-height: 1.62;
}

.demo-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--brand-blue);
  background: rgba(11,116,234,.08);
  border: 1px solid rgba(11,116,234,.13);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.system-screen {
  min-height: 250px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(11,116,234,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 18px 42px rgba(15,23,42,.08);
  overflow: hidden;
}

.screen-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 15px;
  color: var(--mute);
  border-bottom: 1px solid rgba(11,116,234,.12);
  background: linear-gradient(135deg, rgba(11,116,234,.07), rgba(40,184,223,.05));
  font-size: 12px;
  font-weight: 800;
}

.screen-bar span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(11,116,234,.25);
}

.screen-bar b {
  margin-left: auto;
  color: var(--ink-2);
}

.chat-lines {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.chat-lines p,
.sms {
  margin: 0;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.35;
}

.chat-lines .bot {
  background: #eef6ff;
  color: #10233b;
  justify-self: start;
}

.chat-lines .user {
  background: var(--brand-blue);
  color: #fff;
  justify-self: end;
}

.screen-footer {
  margin: 0 16px 16px;
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--brand-blue);
  background: rgba(11,116,234,.08);
  font-size: 12.5px;
  font-weight: 800;
}

.phone-shell {
  width: min(100%, 240px);
  margin: 18px auto;
  min-height: 214px;
  border-radius: 22px;
  padding: 16px 14px;
  background: #f8fbff;
  border: 1px solid rgba(11,116,234,.16);
  box-shadow: 0 18px 38px rgba(15,23,42,.10);
}

.phone-top {
  width: 70px;
  height: 7px;
  border-radius: 99px;
  margin: 0 auto 16px;
  background: rgba(17,24,39,.12);
}

.sms {
  max-width: 86%;
  margin-bottom: 9px;
  background: #eef6ff;
  color: #172033;
}

.sms.outbound {
  margin-left: auto;
  color: #fff;
  background: var(--brand-blue);
}

.crm-table {
  padding: 16px 16px 10px;
  display: grid;
  gap: 8px;
}

.crm-table > div {
  display: grid;
  grid-template-columns: 1.1fr .85fr .8fr;
  gap: 8px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(11,116,234,.10);
  color: var(--ink-2);
  font-size: 12.5px;
}

.crm-table > div:first-child {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.crm-table em {
  width: fit-content;
  font-style: normal;
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--brand-blue);
  background: rgba(11,116,234,.08);
  font-weight: 800;
}

.mini-bars {
  display: grid;
  gap: 8px;
  padding: 0 16px 16px;
}

.mini-bars span {
  display: block;
  height: 9px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
}

.mini-bars span:nth-child(2) { width: 74%; opacity: .75; }
.mini-bars span:nth-child(3) { width: 52%; opacity: .55; }

.system-screen--visibility {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
}

.visibility-score {
  min-height: 176px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 35% 20%, rgba(255,255,255,.65), transparent 35%),
    linear-gradient(135deg, rgba(11,116,234,.14), rgba(40,184,223,.12));
  border: 1px solid rgba(11,116,234,.14);
}

.visibility-score strong {
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.06em;
  color: var(--brand-blue);
}

.visibility-score span {
  color: var(--ink-2);
  font-size: 12px;
  text-align: center;
}

.visibility-list {
  display: grid;
  gap: 10px;
}

.visibility-list p {
  margin: 0;
  border-radius: 12px;
  padding: 11px 12px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(11,116,234,.12);
}

.visibility-list b,
.visibility-list span {
  display: block;
}

.visibility-list b {
  font-size: 13px;
}

.visibility-list span {
  color: var(--mute);
  font-size: 12px;
}

.systems-preview-actions {
  max-width: var(--container);
  margin: 28px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.service-slider-section {
  padding: clamp(46px, 7vw, 82px) 20px;
  scroll-margin-top: 120px;
  background:
    linear-gradient(180deg, rgba(242, 247, 252, .95), rgba(232, 241, 250, .92)),
    var(--soft-bg);
}

.service-slider {
  max-width: var(--container);
  margin: 0 auto;
}

.service-slider__head {
  max-width: 820px;
  margin-bottom: 24px;
}

.service-slider__head h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: .98;
  letter-spacing: -.055em;
}

.service-slider__viewport {
  position: relative;
  min-height: clamp(420px, 58vw, 620px);
  overflow: hidden;
  border-radius: 14px;
  background: #08111f;
  box-shadow: 0 28px 80px rgba(8, 28, 55, .18);
}

.service-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 1s ease-in-out, transform 1.2s ease-in-out;
  pointer-events: none;
}

.service-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.service-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-slide__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 13, 31, .84) 0%, rgba(2, 13, 31, .58) 43%, rgba(2, 13, 31, .12) 100%),
    linear-gradient(0deg, rgba(2, 13, 31, .35), rgba(2, 13, 31, .05));
}

.service-slide__copy {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 5vw, 64px);
  bottom: clamp(24px, 5vw, 64px);
  max-width: 600px;
  color: #fff;
}

.service-slide__copy span {
  display: inline-block;
  margin-bottom: 12px;
  color: #8fe7ff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 900;
}

.service-slide__copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 6vw, 68px);
  line-height: .95;
  letter-spacing: -.06em;
  text-shadow: 0 18px 46px rgba(0,0,0,.48);
}

.service-slide__copy p {
  margin: 16px 0 0;
  max-width: 540px;
  color: rgba(255,255,255,.84);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  text-shadow: 0 12px 34px rgba(0,0,0,.45);
}

.service-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
}

.service-slider__button {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(11,116,234,.20);
  background: rgba(255,255,255,.72);
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.service-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.service-slider__dots button {
  width: 36px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 108, 242, .22);
  cursor: pointer;
}

.service-slider__dots button.is-active {
  background: linear-gradient(90deg, var(--brand-blue), #27c4f5);
}

@media (max-width: 1120px) {
  .systems-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-slider-section {
    padding: 40px 16px;
    scroll-margin-top: 104px;
  }

  .service-slider__viewport {
    min-height: 500px;
    border-radius: 10px;
  }

  .service-slide__shade {
    background:
      linear-gradient(0deg, rgba(2, 13, 31, .88) 0%, rgba(2, 13, 31, .60) 50%, rgba(2, 13, 31, .18) 100%);
  }

  .service-slide__copy {
    left: 22px;
    right: 22px;
    bottom: 26px;
  }

  .service-slide__copy h3 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .service-slider__controls {
    gap: 10px;
  }

  .service-slider__button {
    width: 40px;
    height: 40px;
  }

  .service-slider__dots button {
    width: 25px;
  }

  .system-demo-card {
    grid-template-columns: 1fr;
  }

  .system-screen {
    min-height: 220px;
  }

  .system-screen--visibility {
    grid-template-columns: 1fr;
  }

  .visibility-score {
    min-height: 130px;
  }

  .systems-preview-actions .cta {
    width: 100%;
    justify-content: center;
  }
}

/* ========== LOCATION LANDING PAGES ========== */
.location-hero {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #071b3f;
}

.location-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4,18,42,.84) 0%, rgba(5,28,66,.64) 48%, rgba(5,28,66,.22) 100%),
    radial-gradient(720px 380px at 18% 20%, rgba(10,108,242,.36), transparent 65%);
}

.location-hero__content {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) var(--pad);
  color: #fff;
}

.location-hero .breadcrumbs,
.location-hero .breadcrumbs a {
  color: rgba(255,255,255,.74);
}

.location-hero h1 {
  max-width: 820px;
  margin: 18px 0;
  color: #fff;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: .96;
  letter-spacing: -.06em;
}

.location-hero p:not(.breadcrumbs):not(.location-pill) {
  max-width: 660px;
  color: rgba(255,255,255,.88);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.location-hero .cta--ghost {
  border-color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.12);
  color: #fff;
}

.location-hero .cta--ghost:hover {
  background: #fff;
  color: var(--brand-blue);
}

.location-intro {
  padding-top: clamp(48px, 7vw, 86px);
}

.location-visibility {
  margin-top: 0;
}

@media (max-width: 760px) {
  .location-hero {
    min-height: auto;
  }

  .location-hero__content {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .location-hero h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .location-pill {
    border-radius: 8px;
    font-size: 11px;
    line-height: 1.35;
  }
}

/* ========== CONSULTATION PAGE REDESIGN ========== */
.consultation-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 70px) var(--pad) clamp(48px, 7vw, 84px);
  background:
    radial-gradient(760px 380px at 4% 4%, rgba(40,184,223,.16), transparent 62%),
    radial-gradient(720px 420px at 100% 12%, rgba(11,116,234,.12), transparent 62%),
    linear-gradient(180deg, #edf4fb 0%, #e7eef7 100%);
  border-bottom: 1px solid rgba(11,116,234,.14);
}

.consultation-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .78fr);
  grid-template-areas:
    "copy form"
    "photo form";
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.consultation-hero__copy {
  grid-area: copy;
  padding-top: clamp(8px, 2vw, 24px);
}

.consultation-hero h1 {
  max-width: 780px;
  margin: 0 0 18px;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: .96;
  letter-spacing: -.06em;
  color: var(--ink);
}

.consultation-hero__copy > p:not(.eyebrow):not(.breadcrumbs) {
  max-width: 650px;
  margin: 0 0 24px;
  color: #445166;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.consultation-hero__photo {
  grid-area: photo;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11,116,234,.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(15,23,42,.13);
  background: #dfe9f4;
}

.consultation-hero__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.consultation-photo-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 8px;
  background: rgba(4,18,42,.74);
  color: #fff;
  backdrop-filter: blur(14px);
}

.consultation-photo-note strong {
  font-size: 14px;
}

.consultation-photo-note span {
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.45;
}

.consultation-form {
  grid-area: form;
  position: sticky;
  top: 92px;
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(11,116,234,.15);
}

.consultation-form h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -.04em;
}

.consultation-form > p:not(.eyebrow):not(.fine):not(.form-success) {
  margin: 0 0 18px;
  color: var(--mute);
  font-size: 15px;
  line-height: 1.5;
}

.consultation-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.consultation-form label {
  margin-bottom: 12px;
}

.consultation-form textarea {
  min-height: 96px;
}

.consultation-focus-section {
  padding-top: clamp(52px, 7vw, 90px);
}

.consultation-focus-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.consultation-focus-card {
  overflow: hidden;
  border: 1px solid rgba(11,116,234,.22);
  border-radius: 8px;
  background:
    radial-gradient(520px 240px at 0% 0%, rgba(40,184,223,.11), transparent 62%),
    linear-gradient(180deg, rgba(246,250,255,.94) 0%, rgba(239,246,253,.88) 100%);
  box-shadow: 0 18px 44px rgba(15,23,42,.075);
}

.consultation-focus-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid rgba(11,116,234,.16);
}

.consultation-focus-card div {
  padding: 22px;
}

.consultation-focus-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -.025em;
}

.consultation-focus-card p {
  margin: 0;
  color: var(--mute);
  font-size: 15px;
  line-height: 1.55;
}

.consultation-outcome {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, .72fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.consultation-outcome h2 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.055em;
}

.consultation-outcome p {
  max-width: 680px;
  color: var(--mute);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
}

.consultation-outcome__list {
  display: grid;
  gap: 12px;
}

.consultation-outcome__list div {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(11,116,234,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
}

.consultation-outcome__list strong {
  color: var(--ink);
  font-size: 16px;
}

.consultation-outcome__list span {
  color: var(--mute);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .consultation-hero__inner,
  .consultation-outcome {
    grid-template-columns: 1fr;
  }

  .consultation-hero__inner {
    grid-template-areas:
      "copy"
      "form"
      "photo";
  }

  .consultation-form {
    position: static;
  }

  .consultation-focus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .consultation-hero {
    padding-top: 28px;
  }

  .consultation-hero h1 {
    font-size: clamp(36px, 10.6vw, 48px);
  }

  .consultation-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .consultation-photo-note {
    position: static;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }
}

/* ========== RESPONSIBLE AI STRIP ========== */
.responsible-ai-strip {
  position: relative;
  isolation: isolate;
  padding: clamp(44px, 6vw, 74px) var(--pad);
  background:
    radial-gradient(620px 320px at 8% 14%, rgba(47, 190, 122, .16), transparent 64%),
    radial-gradient(660px 360px at 92% 0%, rgba(11,116,234,.09), transparent 62%),
    linear-gradient(180deg, #edf5f2 0%, #e7eff4 100%);
  border-top: 1px solid rgba(47, 190, 122, .18);
  border-bottom: 1px solid rgba(11,116,234,.12);
  overflow: hidden;
}

.responsible-ai-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../assets/backgrounds/responsible-ai-green-energy-bg.jpg") center / cover no-repeat;
  opacity: .64;
  filter: saturate(1.12) contrast(1.06);
}

.responsible-ai-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(620px 320px at 8% 14%, rgba(47, 190, 122, .1), transparent 64%),
    linear-gradient(180deg, rgba(237,245,242,.58) 0%, rgba(231,239,244,.7) 100%);
}

.responsible-ai-strip__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.responsible-ai-strip h2 {
  max-width: 640px;
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.055em;
}

.responsible-ai-strip__copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: #445166;
  font-size: clamp(16px, 1.32vw, 19px);
  line-height: 1.65;
}

.responsible-ai-strip__orgs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.responsible-org-card {
  display: grid;
  gap: 8px;
  min-height: 178px;
  padding: 20px;
  border: 1px solid rgba(47, 190, 122, .26);
  border-radius: 8px;
  background:
    radial-gradient(420px 220px at 0% 0%, rgba(47,190,122,.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(244,250,247,.9));
  box-shadow: 0 18px 44px rgba(15,23,42,.075);
  color: var(--ink);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.responsible-org-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47,190,122,.48);
  box-shadow: 0 24px 58px rgba(47,190,122,.14);
}

.responsible-org-card__logo-wrap {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 12px;
  border: 1px solid rgba(47,190,122,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.64);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
}

.responsible-org-card__logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 42px;
  object-fit: contain;
}

.responsible-org-card__logo--wide {
  width: 100%;
  height: 36px;
  object-position: left center;
}

.responsible-org-card strong {
  font-size: 18px;
  letter-spacing: -.025em;
}

.responsible-org-card small {
  color: var(--mute);
  font-size: 13.5px;
  line-height: 1.45;
}

.responsible-ai-strip__note {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: #68768a;
  font-size: 12.5px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .responsible-ai-strip__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .responsible-ai-strip__orgs {
    grid-template-columns: 1fr;
  }

  .responsible-org-card {
    min-height: auto;
  }
}

/* ========== LAW FIRMS PAGE ========== */
.legal-hero {
  padding-bottom: clamp(58px, 7vw, 92px);
}

.legal-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.legal-hero__copy {
  max-width: 760px;
}

.legal-hero__copy h1 {
  max-width: 780px;
}

.legal-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.legal-hero__visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11,116,234,.22);
  border-radius: 8px;
  padding: 12px;
  background:
    radial-gradient(420px 220px at 0% 0%, rgba(30,167,224,.15), transparent 64%),
    rgba(248,250,253,.82);
  box-shadow: 0 24px 62px rgba(15,23,42,.13);
}

.legal-hero__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(.96) contrast(1.02);
}

.legal-hero__panel {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 8px;
  background: rgba(5,18,37,.78);
  color: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}

.legal-hero__panel strong {
  font-size: 15px;
  letter-spacing: .01em;
}

.legal-hero__panel span {
  color: rgba(245,250,255,.82);
  font-size: 13.5px;
  line-height: 1.4;
}

.legal-pain-grid {
  max-width: var(--container);
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.legal-pain-grid article,
.legal-workflow-card {
  border: 1px solid rgba(11,116,234,.18);
  border-radius: 8px;
  background:
    radial-gradient(360px 180px at 0% 0%, rgba(30,167,224,.1), transparent 64%),
    linear-gradient(180deg, rgba(246,250,255,.94), rgba(239,246,253,.88));
  box-shadow: 0 16px 38px rgba(15,23,42,.075);
}

.legal-pain-grid article {
  padding: 22px;
}

.legal-pain-grid strong {
  display: block;
  color: #111827;
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.legal-pain-grid span {
  display: block;
  color: var(--mute);
  font-size: 14.5px;
  line-height: 1.5;
}

.legal-service-grid {
  max-width: var(--container);
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.legal-service-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(11,116,234,.22);
  border-radius: 8px;
  background:
    radial-gradient(420px 190px at 0% 0%, rgba(30,167,224,.12), transparent 64%),
    linear-gradient(180deg, rgba(248,251,255,.96), rgba(238,245,252,.9));
  box-shadow: 0 18px 44px rgba(15,23,42,.075);
}

.legal-service-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(11,116,234,.12);
}

.legal-service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  margin-bottom: 18px;
  border: 1px solid rgba(11,116,234,.22);
  border-radius: 7px;
  color: var(--brand-blue);
  background: rgba(11,116,234,.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.legal-service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: #111827;
  font-size: 20px;
  line-height: 1.16;
  letter-spacing: -.025em;
}

.legal-service-card p {
  position: relative;
  z-index: 1;
  color: var(--mute);
  font-size: 14.8px;
  line-height: 1.55;
  margin: 0;
}

.legal-practice-services {
  max-width: var(--container);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-practice-service {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(245,248,252,.88)),
    #f8fafc;
  box-shadow: 0 18px 40px rgba(15,23,42,.07);
}

.legal-practice-service__image {
  margin: 0;
  border-bottom: 1px solid rgba(15, 23, 42, .1);
  background: #dce6f2;
}

.legal-practice-service__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(.95) contrast(1.02);
}

.legal-practice-service__body {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: clamp(20px, 2.4vw, 28px);
}

.legal-practice-service__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-left: 3px solid var(--brand-blue);
  color: #0f1b2d;
  background: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legal-practice-service h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.legal-practice-service p {
  max-width: 780px;
  margin: 0 0 18px;
  color: #445166;
  font-size: 16px;
  line-height: 1.58;
}

.legal-practice-service ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.legal-practice-service li {
  position: relative;
  padding-left: 16px;
  color: #263548;
  font-size: 14.5px;
  line-height: 1.42;
}

.legal-practice-service li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-blue);
}

.legal-workflow-card {
  padding: 24px;
}

.legal-workflow-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.legal-workflow-card ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 13px;
  color: var(--mute);
}

.legal-workflow-card strong {
  color: #111827;
}

.legal-security-badges {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1060px) {
  .legal-hero__inner {
    grid-template-columns: 1fr;
  }

  .legal-hero__visual {
    max-width: 760px;
  }

  .legal-pain-grid,
  .legal-security-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .legal-service-grid {
    grid-template-columns: 1fr;
  }

  .legal-service-card {
    min-height: auto;
  }

  .legal-practice-service {
    min-height: auto;
  }

  .legal-practice-services {
    grid-template-columns: 1fr;
  }

  .legal-practice-service__body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .legal-practice-service ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .legal-hero__actions,
  .legal-hero__actions .cta {
    width: 100%;
  }

  .legal-pain-grid,
  .legal-security-badges {
    grid-template-columns: 1fr;
  }

  .legal-hero__panel {
    position: static;
    margin-top: 10px;
    background: rgba(5,18,37,.92);
  }
}
