:root {
  --primary: #0070e0;
  --primary-dark: #003087;
  --accent: #00a8ea;
  --success: #10b981;
  --warning: #f59e0b;
  --ink: #071423;
  --ink-2: #4b5c70;
  --black: #111820;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --border: #e2e8f0;
  --mist: #eef4ff;
  --violet-mist: #f3edff;
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.035);
  --shadow-md: 0 10px 30px rgba(10, 22, 40, 0.075);
  --shadow-lg: 0 24px 64px rgba(10, 22, 40, 0.13);
  --radius-sm: 8px;
  --radius: 10px;
  --radius-lg: 12px;
  --font-main: Aptos, "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  color-scheme: light;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-bottom: 78px;
  font-family: var(--font-main);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

:focus-visible {
  outline: 3px solid rgba(0,112,224,.32);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--surface);
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px max(20px, calc((100vw - 1220px) / 2));
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  border-bottom: 1px solid rgba(226, 232, 240, .72);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled,
.site-header.nav-open {
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  font-weight: 700;
}
.brand-logo {
  width: clamp(126px, 11vw, 152px);
  height: auto;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--black);
  color: #fff;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 0 1 auto;
  flex-wrap: nowrap;
  font-size: 14.5px;
  font-weight: 720;
}
.site-nav a,
.site-nav button {
  text-decoration: none;
  padding: 10px 13px;
  border-radius: var(--radius-sm);
  color: var(--ink-2);
  line-height: 1.15;
  white-space: nowrap;
}
.nav-dropdown {
  position: static;
}
.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown__trigger span {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  right: auto;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(900px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,249,255,.98));
  box-shadow: 0 24px 60px rgba(15,23,42,.14);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown__menu::before {
  content: "Our services";
  grid-column: 1 / -1;
  padding: 4px 4px 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown:hover .nav-dropdown__trigger span,
.nav-dropdown:focus-within .nav-dropdown__trigger span {
  transform: rotate(225deg) translateY(-2px);
}
.nav-dropdown__menu a {
  position: relative;
  display: grid;
  gap: 2px;
  min-height: 78px;
  padding: 14px 16px;
  white-space: normal;
  border: 1px solid transparent;
  border-radius: 16px;
  background: rgba(255,255,255,.68);
  color: var(--ink);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
/* Item icon, first-item highlight and "Best for ads" badge removed (they were
   APPS 365 AI leftovers that did not apply to APPS 365 Digital). */
.nav-dropdown__menu a:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(0,102,255,.22);
  box-shadow: var(--shadow-sm);
}
.nav-dropdown__menu a strong {
  font-size: 14.5px;
  line-height: 1.2;
}
.nav-dropdown__menu a span {
  color: var(--ink-2);
  font-size: 12.5px;
  font-weight: 520;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.site-nav button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}
.site-nav a:hover,
.site-nav button:hover {
  background: var(--surface-alt);
  color: var(--ink);
}
.site-nav a.is-active,
.site-nav button.is-active {
  background: var(--mist);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(0,102,255,.16);
}
.nav-cta {
  color: #fff !important;
  background: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  box-shadow: var(--shadow-sm);
  min-width: 180px;
  text-align: center;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 650;
}
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.04;
  letter-spacing: 0;
  max-width: 760px;
  font-weight: 650;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(27px, 3.1vw, 42px);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 650;
}
h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 650;
}
p { color: var(--ink-2); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: 72px 0 56px;
  background:
    linear-gradient(180deg, #fff 0%, #fff 72%, #f6f9fc 100%);
}
.hero::after {
  display: none;
}
.funnel-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 46px;
  background:
    radial-gradient(circle at 78% 4%, rgba(0,112,224,.18), transparent 28rem),
    radial-gradient(circle at 12% 88%, rgba(0,168,234,.12), transparent 22rem),
    linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
}
.funnel-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, .64fr);
  gap: 34px;
  align-items: center;
}
.funnel-copy h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(44px, 5vw, 68px);
}
.funnel-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.funnel-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.funnel-assurance span {
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 750;
}
.funnel-proof span {
  display: grid;
  gap: 2px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.funnel-proof strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}
.funnel-proof a {
  color: inherit;
  text-decoration: none;
}
.funnel-proof a:hover {
  color: var(--primary);
}
.funnel-mini-plan {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  max-width: 760px;
}
.funnel-mini-plan span {
  display: grid;
  grid-template-columns: minmax(120px, .32fr) 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid rgba(0,48,135,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.funnel-mini-plan strong {
  color: var(--primary-dark);
  line-height: 1.2;
}
.funnel-form {
  position: relative;
  gap: 11px;
  border: 1px solid rgba(0,48,135,.14);
  background: rgba(255,255,255,.96);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(7,20,35,.14);
  backdrop-filter: blur(16px);
}
.funnel-form::before {
  content: "Free audit";
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
}
.funnel-form strong {
  max-width: 300px;
  color: var(--ink);
}
.funnel-form label {
  color: var(--ink-2);
}
.funnel-form input,
.funnel-form select,
.funnel-form textarea {
  border-color: #d9e4f2;
  background: #fff;
}
.funnel-form > span,
.funnel-form .form-destination {
  color: var(--ink-2);
}
.funnel-form .checkbox-field {
  color: var(--ink-2);
}
.funnel-form .form-message {
  border-color: #d9e4f2;
  background: #f8fafc;
  color: var(--ink-2);
}
.funnel-form .form-message[data-state="success"] {
  border-color: rgba(16,185,129,.35);
  background: #ecfdf5;
  color: #047857;
}
.funnel-form .form-message[data-state="error"] {
  border-color: rgba(220,38,38,.28);
  background: #fef2f2;
  color: #b91c1c;
}
.funnel-form .form-trust {
  padding: 10px 12px;
  border-radius: 12px;
  background: #eef6ff;
  color: var(--primary-dark);
  font-weight: 750;
}
.funnel-band {
  padding: 34px 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(0,168,234,.16), transparent 18rem),
    linear-gradient(135deg, #061426, #092b5a);
  color: #fff;
}
.funnel-outcomes,
.funnel-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.funnel-outcomes article,
.funnel-steps article {
  display: grid;
  gap: 8px;
  min-height: 178px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 12px 34px rgba(0,0,0,.12);
}
.funnel-outcomes small,
.funnel-steps small {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}
.funnel-outcomes strong,
.funnel-steps strong {
  color: #fff;
  font-size: 19px;
  line-height: 1.15;
}
.funnel-outcomes span,
.funnel-steps span {
  color: rgba(255,255,255,.72);
  font-size: 14.5px;
}
.funnel-fit-section {
  background: #fff;
}
.fit-shell,
.risk-shell,
.readiness-shell,
.decision-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: start;
}
.fit-grid,
.risk-grid,
.decision-list {
  display: grid;
  gap: 14px;
}
.fit-grid article,
.risk-grid article,
.decision-list article {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.fit-grid article:first-child,
.decision-list article:first-child {
  background: linear-gradient(135deg, #e8f3ff, #fff);
  border-color: rgba(0,112,224,.18);
}
.fit-grid strong,
.risk-grid strong,
.decision-list strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
}
.fit-grid span,
.risk-grid span,
.decision-list span {
  color: var(--ink-2);
}
.funnel-split {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .62fr);
  gap: 36px;
  align-items: start;
}
.funnel-panel {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: var(--shadow-md);
}
.funnel-panel span {
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}
.funnel-panel a {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  font-weight: 760;
}
.funnel-panel a::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.funnel-panel a:hover {
  border-color: rgba(0,112,224,.28);
  box-shadow: var(--shadow-sm);
}
.funnel-confidence {
  padding-top: 64px;
  padding-bottom: 64px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.confidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.confidence-grid article {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 164px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.confidence-grid article::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--mist), #fff);
  box-shadow: inset 0 0 0 1px rgba(0,112,224,.14);
}
.confidence-grid strong {
  max-width: 190px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
}
.confidence-grid span {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.5;
}
.funnel-faq {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.funnel-packages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.funnel-packages article {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.funnel-packages article:hover {
  transform: translateY(-3px);
  border-color: rgba(0,112,224,.24);
  box-shadow: var(--shadow-md);
}
.funnel-packages small {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--primary);
  font-weight: 900;
}
.funnel-packages strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}
.funnel-packages p {
  margin: 0;
  color: var(--ink-2);
}
.funnel-packages ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.funnel-packages li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.35;
}
.funnel-packages li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
}
.funnel-packages a {
  color: var(--primary);
  font-weight: 850;
}
.funnel-proof-section {
  background:
    radial-gradient(circle at 92% 10%, rgba(0,112,224,.13), transparent 22rem),
    linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
}
.funnel-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(340px, .7fr);
  gap: 34px;
  align-items: start;
}
.proof-list {
  display: grid;
  gap: 12px;
}
.proof-list article {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
}
.proof-list strong {
  color: var(--ink);
  font-size: 18px;
}
.proof-list span {
  color: var(--ink-2);
}
.funnel-risk-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(0,168,234,.12), transparent 18rem),
    linear-gradient(180deg, #f6f9fc 0%, #fff 100%);
}
.risk-grid article {
  min-height: 132px;
}
.funnel-audit-section {
  background: var(--surface);
}
.audit-deliverables {
  display: grid;
  gap: 12px;
}
.audit-deliverables article {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-alt);
}
.audit-deliverables strong {
  color: var(--ink);
  font-size: 18px;
}
.audit-deliverables span {
  color: var(--ink-2);
  font-size: 14.5px;
}
.compact-head {
  margin-bottom: 22px;
}
.funnel-close {
  padding-bottom: 82px;
}
.funnel-faq-section .faq-intro p:last-child {
  max-width: 420px;
}
.code-like {
  display: inline-block;
  max-width: 100%;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(0,0,0,.2);
  color: #fff;
  font-family: Consolas, Monaco, "Courier New", monospace;
  word-break: break-word;
}
.booking-card .contact-fallback {
  color: var(--primary-dark);
  text-decoration-color: rgba(0,48,135,.28);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(390px, .88fr);
  gap: 70px;
  align-items: center;
}
.hero-text { min-width: 0; }
.hero-copy {
  max-width: 640px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.62;
}
.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
}
.hero-trust span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 99px;
  background: var(--success);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  cursor: pointer;
}
.button.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 102, 255, .18);
}
.button.primary:hover { background: var(--primary-dark); }
.button.secondary,
.button.ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.hero-visual {
  position: relative;
  min-height: 454px;
  display: grid;
  place-items: center;
}
.ai-map {
  position: relative;
  z-index: 2;
  width: min(100%, 524px);
  padding: 28px;
  border: 1px solid rgba(0, 48, 135, .12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 26px 64px rgba(7, 20, 35, .13);
}
.ai-map::before {
  display: none;
}
.ai-map__corner-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  padding: 8px;
  border: 1px solid rgba(0, 48, 135, .12);
  border-radius: 16px;
  background: #f7fbff;
  box-shadow: var(--shadow-sm);
}
.ai-map__head,
.ai-map__flow article {
  display: flex;
  align-items: center;
}
.ai-map__head {
  gap: 14px;
  margin: 0 76px 26px 0;
}
.ai-map__head img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
}
.ai-map__head span,
.ai-map__flow small,
.ai-map__flow span {
  display: block;
  color: var(--ink-2);
  font-size: 13px;
}
.ai-map__head strong {
  display: block;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.1;
}
.ai-map__flow {
  display: grid;
  gap: 12px;
}
.ai-map__flow article {
  position: relative;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fbfdff;
}
.ai-map__flow article::before {
  display: none;
}
.ai-map__flow small {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--primary);
  font-weight: 650;
}
.ai-map__flow strong {
  display: block;
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}
.ai-map__products {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.ai-map__products a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 650;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.ai-map__products a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--primary);
}
.ai-map__products a:nth-child(2)::before { background: #e53238; }
.ai-map__products a:nth-child(3)::before { background: #f5af02; }
.ai-map__products a:nth-child(4)::before { background: #86b817; }
.ai-map__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(7, 20, 35, .14);
}
.ai-map__contact:hover,
.ai-map__contact:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.product-link {
  color: var(--primary-dark);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(0,112,224,.32);
  text-underline-offset: 3px;
}
.product-link:hover {
  color: var(--primary);
  text-decoration-color: currentColor;
}
.product-link.light {
  color: #fff;
  text-decoration-color: rgba(255,255,255,.42);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  grid-column: 1 / -1;
  max-width: none;
  margin: 8px 0 0;
}
.hero-metrics div {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow-sm);
}
.hero-metrics dt {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  font-weight: 650;
}
.hero-metrics dd {
  margin: 8px 0 0;
  color: var(--ink-2);
  font-size: 14px;
}
.metric-link {
  color: inherit;
  text-decoration: none;
}
.metric-link:hover,
.metric-link:focus-visible {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.answer-strip {
  padding: 36px 0;
  background:
    linear-gradient(135deg, #051d44 0%, #003087 100%);
  color: #fff;
}
.answer-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: center;
}
.answer-grid h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.6vw, 34px);
}
.answer-grid p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .74);
}
.answer-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.answer-options a,
.answer-options button {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  color: #fff;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.answer-options strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
}
.answer-options span {
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.sales-bridge {
  padding: 34px 0;
  background: var(--surface);
}
.sales-bridge__grid {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(420px, 1fr);
  gap: 24px;
  align-items: center;
}
.sales-bridge__grid h2 {
  margin-bottom: 10px;
}
.sales-bridge__grid p {
  margin: 0;
  color: var(--ink-2);
}
.sales-bridge__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.sales-bridge__cards a {
  display: grid;
  gap: 4px;
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-alt);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.sales-bridge__cards strong {
  font-size: 18px;
  line-height: 1.15;
}
.sales-bridge__cards span {
  color: var(--ink-2);
  font-size: 14px;
}
.quick-win-section {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.quick-win-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.quick-win-grid a {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 244px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.quick-win-grid a::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, var(--primary), var(--accent));
  opacity: .14;
}
.quick-win-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(0,112,224,.24);
  box-shadow: var(--shadow-md);
}
.quick-win-grid span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
}
.quick-win-grid strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.12;
}
.quick-win-grid p {
  margin: 0;
}
.keyword-intent-section {
  background: #fff;
}
.keyword-shell {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
}
.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.keyword-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #f8fbff;
  color: var(--primary-dark);
  font-weight: 750;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.keyword-cloud a:hover {
  border-color: rgba(0,112,224,.32);
  background: var(--mist);
}
.audit-strip {
  padding: 70px 0;
  background: #fff;
}
.audit-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(380px, .72fr);
  gap: 34px;
  align-items: center;
}
.audit-grid h2 {
  max-width: 760px;
}
.audit-scorecard {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(0,48,135,.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.96));
  box-shadow: var(--shadow-md);
}
.audit-scorecard article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.audit-scorecard strong {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--primary-dark);
  font-size: 13px;
}
.audit-scorecard span {
  color: var(--ink);
  font-weight: 650;
  line-height: 1.35;
}
.sales-ready-section {
  background:
    linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
}
.answer-engine-section {
  background:
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.answer-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.answer-card-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.answer-card-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.14;
}
.answer-card-grid p {
  margin: 0;
}
.sales-ready-grid,
.roi-shell {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(420px, 1fr);
  gap: 36px;
  align-items: center;
}
.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.signal-grid article {
  min-height: 168px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.signal-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
}
.signal-grid span {
  display: block;
  color: var(--ink-2);
}
.ai-readiness-section {
  background:
    radial-gradient(circle at 92% 20%, rgba(0,112,224,.1), transparent 24rem),
    linear-gradient(180deg, #f6f9fc 0%, #fff 100%);
}
.readiness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.readiness-grid span {
  position: relative;
  min-height: 62px;
  padding: 14px 14px 14px 42px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  font-weight: 720;
  line-height: 1.28;
  box-shadow: var(--shadow-sm);
}
.readiness-grid span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--success);
}

.dashboard-section {
  padding: 86px 0 96px;
  background:
    linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
}
.dashboard-intro {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, .52fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 32px;
}
.dashboard-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
}
.dashboard-intro p:not(.section-kicker) {
  margin: 0;
  font-size: 17px;
}
.app-dashboard {
  display: grid;
  grid-template-columns: 226px minmax(0, 1fr);
  gap: 0;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(0,48,135,.13);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(7, 20, 35, .12);
}
.app-sidebar {
  padding: 22px;
  background: #071423;
  color: #fff;
}
.app-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}
.app-sidebar__brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
}
.app-sidebar__brand strong,
.app-sidebar__brand span {
  display: block;
}
.app-sidebar__brand span {
  color: rgba(255,255,255,.64);
  font-size: 13px;
}
.app-sidebar nav {
  display: grid;
  gap: 8px;
}
.app-sidebar a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
}
.app-sidebar a:hover,
.app-sidebar a.is-current {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.app-main {
  min-width: 0;
  padding: 24px;
  background:
    radial-gradient(circle at 94% 8%, rgba(0,112,224,.12), transparent 20rem),
    #f8fafc;
}
.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
}
.app-topbar span,
.panel-head span,
.dashboard-kpis span {
  display: block;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.app-topbar strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}
.dashboard-action {
  min-height: 42px;
  padding: 10px 18px;
}
.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}
.dashboard-kpis article,
.dashboard-panel {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
}
.dashboard-kpis article {
  padding: 18px;
}
.dashboard-kpis strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}
.dashboard-kpis small {
  display: block;
  color: var(--ink-2);
  line-height: 1.35;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .78fr);
  gap: 14px;
}
.dashboard-panel {
  padding: 20px;
}
.launch-panel,
.evidence-panel {
  grid-column: span 1;
}
.panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.panel-head h3 {
  margin: 5px 0 0;
  font-size: 21px;
}
.panel-head > strong {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--primary-dark);
  font-size: 13px;
}
.pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.pipeline article {
  min-height: 164px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.pipeline span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
}
.pipeline strong,
.product-status strong,
.evidence-list strong {
  display: block;
  color: var(--ink);
}
.pipeline small {
  display: block;
  margin-top: 6px;
  color: var(--ink-2);
  line-height: 1.35;
}
.product-status {
  display: grid;
  gap: 10px;
}
.product-status a {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
}
.product-status span {
  color: var(--ink-2);
  font-size: 14px;
}
.product-status em {
  justify-self: end;
  min-width: 54px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--primary-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}
.evidence-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.evidence-list li {
  padding: 14px 0 14px 18px;
  border-left: 3px solid var(--primary);
}
.evidence-list span {
  display: block;
  color: var(--ink-2);
}
.audit-panel {
  background: #071423;
  color: #fff;
}
.audit-panel .panel-head span,
.audit-panel p {
  color: rgba(255,255,255,.72);
}
.audit-panel h3 {
  color: #fff;
}
.audit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.audit-actions .button.secondary {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}

.section { padding: 84px 0; }
.anchor-target {
  position: relative;
  top: -92px;
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.section-head {
  max-width: 820px;
  margin-bottom: 36px;
}
.product-head,
.system-head {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: 32px;
  align-items: end;
}
.system-head p:not(.section-kicker) {
  color: rgba(255,255,255,.74);
}
.section-head p:not(.section-kicker) {
  font-size: 17px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.fact-grid article {
  position: relative;
  min-height: 235px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.fact-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(0,112,224,.28);
  box-shadow: var(--shadow-md);
}
.fact-grid small,
.outcome small {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
}
.fact-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
}
.fact-grid strong a {
  color: inherit;
  text-decoration: none;
}
.fact-grid strong a:hover {
  color: var(--primary);
}
.fact-grid span {
  display: block;
  color: var(--ink-2);
}
.fact-grid a {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
.firms-section {
  background:
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.firms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.firms-grid article {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.firms-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}
.firms-grid p {
  margin: 0;
}
.industry-section {
  background: #fff;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.industry-grid article {
  min-height: 292px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-sm);
}
.industry-grid span,
.project-examples small,
.timeline-grid span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.industry-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.12;
}
.industry-grid p {
  margin: 0;
}
.pricing-section {
  background:
    linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1.08fr .96fr .96fr;
  gap: 18px;
  align-items: stretch;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.pricing-card.featured {
  border-color: rgba(0,112,224,.26);
  background:
    radial-gradient(circle at 90% 8%, rgba(0,112,224,.12), transparent 12rem),
    #fff;
  box-shadow: var(--shadow-md);
}
.pricing-card small {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.pricing-card h3 {
  font-size: 25px;
}
.pricing-card > strong {
  display: block;
  margin: 6px 0 16px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}
.pricing-card p {
  margin-bottom: 18px;
}
.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.pricing-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 650;
}
.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--primary);
}
.pricing-card .button {
  margin-top: auto;
}
.roi-section {
  background: #071423;
  color: #fff;
}
.roi-shell h2 {
  color: #fff;
}
.roi-shell p {
  color: rgba(255,255,255,.72);
}
.roi-calculator {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}
.roi-calculator label {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 800;
}
.roi-calculator input,
.roi-calculator select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  padding: 12px 14px;
}
.roi-output {
  display: block;
  padding: 18px;
  border: 1px solid rgba(0,168,234,.32);
  border-radius: 16px;
  background: rgba(0,112,224,.18);
  color: #fff;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.2;
}
.examples-section {
  background: #fff;
}
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.examples-grid article {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.examples-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}
.examples-grid div {
  padding: 22px;
}
.examples-grid small {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.examples-grid h3 {
  font-size: 22px;
}
.deliverables-section {
  background: #071423;
  color: #fff;
}
.deliverables-shell {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
}
.deliverables-shell h2 {
  color: #fff;
}
.deliverables-shell p {
  color: rgba(255,255,255,.72);
}
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.deliverables-grid article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}
.deliverables-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.deliverables-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 21px;
  line-height: 1.12;
}
.governance-section {
  background:
    linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
}
.geo-section {
  background: #fff;
}
.geo-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(380px, .72fr);
  gap: 34px;
  align-items: center;
}
.geo-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.geo-list a {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f8fbff;
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: none;
}
.geo-list a:hover {
  border-color: rgba(0,112,224,.32);
  background: var(--mist);
}
.governance-grid {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(420px, 1fr);
  gap: 36px;
  align-items: center;
}
.control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.control-grid article {
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.control-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 19px;
}
.control-grid span {
  display: block;
  color: var(--ink-2);
}
.trust-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.trust-stack article {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.trust-stack strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}
.trust-stack span {
  display: block;
  color: var(--ink-2);
}
.project-examples {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.project-examples article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.project-examples h3 {
  font-size: 22px;
}
.project-examples > article > span {
  display: block;
  margin-top: 14px;
  color: var(--primary-dark);
  font-weight: 800;
}
.feature-image {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.testimonial-grid article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.testimonial-grid p {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}
.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}
.testimonial-grid strong {
  color: var(--ink);
}
.testimonial-grid span {
  color: var(--ink-2);
  font-size: 14px;
}
.consult-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}
.consult-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
  font-weight: 650;
}
.consult-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--accent);
}
.contact-fallback {
  display: inline-flex;
  margin-top: 14px;
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.32);
  text-underline-offset: 4px;
}
.lead-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.lead-form strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.15;
}
.lead-form label {
  display: grid;
  gap: 6px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 700;
}
.spam-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.checkbox-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  line-height: 1.35;
}
.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--primary);
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,168,234,.22);
}
.lead-form button:disabled {
  cursor: wait;
  opacity: .72;
}
.lead-form.is-sending {
  opacity: .92;
}
.lead-form > span {
  color: rgba(255,255,255,.64);
  font-size: 13px;
}
.form-destination {
  display: block;
  margin-top: -4px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.form-message {
  display: block;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.08);
}
.form-message[data-state="success"] {
  border-color: rgba(52,211,153,.38);
  background: rgba(52,211,153,.14);
  color: #d8fff0;
}
.form-message[data-state="error"] {
  border-color: rgba(248,113,113,.46);
  background: rgba(248,113,113,.14);
  color: #ffe2e2;
}
.lead-form.funnel-form {
  border-color: rgba(0,48,135,.14);
  background: rgba(255,255,255,.96);
  color: var(--ink);
}
.lead-form.funnel-form strong {
  color: var(--ink);
}
.lead-form.funnel-form label,
.lead-form.funnel-form > span,
.lead-form.funnel-form .form-destination,
.lead-form.funnel-form .checkbox-field {
  color: var(--ink-2);
}
.lead-form.funnel-form .form-message {
  border-color: #d9e4f2;
  background: #f8fafc;
  color: var(--ink-2);
}
.lead-form.funnel-form .form-message[data-state="success"] {
  border-color: rgba(16,185,129,.35);
  background: #ecfdf5;
  color: #047857;
}
.lead-form.funnel-form .form-message[data-state="error"] {
  border-color: rgba(220,38,38,.28);
  background: #fef2f2;
  color: #b91c1c;
}
.lead-form.funnel-form .form-trust {
  background: #eef6ff;
  color: var(--primary-dark);
}
.timeline-section {
  background: #fff;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.timeline-grid article {
  position: relative;
  min-height: 265px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.timeline-grid article::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -16px;
  width: 16px;
  height: 2px;
  background: var(--primary);
}
.timeline-grid article:last-child::after {
  display: none;
}
.timeline-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.12;
}
.objection-section {
  background:
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.comparison-section {
  background: #fff;
}
.comparison-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.comparison-table > div {
  display: grid;
  grid-template-columns: .7fr 1fr 1fr;
  min-height: 82px;
  border-bottom: 1px solid var(--border);
}
.comparison-table > div:last-child {
  border-bottom: 0;
}
.comparison-table span,
.comparison-table strong {
  display: flex;
  align-items: center;
  padding: 18px;
  border-right: 1px solid var(--border);
}
.comparison-table span:last-child {
  border-right: 0;
}
.comparison-table > div:first-child {
  background: #071423;
  color: #fff;
  font-weight: 900;
}
.comparison-table > div:first-child span {
  color: #fff;
}
.comparison-table strong {
  color: var(--ink);
}
.comparison-table span {
  color: var(--ink-2);
}
.comparison-table div:not(:first-child) span:last-child {
  color: var(--ink);
  font-weight: 650;
}
.objection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.objection-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.objection-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}
.objection-grid p {
  margin: 0;
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0,102,255,.32);
  box-shadow: var(--shadow-md);
}
.service-card::after {
  display: none;
}
.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 10px;
  background: var(--black);
  color: #fff;
  font-weight: 900;
}
.service-card img.icon-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 24px;
}
.service-card p { margin-bottom: 24px; }
.service-card a {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--primary);
  font-weight: 850;
  text-decoration: none;
}

.contrast {
  background: #f6f9fc;
}
.muted { background: var(--surface-alt); }
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr);
  gap: 56px;
  align-items: start;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 750;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 18px;
  height: 18px;
  border-radius: 99px;
  background:
    linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: inset 0 0 0 5px #fff;
}
.insight-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(0,102,255,.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
  box-shadow: var(--shadow-md);
}
.brand-motion {
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow-md);
}
.brand-motion img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: .92;
}
.insight-panel::after {
  display: none;
}
.text-link {
  color: var(--primary);
  font-weight: 850;
  text-decoration: none;
}

.system-band {
  padding: 84px 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(0,112,224,.28), transparent 22rem),
    #071423;
  color: #fff;
}
.system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.system-panel {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
}
.system-panel span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.system-panel h3 { color: #fff; }
.system-panel p { color: rgba(255,255,255,.72); }

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.outcome {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.outcome strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 19px;
}
.quote-row { margin-top: 34px; }
blockquote {
  margin: 0;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--primary-dark);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
blockquote p {
  color: #fff;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.16;
}
cite {
  color: rgba(255,255,255,.78);
  font-style: normal;
}

.process-section {
  padding: 88px 0;
  background:
    linear-gradient(180deg, #f6f9fc 0%, #ffffff 72%);
}
.process-shell {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, .4fr);
  gap: 22px;
  align-items: stretch;
}
.process-head,
.process-summary {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 56px rgba(7,20,35,.08);
}
.process-head {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4.6vw, 58px);
}
.process-head::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,112,224,.14), transparent 68%);
  pointer-events: none;
}
.process-head h2 {
  position: relative;
  max-width: 840px;
  margin-bottom: 14px;
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 1.02;
}
.process-head p:last-child {
  position: relative;
  max-width: 760px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.65;
}
.process-summary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 32px;
  background:
    radial-gradient(circle at 88% 14%, rgba(0,112,224,.38), transparent 8rem),
    linear-gradient(180deg, #071423 0%, #0b2f64 100%);
  color: #fff;
}
.process-summary__label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.process-summary strong {
  display: block;
  color: #fff;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1;
}
.process-summary span {
  display: block;
  color: rgba(255,255,255,.74);
}
.process-summary .button {
  width: 100%;
  box-shadow: none;
}
.process {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.process article {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.process article:hover {
  transform: translateY(-3px);
  border-color: rgba(0,112,224,.28);
  box-shadow: var(--shadow-md);
}
.process article::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: #eef6ff;
  z-index: 0;
}
.process article:last-child::after {
  background: #e8fff1;
}
.process span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 34px;
  margin-bottom: 30px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
}
.process h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  max-width: 250px;
}
.process p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.55;
}

.faq-section {
  background:
    linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .64fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 96px;
}
.faq-intro p:last-child {
  font-size: 17px;
}
.faq-list { display: grid; gap: 12px; }
details {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}
details p { margin: 12px 0 0; }

.contact-section {
  padding: 64px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0,119,255,.26), transparent 26rem),
    linear-gradient(135deg, #071423 0%, #0a2550 48%, #0d3974 100%);
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: .82fr .86fr .86fr;
  gap: 22px;
  align-items: start;
}
.contact-grid h2 { color: #fff; }
.contact-grid p { color: rgba(255,255,255,.72); }
.email-note {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82) !important;
}
.email-note a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
label {
  display: grid;
  gap: 6px;
  font-weight: 750;
}
input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
}
input:focus,
textarea:focus {
  outline: 4px solid rgba(0,102,255,.16);
  border-color: var(--primary);
}
textarea { resize: vertical; }

.booking-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(0,102,255,.16);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(239,245,255,.96));
  box-shadow: var(--shadow-md);
  color: var(--ink);
}
.booking-card strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}
.booking-card p {
  margin: 0;
  color: var(--ink-2);
}
.call-agenda {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
}
.call-agenda span {
  display: block;
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-weight: 900;
}
.call-agenda ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
}
.call-agenda li {
  color: var(--ink);
  font-weight: 650;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 64px 0 34px;
  background: #071423;
  color: #fff;
}
.site-footer::before {
  display: none;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .9fr 1.25fr;
  gap: 34px;
  align-items: start;
}
.footer-about p {
  max-width: 420px;
  font-size: 16px;
}
.footer-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 900;
}
.footer-about {
  display: grid;
  gap: 18px;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-badges span {
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 800;
}
.footer-links { display: grid; gap: 10px; }
.footer-grid nav { display: grid; gap: 10px; }
.footer-grid a { text-decoration: none; }
.footer-grid p,
.footer-meta { color: rgba(255,255,255,.66); }
.footer-brand .brand-logo {
  filter: invert(1);
}
.footer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.82);
}
.footer-links a::after {
  content: ">";
  color: var(--primary);
  font-weight: 900;
}
.footer-links a:hover {
  border-color: rgba(0,102,255,.48);
  background: rgba(0,102,255,.16);
  color: #fff;
}
.company-card {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.72);
  font-style: normal;
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}
.company-card strong {
  color: #fff;
  font-size: 22px;
  line-height: 1;
}
.company-card__group {
  display: grid;
  gap: 5px;
}
.company-card__label {
  color: rgba(255,255,255,.46);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.company-card a { color: rgba(255,255,255,.9); }
.company-card__ids {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.company-card__ids span {
  flex: 1 1 max-content;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}
.footer-meta {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.booking-shell {
  position: fixed;
  z-index: 80;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.booking-tab {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: 100% 100%;
  min-width: 128px;
  border: 0;
  border-radius: 12px 12px 0 0;
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  font-weight: 900;
  box-shadow: var(--shadow-md);
  pointer-events: auto;
  cursor: pointer;
}
.booking-panel {
  width: min(430px, calc(100vw - 28px));
  height: min(720px, calc(100vh - 32px));
  transform: translateX(104%);
  transition: transform .24s ease;
  border: 1px solid var(--border);
  border-radius: 16px 0 0 16px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  pointer-events: auto;
}
.booking-shell.is-open .booking-panel {
  transform: translateX(0);
}
.booking-shell.is-open .booking-tab {
  display: none;
}
.booking-panel__head {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: start;
  padding: 18px;
  border-bottom: 1px solid var(--border);
}
.booking-panel__head strong,
.booking-panel__head span {
  display: block;
}
.booking-panel__head span {
  color: var(--ink-2);
  font-size: 14px;
}
.booking-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-alt);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.booking-panel iframe {
  width: 100%;
  height: calc(100% - 94px);
  border: 0;
}
.booking-fallback {
  display: block;
  padding: 10px 18px;
  border-top: 1px solid var(--border);
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}
.sticky-cta {
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(860px, calc(100% - 36px));
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(0,48,135,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.sticky-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 24px);
  pointer-events: none;
}
.sticky-cta span {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--ink-2);
  font-size: 14px;
}
.sticky-cta strong {
  color: var(--ink);
}
.sticky-cta .button {
  min-height: 42px;
  padding: 10px 16px;
  white-space: nowrap;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 76px;
  background:
    radial-gradient(circle at 86% 0%, rgba(0,102,255,.16), transparent 26rem),
    linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #f3f6ff 100%);
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -88px;
  top: 54px;
  width: 280px;
  height: 280px;
  border-radius: 44px;
  background: url("assets/brand/APPS365ICON.png") center / contain no-repeat;
  opacity: .06;
}
.page-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, .58fr);
  gap: 54px;
  align-items: end;
}
.page-hero h1 {
  max-width: 840px;
}
.page-hero p {
  max-width: 720px;
  font-size: 18px;
}
.page-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}
.page-card h2 {
  font-size: 30px;
}
.split-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.feature {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

/* Dramatic launch design pass */
.site-header {
  min-height: 74px;
  padding-top: 8px;
  padding-bottom: 8px;
  box-shadow: 0 1px 0 rgba(226,232,240,.64), 0 18px 44px rgba(15,23,42,.045);
}
.site-nav {
  padding: 5px;
  border: 1px solid rgba(226,232,240,.72);
  border-radius: 999px;
  background: rgba(248,250,252,.72);
}
.site-nav a,
.site-nav button {
  border-radius: 999px;
}
.nav-dropdown__menu {
  border-radius: 28px;
}
.hero {
  padding: 88px 0 64px;
  background:
    linear-gradient(90deg, rgba(0,112,224,.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 76%, #ffffff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, #0070e0 0%, #00a8ea 34%, #f5af02 67%, #86b817 100%);
}
.hero h1 {
  max-width: 820px;
  font-weight: 760;
}
.hero-copy {
  max-width: 680px;
}
.hero-announcement {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 22px;
  padding: 9px 12px 9px 10px;
  border: 1px solid rgba(0,112,224,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
}
.hero-announcement span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.hero-announcement strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}
.button {
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  background: linear-gradient(135deg, #0070e0, #0058c7);
  box-shadow: 0 18px 38px rgba(0,112,224,.24);
}
.button.secondary {
  border-color: rgba(0,48,135,.16);
}
.hero-trust span {
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-sm);
}
.ai-map {
  width: min(100%, 560px);
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.98));
  box-shadow: 0 34px 90px rgba(7,20,35,.16);
}
.ai-map::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(0,112,224,.2), rgba(0,168,234,.08));
  transform: rotate(-2deg);
}
.ai-map__flow article {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15,23,42,.045);
}
.ai-map__flow article:hover,
.sales-bridge__cards a:hover,
.answer-card-grid article:hover,
.pricing-card:hover,
.dashboard-panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ai-map__flow strong {
  font-size: 17px;
}
.ai-map__insights {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(0,48,135,.12);
  border-radius: 20px;
  background: linear-gradient(135deg, #071423, #003087);
  color: #fff;
}
.ai-map__insights span {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.ai-map__insights strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
}
.ai-map__bars {
  display: grid;
  gap: 8px;
}
.ai-map__bars span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00a8ea, rgba(255,255,255,.22));
}
.ai-map__bars span:nth-child(1) { width: 82%; }
.ai-map__bars span:nth-child(2) { width: 64%; background: linear-gradient(90deg, #f5af02, rgba(255,255,255,.22)); }
.ai-map__bars span:nth-child(3) { width: 92%; background: linear-gradient(90deg, #86b817, rgba(255,255,255,.22)); }
.hero-metrics {
  padding: 10px;
  border: 1px solid rgba(226,232,240,.72);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
}
.hero-metrics div {
  border-radius: 18px;
  background: #fff;
}
.answer-strip {
  padding: 44px 0;
  background:
    linear-gradient(135deg, #071423 0%, #003087 56%, #0070e0 100%);
}
.answer-options a,
.answer-options button {
  border-radius: 22px;
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(12px);
  transition: transform .18s ease, background .18s ease;
}
.answer-options a:hover,
.answer-options button:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.16);
}
.sales-bridge {
  padding: 44px 0;
}
.sales-bridge__cards a {
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  transition: transform .18s ease, box-shadow .18s ease;
}
.quick-win-grid a {
  border-radius: 26px;
  background:
    linear-gradient(180deg, #fff, #fbfdff);
  box-shadow: 0 14px 34px rgba(15,23,42,.055);
}
.quick-win-grid a::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--primary);
}
.quick-win-grid a:nth-child(2)::before { background: #e53238; }
.quick-win-grid a:nth-child(3)::before { background: #f5af02; }
.quick-win-grid a:nth-child(4)::before { background: #86b817; }
.quick-win-grid strong {
  font-size: 24px;
}
.keyword-shell {
  padding: 28px;
  border: 1px solid rgba(226,232,240,.76);
  border-radius: 30px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: var(--shadow-sm);
}
.answer-card-grid article,
.signal-grid article,
.confidence-grid article,
.fit-grid article,
.risk-grid article,
.decision-list article,
.funnel-packages article {
  border-radius: 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.answer-card-grid article:hover,
.signal-grid article:hover,
.confidence-grid article:hover,
.fit-grid article:hover,
.risk-grid article:hover,
.decision-list article:hover,
.funnel-packages article:hover {
  transform: translateY(-3px);
  border-color: rgba(0,112,224,.22);
  box-shadow: var(--shadow-md);
}
.ai-readiness-section {
  background:
    linear-gradient(135deg, #061426 0%, #0b2b57 58%, #003087 100%);
  color: #fff;
}
.ai-readiness-section h2,
.ai-readiness-section .section-kicker {
  color: #fff;
}
.ai-readiness-section p {
  color: rgba(255,255,255,.74);
}
.readiness-grid span {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.1);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(12px);
}
.app-dashboard {
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(7,20,35,.14);
}
.app-sidebar {
  background:
    linear-gradient(180deg, #071423, #0a2a55);
  color: #fff;
}
.app-sidebar a {
  color: rgba(255,255,255,.78);
}
.app-sidebar a.is-current,
.app-sidebar a:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.dashboard-kpis article,
.dashboard-panel {
  border-radius: 24px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.pricing-card {
  border-radius: 30px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pricing-card.featured {
  background:
    linear-gradient(180deg, #071423, #003087);
  color: #fff;
}
.pricing-card.featured h3,
.pricing-card.featured > strong,
.pricing-card.featured li {
  color: #fff;
}
.pricing-card.featured p,
.pricing-card.featured small {
  color: rgba(255,255,255,.78);
}
.process-section {
  background:
    linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}
.process-shell {
  border-radius: 34px;
  box-shadow: 0 28px 74px rgba(7,20,35,.1);
}
.contact-section {
  background:
    linear-gradient(135deg, #071423 0%, #003087 58%, #0070e0 100%);
}
.contact-section h2,
.contact-section .section-kicker {
  color: #fff;
}
.contact-section p,
.email-note {
  color: rgba(255,255,255,.76);
}
.contact-section .booking-card,
.contact-section .lead-form {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.94);
  box-shadow: 0 28px 72px rgba(0,0,0,.18);
}
.contact-section .booking-card strong {
  color: var(--ink);
}
.contact-section .booking-card p,
.contact-section .booking-card li,
.contact-section .booking-card span {
  color: var(--ink-2);
}
.contact-section .booking-card .call-agenda span {
  color: var(--primary-dark);
}
.contact-section .lead-form strong {
  color: var(--ink);
}
.contact-section .lead-form label,
.contact-section .lead-form > span,
.contact-section .lead-form .form-destination,
.contact-section .lead-form .checkbox-field {
  color: var(--ink-2);
}
.contact-section .lead-form .form-message {
  border-color: #d9e4f2;
  background: #f8fafc;
  color: var(--ink-2);
}
.contact-section .lead-form .form-message[data-state="success"] {
  border-color: rgba(16,185,129,.35);
  background: #ecfdf5;
  color: #047857;
}
.contact-section .lead-form .form-message[data-state="error"] {
  border-color: rgba(220,38,38,.28);
  background: #fef2f2;
  color: #b91c1c;
}
.funnel-hero {
  padding: 74px 0 58px;
  background:
    linear-gradient(90deg, rgba(0,112,224,.08), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}
.funnel-copy h1 {
  font-weight: 760;
}
.funnel-route-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.funnel-route-strip a {
  padding: 10px 13px;
  border: 1px solid rgba(0,112,224,.18);
  border-radius: 999px;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.funnel-route-strip a:hover {
  transform: translateY(-2px);
  border-color: rgba(0,112,224,.34);
}
.funnel-form {
  border-radius: 30px;
}
.funnel-band {
  background:
    linear-gradient(135deg, #071423 0%, #003087 58%, #0070e0 100%);
}
.funnel-outcomes article,
.funnel-steps article {
  border-radius: 24px;
  background: rgba(255,255,255,.11);
}
.site-footer {
  background:
    linear-gradient(180deg, #071423 0%, #050b14 100%);
}

@media (max-width: 980px) {
  .site-nav {
    border-radius: 20px;
    background: #fff;
  }
  .hero {
    padding-top: 58px;
  }
  .ai-map::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-announcement {
    border-radius: 18px;
  }
  .hero-announcement span,
  .hero-announcement strong {
    width: 100%;
  }
  .keyword-shell,
  .process-shell,
  .app-dashboard {
    border-radius: 22px;
  }
  .site-nav {
    border-radius: 18px;
  }
}

@media (max-width: 1120px) {
  .funnel-hero__grid {
    grid-template-columns: minmax(0, .9fr) minmax(340px, .7fr);
    gap: 24px;
  }
  .confidence-grid,
  .funnel-packages,
  .funnel-outcomes,
  .funnel-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .funnel-outcomes article,
  .funnel-steps article,
  .confidence-grid article {
    min-height: auto;
  }
  .funnel-proof-grid {
    grid-template-columns: 1fr;
  }
  .quick-win-grid,
  .readiness-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-lg);
  }
    .site-nav.is-open { display: grid; }
  .site-nav a,
  .site-nav button { padding: 13px; }
  .nav-dropdown {
    display: grid;
  }
  .nav-dropdown__trigger {
    justify-content: space-between;
  }
  .site-nav.is-open {
    max-height: calc(100dvh - 84px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }
  .site-nav > a,
  .nav-dropdown__trigger,
  .site-nav .nav-cta { min-height: 48px; }
  .nav-dropdown__menu {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    width: auto;
    margin-top: 4px;
    padding: 6px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-dropdown.is-expanded .nav-dropdown__menu { display: grid; }
  .nav-dropdown__menu a {
    min-height: auto;
    padding: 12px 14px;
  }
  .nav-dropdown__trigger[aria-expanded="true"] {
    color: var(--primary-dark);
    background: var(--surface-alt);
  }
  .hero-content,
  .funnel-hero__grid,
  .funnel-split,
  .funnel-proof-grid,
  .fit-shell,
  .risk-shell,
  .readiness-shell,
  .decision-grid,
  .sales-bridge__grid,
  .answer-grid,
  .keyword-shell,
  .dashboard-intro,
  .audit-grid,
  .sales-ready-grid,
  .app-dashboard,
  .deliverables-shell,
  .governance-grid,
  .roi-shell,
  .geo-grid,
  .two-column,
  .faq-layout,
  .contact-grid,
  .page-hero .container,
  .footer-grid,
  .system-grid,
  .process-shell,
  .product-head,
  .system-head,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .answer-options {
    grid-template-columns: 1fr;
  }
  .app-sidebar {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
  }
  .app-sidebar__brand {
    margin-bottom: 0;
  }
  .app-sidebar nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
  }
  .app-sidebar a {
    justify-content: center;
    min-height: 38px;
    padding: 8px;
    font-size: 12.5px;
  }
  .dashboard-kpis,
  .dashboard-grid,
  .confidence-grid,
  .funnel-outcomes,
  .funnel-steps,
  .quick-win-grid,
  .pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .answer-options a,
  .answer-options button {
    min-height: auto;
  }
  .faq-intro {
    position: static;
  }
  .hero { min-height: auto; padding-top: 54px; }
  .hero-visual { min-height: auto; }
  .service-grid,
  .fact-grid,
  .signal-grid,
  .firms-grid,
  .industry-grid,
  .answer-card-grid,
  .examples-grid,
  .deliverables-grid,
  .trust-stack,
  .project-examples,
  .testimonial-grid,
  .timeline-grid,
  .objection-grid,
  .outcome-grid,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process article:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-content { width: min(100% - 28px, 1200px); }
  .hero-content { gap: 30px; }
  .site-header { padding: 12px 14px; }
  .brand-logo { width: 132px; }
  .hero { padding-top: 38px; }
  h1 { font-size: 35px; }
  h2 { font-size: 29px; }
  .hero-copy { font-size: 16.5px; }
  .hero-visual {
    display: block;
    min-height: auto;
    margin-top: 0;
  }
  .ai-map {
    padding: 18px;
    border-radius: 18px;
  }
  .ai-map__corner-icon {
    width: 42px;
    height: 42px;
    top: 14px;
    right: 14px;
    border-radius: 12px;
    padding: 6px;
  }
  .ai-map__head {
    margin-right: 54px;
    margin-bottom: 18px;
    gap: 10px;
  }
  .ai-map__head img {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }
  .ai-map__head strong {
    font-size: 18px;
  }
  .ai-map__flow article {
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
  }
  .ai-map__products {
    gap: 8px;
  }
  .ai-map__products a {
    padding: 8px 10px;
    font-size: 12.5px;
  }
  .hero-metrics,
  .funnel-proof,
  .funnel-packages,
  .funnel-outcomes,
  .funnel-steps,
  .funnel-faq,
  .fit-grid,
  .risk-grid,
  .readiness-grid,
  .decision-list,
  .quick-win-grid,
  .audit-scorecard article,
  .service-grid,
  .fact-grid,
  .firms-grid,
  .industry-grid,
  .examples-grid,
  .deliverables-grid,
  .trust-stack,
  .project-examples,
  .testimonial-grid,
  .timeline-grid,
  .control-grid,
  .geo-list,
  .legal-layout,
  .outcome-grid,
  .process,
  .pricing-grid,
  .split-list {
    grid-template-columns: 1fr;
  }
  .funnel-mini-plan span {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .lead-form {
    grid-column: auto;
  }
  .sticky-cta {
    align-items: stretch;
    flex-direction: column;
    border-radius: 18px;
  }
  .sticky-cta span {
    text-align: center;
  }
  .hero-actions,
  .page-actions {
    flex-direction: column;
  }
  .button { width: 100%; }
  .hero-actions .button.secondary {
    width: auto;
    min-height: auto;
    padding: 6px 8px;
    border: 0;
    box-shadow: none;
    background: transparent;
    color: var(--primary-dark);
  }
  .section,
  .contact-section { padding: 62px 0; }
  .audit-strip { padding: 56px 0; }
  .dashboard-section { padding: 58px 0 64px; }
  .answer-strip,
  .system-band { padding: 54px 0; }
  .app-dashboard {
    border-radius: 18px;
  }
  .app-sidebar {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .app-sidebar nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .app-sidebar a {
    flex: 0 0 auto;
  }
  .app-main {
    padding: 16px;
  }
  .app-topbar {
    align-items: stretch;
    flex-direction: column;
  }
  .dashboard-kpis,
  .dashboard-grid,
  .pipeline {
    grid-template-columns: 1fr;
  }
  .product-status a {
    grid-template-columns: 1fr auto;
  }
  .product-status a span {
    grid-column: 1 / -1;
  }
  .audit-actions {
    flex-direction: column;
  }
  .timeline-grid article::after {
    display: none;
  }
  .comparison-table > div {
    grid-template-columns: 1fr;
  }
  .comparison-table span,
  .comparison-table strong {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .comparison-table span:last-child {
    border-bottom: 0;
  }
  .process-section { padding: 54px 0; }
  .process-head,
  .process-summary,
  .process article {
    border-radius: 18px;
  }
  .process-head {
    padding: 24px;
  }
  .process-head h2 {
    font-size: 34px;
  }
  .process-head p:last-child {
    font-size: 16px;
  }
  .process-summary {
    padding: 22px;
  }
  .process {
    gap: 10px;
  }
  .process article {
    min-height: auto;
    padding: 20px;
  }
  .process span {
    margin-bottom: 22px;
  }
  blockquote { padding: 26px; }
  .booking-shell {
    top: auto;
    bottom: 14px;
    right: 14px;
    transform: none;
  }
  .booking-tab {
    display: none;
  }
  .booking-panel {
    position: fixed;
    top: 72px;
    right: 14px;
    width: calc(100vw - 28px);
    height: calc(100vh - 88px);
    border-radius: var(--radius);
  }
}
