:root {
  --bg: #f7f5ef;
  --paper: #ffffff;
  --paper-warm: #fbfaf6;
  --ink: #101218;
  --charcoal: #1d222b;
  --muted: #5f6673;
  --muted-strong: #39414c;
  --line: rgba(16, 18, 24, 0.11);
  --line-strong: rgba(16, 18, 24, 0.18);
  --red: #e0001b;
  --red-dark: #b90016;
  --cream: #eee8dc;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 18px 54px rgba(16, 18, 24, 0.075);
  --shadow-lift: 0 24px 68px rgba(16, 18, 24, 0.11);
  --shadow-strong: 0 34px 90px rgba(16, 18, 24, 0.15);
  --hairline: linear-gradient(90deg, transparent, rgba(16, 18, 24, 0.14), transparent);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-cta: cubic-bezier(0.25, 0.9, 0.35, 1);
  --ease-soft: cubic-bezier(0.23, 0.82, 0.42, 1);
  --duration-ui: 300ms;
  --duration-ui-fast: 180ms;
  --duration-press: 120ms;
  --lift-subtle: -1px;
  --anchor-scroll-offset: 92px;
}

@keyframes hero-fade-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

#problems,
#services,
#why,
#process,
#contact {
  scroll-margin-top: var(--anchor-scroll-offset);
}

@media (min-width: 721px) and (max-width: 1040px) {
  :root {
    --anchor-scroll-offset: 88px;
  }
}

@media (min-width: 721px) {
  #services,
  #process {
    scroll-margin-top: 94px;
  }

  #why,
  #contact {
    scroll-margin-top: 90px;
  }
}

@media (max-width: 720px) {
  #services,
  #process {
    scroll-margin-top: 74px;
  }

  #why {
    scroll-margin-top: 70px;
  }

  #contact {
    scroll-margin-top: 68px;
  }
}

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

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(224, 0, 27, 0.08), transparent 24rem),
    linear-gradient(90deg, rgba(16, 18, 24, 0.034) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 18, 24, 0.034) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 72px 72px, 72px 72px, auto;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16, 18, 24, 0.075);
  background:
    linear-gradient(180deg, rgba(247, 245, 239, 0.88), rgba(247, 245, 239, 0.74)),
    rgba(247, 245, 239, 0.8);
  box-shadow: 0 10px 34px rgba(16, 18, 24, 0.032);
  backdrop-filter: blur(26px) saturate(138%);
  transition:
    background 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    border-color 220ms var(--ease-premium);
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.site-header.is-scrolled {
  border-color: rgba(16, 18, 24, 0.105);
  background:
    linear-gradient(180deg, rgba(247, 245, 239, 0.94), rgba(247, 245, 239, 0.86)),
    rgba(247, 245, 239, 0.9);
  box-shadow: 0 16px 38px rgba(16, 18, 24, 0.072);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 12px 0;
}

.brand,
.nav-links,
.brand-copy {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  min-width: 214px;
  overflow: visible;
}

@media (hover: hover) {
  .brand:hover .brand-mark {
    box-shadow: 0 14px 28px rgba(16, 18, 24, 0.16);
  }
}

.brand-mark {
  display: block;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 13px;
  box-shadow: 0 10px 22px rgba(16, 18, 24, 0.14);
  transition:
    box-shadow var(--duration-ui) var(--ease-soft),
    transform var(--duration-ui) var(--ease-soft);
}

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

.brand-copy {
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  overflow: visible;
  line-height: 1.16;
}

.brand-copy strong {
  white-space: nowrap;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.brand-copy small {
  display: block;
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  justify-self: center;
  justify-content: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(16, 18, 24, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.62) inset;
}

.nav-links a,
.nav-cta,
.language-switcher a,
.menu-toggle,
.mobile-menu a,
.button,
.brand {
  position: relative;
  transition:
    color var(--duration-ui-fast) var(--ease-soft),
    border-color var(--duration-ui) var(--ease-soft),
    transform var(--duration-ui-fast) var(--ease-cta),
    background var(--duration-ui) var(--ease-soft),
    box-shadow var(--duration-ui) var(--ease-soft),
    opacity var(--duration-ui-fast) var(--ease-soft),
    filter var(--duration-ui) var(--ease-soft);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.nav-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(16, 18, 24, 0.68);
}

@media (hover: hover) {
  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.82) inset,
      0 10px 22px rgba(16, 18, 24, 0.042);
    transform: translateY(var(--lift-subtle));
  }
}

.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78) inset,
    0 8px 18px rgba(16, 18, 24, 0.045);
}

.nav-links a:active {
  transform: translateY(0) scale(0.992);
  transition-duration: var(--duration-press);
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--red);
  opacity: 0;
  transform: translateY(2px) scaleX(0.55);
  transition:
    opacity var(--duration-ui-fast) var(--ease-soft),
    transform var(--duration-ui-fast) var(--ease-soft);
}

@media (hover: hover) {
  .nav-links a:hover::after {
    opacity: 1;
    transform: translateY(0) scaleX(1);
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(224, 0, 27, 0.45);
  outline-offset: 4px;
}

.nav-cta {
  align-self: center;
  padding: 11px 18px;
  border: 1px solid rgba(16, 18, 24, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 250, 246, 0.92)),
    var(--paper);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.86) inset,
    0 10px 26px rgba(16, 18, 24, 0.065),
    0 1px 2px rgba(16, 18, 24, 0.06);
  transition:
    transform var(--duration-ui-fast) var(--ease-cta),
    box-shadow var(--duration-ui) var(--ease-soft),
    border-color var(--duration-ui) var(--ease-soft),
    background var(--duration-ui) var(--ease-soft),
    filter var(--duration-ui) var(--ease-soft);
}

@media (hover: hover) {
  .nav-cta:hover {
    border-color: rgba(224, 0, 27, 0.28);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(252, 250, 246, 0.97)),
      var(--paper);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.94) inset,
      0 0 0 1px rgba(224, 0, 27, 0.035) inset,
      0 12px 28px rgba(16, 18, 24, 0.072),
      0 6px 18px rgba(224, 0, 27, 0.05);
    color: var(--ink);
    filter: brightness(1.015);
    transform: translateY(var(--lift-subtle));
  }
}

.nav-cta:active {
  transform: translateY(0) scale(0.988);
  transition-duration: var(--duration-press);
  filter: brightness(0.99);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(16, 18, 24, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 60;
  box-shadow: 0 10px 26px rgba(16, 18, 24, 0.045);
  transition:
    border-color var(--duration-ui) var(--ease-soft),
    background var(--duration-ui) var(--ease-soft),
    box-shadow var(--duration-ui) var(--ease-soft);
}

@media (hover: hover) {
  .language-switcher:hover {
    border-color: rgba(16, 18, 24, 0.16);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 28px rgba(16, 18, 24, 0.052);
  }
}

.language-switcher span {
  color: rgba(16, 18, 24, 0.32);
  line-height: 1;
}

.language-switcher a {
  display: inline-flex;
  min-width: 2.2em;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(16, 18, 24, 0.55);
  padding: 0 5px;
}

.language-switcher a.is-active {
  color: var(--ink);
}

@media (hover: hover) {
  .language-switcher a:not(.is-active):hover {
    background: rgba(255, 255, 255, 0.58);
    color: var(--ink);
    transform: translateY(var(--lift-subtle));
  }
}

.language-switcher a:active:not(.is-active) {
  transform: translateY(0) scale(0.98);
  transition-duration: var(--duration-press);
}

.language-switcher a.is-active {
  border: 1px solid rgba(16, 18, 24, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72) inset,
    0 6px 14px rgba(16, 18, 24, 0.055);
  cursor: default;
}

.mobile-menu {
  grid-column: 1 / -1;
}

.section {
  position: relative;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

.section:not(.hero)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--hairline);
  opacity: 0.48;
  pointer-events: none;
}

.hero {
  display: grid;
  min-height: calc(96vh - 108px);
  align-items: center;
  padding-top: 28px;
  padding-bottom: 52px;
  overflow: visible;
}

.hero::after {
  content: "";
  position: absolute;
  top: 11%;
  left: -6%;
  z-index: 0;
  width: min(48vw, 620px);
  height: min(48vw, 620px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(224, 0, 27, 0.055), transparent 68%);
  filter: blur(4px);
  pointer-events: none;
}

.hero-grid,
.split-section,
.why-section,
.swiss-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.76fr);
  gap: 64px;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.86fr);
  gap: 58px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: hero-fade-rise 880ms var(--ease-premium) 50ms backwards;
  }

  .hero-dashboard {
    animation: hero-fade-rise 920ms var(--ease-premium) 140ms backwards;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-dashboard {
    animation: none;
  }
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin: 0 0 14px;
}

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

h1,
h2 {
  letter-spacing: -0.075em;
  line-height: 0.98;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 7.2vw, 6.7rem);
}

.hero-title {
  max-width: 700px;
  margin-bottom: 22px;
  line-height: 0.965;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 5.2rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  letter-spacing: -0.045em;
  line-height: 1.16;
}

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

.hero-text {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

@media (min-width: 769px) {
  .hero-actions .button-primary {
    min-height: 58px;
    padding: 0 30px;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.14) inset,
      0 14px 32px rgba(16, 18, 24, 0.18),
      0 6px 16px rgba(224, 0, 27, 0.08);
  }

  .hero-actions .button-secondary {
    min-height: 52px;
    border-color: rgba(16, 18, 24, 0.14);
    background: rgba(255, 255, 255, 0.72);
    color: #3a424f;
    font-weight: 800;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform var(--duration-ui-fast) var(--ease-cta),
    box-shadow var(--duration-ui) var(--ease-soft),
    background var(--duration-ui) var(--ease-soft),
    border-color var(--duration-ui) var(--ease-soft),
    filter var(--duration-ui) var(--ease-soft);
}

@media (hover: hover) {
  .button:hover {
    transform: translateY(var(--lift-subtle));
  }
}

.button:active {
  transform: translateY(0) scale(0.988);
  transition-duration: var(--duration-press);
}

.button-primary {
  background: linear-gradient(180deg, #171a22 0%, #0a0c11 100%);
  color: #fafafa;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 12px 32px rgba(16, 18, 24, 0.2),
    0 6px 16px rgba(224, 0, 27, 0.07),
    0 1px 2px rgba(16, 18, 24, 0.12);
}

@media (hover: hover) {
  .button-primary:hover {
    background: linear-gradient(180deg, #1c202a 0%, #050609 100%);
    filter: brightness(1.04);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.16) inset,
      0 14px 36px rgba(16, 18, 24, 0.22),
      0 7px 18px rgba(224, 0, 27, 0.08),
      0 2px 4px rgba(16, 18, 24, 0.1);
    transform: translateY(var(--lift-subtle));
  }
}

.button-primary:active {
  filter: brightness(0.98);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 8px 22px rgba(16, 18, 24, 0.18),
    0 3px 10px rgba(224, 0, 27, 0.06);
  transform: translateY(0) scale(0.987);
  transition-duration: var(--duration-press);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 250, 246, 0.76)),
    rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.68) inset,
    0 10px 24px rgba(16, 18, 24, 0.045);
}

@media (hover: hover) {
  .button-secondary:hover {
    border-color: rgba(224, 0, 27, 0.3);
    background: white;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.8) inset,
      0 14px 36px rgba(16, 18, 24, 0.078);
    transform: translateY(var(--lift-subtle));
  }
}

.button-secondary:active {
  transform: translateY(0) scale(0.988);
  transition-duration: var(--duration-press);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-trust li,
.trust-items span,
.trust-grid span {
  border: 1px solid rgba(16, 18, 24, 0.11);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 250, 246, 0.82)),
    rgba(255, 255, 255, 0.78);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-trust li {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  line-height: 1.28;
  text-align: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72) inset,
    0 8px 18px rgba(16, 18, 24, 0.038);
}

@media (min-width: 920px) {
  .hero-trust {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.hero-dashboard {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 85% 12%, rgba(224, 0, 27, 0.42), transparent 24%),
    linear-gradient(145deg, #292f39, #101218 72%);
  color: white;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    var(--shadow-strong),
    0 24px 84px rgba(224, 0, 27, 0.085);
}

.hero-dashboard::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  pointer-events: none;
}

.dashboard-header,
.dashboard-metric,
.automation-flow,
.dashboard-note {
  position: relative;
  z-index: 1;
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 56px;
}

.dashboard-header p,
.dashboard-note {
  color: rgba(255, 255, 255, 0.72);
}

.dashboard-header p {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #56f38b;
  box-shadow: 0 0 0 8px rgba(86, 243, 139, 0.12);
}

.dashboard-metric {
  margin-bottom: 28px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-metric span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.dashboard-metric strong {
  font-size: clamp(4.4rem, 8vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.09em;
}

.automation-flow {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.automation-flow div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.automation-flow span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
}

.dashboard-note {
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(224, 0, 27, 0.15);
  font-size: 0.95rem;
}

.dashboard-note strong {
  color: white;
}

.trust-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.work-section {
  padding-top: 62px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.work-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(16, 18, 24, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 250, 246, 0.78)),
    var(--paper);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.76) inset,
    0 15px 42px rgba(16, 18, 24, 0.064);
  backdrop-filter: blur(10px);
  transition:
    transform 260ms var(--ease-premium),
    border-color 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium);
}

@media (hover: hover) {
  .work-grid article:hover {
    border-color: rgba(224, 0, 27, 0.16);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.84) inset,
      0 18px 48px rgba(16, 18, 24, 0.082);
    transform: translateY(var(--lift-subtle));
  }
}

.work-grid span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--red-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-grid p {
  margin-bottom: 0;
  color: #303743;
}

.trust-strip p {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.trust-items,
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-items {
  justify-content: flex-end;
}

.trust-items span,
.trust-grid span {
  padding: 10px 12px;
  border-radius: 999px;
}

.section-heading {
  max-width: 790px;
}

.section-heading p,
.why-card p,
.contact-copy p,
.swiss-panel p {
  color: var(--muted-strong);
  font-size: 1.09rem;
  line-height: 1.62;
}

.wide-heading {
  max-width: 920px;
  margin-bottom: 32px;
}

.services .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #282f3a;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.68;
}

.services.services--core .wide-heading {
  margin-bottom: 28px;
}

.services.services--core .service-grid {
  gap: 24px;
}

.services.services--core .service-card {
  min-height: 0;
  gap: 14px;
  padding: 28px;
}

.services.services--core .service-card h3 {
  margin-top: 44px;
  margin-bottom: 10px;
}

.services.services--core .service-number {
  margin-bottom: 0;
}

.dashboard-metric strong {
  font-size: clamp(2rem, 4.8vw, 2.85rem);
  letter-spacing: -0.04em;
}

.sticky-heading {
  align-self: start;
  position: sticky;
  top: 112px;
}

.problem-list {
  display: grid;
  gap: 16px;
}

.problem-list article,
.work-grid article,
.service-card,
.why-card,
.why-grid article,
.process-grid article,
.swiss-panel,
.contact-form {
  border: 1px solid rgba(16, 18, 24, 0.095);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78) inset,
    0 15px 42px rgba(16, 18, 24, 0.06);
  backdrop-filter: blur(10px);
}

.problem-list article {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.problem-list span,
.service-number,
.process-grid span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.problem-list p,
.service-card p,
.why-grid p,
.process-grid p {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  display: flex;
  min-height: 304px;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-color: rgba(16, 18, 24, 0.13);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(251, 250, 246, 0.94)),
    var(--paper);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 16px 40px rgba(16, 18, 24, 0.068),
    0 1px 2px rgba(16, 18, 24, 0.04);
  transition:
    transform var(--duration-ui) var(--ease-soft),
    background var(--duration-ui) var(--ease-soft),
    border-color var(--duration-ui) var(--ease-soft),
    box-shadow var(--duration-ui) var(--ease-soft),
    filter var(--duration-ui) var(--ease-soft);
}

@media (hover: hover) {
  .service-card:hover {
    border-color: rgba(224, 0, 27, 0.2);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(252, 250, 246, 0.97)),
      var(--paper);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.96) inset,
      0 0 0 1px rgba(224, 0, 27, 0.04) inset,
      0 18px 48px rgba(16, 18, 24, 0.085),
      0 8px 22px rgba(224, 0, 27, 0.045);
    transform: translateY(var(--lift-subtle));
    filter: brightness(1.008);
  }

  .service-card:hover .service-number {
    border-color: rgba(224, 0, 27, 0.28);
    background: rgba(224, 0, 27, 0.07);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.76) inset,
      0 6px 16px rgba(224, 0, 27, 0.08);
  }
}

.problem-list article,
.work-grid article,
.why-grid article,
.process-grid article,
.swiss-panel,
.hero-dashboard,
.proof-card {
  transition:
    transform var(--duration-ui) var(--ease-soft),
    border-color var(--duration-ui) var(--ease-soft),
    box-shadow var(--duration-ui) var(--ease-soft),
    background var(--duration-ui) var(--ease-soft);
}

@media (hover: hover) {
  .problem-list article:hover,
  .why-grid article:hover,
  .swiss-panel:hover {
    border-color: rgba(224, 0, 27, 0.16);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.86) inset,
      0 18px 48px rgba(16, 18, 24, 0.08);
    transform: translateY(var(--lift-subtle));
  }

  .proof-card:hover {
    border-color: rgba(224, 0, 27, 0.14);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 16px 42px rgba(16, 18, 24, 0.065);
    transform: translateY(var(--lift-subtle));
  }

  .hero-dashboard:hover {
    transform: translateY(var(--lift-subtle));
    box-shadow: 0 30px 78px rgba(16, 18, 24, 0.16);
  }
}

.service-card h3 {
  margin-top: 52px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.38rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.service-card p {
  color: #252b36;
  font-size: 0.995rem;
  font-weight: 500;
  line-height: 1.74;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 2px;
  border-bottom: 1px solid rgba(224, 0, 27, 0.28);
  color: #a80012;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  text-decoration: none;
  transition:
    color var(--duration-ui-fast) var(--ease-soft),
    border-color var(--duration-ui-fast) var(--ease-soft);
}

@media (hover: hover) {
  .service-card-cta:hover {
    border-bottom-color: rgba(224, 0, 27, 0.55);
    color: var(--accent);
  }
}

.service-number {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid rgba(224, 0, 27, 0.18);
  border-radius: 999px;
  background: rgba(224, 0, 27, 0.055);
  color: var(--red-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  transition:
    transform 240ms var(--ease-premium),
    border-color 240ms var(--ease-premium),
    background 240ms var(--ease-premium),
    box-shadow 240ms var(--ease-premium);
}

.why-section {
  align-items: stretch;
}

.why-card {
  padding: 38px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 232, 220, 0.7)),
    var(--paper);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-grid article {
  padding: 24px;
  border-radius: var(--radius-lg);
}

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

.proof-section {
  padding-top: 72px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 0% 0%, rgba(224, 0, 27, 0.04), transparent 18rem),
    linear-gradient(180deg, rgba(251, 250, 246, 0.55), rgba(255, 255, 255, 0.2));
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 12px;
  padding: 26px 24px 22px;
  border: 1px solid rgba(16, 18, 24, 0.09);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 250, 246, 0.9)),
    var(--paper);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.86) inset,
    0 14px 36px rgba(16, 18, 24, 0.048);
}

.proof-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(224, 0, 27, 0.16);
  border-radius: 999px;
  background: rgba(224, 0, 27, 0.05);
  color: var(--red-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.proof-card p {
  margin: 0;
  color: #3a424e;
  font-size: 0.97rem;
  line-height: 1.58;
}

.proof-outcome {
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 18, 24, 0.08);
  color: #4a5563;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.process-grid {
  counter-reset: process-step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid article {
  counter-increment: process-step;
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 28px 24px 26px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 246, 0.88)),
    var(--paper);
  transition:
    transform 240ms var(--ease-premium),
    border-color 240ms var(--ease-premium),
    box-shadow 240ms var(--ease-premium),
    background 240ms var(--ease-premium);
}

.process-grid article::after {
  content: "0" counter(process-step);
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
  display: block;
  color: rgba(224, 0, 27, 0.26);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.process-grid span {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-bottom: 56px;
  padding: 7px 10px;
  border: 1px solid rgba(224, 0, 27, 0.16);
  border-radius: 999px;
  background: rgba(224, 0, 27, 0.052);
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.process-grid h3 {
  position: relative;
  z-index: 2;
  margin: auto 0 12px;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.process-grid p {
  position: relative;
  z-index: 2;
  color: #323a46;
  font-size: 0.96rem;
  line-height: 1.62;
}

@media (hover: hover) {
  .process-grid article:hover {
    border-color: rgba(224, 0, 27, 0.16);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(251, 250, 246, 0.92)),
      var(--paper);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.92) inset,
      0 0 0 1px rgba(224, 0, 27, 0.02) inset,
      0 16px 42px rgba(16, 18, 24, 0.075);
    transform: translateY(var(--lift-subtle));
  }
}

.swiss-section {
  align-items: start;
  padding-top: 66px;
  padding-bottom: 30px;
}

.swiss-panel {
  padding: 32px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72)),
    var(--paper);
}

.swiss-panel p {
  margin-bottom: 24px;
  color: var(--muted-strong);
}

.contact-section {
  align-items: start;
  gap: 50px;
  margin-bottom: 68px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 12%, rgba(224, 0, 27, 0.25), transparent 24rem),
    radial-gradient(circle at 72% 0%, rgba(92, 16, 32, 0.22), transparent 22rem),
    linear-gradient(145deg, #17243a 0%, #151827 45%, #120d16 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 34px 90px rgba(12, 14, 22, 0.18),
    0 -28px 90px rgba(224, 0, 27, 0.08);
  color: rgba(255, 255, 255, 0.96);
}

.contact-copy {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  padding: 10px 8px 14px 4px;
}

.contact-copy::before {
  content: "";
  position: absolute;
  inset: 0 0 0 -10px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 14% 18%, rgba(224, 0, 27, 0.16), transparent 46%),
    radial-gradient(circle at 72% 78%, rgba(255, 255, 255, 0.05), transparent 38%);
  background-size: 26px 26px, 26px 26px, auto, auto;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 24px 64px rgba(0, 0, 0, 0.14);
  pointer-events: none;
  z-index: 0;
}

.contact-copy::after {
  content: "";
  position: absolute;
  top: 12%;
  left: -4%;
  width: 52%;
  height: 42%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 0, 27, 0.11), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.contact-copy > * {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  color: #fffdf8;
}

.contact-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  line-height: 1.64;
}

.contact-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}

.swiss-trust-layer {
  display: grid;
  gap: 14px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.swiss-trust-layer-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.swiss-trust-layer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.swiss-trust-layer-item {
  display: grid;
  gap: 4px;
  padding: 11px 12px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.swiss-trust-layer-item strong {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fffdf8;
  line-height: 1.35;
}

.swiss-trust-layer-item span {
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.76);
}

.swiss-trust-layer-item--span {
  grid-column: 1 / -1;
}

.swiss-trust-layer-separator {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.16) 12%,
    rgba(255, 255, 255, 0.16) 88%,
    transparent
  );
}

.swiss-trust-layer-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.swiss-trust-layer-details span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: 32px 32px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.155), rgba(255, 255, 255, 0.075)),
    rgba(255, 255, 255, 0.065);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 22px 56px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(118%);
}

.contact-form__fields {
  display: grid;
  gap: 20px;
}

.contact-form__actions {
  display: grid;
  gap: 14px;
  margin-top: 4px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.form-cta-caption {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.018em;
}

.form-privacy-note {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: -0.01em;
}

.contact-form label {
  gap: 10px;
  letter-spacing: -0.012em;
}

.contact-form label:has(.is-invalid) {
  color: #ffd0d0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 54px;
  padding: 15px 16px;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.62) inset,
    0 8px 20px rgba(0, 0, 0, 0.06);
  transition:
    border-color 200ms var(--ease-cta),
    box-shadow 200ms var(--ease-cta),
    background 200ms var(--ease-cta),
    transform 200ms var(--ease-cta);
}

.contact-form textarea {
  min-height: 132px;
  padding-top: 14px;
  line-height: 1.55;
}

@media (hover: hover) {
  .contact-form input:hover,
  .contact-form select:hover,
  .contact-form textarea:hover {
    border-color: rgba(255, 255, 255, 0.52);
    background: #fff;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.78) inset,
      0 12px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
  }

  .contact-form .submit-button:hover:not(:disabled):not(.is-loading) {
    transform: translateY(var(--lift-subtle));
    filter: brightness(1.03) saturate(1.02);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.18) inset,
      0 18px 42px rgba(16, 18, 24, 0.28),
      0 10px 28px rgba(224, 0, 27, 0.16);
  }
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  border-color: rgba(255, 255, 255, 0.88);
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(224, 0, 27, 0.24),
    0 0 0 1px rgba(224, 0, 27, 0.42) inset,
    0 14px 32px rgba(0, 0, 0, 0.12);
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
  border-color: rgba(255, 150, 150, 0.95);
  background: #fff7f7;
  box-shadow:
    0 0 0 3px rgba(224, 0, 27, 0.22),
    0 0 0 1px rgba(224, 0, 27, 0.35) inset,
    0 10px 24px rgba(0, 0, 0, 0.08);
}

.contact-form__actions .submit-button {
  width: 100%;
  margin-top: 0;
  min-height: 56px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 18px 40px rgba(16, 18, 24, 0.26),
    0 12px 32px rgba(224, 0, 27, 0.14);
  transition:
    transform 160ms var(--ease-cta),
    box-shadow 200ms var(--ease-cta),
    filter 200ms var(--ease-cta),
    opacity 200ms var(--ease-cta);
}

.contact-form__actions .submit-button:active:not(:disabled):not(.is-loading) {
  transform: translateY(0) scale(0.985);
  transition-duration: 70ms;
  filter: brightness(0.97);
}

.form-reassurance {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: start;
  letter-spacing: -0.01em;
}

@media (prefers-reduced-motion: reduce) {
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .contact-form__actions .submit-button {
    transition: none;
  }

  .contact-form__actions .submit-button:active:not(:disabled):not(.is-loading) {
    transform: none;
  }

  @media (hover: hover) {
    .contact-form input:hover,
    .contact-form select:hover,
    .contact-form textarea:hover,
    .contact-form .submit-button:hover:not(:disabled):not(.is-loading) {
      transform: none;
    }
  }
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.95rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.985);
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
  transition:
    border-color 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    background 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.99);
  transform: translateY(-1px);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  background: white;
  box-shadow:
    0 0 0 4px rgba(224, 0, 27, 0.2),
    0 16px 34px rgba(0, 0, 0, 0.12);
}

input::placeholder,
textarea::placeholder {
  color: #626b77;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: rgba(224, 0, 27, 0.72);
  background: #fffafa;
  box-shadow:
    0 0 0 4px rgba(224, 0, 27, 0.14),
    0 12px 28px rgba(0, 0, 0, 0.08);
}

.submit-button {
  position: relative;
  color: #fffdf8;
  isolation: isolate;
  overflow: hidden;
}

.submit-button::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.22), transparent 52%);
  opacity: 0;
  transition: opacity 220ms var(--ease-premium);
}

.submit-button:hover::after,
.submit-button.is-loading::after {
  opacity: 1;
}

.submit-button.is-loading {
  cursor: wait;
  opacity: 0.88;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.88;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: white;
  font-weight: 900;
}

.form-status:not(:empty) {
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(0);
  transition:
    background 220ms var(--ease-premium),
    border-color 220ms var(--ease-premium),
    color 220ms var(--ease-premium);
}

.form-status.is-success {
  color: #d8ffe5;
  border-color: rgba(216, 255, 229, 0.2);
  background: rgba(68, 198, 112, 0.12);
}

.form-status.is-error {
  color: #ffe8e8;
  border-color: rgba(255, 200, 200, 0.35);
  background: rgba(224, 0, 27, 0.16);
  font-weight: 800;
  line-height: 1.45;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr) auto;
  gap: 18px 22px;
  align-items: start;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 46px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-tagline {
  margin: 0;
  color: #505b6a;
  font-size: 14px;
  line-height: 1.7;
}

.footer-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
}

.footer-links a {
  color: #4a5563;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: color var(--duration-ui-fast) var(--ease-soft), opacity var(--duration-ui-fast) var(--ease-soft);
}

@media (hover: hover) {
  .footer-links a:hover {
    color: var(--red);
    opacity: 0.88;
  }
}

.footer-email {
  color: var(--red);
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: #586372;
  font-size: 0.82rem;
  font-weight: 650;
}

.site-footer strong {
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.site-footer span {
  color: #586372;
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
}

.legal-header {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 18px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 750;
}

.legal-back:hover {
  color: var(--red);
}

.legal-main {
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
  padding: 12px 0 72px;
}

.legal-main h1 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.2vw, 2.35rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.legal-updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.legal-main section {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.legal-main section:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-main h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.legal-main p,
.legal-main li {
  margin: 0 0 10px;
  color: var(--muted-strong);
  font-size: 0.96rem;
  line-height: 1.68;
  font-weight: 550;
}

.legal-main ul {
  margin: 0;
  padding-left: 1.1rem;
}

.legal-main a {
  color: var(--red);
  font-weight: 650;
}

@media (max-width: 720px) {
  .legal-header,
  .legal-main {
    width: min(100%, calc(100% - 32px));
  }

  .legal-main {
    padding-bottom: 48px;
  }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 640ms var(--ease-premium),
    transform 640ms var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1180px) {
  .hero {
    min-height: auto;
    padding-top: 22px;
    padding-bottom: 36px;
  }

  .hero-grid,
  .split-section,
  .why-section,
  .swiss-section,
  .contact-section {
    gap: 48px;
  }

  h1 {
    font-size: clamp(3.05rem, 6.4vw, 5.8rem);
  }

  h2 {
    font-size: clamp(2.35rem, 4.4vw, 4.5rem);
  }
}

@media (min-width: 1041px) {
  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .hero {
    min-height: calc(94vh - 92px);
    padding-top: 38px;
    padding-bottom: 58px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.86fr);
    gap: 64px;
  }

  .split-section,
  .why-section,
  .swiss-section,
  .contact-section {
    gap: 72px;
  }

  h1,
  h2 {
    text-wrap: balance;
  }

  .hero-title {
    max-width: 720px;
    margin-bottom: 24px;
    line-height: 0.955;
  }

  h2 {
    max-width: 980px;
    line-height: 0.99;
  }

  h3 {
    line-height: 1.13;
  }

  .hero-text,
  .section-heading p,
  .why-card p,
  .contact-copy p,
  .swiss-panel p {
    line-height: 1.66;
  }

  .wide-heading {
    margin-bottom: 38px;
  }

  .section-heading {
    max-width: 820px;
  }

  .work-grid,
  .service-grid {
    gap: 32px;
  }

  .why-grid,
  .process-grid,
  .problem-list {
    gap: 18px;
  }

  .problem-list article,
  .work-grid article,
  .service-card,
  .why-grid article,
  .process-grid article,
  .swiss-panel {
    border-color: rgba(16, 18, 24, 0.105);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.86) inset,
      0 18px 48px rgba(16, 18, 24, 0.062);
  }

  .problem-list article,
  .work-grid article,
  .service-card,
  .why-grid article,
  .process-grid article {
    border-radius: 26px;
  }

  .work-grid article,
  .service-card {
    padding: 34px;
  }

  .problem-list article,
  .why-grid article {
    padding: 28px;
  }

  .process-grid article {
    padding: 30px 26px 28px;
  }

  .work-grid h3,
  .problem-list h3,
  .why-grid h3,
  .process-grid h3 {
    margin-bottom: 12px;
    font-size: 1.24rem;
    letter-spacing: -0.048em;
  }

  .work-grid p,
  .problem-list p,
  .service-card p,
  .why-grid p,
  .process-grid p {
    line-height: 1.68;
  }

  .trust-strip {
    padding: 26px 0;
  }

  .contact-section {
    padding: 54px;
  }

  .site-footer {
    padding-top: 52px;
    padding-bottom: 60px;
  }

  .button,
  .nav-cta,
  .submit-button {
    transition:
      transform 240ms var(--ease-premium),
      border-color 240ms var(--ease-premium),
      background 240ms var(--ease-premium),
      box-shadow 240ms var(--ease-premium),
      color 180ms var(--ease-premium);
  }

  .button {
    min-height: 58px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .button:focus-visible,
  .nav-cta:focus-visible,
  .submit-button:focus-visible {
    outline-offset: 5px;
    box-shadow:
      0 0 0 4px rgba(224, 0, 27, 0.1),
      0 18px 44px rgba(16, 18, 24, 0.12);
  }

  @media (hover: hover) {
    .button:hover,
    .nav-cta:hover,
    .submit-button:hover {
      transform: translateY(var(--lift-subtle));
    }

    .problem-list article:hover,
    .work-grid article:hover,
    .why-grid article:hover,
    .process-grid article:hover,
    .swiss-panel:hover,
    .proof-card:hover {
      border-color: rgba(224, 0, 27, 0.17);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 0 0 1px rgba(224, 0, 27, 0.02) inset,
        0 20px 54px rgba(16, 18, 24, 0.085);
      transform: translateY(var(--lift-subtle));
    }
  }
}

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

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-grid,
  .split-section,
  .why-section,
  .swiss-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

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

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-items {
    justify-content: flex-start;
  }

  .contact-section {
    padding: 44px;
  }
}

@media (min-width: 721px) and (max-width: 768px) {
  .site-header {
    border-bottom-color: rgba(16, 18, 24, 0.075);
    background: rgba(247, 245, 239, 0.74);
    box-shadow: 0 8px 26px rgba(16, 18, 24, 0.04);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    backdrop-filter: blur(18px) saturate(135%);
  }

  .site-header.is-scrolled {
    border-bottom-color: rgba(16, 18, 24, 0.095);
    background: rgba(247, 245, 239, 0.88);
    box-shadow: 0 10px 28px rgba(16, 18, 24, 0.065);
  }

  .nav {
    grid-template-columns: 1fr auto auto;
    column-gap: 8px;
    row-gap: 5px;
    padding: 6px 0;
  }

  .brand {
    gap: 7px;
    min-width: 0;
    align-self: center;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .brand-copy {
    justify-content: center;
    line-height: 1.04;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .language-switcher {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .menu-toggle {
    display: inline-grid;
    grid-column: 3;
    grid-row: 1;
    width: 34px;
    height: 34px;
    place-items: center;
    justify-self: end;
    border: 1px solid rgba(16, 18, 24, 0.12);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.68);
    cursor: pointer;
    box-shadow: 0 7px 16px rgba(16, 18, 24, 0.045);
  }

  .menu-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition:
      transform 220ms var(--ease-premium),
      opacity 220ms var(--ease-premium);
  }

  .menu-toggle span + span {
    margin-top: -16px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 5px;
    padding-top: 2px;
    opacity: 0;
    transform: translateY(-6px);
    transition:
      max-height 360ms var(--ease-soft),
      opacity 280ms var(--ease-soft),
      transform 320ms var(--ease-soft),
      padding 320ms var(--ease-soft);
  }

  .mobile-menu.is-open {
    max-height: 300px;
    gap: 6px;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu a {
    min-height: 33px;
    padding: 6px 10px;
    border: 1px solid rgba(16, 18, 24, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.74);
    color: #2f3743;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: -0.01em;
  }

  .mobile-menu a:active {
    transform: scale(0.992);
    transition-duration: var(--duration-press);
  }

  @media (hover: hover) {
    .mobile-menu a:hover {
      border-color: rgba(224, 0, 27, 0.16);
      background: rgba(255, 255, 255, 0.94);
      color: var(--ink);
    }
  }

  .mobile-menu a:last-child {
    margin-top: 4px;
    border-color: rgba(16, 18, 24, 0.78);
    background: var(--ink);
    color: white;
    text-align: center;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.08) inset,
      0 11px 22px rgba(16, 18, 24, 0.16);
  }

  .hero {
    padding-top: 22px;
  }

  .hero-text {
    margin-bottom: 18px;
    line-height: 1.52;
  }
}

@media (max-width: 720px) {
  :root {
    --mobile-page-gutter: 28px;
    --anchor-scroll-offset: 72px;
  }

  body {
    background:
      radial-gradient(circle at 12% 0%, rgba(224, 0, 27, 0.064), transparent 23rem),
      linear-gradient(90deg, rgba(16, 18, 24, 0.02) 1px, transparent 1px),
      linear-gradient(180deg, rgba(16, 18, 24, 0.02) 1px, transparent 1px),
      var(--bg);
    background-size: auto, 64px 64px, 64px 64px, auto;
  }

  .site-header {
    border-bottom-color: rgba(16, 18, 24, 0.075);
    background: rgba(247, 245, 239, 0.72);
    box-shadow: 0 8px 26px rgba(16, 18, 24, 0.038);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    backdrop-filter: blur(18px) saturate(135%);
  }

  .site-header.is-scrolled {
    border-bottom-color: rgba(16, 18, 24, 0.095);
    background: rgba(247, 245, 239, 0.86);
    box-shadow: 0 10px 28px rgba(16, 18, 24, 0.065);
  }

  .nav,
  .section,
  .site-footer {
    width: min(calc(100% - var(--mobile-page-gutter)), 1200px);
  }

  .nav {
    grid-template-columns: 1fr auto auto;
    column-gap: 6px;
    row-gap: 3px;
    padding: 3px 0;
  }

  .brand {
    gap: 5px;
    min-height: 28px;
    align-self: center;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    box-shadow: 0 7px 16px rgba(16, 18, 24, 0.12);
  }

  .brand-copy {
    justify-content: center;
    line-height: 1.02;
  }

  .brand-copy strong {
    font-size: 0.81rem;
    letter-spacing: -0.032em;
  }

  .brand-copy small {
    font-size: 0.48rem;
    letter-spacing: 0.09em;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .language-switcher {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    gap: 3px;
    min-height: 30px;
    padding: 2px;
    border-color: rgba(16, 18, 24, 0.12);
    background: rgba(255, 255, 255, 0.76);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.64) inset,
      0 8px 18px rgba(16, 18, 24, 0.055);
  }

  .language-switcher span {
    display: inline-flex;
    align-items: center;
    color: rgba(16, 18, 24, 0.28);
    font-size: 0.72rem;
  }

  .language-switcher a {
    min-width: 31px;
    min-height: 26px;
    padding: 0 7px;
    color: rgba(16, 18, 24, 0.5);
  }

  .language-switcher a.is-active {
    border-color: rgba(16, 18, 24, 0.16);
    background: white;
    color: var(--ink);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.78) inset,
      0 7px 14px rgba(16, 18, 24, 0.075);
  }

  .menu-toggle {
    display: inline-grid;
    grid-column: 3;
    grid-row: 1;
    width: 30px;
    height: 30px;
    place-items: center;
    justify-self: end;
    border: 1px solid rgba(16, 18, 24, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.66);
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(16, 18, 24, 0.04);
    transition:
      border-color var(--duration-ui) var(--ease-soft),
      background var(--duration-ui) var(--ease-soft),
      box-shadow var(--duration-ui) var(--ease-soft),
      transform var(--duration-ui-fast) var(--ease-cta);
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: rgba(16, 18, 24, 0.22);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 250, 246, 0.92)),
      rgba(255, 255, 255, 0.9);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.82) inset,
      0 10px 24px rgba(16, 18, 24, 0.1);
  }

  .menu-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition:
      transform 280ms var(--ease-soft),
      opacity 220ms var(--ease-soft),
      background 220ms var(--ease-soft);
  }

  .menu-toggle[aria-expanded="true"] span {
    background: var(--ink);
  }

  .menu-toggle span + span {
    margin-top: -14px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 3px;
    padding-top: 1px;
    opacity: 0;
    transform: translateY(-4px);
    transition:
      max-height 260ms var(--ease-premium),
      opacity 220ms var(--ease-premium),
      transform 220ms var(--ease-premium);
  }

  .mobile-menu.is-open {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu a {
    min-height: 32px;
    padding: 5px 10px;
    border: 1px solid rgba(16, 18, 24, 0.09);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--muted-strong);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: -0.01em;
  }

  .mobile-menu a:hover,
  .mobile-menu a:active {
    opacity: 0.78;
    transform: translateY(1px);
  }

  .mobile-menu a:last-child {
    margin-top: 3px;
    border-color: rgba(16, 18, 24, 0.72);
    background: var(--ink);
    color: white;
    text-align: center;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.08) inset,
      0 9px 18px rgba(16, 18, 24, 0.13);
  }

  .section {
    padding: 38px 0;
  }

  .process-section,
  .swiss-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .contact-section {
    gap: 16px;
    padding: 22px 14px 16px;
    margin-bottom: 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 18px;
  }

  .hero-title {
    margin-bottom: 9px;
    max-width: 15.5ch;
    line-height: 1.06;
    letter-spacing: -0.035em;
  }

  .hero::after {
    top: 4%;
    left: -28%;
    width: 118vw;
    height: 118vw;
    opacity: 0.72;
  }

  h1 {
    max-width: 14.4ch;
    margin-bottom: 11px;
    font-size: clamp(1.52rem, 6vw, 1.86rem);
    line-height: 1;
  }

  h2 {
    margin-bottom: 11px;
    font-size: clamp(1.52rem, 6.15vw, 2.02rem);
    line-height: 1.04;
  }

  h3 {
    font-size: 1.06rem;
    line-height: 1.18;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: 0.66rem;
    letter-spacing: 0.13em;
  }

  .hero-grid,
  .split-section,
  .why-section,
  .swiss-section,
  .contact-section {
    gap: 16px;
  }

  .hero-grid {
    gap: 16px;
  }

  .hero-copy {
    margin: 0;
    padding: 0;
    border-radius: 22px;
    background: transparent;
  }

  .hero-text {
    max-width: 22rem;
    margin-bottom: 12px;
    color: #2a333f;
    font-size: 0.99rem;
    line-height: 1.54;
  }

  .hero-actions {
    gap: 8px;
    margin-bottom: 10px;
  }

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

  .button {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 16px;
    font-size: 0.91rem;
    font-weight: 900;
    letter-spacing: -0.015em;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.08) inset,
      0 10px 22px rgba(16, 18, 24, 0.11);
    transition:
      transform 220ms var(--ease-premium),
      box-shadow 220ms var(--ease-premium),
      background 220ms var(--ease-premium),
      border-color 220ms var(--ease-premium),
      opacity 220ms var(--ease-premium);
    -webkit-tap-highlight-color: transparent;
  }

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

  .button:active {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.05) inset,
      0 5px 12px rgba(16, 18, 24, 0.1);
    opacity: 0.96;
    transform: translateY(1px) scale(0.992);
  }

  .hero-actions .button-primary {
    background: linear-gradient(180deg, #171a22 0%, #0a0c11 100%);
    color: #fafafa;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.12) inset,
      0 12px 28px rgba(16, 18, 24, 0.2),
      0 6px 14px rgba(224, 0, 27, 0.07);
  }

  .hero-actions .button-primary:hover {
    background: linear-gradient(180deg, #1c202a 0%, #050609 100%);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.13) inset,
      0 14px 32px rgba(16, 18, 24, 0.22),
      0 7px 18px rgba(224, 0, 27, 0.08);
  }

  .hero-actions .button-primary:active {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.08) inset,
      0 7px 18px rgba(16, 18, 24, 0.17),
      0 3px 10px rgba(224, 0, 27, 0.06);
    opacity: 0.97;
    transform: translateY(1px) scale(0.988);
  }

  .hero-actions .button-secondary {
    min-height: 48px;
    border-color: rgba(16, 18, 24, 0.18);
    background: rgba(255, 255, 255, 0.54);
    color: #222832;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.45) inset,
      0 8px 18px rgba(16, 18, 24, 0.055);
  }

  .hero-actions .button-secondary:hover {
    background: rgba(255, 255, 255, 0.72);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.55) inset,
      0 12px 24px rgba(16, 18, 24, 0.075);
  }

  .hero-trust {
    gap: 6px;
  }

  .hero-trust li,
  .trust-items span,
  .trust-grid span {
    color: #38414c;
    font-size: 0.74rem;
    line-height: 1.24;
  }

  .hero-trust li {
    min-height: 36px;
    padding: 6px 8px;
    border-radius: 12px;
  }

  .trust-items span,
  .trust-grid span {
    padding: 4px 7px;
  }

  .hero-dashboard,
  .why-card,
  .swiss-panel,
  .contact-form {
    border-radius: 21px;
    padding: 14px;
  }

  .problem-list article,
  .service-card,
  .why-card,
  .why-grid article,
  .process-grid article,
  .swiss-panel,
  .contact-form {
    border-color: rgba(16, 18, 24, 0.09);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.84) inset,
      0 12px 28px rgba(16, 18, 24, 0.042);
    backdrop-filter: none;
  }

  .hero-dashboard {
    border-radius: 26px;
    background:
      radial-gradient(circle at 88% 8%, rgba(224, 0, 27, 0.22), transparent 24%),
      linear-gradient(145deg, #252b35 0%, #181d26 48%, #101218 100%);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.09) inset,
      0 24px 56px rgba(16, 18, 24, 0.18);
  }

  .hero-dashboard::before {
    inset: 18px;
    border-color: rgba(255, 255, 255, 0.065);
  }

  .dashboard-header {
    margin-bottom: 18px;
  }

  .dashboard-metric {
    margin-bottom: 10px;
    padding: 13px;
  }

  .dashboard-metric strong {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .automation-flow {
    gap: 7px;
    margin-bottom: 9px;
  }

  .automation-flow div {
    gap: 8px;
    padding: 8px 9px;
    font-size: 0.88rem;
    background: rgba(255, 255, 255, 0.052);
  }

  .automation-flow span {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
  }

  .dashboard-note {
    padding: 10px 11px;
    background: rgba(224, 0, 27, 0.105);
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .trust-strip {
    gap: 10px;
    padding: 12px 0;
  }

  .trust-strip p {
    font-size: 0.93rem;
    line-height: 1.32;
  }

  .wide-heading {
    margin-bottom: 17px;
  }

  .services .wide-heading {
    padding: 14px;
    border: 1px solid rgba(16, 18, 24, 0.1);
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.52)),
      rgba(255, 255, 255, 0.58);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.72) inset,
      0 18px 42px rgba(16, 18, 24, 0.07);
  }

  .services.services--core .wide-heading {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .services.services--core .service-grid {
    gap: 12px;
  }

  .services.services--core .service-card {
    padding: 14px 14px 13px;
  }

  .services.services--core .service-card h3 {
    margin-top: 38px;
    font-size: 1.12rem;
  }

  .services .section-heading p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.52;
  }

  .section-heading p,
  .why-card p,
  .contact-copy p,
  .swiss-panel p {
    color: #2c3440;
    font-size: 0.99rem;
    line-height: 1.54;
  }

  .service-grid,
  .work-grid,
  .process-grid,
  .why-grid,
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .proof-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .proof-card {
    gap: 10px;
    padding: 14px 13px 12px;
  }

  .proof-card h3 {
    font-size: 1.08rem;
    line-height: 1.14;
  }

  .proof-card p {
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .proof-outcome {
    padding-top: 10px;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .service-grid {
    gap: 10px;
  }

  .problem-list {
    gap: 10px;
  }

  .problem-list article,
  .work-grid article,
  .service-card,
  .why-grid article,
  .process-grid article {
    position: relative;
    overflow: hidden;
    padding: 12px 12px 11px;
    border-radius: 21px;
    border-color: rgba(16, 18, 24, 0.092);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 250, 246, 0.94)),
      var(--paper);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.88) inset,
      0 12px 28px rgba(16, 18, 24, 0.044);
    transition:
      transform 260ms var(--ease-premium),
      border-color 260ms var(--ease-premium),
      box-shadow 260ms var(--ease-premium),
      background 260ms var(--ease-premium);
  }

  .problem-list article::before,
  .work-grid article::before,
  .service-card::before,
  .why-grid article::before,
  .process-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 17px;
    width: 40px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: rgba(224, 0, 27, 0.58);
  }

  .problem-list article:hover,
  .work-grid article:hover,
  .service-card:hover,
  .why-grid article:hover,
  .process-grid article:hover,
  .problem-list article:active,
  .work-grid article:active,
  .service-card:active,
  .why-grid article:active,
  .process-grid article:active {
    border-color: rgba(224, 0, 27, 0.24);
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 14px 30px rgba(16, 18, 24, 0.072);
    transform: translateY(-1px);
  }

  .service-card,
  .work-grid article,
  .process-grid article {
    min-height: auto;
  }

  .service-card {
    gap: 6px;
    padding: 14px 13px 12px;
  }

  .problem-list article {
    padding: 11px 12px 10px;
  }

  .problem-list span {
    margin-bottom: 4px;
  }

  .problem-list h3 {
    margin-bottom: 4px;
    line-height: 1.14;
  }

  .process-grid {
    gap: 10px;
  }

  .process-grid article {
    gap: 8px;
    padding: 18px 15px 16px;
  }

  .process-grid article::after {
    top: 15px;
    right: 15px;
    font-size: 1.55rem;
    color: rgba(224, 0, 27, 0.3);
  }

  .problem-list span,
  .work-grid span,
  .service-number,
  .process-grid span {
    margin-bottom: 5px;
    font-size: 0.68rem;
  }

  .process-grid span {
    padding: 6px 9px;
  }

  .process-grid h3 {
    margin: 18px 0 6px;
    font-size: 1.08rem;
    line-height: 1.16;
  }

  .service-card h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    color: #0d1016;
    font-size: 1.08rem;
    line-height: 1.14;
  }

  .service-card p,
  .work-grid p,
  .problem-list p,
  .why-grid p,
  .process-grid p {
    color: #2c3440;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .contact-copy p {
    color: rgba(255, 255, 255, 0.9);
  }

  .contact-form {
    gap: 16px;
    padding: 16px 15px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.165), rgba(255, 255, 255, 0.078)),
      rgba(255, 255, 255, 0.068);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.2) inset,
      0 16px 36px rgba(0, 0, 0, 0.19);
    backdrop-filter: blur(14px) saturate(118%);
  }

  .contact-form__fields {
    gap: 14px;
  }

  .contact-form__actions {
    gap: 12px;
    margin-top: 2px;
    padding-top: 18px;
  }

  .form-cta-caption {
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .form-privacy-note {
    font-size: 0.74rem;
    line-height: 1.52;
  }

  .contact-form label {
    gap: 5px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.97);
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.98);
    color: #101218;
    padding: 10px 12px;
    font-size: 0.94rem;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.5) inset,
      0 10px 24px rgba(0, 0, 0, 0.08);
  }

  .contact-form input:hover,
  .contact-form select:hover,
  .contact-form textarea:hover {
    transform: none;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #515b68;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
  }

  .contact-form input:focus-visible,
  .contact-form select:focus-visible,
  .contact-form textarea:focus-visible {
    border-color: rgba(255, 255, 255, 0.88);
    background: white;
    box-shadow:
      0 0 0 3px rgba(224, 0, 27, 0.2),
      0 0 0 1px rgba(224, 0, 27, 0.35) inset,
      0 12px 28px rgba(0, 0, 0, 0.12);
  }

  .contact-form textarea {
    min-height: 76px;
    line-height: 1.5;
  }

  .contact-form__actions .submit-button {
    color: #fffdf8;
    margin-top: 0;
    min-height: 50px;
    justify-self: stretch;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.1) inset,
      0 14px 30px rgba(224, 0, 27, 0.22);
  }

  .form-reassurance {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.4;
    text-align: start;
  }

  .form-status {
    min-height: 16px;
    margin-top: 10px;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
    padding: 16px 14px 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 26px;
    background:
      radial-gradient(circle at 88% 0%, rgba(224, 0, 27, 0.2), transparent 14rem),
      linear-gradient(145deg, #263044 0%, #1a2030 48%, #131722 100%);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.1) inset,
      0 24px 58px rgba(16, 18, 24, 0.18);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    text-align: center;
  }

  .site-footer strong {
    color: #fffdf8;
    font-size: 1.06rem;
    letter-spacing: -0.045em;
  }

  .footer-brand {
    gap: 2px;
    justify-items: center;
    text-align: center;
  }

  .footer-tagline {
    max-width: 32rem;
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .footer-actions {
    gap: 10px;
    justify-items: center;
  }

  .footer-links {
    justify-content: center;
    gap: 6px 12px;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
  }

  .footer-links a:hover {
    color: #fffdf8;
  }

  .site-footer span {
    color: rgba(255, 255, 255, 0.78);
  }

  .footer-email {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.085);
    color: #fffdf8;
    font-size: 0.88rem;
    font-weight: 850;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.1) inset,
      0 12px 24px rgba(0, 0, 0, 0.14);
  }

  .footer-copy {
    margin-top: 0;
    padding-top: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.76rem;
    text-align: center;
  }

  .reveal {
    transform: translate3d(0, 14px, 0);
    transition-duration: 620ms;
    transition-delay: 0ms;
  }

  .work-grid article.reveal,
  .service-card.reveal,
  .problem-list article.reveal,
  .why-grid article.reveal,
  .process-grid article.reveal {
    transform: translate3d(0, 16px, 0) scale(0.992);
  }

  .work-grid article.reveal.is-visible,
  .service-card.reveal.is-visible,
  .problem-list article.reveal.is-visible,
  .why-grid article.reveal.is-visible,
  .process-grid article.reveal.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 768px) {
  .nav {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav-links,
  .nav-cta,
  .site-header .language-switcher {
    display: none;
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    display: inline-grid;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(16, 18, 24, 0.105);
    border-radius: 15px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
      rgba(255, 255, 255, 0.72);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.78) inset,
      0 12px 26px rgba(16, 18, 24, 0.078);
    transition:
      border-color var(--duration-ui) var(--ease-soft),
      background var(--duration-ui) var(--ease-soft),
      box-shadow var(--duration-ui) var(--ease-soft),
      transform var(--duration-ui-fast) var(--ease-cta);
  }

  .menu-toggle[aria-expanded="true"] {
    z-index: 2;
    border-color: rgba(16, 18, 24, 0.24);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(251, 250, 246, 0.94)),
      rgba(255, 255, 255, 0.96);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 0 0 1px rgba(16, 18, 24, 0.06),
      0 14px 32px rgba(16, 18, 24, 0.12);
  }

  .menu-toggle span {
    width: 17px;
    transition:
      transform 280ms var(--ease-soft),
      opacity 220ms var(--ease-soft),
      background 220ms var(--ease-soft);
  }

  .menu-toggle[aria-expanded="true"] span {
    background: var(--ink);
  }

  .mobile-menu {
    grid-column: 1 / -1;
    display: grid;
    max-height: 0;
    gap: 4px;
    overflow: hidden;
    padding: 0;
    border: 0 solid transparent;
    border-radius: 24px;
    background:
      radial-gradient(circle at 92% 0%, rgba(224, 0, 27, 0.08), transparent 12rem),
      linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 250, 246, 0.72)),
      rgba(255, 255, 255, 0.78);
    box-shadow: none;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition:
      max-height 320ms var(--ease-soft),
      padding 300ms var(--ease-soft),
      border-color 260ms var(--ease-soft),
      box-shadow 300ms var(--ease-soft),
      opacity 260ms var(--ease-soft),
      transform 300ms var(--ease-soft),
      gap 240ms var(--ease-soft);
  }

  .mobile-menu.is-open {
    max-height: 440px;
    margin-top: 6px;
    gap: 5px;
    padding: 8px;
    border-width: 1px;
    border-color: rgba(16, 18, 24, 0.1);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.78) inset,
      0 20px 48px rgba(16, 18, 24, 0.095);
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu > a:not(.mobile-menu-cta) {
    display: flex;
    min-height: 38px;
    align-items: center;
    padding: 7px 11px;
    border: 1px solid rgba(16, 18, 24, 0.09);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.68);
    color: #2a323d;
    font-size: 0.9rem;
    font-weight: 850;
    letter-spacing: -0.018em;
  }

  .mobile-menu > a:not(.mobile-menu-cta):active {
    transform: scale(0.992);
    transition-duration: var(--duration-press);
  }

  @media (hover: hover) {
    .mobile-menu > a:not(.mobile-menu-cta):hover {
      background: rgba(255, 255, 255, 0.96);
      border-color: rgba(224, 0, 27, 0.16);
      color: var(--ink);
    }
  }

  .mobile-language-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 38px;
    margin-top: 3px;
    padding: 4px;
    border: 1px solid rgba(16, 18, 24, 0.09);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.52);
    color: rgba(16, 18, 24, 0.38);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    transition:
      border-color var(--duration-ui) var(--ease-soft),
      background var(--duration-ui) var(--ease-soft);
  }

  .mobile-menu .mobile-language-switcher a {
    display: inline-flex;
    min-width: 40px;
    min-height: 31px;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    color: rgba(16, 18, 24, 0.62);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  .mobile-menu .mobile-language-switcher a.is-active {
    border: 1px solid rgba(16, 18, 24, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.72) inset,
      0 6px 14px rgba(16, 18, 24, 0.052);
  }

  .mobile-menu > a.mobile-menu-cta {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 850;
    letter-spacing: -0.018em;
    border-color: rgba(16, 18, 24, 0.84);
    background: linear-gradient(180deg, #171a22 0%, #0a0c11 100%);
    color: #fafafa;
    text-align: center;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.11) inset,
      0 12px 28px rgba(16, 18, 24, 0.2),
      0 8px 20px rgba(224, 0, 27, 0.07);
    transition:
      transform 200ms var(--ease-cta),
      box-shadow 200ms var(--ease-cta),
      background 200ms var(--ease-cta),
      filter 200ms var(--ease-cta);
  }

  @media (hover: hover) {
    .mobile-menu > a.mobile-menu-cta:hover {
      filter: brightness(1.04);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.14) inset,
        0 14px 32px rgba(16, 18, 24, 0.22),
        0 8px 18px rgba(224, 0, 27, 0.08);
    }
  }

  .mobile-menu > a.mobile-menu-cta:active {
    transform: scale(0.987);
    transition-duration: var(--duration-press);
  }

  body {
    background:
      radial-gradient(circle at 12% 0%, rgba(224, 0, 27, 0.064), transparent 23rem),
      linear-gradient(90deg, rgba(16, 18, 24, 0.02) 1px, transparent 1px),
      linear-gradient(180deg, rgba(16, 18, 24, 0.02) 1px, transparent 1px),
      var(--bg);
    background-size: auto, 64px 64px, 64px 64px, auto;
  }

  .section {
    padding: 34px 0;
  }

  .process-section,
  .swiss-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .contact-section {
    gap: 14px;
    padding: 20px 14px 14px;
    margin-bottom: 16px;
  }

  .contact-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .contact-form {
    order: 1;
  }

  .swiss-trust-layer {
    order: 2;
    gap: 11px;
    padding: 14px 12px 12px;
    border-radius: 16px;
  }

  .swiss-trust-layer-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .swiss-trust-layer-item--span {
    grid-column: auto;
  }

  .swiss-trust-layer-item strong {
    font-size: 0.78rem;
  }

  .swiss-trust-layer-item span {
    font-size: 0.74rem;
  }

  .swiss-trust-layer-details span {
    padding: 5px 8px;
    font-size: 0.66rem;
  }

  .contact-copy::before {
    inset: 0;
    border-radius: 16px;
    background-size: 22px 22px, 22px 22px, auto, auto;
  }

  .contact-copy::after {
    width: 68%;
    height: 34%;
  }

  .contact-form {
    gap: 14px;
    padding: 14px;
  }

  .contact-form__fields {
    gap: 12px;
  }

  .contact-form__actions {
    gap: 10px;
    padding-top: 14px;
  }

  .form-cta-caption {
    font-size: 0.84rem;
  }

  .form-privacy-note {
    font-size: 0.74rem;
  }

  .contact-form label {
    gap: 7px;
    font-size: 0.82rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 46px;
    padding: 11px 13px;
    font-size: 16px;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #515b68;
  }

  .contact-form textarea {
    height: auto;
    min-height: 80px;
  }

  .contact-form__actions .submit-button {
    min-height: 46px;
    justify-self: stretch;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.1) inset,
      0 14px 30px rgba(224, 0, 27, 0.22);
  }

  .form-reassurance {
    font-size: 0.78rem;
    line-height: 1.4;
    text-align: start;
  }

  .form-status {
    min-height: 16px;
    margin-top: 10px;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-bottom: 10px;
    padding: 16px 14px 13px;
    border: 1px solid rgba(255, 255, 255, 0.145);
    border-radius: 26px;
    background:
      radial-gradient(circle at 88% 0%, rgba(224, 0, 27, 0.2), transparent 14rem),
      linear-gradient(145deg, #263044 0%, #1a2030 48%, #131722 100%);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.1) inset,
      0 24px 58px rgba(16, 18, 24, 0.2);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    text-align: center;
  }

  .site-footer strong {
    color: #fffdf8;
    font-size: 1.06rem;
    letter-spacing: -0.045em;
  }

  .footer-brand {
    gap: 2px;
    justify-items: center;
    text-align: center;
  }

  .footer-tagline {
    max-width: 32rem;
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
    line-height: 1.46;
  }

  .footer-actions {
    gap: 10px;
    justify-items: center;
  }

  .footer-links {
    justify-content: center;
    gap: 6px 12px;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
  }

  .footer-links a:hover {
    color: #fffdf8;
  }

  .site-footer span {
    color: rgba(255, 255, 255, 0.8);
  }

  .footer-email {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.125), rgba(255, 255, 255, 0.072)),
      rgba(255, 255, 255, 0.08);
    color: #fffdf8;
    font-size: 0.88rem;
    font-weight: 850;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.1) inset,
      0 13px 26px rgba(0, 0, 0, 0.16);
  }

  .footer-copy {
    margin-top: 0;
    padding-top: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    text-align: center;
  }

  .split-section,
  .services,
  .why-section {
    border-radius: 28px;
  }

  .split-section {
    padding: 30px 13px;
    border: 1px solid rgba(16, 18, 24, 0.095);
    background:
      radial-gradient(circle at 100% 0%, rgba(224, 0, 27, 0.075), transparent 12rem),
      linear-gradient(180deg, rgba(238, 232, 220, 0.72), rgba(251, 250, 246, 0.46));
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.78) inset,
      0 22px 54px rgba(16, 18, 24, 0.07);
  }

  .problem-list article,
  .work-grid article,
  .service-card,
  .why-grid article,
  .process-grid article {
    border-color: rgba(16, 18, 24, 0.095);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.86) inset,
      0 14px 34px rgba(16, 18, 24, 0.052);
  }

  .services {
    padding: 36px 0;
  }

  .why-section {
    padding: 30px 13px;
    border: 1px solid rgba(16, 18, 24, 0.09);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(238, 232, 220, 0.44)),
      rgba(255, 255, 255, 0.46);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.82) inset,
      0 22px 56px rgba(16, 18, 24, 0.075);
  }

  .problem-list article:nth-child(odd) {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 244, 237, 0.94)),
      var(--paper);
  }

  .problem-list article:nth-child(even) {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 232, 220, 0.62)),
      var(--paper);
  }

  .service-grid {
    gap: 8px;
  }

  .service-card {
    gap: 6px;
    padding: 14px 13px 12px;
    border-color: rgba(16, 18, 24, 0.095);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(251, 250, 246, 0.92)),
      var(--paper);
  }

  .service-card h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 1.08rem;
    line-height: 1.14;
  }

  .service-number {
    margin-bottom: 4px;
  }

  .service-card p {
    line-height: 1.52;
  }

  .why-card {
    border-color: rgba(16, 18, 24, 0.105);
    background:
      radial-gradient(circle at 100% 0%, rgba(224, 0, 27, 0.11), transparent 11rem),
      linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 232, 220, 0.78));
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.82) inset,
      0 20px 48px rgba(16, 18, 24, 0.075);
  }

  .why-grid article {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(251, 250, 246, 0.66)),
      rgba(255, 255, 255, 0.54);
  }

  .why-grid article:nth-child(even) {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(238, 232, 220, 0.54)),
      rgba(255, 255, 255, 0.48);
  }

  .contact-section {
    margin-bottom: 0;
    border-radius: 26px 26px 20px 20px;
    background:
      radial-gradient(circle at 88% 10%, rgba(224, 0, 27, 0.24), transparent 18rem),
      radial-gradient(circle at 76% 0%, rgba(92, 16, 32, 0.2), transparent 17rem),
      linear-gradient(145deg, #17243a 0%, #151827 46%, #120d16 100%);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.1) inset,
      0 24px 60px rgba(12, 14, 22, 0.2),
      0 -18px 58px rgba(224, 0, 27, 0.075);
  }

  .site-footer {
    margin-top: 8px;
  }

  .footer-brand {
    gap: 2px;
    justify-items: center;
    text-align: center;
  }

  .problem-list article {
    padding: 11px 12px 10px;
  }

  .problem-list h3 {
    margin-bottom: 4px;
    line-height: 1.14;
  }

  .problem-list span {
    margin-bottom: 4px;
  }

  .footer-email::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 0 0 6px rgba(224, 0, 27, 0.12);
  }

  .section-title,
  .hero-title {
    padding-left: 0;
    padding-right: 0;
    letter-spacing: -0.046em;
  }

  .section-title {
    line-height: 1.06;
  }

  .hero-title {
    line-height: 1;
  }

  .section-title {
    max-width: 14.2ch;
  }

  .services .section-title {
    max-width: 18ch;
  }

  .contact-copy .section-title {
    max-width: 15ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 430px) {
  :root {
    --mobile-page-gutter: 24px;
  }

  body {
    background:
      radial-gradient(circle at 10% 0%, rgba(224, 0, 27, 0.056), transparent 21rem),
      linear-gradient(90deg, rgba(16, 18, 24, 0.018) 1px, transparent 1px),
      linear-gradient(180deg, rgba(16, 18, 24, 0.018) 1px, transparent 1px),
      var(--bg);
    background-size: auto, 56px 56px, 56px 56px, auto;
  }

  .nav,
  .section,
  .site-footer {
    width: min(calc(100% - var(--mobile-page-gutter)), 1200px);
  }

  .brand {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 0.76rem;
  }

  .brand-copy small {
    font-size: 0.48rem;
    letter-spacing: 0.1em;
  }

  .hero {
    padding-top: 8px;
    padding-bottom: 18px;
  }

  h1 {
    max-width: 14.5ch;
    font-size: clamp(1.4rem, 5.85vw, 1.62rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .hero-text {
    color: #2b333e;
    max-width: 21.5rem;
    margin-bottom: 11px;
    font-size: 0.94rem;
    line-height: 1.54;
  }

  h2 {
    letter-spacing: -0.05em;
  }

  .dashboard-metric strong {
    font-size: clamp(2.65rem, 14.5vw, 3.45rem);
  }

  .contact-section {
    width: min(calc(100% - var(--mobile-page-gutter)), 1200px);
    padding: 18px 14px 14px;
  }

  .site-footer {
    padding: 15px 14px 13px;
  }
}

@media (max-width: 390px) {
  .language-switcher {
    min-height: 29px;
    font-size: 0.68rem;
  }

  .language-switcher a {
    min-width: 29px;
    min-height: 25px;
    padding: 0 6px;
  }

  .mobile-menu a {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  h1 {
    max-width: 14ch;
    font-size: clamp(1.38rem, 5.95vw, 1.54rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.42rem, 5.9vw, 1.76rem);
    line-height: 1.05;
  }

  .hero-trust {
    gap: 5px;
  }

  .hero-trust li {
    min-height: 34px;
    padding: 5px 7px;
    font-size: 0.7rem;
    line-height: 1.22;
  }

  .trust-items span,
  .trust-grid span {
    padding: 4px 7px;
    font-size: 0.72rem;
  }
}

@media (max-width: 720px) {
  html[lang="fr"] .hero,
  html[lang="de"] .hero {
    padding-top: 10px;
    padding-bottom: 20px;
  }

  html[lang="fr"] .hero-grid,
  html[lang="de"] .hero-grid {
    gap: 16px;
  }

  html[lang="fr"] .hero-title,
  html[lang="de"] .hero-title {
    margin-bottom: 10px;
    font-size: clamp(1.42rem, 5.75vw, 1.76rem);
    line-height: 0.99;
  }

  html[lang="fr"] .hero-text,
  html[lang="de"] .hero-text {
    margin-bottom: 12px;
    font-size: 0.96rem;
    line-height: 1.52;
  }

  html[lang="fr"] .hero-actions,
  html[lang="de"] .hero-actions {
    gap: 8px;
    margin-bottom: 12px;
  }

  html[lang="fr"] .hero-trust,
  html[lang="de"] .hero-trust {
    gap: 5px;
  }

  html[lang="de"] .hero-title {
    font-size: clamp(1.38rem, 5.55vw, 1.68rem);
    line-height: 0.99;
  }

  html[lang="de"] .hero-text {
    font-size: 0.94rem;
    line-height: 1.52;
  }
}

@media (max-width: 430px) {
  html[lang="fr"] .hero-title,
  html[lang="de"] .hero-title {
    font-size: clamp(1.36rem, 5.7vw, 1.58rem);
    line-height: 0.99;
  }

  html[lang="fr"] .hero-text,
  html[lang="de"] .hero-text {
    margin-bottom: 11px;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  html[lang="de"] .hero-title {
    font-size: clamp(1.3rem, 5.45vw, 1.5rem);
    line-height: 0.99;
  }

  html[lang="de"] .hero-text {
    font-size: 0.925rem;
    line-height: 1.5;
  }
}

@media (max-width: 390px) {
  html[lang="fr"] .hero-title,
  html[lang="de"] .hero-title {
    font-size: clamp(1.3rem, 5.55vw, 1.46rem);
  }

  html[lang="de"] .hero-title {
    font-size: clamp(1.25rem, 5.35vw, 1.4rem);
  }

  html[lang="fr"] .hero-trust li,
  html[lang="de"] .hero-trust li {
    padding: 5px 6px;
    font-size: 0.68rem;
  }
}

@media (max-width: 360px) {
  .brand-mark {
    width: 25px;
    height: 25px;
  }

  .brand-copy strong {
    font-size: 0.72rem;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
  }

  h1 {
    max-width: 13.4ch;
    font-size: clamp(1.32rem, 5.8vw, 1.46rem);
  }

  .hero-dashboard,
  .why-card,
  .swiss-panel,
  .contact-form {
    padding: 13px;
  }

  .contact-section {
    padding: 21px 10px 15px;
  }

  .problem-list article,
  .work-grid article,
  .service-card,
  .why-grid article,
  .process-grid article {
    padding: 14px 12px 13px;
    border-radius: 20px;
  }

  .problem-list article::before,
  .work-grid article::before,
  .service-card::before,
  .why-grid article::before,
  .process-grid article::before {
    left: 16px;
    width: 36px;
  }
}

/* Final mobile polish — spacing, readability, CTA hierarchy (≤768px) */
@media (max-width: 768px) {
  .section {
    padding: 36px 0;
  }

  .process-section,
  .swiss-section,
  .services.section,
  .proof-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .section-heading p:not(.eyebrow) {
    max-width: 36ch;
    line-height: 1.56;
  }

  h1,
  .hero-title {
    font-size: clamp(1.42rem, 5.55vw, 1.76rem);
    line-height: 1.04;
    letter-spacing: -0.036em;
  }

  .hero-text {
    line-height: 1.56;
    margin-bottom: 12px;
  }

  .hero-actions {
    gap: 8px;
    margin-bottom: 12px;
  }

  .hero-actions .button-primary {
    min-height: 46px;
    padding-block: 12px;
    font-size: 0.92rem;
  }

  .hero-actions .button-secondary {
    min-height: 42px;
    padding-block: 11px;
    font-size: 0.88rem;
    border-color: rgba(16, 18, 24, 0.12);
    background: rgba(255, 255, 255, 0.62);
    color: #3a424f;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.42) inset;
  }

  .service-card-cta {
    min-height: 42px;
    align-items: center;
    padding-top: 5px;
    font-size: 0.88rem;
  }

  .service-grid,
  .problem-list,
  .why-grid,
  .process-grid,
  .proof-grid {
    gap: 12px;
  }

  .service-card,
  .problem-list article,
  .work-grid article,
  .why-grid article,
  .process-grid article,
  .proof-card {
    padding: 14px 14px 13px;
    border-radius: 22px;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.78) inset,
      0 12px 34px rgba(16, 18, 24, 0.055);
  }

  .service-card p,
  .problem-list p,
  .why-grid p,
  .process-grid p {
    font-size: 0.93rem;
    line-height: 1.54;
  }

  .proof-card p {
    line-height: 1.54;
  }

  .contact-section {
    gap: 14px;
    padding: 20px 15px 15px;
  }

  .contact-copy p {
    line-height: 1.56;
  }

  .contact-panel {
    gap: 12px;
  }

  .contact-form {
    gap: 14px;
    padding: 14px;
  }

  .contact-form__fields {
    gap: 12px;
  }

  .contact-form__actions {
    gap: 10px;
    padding-top: 14px;
  }

  .contact-form label {
    gap: 7px;
    font-size: 0.83rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 46px;
    padding: 11px 13px;
    font-size: 16px;
  }

  .contact-form select {
    padding-right: 36px;
  }

  .contact-form input:focus-visible,
  .contact-form select:focus-visible,
  .contact-form textarea:focus-visible {
    box-shadow:
      0 0 0 2px rgba(224, 0, 27, 0.22),
      0 0 0 1px rgba(224, 0, 27, 0.38) inset,
      0 12px 28px rgba(0, 0, 0, 0.1);
  }

  .contact-form textarea {
    min-height: 80px;
    padding-top: 12px;
  }

  .contact-form__actions .submit-button {
    min-height: 46px;
    margin-top: 0;
    font-size: 0.92rem;
    letter-spacing: -0.02em;
  }

  .form-reassurance {
    margin-top: 0;
    line-height: 1.42;
    text-align: start;
  }

  .site-footer {
    gap: 10px;
    margin-top: 10px;
    padding: 16px 15px 14px;
  }

  .footer-tagline {
    padding-inline: 4px;
    line-height: 1.5;
  }

  .footer-actions {
    gap: 12px;
    width: 100%;
  }

  .footer-links {
    gap: 8px 14px;
  }

  .footer-email {
    min-height: 42px;
    padding: 8px 14px;
  }

  .footer-copy {
    margin-top: 4px;
    line-height: 1.4;
  }
}

/* Mobile menu close (X) — inset tap target, aligned with open panel */
@media (max-width: 768px) {
  .menu-toggle[aria-expanded="true"] {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    margin-top: calc(12px + env(safe-area-inset-top, 0px));
    margin-right: calc(14px + env(safe-area-inset-right, 0px));
    justify-self: end;
    align-self: start;
    border-color: rgba(16, 18, 24, 0.28);
    background:
      linear-gradient(180deg, #ffffff 0%, #f7f5ef 100%),
      rgba(255, 255, 255, 0.98);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 0 0 1px rgba(16, 18, 24, 0.08),
      0 16px 36px rgba(16, 18, 24, 0.14);
  }

  .menu-toggle[aria-expanded="true"] span {
    width: 18px;
    height: 2.5px;
    background: var(--ink);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }
}

@media (max-width: 360px) {
  .menu-toggle[aria-expanded="true"] {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
}

@media (hover: none) {
  .service-card:hover,
  .process-grid article:hover {
    border-color: rgba(16, 18, 24, 0.095);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(251, 250, 246, 0.92)),
      var(--paper);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.86) inset,
      0 14px 34px rgba(16, 18, 24, 0.052);
    transform: none;
  }

  .service-card:hover .service-number {
    border-color: rgba(224, 0, 27, 0.18);
    background: rgba(224, 0, 27, 0.055);
    box-shadow: none;
    transform: none;
  }
}
