:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --bg-strong: #eef4ff;
  --paper: #ffffff;
  --paper-soft: #f9fbff;
  --ink: #101826;
  --ink-soft: #253247;
  --muted: #66758a;
  --muted-strong: #4f6075;
  --line: #dce5f2;
  --line-strong: #c7d4e5;
  --blue: #2563eb;
  --blue-strong: #1746b8;
  --blue-soft: #e8f0ff;
  --sky: #0ea5e9;
  --indigo: #3b3f8f;
  --amber: #c47a18;
  --coral: #dc5c3f;
  --success: #1d6fd7;
  --surface-shadow: 0 22px 60px rgba(16, 24, 38, 0.09);
  --soft-shadow: 0 14px 36px rgba(16, 24, 38, 0.07);
  --button-shadow: 0 14px 26px rgba(37, 99, 235, 0.22);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "liga" 1, "calt" 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #f3f7fd 100%);
  background-size: 44px 44px, 44px 44px, auto;
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.topbar {
  position: sticky;
  top: 0.75rem;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 1rem;
  width: calc(100% - 32px);
  max-width: 1360px;
  margin: 0 auto;
  padding: 0.62rem;
  border: 1px solid rgba(199, 212, 229, 0.8);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 34px rgba(16, 24, 38, 0.08);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.82rem;
  min-width: max-content;
  padding-left: 0.12rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: none;
}

.brand-symbol {
  width: 43px;
  height: 43px;
  display: block;
}

.brand-corner {
  fill: none;
  stroke-width: 6.4;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.brand-corner-blue,
.brand-quadrant-blue {
  stroke: var(--blue);
  fill: var(--blue);
}

.brand-corner-ink,
.brand-quadrant-ink {
  stroke: var(--ink);
  fill: var(--ink);
}

.brand-corner-soft {
  stroke: #c9d9ff;
}

.brand-quadrant-blue-soft {
  fill: #5a84f2;
}

.brand-quadrant-pale {
  fill: #dce7ff;
}

.brand-divider {
  fill: none;
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: square;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 0.14rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.08rem;
  padding: 0.22rem;
  border: 1px solid rgba(220, 229, 242, 0.86);
  border-radius: 999px;
  background: rgba(249, 251, 255, 0.86);
}

.desktop-nav a {
  padding: 0.55rem 0.72rem;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 680;
  transition:
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.desktop-nav a:hover {
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.desktop-nav a[aria-current="page"] {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(16, 24, 38, 0.16);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  padding: 0.22rem;
  border: 1px solid rgba(220, 229, 242, 0.86);
  border-radius: 999px;
  background: rgba(249, 251, 255, 0.86);
}

.language-switcher a {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 34px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.74rem;
  font-weight: 850;
}

.language-switcher a:hover {
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.language-switcher a[aria-current="true"] {
  background: var(--blue);
  color: #ffffff;
}

.nav-cta,
.primary-button,
.secondary-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 44px;
  border-radius: 12px;
  font-weight: 780;
}

.nav-cta {
  padding: 0.72rem 0.95rem;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.88rem;
  box-shadow: 0 10px 22px rgba(16, 24, 38, 0.16);
}

.nav-cta:hover {
  background: var(--blue-strong);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
}

.mobile-nav {
  position: fixed;
  inset: 82px 16px auto;
  z-index: 30;
  display: grid;
  gap: 0.32rem;
  padding: 0.64rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--surface-shadow);
  backdrop-filter: blur(20px);
}

.mobile-nav a {
  padding: 0.88rem 0.84rem;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 760;
}

.mobile-nav a:hover {
  background: var(--blue-soft);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(430px, 0.84fr);
  gap: clamp(2rem, 4vw, 3.8rem);
  align-items: center;
  width: calc(100% - 32px);
  max-width: 1360px;
  margin: 4.2rem auto 0;
  padding: 1rem 0 3rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 3rem -1.5rem auto auto;
  width: min(40vw, 540px);
  height: min(40vw, 540px);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.03)),
    repeating-linear-gradient(90deg, rgba(37, 99, 235, 0.08) 0 1px, transparent 1px 48px);
  transform: rotate(-4deg);
  z-index: -1;
}

.hero-copy {
  max-width: 850px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 1rem;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  background: rgba(232, 240, 255, 0.82);
  color: var(--blue-strong);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow {
  margin-bottom: 1.4rem;
  padding: 0.5rem 0.72rem;
}

.section-kicker {
  padding: 0.42rem 0.66rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 1.2rem;
  color: var(--ink);
  font-size: clamp(2.75rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-title {
  max-width: 920px;
  font-size: clamp(2.85rem, 5.15vw, 5.25rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.66;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 1.65rem;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.76rem;
  margin-bottom: 1.45rem;
}

.primary-button {
  padding: 0.94rem 1.12rem;
  border: 0;
  background: var(--blue);
  color: #ffffff;
  cursor: pointer;
  box-shadow: var(--button-shadow);
  transition:
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.primary-button:hover {
  background: var(--blue-strong);
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.25);
}

.secondary-button {
  padding: 0.94rem 1.08rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.secondary-button:hover {
  border-color: rgba(37, 99, 235, 0.34);
  background: #ffffff;
  color: var(--blue-strong);
}

.text-link {
  width: fit-content;
  min-height: auto;
  color: var(--blue-strong);
}

.outcome-list {
  display: grid;
  gap: 0.66rem;
  max-width: 710px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcome-list li {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  color: var(--ink-soft);
  font-weight: 690;
}

.outcome-list svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  padding: 0.2rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(199, 212, 229, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--surface-shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 16px;
  pointer-events: none;
}

.consulting-command {
  display: grid;
  gap: 0.86rem;
  overflow: hidden;
  padding: 0.95rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.95)),
    var(--paper);
}

.command-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.2rem 0.18rem 0;
}

.command-header span {
  color: var(--muted);
  font-size: 0.78rem;
}

.command-header strong {
  display: block;
  margin-top: 0.22rem;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.22;
}

.command-status {
  position: relative;
  flex: 0 0 auto;
  padding: 0.36rem 0.64rem 0.36rem 1.18rem;
  border: 1px solid rgba(37, 99, 235, 0.13);
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-strong) !important;
  font-weight: 850;
}

.command-status::before {
  content: "";
  position: absolute;
  left: 0.52rem;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--blue);
  transform: translateY(-50%);
  animation: statusPulse 1.8s ease-in-out infinite;
}

.command-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
  gap: 0.28rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-soft);
}

.command-tabs button {
  min-width: 0;
  min-height: 38px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted-strong);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 850;
  line-height: 1.15;
}

.command-tabs button:hover,
.command-tabs button.active {
  background: #ffffff;
  color: var(--blue-strong);
  box-shadow: 0 7px 18px rgba(16, 24, 38, 0.08);
}

.command-panel {
  display: grid;
  gap: 0.72rem;
}

.command-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.48rem;
  align-items: center;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    #f7faff;
  background-size: 22px 22px;
  color: var(--muted);
}

.command-node {
  display: grid;
  justify-items: center;
  gap: 0.34rem;
  min-height: 84px;
  padding: 0.78rem 0.55rem;
  border: 1px solid rgba(199, 212, 229, 0.9);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 820;
  box-shadow: 0 8px 18px rgba(16, 24, 38, 0.05);
}

.command-node svg {
  color: var(--blue);
}

.command-node-dark {
  border-color: transparent;
  background: var(--ink);
  color: #ffffff;
}

.command-node-dark svg {
  color: #8db7ff;
}

.case-snapshot {
  padding: 1.05rem;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.22), transparent 52%),
    var(--ink);
  color: #ffffff;
}

.case-snapshot span {
  display: block;
  margin-bottom: 0.52rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-snapshot h3 {
  margin-bottom: 0.45rem;
  color: #ffffff;
  font-size: 1.58rem;
  line-height: 1.04;
}

.case-snapshot p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.5;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.48rem;
}

.impact-grid div {
  min-height: 78px;
  display: grid;
  align-content: end;
  gap: 0.36rem;
  padding: 0.66rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.impact-grid span {
  color: var(--muted);
  font-size: 0.72rem;
}

.impact-grid strong {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.18;
}

.agent-result {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.72rem 0.75rem;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue-strong);
  font-size: 0.8rem;
  font-weight: 780;
}

.agent-result svg {
  flex: 0 0 auto;
}

@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.36);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(37, 99, 235, 0);
  }
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: calc(100% - 32px);
  max-width: 1360px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(16, 24, 38, 0.05);
  overflow: hidden;
}

.trust-band div {
  display: grid;
  align-content: start;
  gap: 0.36rem;
  min-height: 112px;
  padding: 1.15rem;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.trust-band div:last-child {
  border-right: 0;
}

.trust-band strong {
  color: var(--blue-strong);
  font-size: 1.38rem;
  line-height: 1;
}

.trust-band span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.section,
.split-section,
.lead-band,
.contact-direct,
.page-hero {
  width: calc(100% - 32px);
  max-width: 1360px;
  margin: 0 auto;
}

.section {
  padding: clamp(4rem, 8vw, 6rem) 0 0;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
  margin-bottom: 1.6rem;
}

.section-heading .section-kicker {
  margin-bottom: 0;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-card,
.proof-card,
.faq-card,
.case-card,
.pricing-card,
.timeline-item,
.method-detail-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(16, 24, 38, 0.05);
}

.service-card {
  position: relative;
  min-height: 266px;
  padding: 1.15rem;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  opacity: 0;
  transition: opacity 160ms ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card svg,
.proof-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 1.15rem;
  padding: 0.55rem;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
}

.service-card h3,
.case-card h2,
.pricing-card h2,
.proof-card h3,
.faq-card h3 {
  color: var(--ink);
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.compact-list {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.compact-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 670;
}

.compact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--blue);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(2rem, 5vw, 4.2rem);
  align-items: start;
  padding: clamp(4rem, 8vw, 6rem) 0 0;
}

.split-section h2 {
  margin-top: 0;
}

.use-case-list {
  display: grid;
  gap: 0.58rem;
}

.use-case {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 58px;
  padding: 0.86rem 0.92rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-soft);
  font-weight: 730;
  box-shadow: 0 8px 18px rgba(16, 24, 38, 0.035);
}

.use-case svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.page-hero {
  padding: clamp(4.6rem, 9vw, 6.8rem) 0 2.2rem;
}

.page-hero h1 {
  max-width: 1050px;
  margin-top: 0;
}

.page-hero p {
  max-width: 820px;
  font-size: 1.15rem;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.case-card {
  display: grid;
  gap: 0.72rem;
  padding: 1.2rem;
}

.case-card > span {
  width: fit-content;
  padding: 0.38rem 0.56rem;
  border: 1px solid rgba(196, 122, 24, 0.16);
  border-radius: 999px;
  background: rgba(196, 122, 24, 0.1);
  color: #7a4a12;
  font-size: 0.76rem;
  font-weight: 850;
}

.case-card h2 {
  margin-bottom: 0;
  font-size: 1.55rem;
  line-height: 1.08;
}

.case-card strong {
  color: var(--blue-strong);
  font-size: 1.12rem;
}

.case-card p {
  margin-bottom: 0;
}

.case-card ul,
.pricing-card ul {
  display: grid;
  gap: 0.62rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-card li,
.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--ink-soft);
  font-weight: 680;
}

.case-card li svg,
.pricing-card li svg {
  flex: 0 0 auto;
  margin-top: 0.1rem;
  color: var(--blue);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof-card {
  min-height: 210px;
  padding: 1.05rem;
}

.method-section {
  padding-bottom: 0.4rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  counter-reset: path;
}

.timeline-item {
  position: relative;
  padding: 1.05rem;
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 1.95rem;
  left: 4.4rem;
  right: -0.9rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.3), transparent);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-item > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.1rem;
  border-radius: 14px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 850;
}

.method-detail-list {
  display: grid;
  gap: 0.85rem;
}

.method-detail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.15rem;
}

.method-detail-card > span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 850;
}

.method-detail-card h2 {
  margin-bottom: 0.35rem;
  font-size: 1.9rem;
}

.method-detail-card strong {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.35rem;
  padding: 0.42rem 0.58rem;
  border: 1px solid rgba(37, 99, 235, 0.13);
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-strong);
  font-size: 0.84rem;
}

.expertise-depth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.pricing-card {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
}

.pricing-card-featured {
  border-color: rgba(37, 99, 235, 0.28);
  background:
    linear-gradient(180deg, rgba(232, 240, 255, 0.72), rgba(255, 255, 255, 0.96)),
    #ffffff;
  box-shadow: 0 20px 46px rgba(37, 99, 235, 0.13);
}

.pricing-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 850;
}

.pricing-badge-placeholder {
  background: rgba(16, 24, 38, 0.08);
  color: var(--muted);
}

.pricing-card h2 {
  margin-bottom: 0.6rem;
  font-size: 1.6rem;
}

.pricing-card p {
  margin-bottom: 0;
}

.price-line {
  display: grid;
  gap: 0.22rem;
  padding: 0.92rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-soft);
}

.price-line strong {
  color: var(--ink);
  font-size: 1.55rem;
}

.price-line span {
  color: var(--muted);
  font-weight: 720;
}

.pricing-card-button {
  width: 100%;
  margin-top: 0.2rem;
}

.lead-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 2.4rem;
  align-items: start;
  margin-top: clamp(4.2rem, 8vw, 6rem);
  padding: 1.4rem;
  border: 1px solid rgba(199, 212, 229, 0.8);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 240, 255, 0.72)),
    #ffffff;
  box-shadow: var(--surface-shadow);
}

.lead-band h2,
.contact-direct h2 {
  margin-top: 0;
  font-size: clamp(2rem, 3.8vw, 3.55rem);
}

.lead-band-dark {
  background:
    linear-gradient(135deg, rgba(16, 24, 38, 0.98), rgba(37, 99, 235, 0.88)),
    var(--ink);
}

.lead-band-dark h2,
.lead-band-dark p {
  color: #ffffff;
}

.lead-band-dark .section-kicker {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.contact-direct {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(440px, 1fr);
  gap: 2.4rem;
  align-items: start;
  padding-bottom: 4rem;
}

.contact-options {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.contact-options a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  color: var(--blue-strong);
  font-weight: 760;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
  padding: 1rem;
  border: 1px solid rgba(199, 212, 229, 0.8);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(16, 24, 38, 0.08);
}

.contact-form label {
  display: grid;
  gap: 0.38rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 620;
  line-height: 1.2;
  outline: none;
}

.contact-form input,
.contact-form select {
  min-height: 46px;
  padding: 0 0.78rem;
}

.contact-form select {
  appearance: none;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23101826' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 0.86rem center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  cursor: pointer;
  padding-right: 2.65rem;
  text-overflow: ellipsis;
}

.contact-form textarea {
  resize: vertical;
  min-height: 118px;
  padding: 0.72rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(37, 99, 235, 0.62);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.full-field,
.form-note {
  grid-column: 1 / -1;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px !important;
  min-width: 1px !important;
  max-width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0;
}

.form-alert {
  margin: 0;
  padding: 0.72rem 0.82rem;
  border-radius: 12px;
  font-weight: 720;
}

.form-alert-success {
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.form-alert-error {
  background: #fdebe7;
  color: #9b2f1e;
}

.form-note {
  margin: 0;
  font-size: 0.82rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.faq-card {
  padding: 1.05rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: calc(100% - 32px);
  max-width: 1360px;
  margin: 4rem auto 0;
  padding: 1.4rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer span:first-child {
  color: var(--ink);
  font-weight: 820;
}

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

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .hero,
  .split-section,
  .lead-band,
  .contact-direct {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 2.4rem;
  }

  .hero-visual {
    max-width: 720px;
  }

  .service-grid,
  .proof-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline,
  .pricing-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item::after {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    background-size: 32px 32px, 32px 32px, auto;
  }

  .topbar {
    top: 0.5rem;
    width: calc(100% - 20px);
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .language-switcher {
    gap: 0;
    padding: 0.16rem;
  }

  .language-switcher a {
    min-width: 30px;
    min-height: 30px;
    font-size: 0.68rem;
  }

  .hero,
  .section,
  .split-section,
  .lead-band,
  .contact-direct,
  .page-hero,
  .trust-band {
    width: calc(100% - 20px);
  }

  .hero {
    margin-top: 2.8rem;
    padding: 0 0 2rem;
    gap: 1.6rem;
  }

  .hero::before {
    display: none;
  }

  h1,
  .hero-title {
    font-size: clamp(2.35rem, 12vw, 3.12rem);
    line-height: 1;
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions a,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-visual {
    border-radius: 18px;
  }

  .command-header {
    display: grid;
  }

  .command-status {
    width: fit-content;
  }

  .command-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
    padding: 0.5rem;
  }

  .command-map > svg {
    display: none;
  }

  .command-node {
    min-height: 72px;
    padding: 0.62rem 0.4rem;
    font-size: 0.72rem;
  }

  .command-node svg {
    width: 17px;
    height: 17px;
  }

  .command-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .command-tabs button {
    flex: 0 0 132px;
  }

  .trust-band,
  .service-grid,
  .proof-grid,
  .expertise-depth-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.36rem;
  }

  .impact-grid div {
    min-height: 96px;
    padding: 0.54rem;
  }

  .impact-grid strong {
    font-size: 0.82rem;
  }

  .trust-band div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-band div:last-child {
    border-bottom: 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .method-detail-card {
    grid-template-columns: 1fr;
  }

  .lead-band {
    padding: 1rem;
  }

  .footer {
    display: grid;
    width: calc(100% - 20px);
  }
}
