@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-600-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-700-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --background: #fcfcfc;
  --foreground: #1a2e30;
  --card: #ffffff;
  --card-foreground: #1a2e30;
  --primary: #5fa8ad;
  --primary-foreground: #1a2e30;
  --secondary: #728082;
  --secondary-foreground: #ffffff;
  --muted: #edf2f2;
  --muted-foreground: #667779;
  --accent: #e8f2f2;
  --accent-foreground: #1a2e30;
  --border: #d8e2e2;
  --input: #e4ebeb;
  --ring: #2c6469;
  --radius: 0.375rem;
  --shadow-xs: 0 1px 2px rgb(26 46 48 / 6%);
  --shadow-sm: 0 2px 4px rgb(26 46 48 / 10%);
  --font-sans: "Inter", Arial, sans-serif;
  --font-heading: "Poppins", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
}

::selection {
  background: var(--ring);
  color: #fff;
}

:focus-visible {
  outline: 3px solid rgb(44 100 105 / 38%);
  outline-offset: 2px;
}

.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: var(--foreground);
  color: #fff;
}

/* Fixed navigation: compact, persistent and independent from the hero. */
.site-bar {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-top: 1px solid var(--foreground);
  border-bottom: 1px solid var(--border);
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 1px 0 rgb(26 46 48 / 3%);
  backdrop-filter: blur(14px);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-bar--hero:not(.site-bar--detached):not(.is-open) {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-bar--hero.site-bar--detached,
.site-bar--hero.is-open {
  border-top-color: var(--foreground);
  border-bottom-color: var(--border);
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 1px 0 rgb(26 46 48 / 3%);
  backdrop-filter: blur(14px);
}

.site-bar__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  width: min(100% - 40px, 1120px);
  min-height: 68px;
  margin-inline: auto;
  align-items: center;
  gap: 36px;
}

.site-bar__brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.site-bar__logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.site-bar__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 3vw, 42px);
}

.site-bar__nav > a:not(.site-bar__action) {
  color: #425456;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 150ms ease;
}

.site-bar__nav > a:not(.site-bar__action):hover {
  color: var(--foreground);
}

.site-bar__action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid #101718;
  border-radius: 7px;
  background: #182527;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 2px 5px rgb(26 46 48 / 16%);
  transition: background-color 150ms ease, transform 150ms ease;
}

.site-bar__action:hover {
  background: var(--ring);
  transform: translateY(-1px);
}

.site-bar__toggle {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.circle-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f7faf8;
}

.circle-hero__fallback,
.circle-hero__shader {
  position: absolute;
  inset: 0;
}

.circle-hero__fallback {
  z-index: -3;
  background:
    radial-gradient(circle at 8% 28%, #72b9bb 0, transparent 48%),
    radial-gradient(circle at 82% 16%, #ffd1bd 0, transparent 48%),
    radial-gradient(circle at 72% 82%, #dbf4a4 0, transparent 50%),
    radial-gradient(circle at 28% 76%, #b5d9d9 0, transparent 48%),
    #ffebe0;
}

.circle-hero__shader {
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.circle-hero__shader canvas {
  position: absolute !important;
  z-index: 0 !important;
  inset: 0 !important;
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.circle-hero__content {
  position: relative;
  z-index: 10;
  width: min(100% - 48px, 1152px);
  padding-block: 150px 72px;
  text-align: center;
}

.circle-hero h1 {
  max-width: 980px;
  margin: 0 auto 24px;
  color: var(--foreground);
  font-size: clamp(2.5rem, 5.6vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.1;
  text-wrap: balance;
}

.circle-hero h1 span {
  color: var(--ring);
}

.circle-hero__content > p {
  max-width: 672px;
  margin: 0 auto 40px;
  color: #4c5e60;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.circle-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border: 4px solid rgb(255 255 255 / 88%);
  border-radius: 999px;
  background: rgb(63 63 63);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: background-color 150ms ease, transform 150ms ease;
}

.circle-button:hover {
  background: var(--foreground);
  transform: translateY(-1px);
}

/* Supabase/Tinte reference: compact header, workbench grid and UI primitives. */
.ui-workbench {
  background: var(--background);
  border-top: 1px solid var(--border);
}

.ui-workbench__header,
.subpage-header__inner {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.ui-brand-lockup {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.ui-brand-lockup > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.ui-brand-lockup strong {
  font-size: 0.94rem;
  line-height: 1.2;
}

.ui-brand-lockup small {
  overflow: hidden;
  color: var(--muted-foreground);
  font-size: 0.74rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ui-status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border: 2px solid var(--card);
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 1px var(--border);
}

.ui-button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: var(--shadow-xs);
  transition: background-color 120ms ease, border-color 120ms ease;
}

.ui-button:hover {
  background: #6eb4b8;
}

.ui-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.ui-button--outline {
  border-color: var(--border);
  background: var(--background);
  color: var(--foreground);
}

.ui-button--outline:hover {
  background: var(--accent);
}

.ui-workbench__body {
  max-width: 1360px;
  margin-inline: auto;
  padding: 16px;
}

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

.ui-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  color: var(--card-foreground);
  box-shadow: var(--shadow-sm);
}

.ui-card--services { grid-column: span 7; }
.ui-card--scope { grid-column: span 5; }
.ui-card--process { grid-column: span 8; }
.ui-card--principles { grid-column: span 4; }
.ui-card--faq { grid-column: span 7; }
.ui-card--empty { grid-column: span 5; }

.ui-field-separator {
  position: relative;
  display: flex;
  height: 20px;
  align-items: center;
  justify-content: center;
  margin-block: -8px;
  color: var(--muted-foreground);
  font-size: 0.76rem;
}

.ui-field-separator::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--border);
}

.ui-field-separator span {
  position: relative;
  padding-inline: 8px;
  background: var(--card);
}

.ui-card__heading h2,
.ui-empty h2 {
  margin-bottom: 6px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.ui-card__heading p,
.ui-empty p,
.ui-field-description {
  margin-bottom: 0;
  color: var(--muted-foreground);
  font-size: 0.86rem;
  line-height: 1.55;
}

.ui-item-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ui-item {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  font-size: 0.875rem;
  transition: background-color 100ms ease;
}

.ui-item--outline {
  border-color: var(--border);
}

.ui-item:hover {
  background: rgb(232 242 242 / 48%);
}

.ui-item__media {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--muted);
}

.ui-item__media svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.ui-item__content {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 4px;
}

.ui-item__content strong,
.ui-choice strong,
.ui-setting strong,
.ui-process-list strong,
.ui-field > strong {
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

.ui-item__content p,
.ui-process-list p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.82rem;
  line-height: 1.5;
}

.ui-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 22px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.ui-badge--outline {
  border-color: var(--border);
  background: transparent;
}

.ui-badge--muted {
  background: var(--muted);
  color: var(--foreground);
}

.ui-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.ui-fieldset legend {
  margin-bottom: 4px;
  padding: 0;
  font-size: 0.98rem;
  font-weight: 600;
}

.ui-choice-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.ui-choice {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgb(95 168 173 / 60%);
  border-radius: var(--radius);
  background: rgb(95 168 173 / 6%);
}

.ui-choice__check {
  display: grid;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 2px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--foreground);
  font-size: 0.65rem;
  font-weight: 700;
}

.ui-choice div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ui-choice small,
.ui-setting small {
  color: var(--muted-foreground);
  font-size: 0.77rem;
  line-height: 1.45;
}

.ui-separator {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.ui-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ui-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ui-process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.ui-process-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 18px 16px 18px 0;
  border-bottom: 1px solid var(--border);
}

.ui-process-list li:nth-child(odd) {
  padding-right: 20px;
  border-right: 1px solid var(--border);
}

.ui-process-list li:nth-child(even) {
  padding-left: 20px;
}

.ui-process-list > li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--muted);
  color: var(--ring);
  font-size: 0.68rem;
  font-weight: 600;
}

.ui-process-list div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ui-setting-list {
  display: flex;
  flex-direction: column;
}

.ui-setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
  border-bottom: 1px solid var(--border);
}

.ui-setting:last-child {
  border-bottom: 0;
}

.ui-setting > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.ui-switch {
  position: relative;
  width: 32px;
  height: 18px;
  flex: 0 0 32px;
  border-radius: 999px;
  background: var(--primary);
}

.ui-switch i {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--card);
  box-shadow: 0 1px 2px rgb(26 46 48 / 18%);
}

.ui-accordion {
  border-top: 1px solid var(--border);
}

.ui-accordion details {
  border-bottom: 1px solid var(--border);
}

.ui-accordion summary {
  display: flex;
  min-height: 52px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-block: 16px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
  list-style: none;
}

.ui-accordion summary::-webkit-details-marker {
  display: none;
}

.ui-accordion summary:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ui-accordion summary svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 2px;
  fill: none;
  stroke: var(--muted-foreground);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 150ms ease;
}

.ui-accordion details[open] summary svg {
  transform: rotate(180deg);
}

.ui-accordion details > p {
  max-width: 650px;
  margin: -4px 32px 16px 0;
  color: var(--muted-foreground);
  font-size: 0.84rem;
  line-height: 1.55;
}

.ui-card--empty {
  justify-content: center;
}

.ui-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
  text-align: center;
}

.ui-empty__media {
  display: flex;
  margin-bottom: 22px;
  justify-content: center;
}

.ui-empty__media span {
  width: 44px;
  height: 44px;
  margin-left: -8px;
  border: 2px solid var(--card);
  border-radius: 50%;
  background: var(--muted);
  box-shadow: 0 0 0 1px var(--border);
}

.ui-empty__media span:first-child {
  margin-left: 0;
  background: var(--primary);
}

.ui-empty__media span:last-child {
  background: #f5f1e8;
}

.ui-empty p {
  max-width: 360px;
  margin-bottom: 18px;
}

.commercial-page {
  background: #fff;
}

.commercial-shell {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.commercial-intro {
  padding-top: clamp(84px, 9vw, 124px);
  background: #fff;
}

.commercial-intro > .commercial-shell:first-child {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(48px, 8vw, 110px);
}

.section-label {
  margin-bottom: 14px;
  color: var(--ring);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.commercial-intro h2,
.commercial-heading h2,
.principles-copy h2,
.faq-heading h2,
.commercial-cta h2 {
  margin-bottom: 0;
  color: var(--foreground);
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.12;
  text-wrap: balance;
}

.commercial-intro__lead {
  margin-bottom: 4px;
  color: var(--muted-foreground);
  font-size: 1.04rem;
  line-height: 1.7;
}

.assurance-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 72px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.assurance-list > div {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 14px;
  padding: 20px 26px;
  border-right: 1px solid var(--border);
}

.assurance-list > div:first-child {
  padding-left: 0;
}

.assurance-list > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.assurance-list span,
.service-row__number {
  color: var(--ring);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
}

.assurance-list strong {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}

.client-proof {
  padding-top: clamp(72px, 8vw, 108px);
  background: #fff;
}

.client-proof__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.client-proof__heading .section-label {
  margin-bottom: 0;
}

.client-proof__heading h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.2;
  text-align: right;
  text-wrap: balance;
}

.client-proof__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.client-proof__item {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 170px;
  align-items: center;
  justify-content: center;
  padding: 36px clamp(28px, 5vw, 64px);
  overflow: hidden;
}

.client-proof__item + .client-proof__item {
  border-left: 1px solid var(--border);
}

.client-proof__item img {
  width: auto;
  max-width: min(100%, 270px);
  max-height: 76px;
  object-fit: contain;
  filter: grayscale(1) contrast(0.78);
  opacity: 0.5;
  transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.client-proof__item > span {
  position: absolute;
  top: 14px;
  right: 16px;
  color: var(--muted-foreground);
  font-size: 0.78rem;
  opacity: 0;
  transform: translate(-3px, 3px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.client-proof__item:hover img,
.client-proof__item:focus-visible img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  transform: scale(1.025);
}

.client-proof__item:hover > span,
.client-proof__item:focus-visible > span {
  opacity: 1;
  transform: translate(0, 0);
}

.commercial-section {
  padding-block: clamp(92px, 10vw, 138px);
}

.commercial-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(48px, 8vw, 100px);
  margin-bottom: 62px;
}

.commercial-heading > p {
  margin-bottom: 5px;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.65;
}

.commercial-heading--narrow {
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.45fr);
}

.services-section {
  background: #fff;
}

.service-rows {
  border-top: 1px solid var(--border);
}

.service-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) minmax(240px, 0.48fr);
  align-items: start;
  gap: 24px;
  padding-block: 34px;
  border-bottom: 1px solid var(--border);
}

.service-row__number {
  padding-top: 9px;
}

.service-row__number-inline {
  display: none;
}

.service-row__main {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 16px;
}

.service-row__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--muted);
}

.service-row__icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-row__eyebrow {
  margin-bottom: 7px;
  color: var(--ring);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-row__meta {
  display: block;
}

.service-row h3 {
  margin-bottom: 8px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.service-row__main p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted-foreground);
  font-size: 0.88rem;
  line-height: 1.55;
}

.service-scope {
  margin-top: 5px;
  padding-left: 26px;
  border-left: 1px solid var(--border);
}

.service-scope p {
  margin: 0 0 9px;
  font-size: 0.73rem;
}

.service-scope ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: var(--muted-foreground);
  font-size: 0.76rem;
  line-height: 1.4;
  list-style: none;
}

.service-scope li::before {
  margin-right: 8px;
  color: var(--ring);
  content: "—";
}

.service-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  color: var(--foreground);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

.service-action span {
  color: var(--ring);
  transition: transform 160ms ease;
}

.service-action:hover span {
  transform: translateX(3px);
}

.service-footnote {
  max-width: 760px;
  margin: 22px 0 0 70px;
  color: var(--muted-foreground);
  font-size: 0.76rem;
  line-height: 1.55;
}

.process-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--background);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  list-style: none;
}

.process-track--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-track li {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--border);
}

.process-track li:last-child {
  border-right: 0;
}

.process-track > li > span {
  display: grid;
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--muted);
  color: var(--ring);
  font-size: 0.66rem;
  font-weight: 600;
}

.process-track strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.86rem;
  font-weight: 600;
}

.process-track p {
  margin-bottom: 0;
  color: var(--muted-foreground);
  font-size: 0.8rem;
  line-height: 1.5;
}

.principles-section {
  background: #fff;
}

.team-section {
  border-bottom: 1px solid var(--border);
  background: var(--accent);
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}

.team-layout h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.12;
  text-wrap: balance;
}

.team-copy {
  max-width: 620px;
  padding-top: 24px;
}

.team-copy p {
  color: var(--muted-foreground);
  font-size: 0.96rem;
  line-height: 1.7;
}

.team-copy p:last-child {
  margin-bottom: 0;
}

.ai-tool-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px 18px;
  max-width: 650px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgb(44 100 105 / 14%);
}

.ai-tool-strip p {
  margin: 0;
  color: #465b5d;
  font-size: 0.84rem;
  line-height: 1.55;
}

.ai-tool-strip small {
  grid-column: 1 / -1;
  color: var(--muted-foreground);
  font-size: 0.68rem;
  line-height: 1.45;
}

.ai-tool-list {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.ai-tool {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 58%);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgb(26 46 48 / 10%);
}

.ai-tool img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.ai-tool--openai {
  background: linear-gradient(135deg, #3f9f8f, #78b8aa);
}

.ai-tool--openai img {
  filter: brightness(0) invert(1);
}

.ai-tool--gemini {
  background: linear-gradient(135deg, #f9fbff, #eef4ff);
}

.ai-tool--gemini img {
  width: 25px;
  height: 25px;
}

.ai-tool--claude {
  background: #d97757;
}

.ai-tool--claude img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.ai-tool--grok {
  background: #050707;
}

.ai-tool--grok img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.team-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 690px);
  margin: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.team-visual::before {
  position: absolute;
  z-index: 0;
  inset: 16% 4% 0 18%;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(95 168 173 / 22%) 0, rgb(95 168 173 / 10%) 34%, transparent 68%);
  content: "";
  pointer-events: none;
}

.team-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 690 / 548;
  border: 1px solid rgb(216 226 226 / 78%);
  box-shadow: 0 24px 58px rgb(26 46 48 / 8%);
  filter: saturate(0.82) contrast(0.96) brightness(1.03);
  object-fit: contain;
}

.linkedin-section {
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.linkedin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.linkedin-person {
  display: flex;
  min-width: 0;
  min-height: 282px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 34px 24px;
  text-align: center;
}

.linkedin-person + .linkedin-person {
  border-left: 1px solid var(--border);
}

.linkedin-person__photo {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(95 168 173 / 34%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgb(255 255 255 / 92%) 0, transparent 34%),
    linear-gradient(135deg, var(--accent), #f7fbfb 54%, var(--color-sand, #f5f1e8));
  color: var(--ring);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 14px 34px rgb(26 46 48 / 8%);
}

.linkedin-person__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.linkedin-person__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
}

.linkedin-person__body strong {
  color: var(--foreground);
  font-size: clamp(1.03rem, 1.7vw, 1.22rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.linkedin-person__body small {
  color: var(--muted-foreground);
  font-size: 0.8rem;
  line-height: 1.4;
}

.linkedin-person__action {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
  color: var(--foreground);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 150ms ease;
  white-space: nowrap;
}

.linkedin-person__icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  background: #0a66c2;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.linkedin-person__action > span:last-child {
  color: var(--ring);
  transition: transform 160ms ease;
}

.linkedin-person:hover .linkedin-person__photo,
.linkedin-person:focus-visible .linkedin-person__photo {
  border-color: rgb(95 168 173 / 62%);
}

.linkedin-person:hover .linkedin-person__action,
.linkedin-person:focus-visible .linkedin-person__action {
  color: var(--ring);
}

.linkedin-person:hover .linkedin-person__action > span:last-child,
.linkedin-person:focus-visible .linkedin-person__action > span:last-child {
  transform: translate(2px, -2px);
}

.principles-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.75fr);
  align-items: center;
  gap: clamp(60px, 10vw, 130px);
}

.principles-copy > p:not(.section-label) {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted-foreground);
  font-size: 0.96rem;
  line-height: 1.7;
}

.inline-notice {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  margin-top: 30px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
}

.inline-notice > span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--ring);
  font-size: 0.72rem;
  font-weight: 600;
}

.inline-notice p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.78rem;
  line-height: 1.5;
}

.ui-panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.ui-panel__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--background);
}

.ui-panel__header strong,
.ui-panel__header small {
  font-size: 0.74rem;
}

.ui-panel__header small {
  color: var(--muted-foreground);
}

.ui-panel .ui-setting-list {
  padding-inline: 18px;
}

.faq-section {
  border-top: 1px solid var(--border);
  background: var(--background);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(60px, 10vw, 130px);
}

.faq-heading {
  position: sticky;
  top: 30px;
}

.faq-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.faq-section .ui-accordion {
  border-top-color: var(--border);
}

.commercial-cta {
  padding-block: clamp(90px, 11vw, 138px);
  border-top: 1px solid var(--border);
  background: var(--accent);
}

.commercial-cta__inner {
  display: flex;
  max-width: 780px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.commercial-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.commercial-cta__inner > p:not(.section-label) {
  margin: 18px 0 26px;
  color: var(--muted-foreground);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 0;
  color: var(--muted-foreground);
  font-size: 0.78rem;
}

.contact-direct a:hover {
  color: var(--foreground);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-pending {
  max-width: 480px;
  margin-top: 16px;
  color: var(--muted-foreground);
  font-size: 0.69rem;
  line-height: 1.5;
}

.ui-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.site-footer {
  --footer-muted: #a7b3b4;
  border-top: 1px solid #263b3e;
  background: var(--foreground);
  color: #fff;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(230px, 1.35fr) repeat(3, minmax(140px, 0.65fr));
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
  gap: clamp(38px, 6vw, 82px);
  padding-block: clamp(64px, 8vw, 92px) 58px;
}

.site-footer__brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
}

.site-footer__brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-footer__brand strong,
.site-footer__column > strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-footer__brand strong {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.site-footer__identity > p {
  max-width: 290px;
  margin: 20px 0 0;
  color: var(--footer-muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.site-footer__column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.site-footer__column > strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 0.76rem;
}

.site-footer__column a {
  color: var(--footer-muted);
  font-size: 0.78rem;
  line-height: 1.4;
  transition: color 150ms ease;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__commitments {
  display: flex;
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
  flex-wrap: wrap;
  gap: 0;
  padding-block: 18px;
  border-top: 1px solid #33484a;
  border-bottom: 1px solid #33484a;
}

.site-footer__commitments span {
  display: inline-flex;
  align-items: center;
  color: var(--footer-muted);
  font-size: 0.68rem;
}

.site-footer__commitments span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  margin-inline: 13px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

.site-footer__bottom {
  display: flex;
  width: min(100% - 48px, 1180px);
  min-height: 70px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__bottom small {
  color: #839496;
  font-size: 0.68rem;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.site-footer__legal a,
.site-footer__legal button {
  color: #a9b7b8;
  font-size: 0.68rem;
  text-decoration: none;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible,
.site-footer__legal button:hover,
.site-footer__legal button:focus-visible {
  color: #fff;
}

.site-footer__legal button {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.cookie-consent[hidden],
.cookie-consent__settings[hidden],
.cookie-consent__button[hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent__card {
  display: grid;
  width: min(100%, 980px);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 24px;
  padding: 18px;
  border: 1px solid rgb(216 226 226 / 92%);
  border-radius: 16px;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 24px 70px rgb(26 46 48 / 18%);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.cookie-consent__content {
  min-width: 0;
}

.cookie-consent__eyebrow {
  margin: 0 0 6px;
  color: var(--primary-strong);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cookie-consent h2 {
  margin: 0 0 8px;
  color: var(--foreground);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.cookie-consent p {
  max-width: 680px;
  margin: 0;
  color: #52686a;
  font-size: 0.86rem;
  line-height: 1.55;
}

.cookie-consent a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
}

.cookie-consent a:hover,
.cookie-consent a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent__settings {
  display: grid;
  grid-column: 1 / -1;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.cookie-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgb(216 226 226 / 78%);
  border-radius: 10px;
  background: #fff;
}

.cookie-choice strong {
  display: block;
  margin-bottom: 3px;
  color: var(--foreground);
  font-size: 0.86rem;
}

.cookie-choice small {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.74rem;
  line-height: 1.45;
}

.cookie-choice input {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
}

.cookie-choice--locked {
  background: var(--accent);
}

.cookie-consent__actions {
  display: flex;
  min-width: 310px;
  align-items: end;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-consent__button {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-consent__button--ghost {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--foreground);
}

.cookie-consent__button--primary {
  border: 1px solid #182527;
  background: #182527;
  color: #fff;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
  transform: translateY(-1px);
}

.cookie-consent__button:focus-visible {
  outline: 3px solid rgb(64 139 144 / 24%);
  outline-offset: 2px;
}

.subpage-header__inner {
  padding-inline: max(16px, calc((100% - 1120px) / 2));
}

.ui-brand {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.content-shell {
  width: min(100% - 32px, 920px);
  min-height: 70svh;
  margin-inline: auto;
  padding-block: 80px;
}

.entry h1,
.empty-state h1 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
}

.entry__content {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.75;
}

.entry__content a {
  color: var(--ring);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry__content h2 {
  margin: 38px 0 12px;
  color: var(--foreground);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.entry__content p,
.entry__content ul,
.entry__content ol {
  margin: 0 0 18px;
}

.entry__content ul,
.entry__content ol {
  padding-left: 1.25rem;
}

.entry__content li + li {
  margin-top: 8px;
}

.legal-page__notice {
  padding: 18px 20px;
  border: 1px solid rgb(44 100 105 / 18%);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--foreground);
}

.legal-page__notice strong {
  color: var(--primary-strong);
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 80px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-bar__inner {
    grid-template-columns: auto auto;
    width: min(100% - 32px, 1120px);
    min-height: 64px;
    justify-content: space-between;
  }

  .site-bar__toggle {
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    border: 1px solid rgb(26 46 48 / 16%);
    border-radius: 999px;
    background: rgb(255 255 255 / 28%);
    box-shadow: 0 8px 24px rgb(26 46 48 / 8%);
    backdrop-filter: blur(12px);
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  }

  .site-bar__toggle:hover {
    transform: translateY(-1px);
  }

  .site-bar--detached .site-bar__toggle,
  .site-bar.is-open .site-bar__toggle {
    border-color: var(--border);
    background: rgb(255 255 255 / 94%);
    box-shadow: 0 2px 8px rgb(26 46 48 / 10%);
  }

  .site-bar__toggle > span[aria-hidden="true"] {
    grid-area: 1 / 1;
    width: 17px;
    height: 1.5px;
    border-radius: 2px;
    background: var(--foreground);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-bar__toggle > span[aria-hidden="true"]:nth-of-type(2) {
    transform: translateY(-4px);
  }

  .site-bar__toggle > span[aria-hidden="true"]:nth-of-type(3) {
    transform: translateY(4px);
  }

  .site-bar__toggle[aria-expanded="true"] > span[aria-hidden="true"]:nth-of-type(2) {
    transform: translateY(0) rotate(45deg);
  }

  .site-bar__toggle[aria-expanded="true"] > span[aria-hidden="true"]:nth-of-type(3) {
    transform: translateY(0) rotate(-45deg);
  }

  .site-bar__nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: flex;
    max-height: calc(100svh - 64px);
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    padding: 8px;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgb(255 255 255 / 94%);
    box-shadow: 0 14px 34px rgb(26 46 48 / 12%);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px) scale(0.985);
    transform-origin: top right;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
    visibility: hidden;
  }

  .site-bar__nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .site-bar__nav > a:not(.site-bar__action) {
    padding: 11px 12px;
    border-radius: 8px;
    color: var(--foreground);
    font-size: 0.92rem;
    font-weight: 600;
  }

  .site-bar__nav > a:not(.site-bar__action):hover {
    background: var(--accent);
    text-decoration: none;
  }

  .site-bar__action {
    width: 100%;
    min-height: 42px;
    margin-top: 5px;
    border-radius: 9px;
    box-shadow: 0 2px 8px rgb(26 46 48 / 10%);
  }
}

@media (max-width: 980px) {
  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 40px, 1180px);
    gap: 42px 28px;
    padding-block: 62px 42px;
  }

  .site-footer__identity {
    grid-column: 1 / -1;
  }

  .site-footer__commitments,
  .site-footer__bottom {
    width: min(100% - 40px, 1180px);
  }

  .site-footer__commitments {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .site-footer__commitments span:not(:last-child)::after {
    display: none;
  }

  .commercial-intro > .commercial-shell:first-child,
  .commercial-heading,
  .commercial-heading--narrow,
  .principles-layout,
  .team-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .commercial-heading {
    margin-bottom: 48px;
  }

  .commercial-heading > p {
    max-width: 620px;
    margin: 0;
  }

  .service-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .service-scope {
    grid-column: 2;
    margin-top: 0;
    padding: 18px 0 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

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

  .process-track--three {
    grid-template-columns: 1fr;
  }

  .process-track--three li,
  .process-track--three li:nth-child(2),
  .process-track--three li:nth-child(-n + 2) {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .process-track--three li:last-child {
    border-bottom: 0;
  }

  .process-track--three > li > span {
    margin-bottom: 0;
  }

  .process-track li:nth-child(2) {
    border-right: 0;
  }

  .process-track li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

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

  .linkedin-person {
    min-height: 252px;
    padding-inline: 18px;
  }

  .linkedin-person__photo {
    width: 98px;
    height: 98px;
  }

  .faq-heading {
    position: static;
  }

  .ui-card--services,
  .ui-card--scope,
  .ui-card--process,
  .ui-card--principles,
  .ui-card--faq,
  .ui-card--empty {
    grid-column: span 6;
  }

  .ui-process-list {
    grid-template-columns: 1fr;
  }

  .ui-process-list li,
  .ui-process-list li:nth-child(odd),
  .ui-process-list li:nth-child(even) {
    padding: 16px 0;
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .circle-hero__content {
    width: min(100% - 40px, 560px);
    padding-block: 112px 52px;
  }

  .circle-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.35rem, 11vw, 3.5rem);
    letter-spacing: -0.045em;
  }

  .circle-hero__content > p {
    margin-bottom: 30px;
    font-size: 1rem;
  }

  .circle-button {
    min-height: 52px;
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .commercial-shell {
    width: min(100% - 40px, 1180px);
  }

  .commercial-intro {
    padding-top: 74px;
  }

  .commercial-intro > .commercial-shell:first-child {
    gap: 24px;
  }

  .commercial-intro__lead {
    font-size: 0.96rem;
  }

  .client-proof {
    padding-top: 64px;
  }

  .client-proof__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .client-proof__heading h2 {
    max-width: 330px;
    font-size: 1.65rem;
    text-align: left;
  }

  .client-proof__grid {
    grid-template-columns: 1fr;
  }

  .client-proof__item {
    min-height: 132px;
    padding: 28px 34px;
  }

  .client-proof__item + .client-proof__item {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .client-proof__item img {
    max-width: min(100%, 230px);
    max-height: 64px;
  }

  .assurance-list {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .assurance-list > div,
  .assurance-list > div:first-child,
  .assurance-list > div:last-child {
    min-height: 64px;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .assurance-list > div:last-child {
    border-bottom: 0;
  }

  .commercial-section {
    padding-block: 78px;
  }

  .commercial-heading {
    gap: 24px;
    margin-bottom: 38px;
  }

  .commercial-intro h2,
  .commercial-heading h2,
  .principles-copy h2,
  .faq-heading h2,
  .commercial-cta h2 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 34px;
  }

  .service-scope {
    grid-column: 1;
  }

  .service-row__number {
    display: none;
  }

  .service-row__main {
    position: relative;
    display: block;
    padding-right: 0;
  }

  .service-row__icon {
    display: none;
  }

  .service-row__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
  }

  .service-row__number-inline {
    display: inline-flex;
    color: var(--ring);
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1;
  }

  .service-row__eyebrow {
    margin-bottom: 0;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .service-row h3 {
    max-width: 28rem;
    margin-bottom: 10px;
    font-size: clamp(1.08rem, 5vw, 1.36rem);
    line-height: 1.24;
  }

  .service-row__main p:last-child {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .process-track--three {
    grid-template-columns: 1fr;
  }

  .process-track--three li:nth-child(2),
  .process-track--three li:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .process-track li,
  .process-track li:nth-child(2),
  .process-track li:nth-child(-n + 2) {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 14px;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .process-track li:last-child {
    border-bottom: 0;
  }

  .process-track > li > span {
    margin-bottom: 0;
  }

  .principles-layout {
    gap: 42px;
  }

  .team-layout {
    gap: 22px;
  }

  .team-layout h2 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .team-copy {
    padding-top: 0;
  }

  .ai-tool-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
  }

  .ai-tool-list {
    flex-wrap: wrap;
  }

  .ai-tool {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .linkedin-grid {
    grid-template-columns: 1fr;
  }

  .linkedin-person {
    min-height: 228px;
    padding: 30px 18px;
  }

  .linkedin-person + .linkedin-person {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .linkedin-person__photo {
    width: 98px;
    height: 98px;
  }

  .service-footnote {
    margin-left: 0;
  }

  .ui-panel .ui-setting-list {
    padding-inline: 15px;
  }

  .faq-layout {
    gap: 38px;
  }

  .commercial-cta {
    padding-block: 82px;
  }

  .ui-workbench__header {
    min-height: 56px;
  }

  .ui-workbench__body {
    padding: 12px;
  }

  .ui-grid {
    gap: 12px;
  }

  .ui-card--services,
  .ui-card--scope,
  .ui-card--process,
  .ui-card--principles,
  .ui-card--faq,
  .ui-card--empty {
    grid-column: 1 / -1;
  }

  .ui-card {
    gap: 22px;
    padding: 20px;
    border-radius: 10px;
  }

  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 40px, 1180px);
    gap: 42px 28px;
    padding-block: 62px 42px;
  }

  .site-footer__identity {
    grid-column: 1 / -1;
  }

  .site-footer__commitments,
  .site-footer__bottom {
    width: min(100% - 40px, 1180px);
  }

  .site-footer__commitments {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .site-footer__commitments span:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 420px) {
  .commercial-shell {
    width: min(100% - 32px, 1180px);
  }

  .inline-notice {
    grid-template-columns: 1fr;
  }

  .ui-panel__header {
    grid-template-columns: auto 1fr;
  }

  .ui-panel__header small {
    display: none;
  }

  .ui-workbench__header .ui-button {
    width: 36px;
    padding-inline: 9px;
    font-size: 0;
  }

  .ui-workbench__header .ui-button svg {
    width: 16px;
    height: 16px;
  }

  .ui-item {
    gap: 12px;
    padding: 14px;
  }

  .ui-item .ui-badge {
    margin-left: 44px;
  }

  .ui-empty {
    padding-inline: 0;
  }

  .contact-actions {
    width: 100%;
    flex-direction: column;
  }

  .contact-actions .ui-button {
    width: 100%;
  }

  .contact-direct {
    align-items: center;
    flex-direction: column;
  }

  .contact-direct > span {
    display: none;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 1180px);
  }

  .site-footer__identity {
    grid-column: 1;
  }

  .site-footer__commitments,
  .site-footer__bottom {
    width: min(100% - 32px, 1180px);
  }
}

@media (max-width: 720px) {
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }

  .site-footer__legal {
    justify-content: flex-start;
  }

  .cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .cookie-consent__card {
    max-height: calc(100svh - 24px);
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    overflow: auto;
    border-radius: 14px;
  }

  .cookie-consent__actions {
    min-width: 0;
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .cookie-consent__button {
    width: 100%;
  }

  .cookie-choice {
    grid-template-columns: minmax(0, 1fr) 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}

@media (forced-colors: active) {
  .circle-hero__shader,
  .circle-hero__fallback {
    display: none;
  }

  .circle-button,
  .ui-button,
  .ui-card,
  .ui-item,
  .ui-choice {
    border: 1px solid ButtonText;
  }
}
