@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Manrope:wght@400;500;600;700&display=swap");
:root {
  --ink: #171817;
  --ink-2: #252625;
  --paper: #fdfdfb;
  --sky: #e9f5ff;
  --blue: #d8ecff;
  --mint: #dceede;
  --lilac: #e9e0f3;
  --cream: #fff2cf;
  --line: rgba(23, 24, 23, 0.14);
  --muted: #697176;
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --sans: "PP Neue Montreal", "Manrope", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--sky);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(rgba(23, 24, 23, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 24, 23, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 55%);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  background: #fff;
  transform: translateY(-150%);
  border-radius: 10px;
}
.skip-link:focus {
  transform: translateY(0);
}
.pointer-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.site-header {
  position: fixed;
  inset: 20px 0 auto;
  z-index: 100;
  padding: 0 24px;
  transition: transform 0.4s ease;
}
.site-header.hidden {
  transform: translateY(-130%);
}
.nav-shell {
  max-width: 1320px;
  min-height: 72px;
  margin: auto;
  padding: 8px 10px 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 22px;
  color: #fff;
  background: rgba(23, 24, 23, 0.96);
  box-shadow: 0 24px 70px rgba(26, 39, 48, 0.16);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 650;
  letter-spacing: -0.025em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  color: transparent;
  background: #fff url("assets/alexis-markarian.svg") center 16% / 110%
    no-repeat;
  border: 0;
  border-radius: 14px;
  font-family: var(--mono);
  font-size: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links > a {
  padding: 13px 15px;
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 14px;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-links > a:hover,
.nav-links > a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.nav-links .nav-cta {
  padding-inline: 18px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 650;
  white-space: nowrap;
}
.nav-links .nav-cta:hover {
  color: var(--ink);
  background: var(--cream);
}
.nav-tools {
  position: relative;
}
.nav-tools summary {
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: rgba(255, 255, 255, 0.69);
  border-radius: 13px;
  font-size: 14px;
  cursor: pointer;
  list-style: none;
}
.nav-tools summary::-webkit-details-marker {
  display: none;
}
.nav-tools summary::after {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s;
}
.nav-tools[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}
.nav-tools[open] summary,
.nav-tools.active summary,
.nav-tools summary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.nav-tools > div {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 210px;
  padding: 8px;
  display: grid;
  gap: 3px;
  color: #fff;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}
.nav-tools > div a {
  padding: 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.nav-tools > div a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.nav-cta span,
.button span {
  display: inline-block;
  margin-left: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-variant-emoji: text;
  transition: transform 0.25s;
}
.nav-cta:hover span,
.button:hover span {
  transform: translate(2px, -2px);
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.25s;
}
.section {
  max-width: 1368px;
  margin: 0 auto;
  padding: 150px 48px;
}
.hero {
  min-height: 100svh;
  padding-top: 165px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  align-items: center;
  gap: 80px;
}
.hero-copy {
  max-width: 760px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 28px;
  color: #526069;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow.light {
  color: rgba(255, 255, 255, 0.55);
}
.status-dot,
.availability i,
.live-pill i {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #5db977;
  box-shadow: 0 0 0 5px rgba(93, 185, 119, 0.13);
}
h1,
h2,
h3,
p {
  text-wrap: balance;
}
h1 {
  margin: 0;
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(3.8rem, 6.1vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 580;
}
.hero-lead {
  max-width: 650px;
  margin: 34px 0 0;
  color: #48545c;
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}
.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 15px;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(24, 30, 34, 0.13);
}
.button-dark {
  color: #fff;
  background: var(--ink);
}
.button-ghost {
  background: rgba(255, 255, 255, 0.46);
}
.button-light {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}
.hero-system {
  min-height: 560px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border: 10px solid rgba(23, 24, 23, 0.07);
  outline: 1px solid rgba(23, 24, 23, 0.14);
  border-radius: 42px;
  box-shadow: 0 40px 100px rgba(36, 54, 64, 0.18);
}
.system-topbar {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
}
.live-pill {
  padding: 7px 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  font-size: 11px;
}
.live-pill i {
  width: 6px;
  height: 6px;
  box-shadow: none;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  50% {
    opacity: 0.35;
    transform: scale(0.75);
  }
}
.system-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 370px;
  overflow: hidden;
}
.orb {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.38;
}
.orb-one {
  top: -80px;
  right: -50px;
  background: #87c7ff;
}
.orb-two {
  bottom: -110px;
  left: -40px;
  background: #b79ed8;
}
.flow {
  position: relative;
  z-index: 2;
  width: 88%;
  display: flex;
  align-items: center;
}
.flow-node {
  min-width: 0;
  flex: 1;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(14px);
}
.flow-node span {
  display: block;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--mono);
  font-size: 10px;
}
.flow-node b {
  display: block;
  font-size: 13px;
  font-weight: 600;
}
.flow-node small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.45);
}
.flow-node.node-process {
  background: var(--lilac);
  color: var(--ink);
  transform: translateY(-18px);
}
.flow-node.node-process span,
.flow-node.node-process small {
  color: rgba(23, 24, 23, 0.5);
}
.flow-line {
  position: relative;
  width: 34px;
  height: 1px;
  flex: 0 0 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}
.flow-line i {
  position: absolute;
  width: 12px;
  height: 1px;
  background: #fff;
  animation: travel 1.8s linear infinite;
}
@keyframes travel {
  from {
    left: -12px;
  }
  to {
    left: 34px;
  }
}
.system-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.system-footer > div {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}
.system-footer > div:last-child {
  border: 0;
}
.system-footer strong {
  display: block;
  font-size: 23px;
  font-weight: 550;
}
.system-footer span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}
.process-section {
  padding-top: 24px;
  padding-bottom: 24px;
}
.process-board {
  width: min(100%, 980px);
  min-height: 500px;
  margin-inline: auto;
}
.process-board .system-stage {
  min-height: 310px;
}
.trust-strip {
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee-track {
  width: max-content;
  padding: 19px 0;
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
}
.marquee-track i {
  color: var(--cream);
  font-style: normal;
}
@keyframes marquee {
  to {
    transform: translateX(calc(-50% - 14px));
  }
}
.section-heading {
  max-width: 960px;
  margin-bottom: 64px;
}
.section-heading.horizontal {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
h2 {
  margin: 0;
  font-size: clamp(2.8rem, 4.6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 560;
}
.section-heading > p:last-child,
.method-intro > p:last-child {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.services {
  padding-top: 190px;
}
.service-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}
.service-list {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.service-tab {
  width: 100%;
  min-height: 112px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s;
}
.service-tab:last-child {
  border-bottom: 0;
}
.service-tab:hover {
  background: rgba(255, 255, 255, 0.55);
}
.service-tab.active {
  background: #fff;
}
.service-index {
  color: #92999d;
  font-family: var(--mono);
  font-size: 11px;
}
.service-tab b {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.service-tab small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}
.service-tab > i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  font-size: 0;
  position: relative;
  transition:
    transform 0.25s,
    background 0.25s;
}
.service-tab > i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
}
.service-tab > i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translate(0, -7px);
}
.service-tab.active > i {
  color: #fff;
  background: var(--ink);
  transform: none;
}
.service-tab.active > i::before {
  transform: translate(-50%, -50%);
}
.service-tab.active > i::after {
  transform: translate(1px, -50%) rotate(45deg);
}
.service-preview {
  min-height: 520px;
  padding: clamp(30px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  background: var(--lilac);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: background 0.35s;
}
.preview-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mini-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 15px;
  font-size: 22px;
}
.service-preview h3 {
  max-width: 700px;
  margin: 58px 0 16px;
  font-size: clamp(2.1rem, 3.35vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 560;
}
.service-preview > p {
  max-width: 620px;
  color: #566066;
  line-height: 1.55;
}
.preview-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 34px;
}
.preview-chips span {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(23, 24, 23, 0.1);
  border-radius: 100px;
  font-size: 11px;
}
.mini-workflow {
  margin-top: auto;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 18px;
}
.mini-workflow div {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.mini-workflow i {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--ink);
}
.mini-workflow b {
  font-weight: 400;
  color: #80878b;
}
.projects {
  background: var(--paper);
  max-width: none;
  padding-inline: max(48px, calc((100vw - 1272px) / 2));
}
.filter-group {
  padding: 5px;
  display: flex;
  gap: 4px;
  background: var(--sky);
  border-radius: 14px;
}
.filter {
  padding: 11px 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #70777b;
  font-size: 12px;
  cursor: pointer;
}
.filter.active {
  background: var(--ink);
  color: #fff;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.project-card {
  min-height: 650px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    opacity 0.3s;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(24, 35, 40, 0.12);
}
.project-card.hidden-card {
  display: none;
}
.project-dark {
  color: #fff;
  background: var(--ink);
}
.project-blue {
  background: var(--blue);
}
.project-mint {
  grid-column: 1 / -1;
  background: var(--mint);
  min-height: 560px;
}
.project-meta {
  display: flex;
  justify-content: space-between;
  color: inherit;
  opacity: 0.56;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}
.project-card h3 {
  max-width: 800px;
  margin: 54px 0 30px;
  font-size: clamp(1.9rem, 2.8vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 560;
}
.project-card > p {
  max-width: 620px;
  margin: 28px 0 0;
  opacity: 0.62;
  line-height: 1.55;
}
.project-visual {
  flex: 1;
  min-height: 270px;
  border-radius: 24px;
}
.pipeline-visual {
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.pipeline-column {
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
}
.pipeline-column.active {
  background: var(--lilac);
  color: var(--ink);
  transform: translateY(-8px);
}
.pipeline-column small {
  display: block;
  opacity: 0.5;
}
.pipeline-column b {
  display: block;
  margin: 8px 0 24px;
  font-size: 30px;
}
.pipeline-column span {
  height: 36px;
  display: block;
  margin-top: 8px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
}
.pipeline-column.active span {
  background: rgba(23, 24, 23, 0.08);
}
.chat-visual {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.44);
}
.chat-line {
  max-width: 78%;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 12px;
}
.chat-line.user {
  align-self: flex-end;
  background: var(--ink);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-line.bot {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-bottom-left-radius: 4px;
}
.chat-line.bot i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--cream);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
}
.typing {
  align-self: flex-start;
  padding: 10px 14px;
  display: flex;
  gap: 4px;
  background: #fff;
  border-radius: 12px;
}
.typing i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8d9498;
  animation: typing 1s infinite alternate;
}
.typing i:nth-child(2) {
  animation-delay: 0.2s;
}
.typing i:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typing {
  to {
    transform: translateY(-4px);
    opacity: 0.4;
  }
}
.portal-visual {
  display: grid;
  grid-template-columns: 92px 1fr;
  background: rgba(255, 255, 255, 0.48);
  overflow: hidden;
}
.portal-nav {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--ink);
}
.portal-nav i {
  height: 14px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
}
.portal-nav i:first-child {
  background: var(--cream);
}
.portal-main {
  padding: 34px;
}
.portal-main > span {
  width: 42%;
  height: 20px;
  display: block;
  border-radius: 7px;
  background: rgba(23, 24, 23, 0.14);
}
.portal-main > div {
  margin: 36px 0 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.portal-main b {
  height: 100px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
}
.portal-main em {
  height: 75px;
  display: block;
  border-radius: 16px;
  background: var(--cream);
}
.method {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: start;
}
.method-intro {
  position: sticky;
  top: 140px;
}
.method-intro h2 {
  font-size: clamp(3rem, 5vw, 5.2rem);
}
.method-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.method-steps li {
  min-height: 145px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}
.method-steps > li > span {
  font-family: var(--mono);
  font-size: 11px;
  color: #81898d;
}
.method-steps h3 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.method-steps p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}
.method-steps i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
}
.contact {
  max-width: 1464px;
  padding-bottom: 70px;
}
.contact-panel {
  min-height: 720px;
  padding: clamp(34px, 6vw, 90px);
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 90px;
  color: #fff;
  background: var(--ink);
  border-radius: 48px;
  overflow: hidden;
  position: relative;
}
.contact-panel::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: -200px;
  bottom: -260px;
  background: var(--blue);
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.2;
}
.contact-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-copy h2 {
  font-size: clamp(3.2rem, 5.3vw, 6rem);
}
.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}
.availability {
  margin-top: auto;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  font-size: 11px;
}
.contact-form {
  align-self: center;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: var(--ink);
  background: #fff;
  border-radius: 28px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 11px;
  font-family: var(--mono);
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 16px;
  text-transform: none;
  border-radius: 0;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
}
.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}
.contact-form .button {
  margin-top: 4px;
  background: var(--cream);
  border-color: var(--ink);
}
.form-status {
  min-height: 18px;
  margin: 0;
  color: #5b666b;
  font-size: 11px;
  line-height: 1.4;
}
.form-trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.footer {
  max-width: 1368px;
  margin: 0 auto;
  padding: 60px 48px 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr auto;
  gap: 50px;
  align-items: start;
  border-top: 1px solid var(--line);
}
.footer-brand .brand-mark {
  color: transparent;
}
.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.footer > div {
  display: grid;
  gap: 8px;
  font-size: 13px;
}
.footer > .mono {
  color: #858d91;
} /* Pages internes */
.page-main {
  padding-top: 96px;
}
.page-hero {
  max-width: 1368px;
  margin: 0 auto;
  padding: 50px 48px 90px;
}
.page-hero.compact {
  padding-bottom: 55px;
}
.page-hero h1 {
  max-width: 1050px;
  font-size: clamp(3.5rem, 6vw, 6.7rem);
}
.page-hero .page-lead {
  max-width: 760px;
  margin: 30px 0 0;
  color: #4d5a61;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.6;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: #68747a;
  font-family: var(--mono);
  font-size: 11px;
}
.breadcrumb a:hover {
  color: var(--ink);
}
.content-section {
  max-width: 1368px;
  margin: 0 auto;
  padding: 80px 48px 130px;
}
.content-section.white {
  max-width: none;
  padding-inline: max(48px, calc((100vw - 1272px) / 2));
  background: var(--paper);
}
.content-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  align-items: start;
}
.content-grid h2 {
  position: sticky;
  top: 130px;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
}
.prose {
  max-width: 760px;
}
.prose h2,
.prose h3 {
  position: static;
}
.prose h3 {
  margin: 46px 0 14px;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}
.prose p {
  color: #4f5b62;
  font-size: 17px;
  line-height: 1.75;
  text-wrap: pretty;
}
.prose p:first-child {
  margin-top: 0;
}
.prose ul {
  margin: 22px 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}
.prose li {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 13px;
}
.service-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-link-card {
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 28px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.service-link-card:nth-child(1) {
  background: var(--lilac);
}
.service-link-card:nth-child(2) {
  background: var(--blue);
}
.service-link-card:nth-child(3) {
  background: var(--cream);
}
.service-link-card:nth-child(4) {
  background: var(--mint);
}
.service-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(31, 43, 49, 0.11);
}
.service-link-card .mono {
  color: #697277;
}
.service-link-card h2 {
  margin: auto 0 14px;
  font-size: clamp(2rem, 3vw, 3.15rem);
}
.service-link-card p {
  margin: 0;
  color: #586267;
  line-height: 1.55;
}
.service-link-card .card-arrow {
  width: 42px;
  height: 42px;
  margin-top: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
}
.service-link-card.featured-service {
  grid-column: 1 / -1;
  min-height: 280px;
  background: var(--blue);
}
.example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.example-card {
  min-height: 188px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}
.example-card span {
  font-family: var(--mono);
  font-size: 10px;
  color: #7b858a;
}
.example-card h3 {
  margin: 34px 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}
.example-card p {
  margin: 0;
  color: #697277;
  font-size: 14px;
  line-height: 1.55;
}
.inline-cta {
  margin-top: 48px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: var(--ink);
  border-radius: 24px;
}
.inline-cta .button {
  flex: 0 0 auto;
}
.inline-cta h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}
.inline-cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.55);
}
.case-list {
  display: grid;
  gap: 22px;
}
.case-study {
  padding: 34px;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 45px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
}
.case-study .case-tag {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  color: #707a7f;
}
.case-study h2 {
  position: static;
  margin: 18px 0 0;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}
.case-study h3 {
  margin: 0 0 9px;
  font-size: 14px;
}
.case-study p {
  margin: 0 0 24px;
  color: #5d686e;
  line-height: 1.6;
}
.concept-note {
  margin-top: 30px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #687278;
  font-size: 13px;
}
.concept-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-card {
  padding: clamp(32px, 6vw, 72px);
  color: #fff;
  background: var(--ink);
  border-radius: 38px;
}
.about-card h2 {
  max-width: 900px;
  font-size: clamp(3rem, 5vw, 5.6rem);
}
.about-card p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 1.7;
}
.principles {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.principle {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
}
.principle h3 {
  margin: 22px 0 9px;
}
.principle p {
  margin: 0;
  font-size: 14px;
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 65px;
  align-items: center;
}
.booking-process {
  display: grid;
  gap: 12px;
}
.booking-step {
  min-height: 128px;
  padding: 24px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.booking-step:nth-child(1) {
  background: var(--lilac);
}
.booking-step:nth-child(2) {
  background: var(--mint);
}
.booking-step:nth-child(3) {
  background: var(--cream);
}
.booking-step > span {
  color: #70797e;
  font-family: var(--mono);
  font-size: 11px;
}
.booking-step h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}
.booking-step p {
  margin: 0;
  color: #5a666b;
  line-height: 1.55;
}
.booking-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
}
.booking-calendar {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.calendar-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
}
.calendar-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
}
.calendar-grid span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #7b8488;
  font-size: 11px;
  border-radius: 9px;
}
.calendar-grid span.available {
  color: var(--ink);
  background: var(--blue);
  border: 1px solid var(--ink);
}
.booking-points {
  margin: 28px 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}
.booking-points li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #566167;
}
.booking-points i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
}
.diagnostic-shell {
  max-width: 1160px;
  margin: 0 auto;
  padding: 30px 48px 140px;
}
.diagnostic-card {
  padding: clamp(24px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  border-radius: 28px;
}
.diagnostic-progress {
  height: 4px;
  overflow: hidden;
  background: #e7ecef;
  border-radius: 100px;
}
.diagnostic-progress i {
  width: 25%;
  height: 100%;
  display: block;
  background: var(--ink);
  transition: width 0.3s;
}
.diagnostic-step {
  display: none;
}
.diagnostic-step.active {
  display: block;
}
.diagnostic-step h2 {
  max-width: 780px;
  margin: 34px 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}
.diagnostic-step > p {
  color: #657075;
}
.choice-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.diagnostic-choice {
  min-height: 142px;
  padding: 24px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.diagnostic-choice:nth-child(1) {
  background: var(--lilac);
}
.diagnostic-choice:nth-child(2) {
  background: var(--mint);
}
.diagnostic-choice:nth-child(3) {
  background: var(--cream);
}
.diagnostic-choice:nth-child(4) {
  background: var(--blue);
}
.diagnostic-choice:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}
.diagnostic-choice b {
  display: block;
  margin-bottom: 8px;
}
.diagnostic-choice small {
  color: #687278;
  line-height: 1.4;
}
.diagnostic-result {
  padding: clamp(26px, 4vw, 42px);
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 22px;
}
.diagnostic-result h3 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.diagnostic-result p {
  max-width: 760px;
  color: #536058;
  line-height: 1.6;
}
.diagnostic-lead {
  margin-top: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: end;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.diagnostic-lead .button {
  grid-column: 1 / -1;
  justify-self: start;
}
.diagnostic-lead label,
.calculator-form label {
  display: grid;
  gap: 8px;
  color: #667176;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}
.diagnostic-lead input,
.diagnostic-lead textarea,
.calculator-form input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  font-family: var(--sans);
  font-size: 15px;
  text-transform: none;
}
.diagnostic-lead textarea {
  min-height: 52px;
  max-height: 100px;
  resize: vertical;
}
.result-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.calculator-layout {
  display: grid;
  grid-template-columns:
    1.05fr
    0.95fr;
  gap: 24px;
  align-items: stretch;
}
.calculator-form,
.calculator-results {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
}
.calculator-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: var(--lilac);
}
.calculator-form .full {
  grid-column: 1 / -1;
}
.calculator-results {
  display: flex;
  flex-direction: column;
  color: #fff;
  background: var(--ink);
}
.calculator-results h2 {
  margin-bottom: 40px;
  font-size: clamp(2.3rem, 4vw, 4rem);
}
.roi-stat {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.roi-stat strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 5rem);
  letter-spacing: -0.05em;
}
.roi-stat span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.calculator-explainer {
  max-width: 850px;
  margin: 34px auto 0;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.calculator-explainer h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}
.calculator-explainer p {
  margin: 0;
  color: #5a6468;
  line-height: 1.65;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.resource-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
}
.resource-card:nth-child(2) {
  background: var(--mint);
}
.resource-card:nth-child(3) {
  background: var(--cream);
}
.resource-card h2 {
  margin: 45px 0 16px;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
}
.resource-card p {
  color: #5e696e;
  line-height: 1.65;
  text-wrap: pretty;
}
.article-block {
  max-width: 850px;
  margin: 0 auto;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.article-block h2 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
}
.legal-layout {
  max-width: 920px;
  margin: 0 auto;
}
.legal-section {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.legal-section:first-child {
  border-top: 0;
}
.legal-section h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}
.legal-section p,
.legal-section li {
  color: #536067;
  line-height: 1.75;
  text-wrap: pretty;
}
.legal-section a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  width: min(440px, calc(100vw - 32px));
  padding: 22px;
  color: #fff;
  background: rgba(23, 24, 23, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}
.cookie-banner h2 {
  margin: 0 0 9px;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}
.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.55;
  text-wrap: pretty;
}
.cookie-actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-actions button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 650;
  cursor: pointer;
}
.cookie-actions a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  text-decoration: underline;
}
.cookie-settings {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 13px;
}
.article-block h3 {
  margin-top: 38px;
  font-size: 1.5rem;
}
.article-block p,
.article-block li {
  color: #536067;
  font-size: 17px;
  line-height: 1.75;
}
.legal-note {
  max-width: 800px;
  color: #70797e;
  font-size: 12px;
  line-height: 1.6;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 170px;
  }
  .hero-system {
    min-height: 500px;
  }
  .service-layout,
  .method,
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .method {
    gap: 60px;
  }
  .method-intro {
    position: static;
  }
  .contact-panel {
    gap: 60px;
  }
  .availability {
    margin-top: 40px;
  }
  .footer {
    grid-template-columns: 1fr 1fr;
  }
  .content-grid,
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .content-grid h2 {
    position: static;
  }
}
@media (max-width: 760px) {
  :root {
    --radius-xl: 26px;
  }
  .pointer-glow {
    display: none;
  }
  .site-header {
    top: 12px;
    padding: 0 12px;
  }
  .nav-shell {
    min-height: 62px;
    padding-left: 12px;
    border-radius: 18px;
  }
  .brand > span:last-child {
    font-size: 14px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .menu-toggle {
    display: block;
  }
  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 12px;
    right: 12px;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--ink);
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links > a {
    padding: 15px;
  }
  .nav-tools {
    width: 100%;
  }
  .nav-tools summary {
    padding: 15px;
  }
  .nav-tools > div {
    position: static;
    width: 100%;
    margin-top: 3px;
    padding: 4px 10px 8px;
    border: 0;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
  }
  .nav-links .nav-cta {
    margin-top: 4px;
    text-align: center;
  }
  .section {
    padding: 105px 20px;
  }
  .hero {
    min-height: auto;
    padding-top: 145px;
    gap: 60px;
  }
  h1 {
    font-size: clamp(3.05rem, 14vw, 4.3rem);
    line-height: 0.96;
  }
  h2 {
    font-size: clamp(2.5rem, 11vw, 3.8rem);
  }
  .hero-lead {
    font-size: 17px;
  }
  .hero-actions {
    align-items: stretch;
  }
  .hero-actions .button {
    flex: 1;
  }
  .hero-system {
    min-height: 570px;
    border-width: 6px;
    border-radius: 30px;
  }
  .flow {
    padding: 30px 0;
    flex-direction: column;
    gap: 0;
  }
  .flow-node {
    width: 100%;
    flex: none;
  }
  .flow-node.node-process {
    transform: translateX(12px);
  }
  .flow-line {
    width: 1px;
    height: 24px;
    flex: 0 0 24px;
  }
  .flow-line i {
    width: 1px;
    height: 8px;
    animation: travelVertical 1.8s linear infinite;
  }
  @keyframes travelVertical {
    from {
      top: -8px;
    }
    to {
      top: 24px;
    }
  }
  .system-footer {
    grid-template-columns: 1fr;
  }
  .system-footer > div {
    padding: 13px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }
  .system-footer > div:last-child {
    border-bottom: 0;
  }
  .service-layout {
    gap: 14px;
  }
  .service-tab {
    min-height: 94px;
  }
  .service-tab small {
    display: none;
  }
  .service-preview {
    min-height: 510px;
    padding: 28px;
  }
  .service-preview h3 {
    margin-top: 48px;
  }
  .mini-workflow {
    flex-direction: column;
    align-items: stretch;
  }
  .mini-workflow b {
    transform: rotate(90deg);
    align-self: center;
  }
  .projects {
    padding-inline: 20px;
  }
  .section-heading.horizontal {
    align-items: flex-start;
    flex-direction: column;
  }
  .filter-group {
    width: 100%;
    overflow-x: auto;
  }
  .filter {
    white-space: nowrap;
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
  .project-mint {
    grid-column: auto;
  }
  .project-card {
    min-height: 570px;
    padding: 22px;
  }
  .project-card h3 {
    margin-top: 40px;
  }
  .pipeline-visual {
    padding: 12px;
    gap: 7px;
  }
  .pipeline-column {
    padding: 10px;
  }
  .pipeline-column small {
    font-size: 8px;
  }
  .pipeline-column b {
    font-size: 22px;
  }
  .portal-visual {
    grid-template-columns: 58px 1fr;
  }
  .portal-nav {
    padding: 16px 12px;
  }
  .portal-main {
    padding: 20px;
  }
  .portal-main > div {
    grid-template-columns: 1fr;
  }
  .portal-main b:nth-child(n + 2) {
    display: none;
  }
  .method-steps li {
    min-height: 130px;
    grid-template-columns: 36px 1fr;
  }
  .method-steps li > i {
    display: none;
  }
  .contact {
    padding-inline: 12px;
  }
  .contact-panel {
    padding: 45px 20px 20px;
    border-radius: 30px;
  }
  .contact-form {
    padding: 24px 18px;
  }
  .footer {
    padding: 50px 20px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-main {
    padding-top: 78px;
  }
  .page-hero {
    padding: 48px 20px 65px;
  }
  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }
  .content-section,
  .content-section.white {
    padding: 65px 20px 95px;
  }
  .service-index-grid,
  .example-grid,
  .principles,
  .choice-grid {
    grid-template-columns: 1fr;
  }
  .case-study {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 24px;
  }
  .inline-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .diagnostic-shell {
    padding: 20px 16px 100px;
  }
  .diagnostic-card {
    padding: 20px 14px;
  }
  .diagnostic-lead,
  .calculator-layout,
  .resource-grid {
    grid-template-columns: 1fr;
  }
  .calculator-form {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    right: 16px;
    bottom: 16px;
  }
  .calculator-form .full {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
