:root {
  --paper: #f5f6f3;
  --surface: #ffffff;
  --ink: #1f2629;
  --muted: #5e686c;
  --line: rgba(31, 38, 41, .14);
  --dark: #667073;
  --dark-2: #525d60;
  --red: #bf202f;
  --gold: #d4a04a;
  --steel: #8fa0a6;
  --shadow: 0 28px 90px rgba(31, 38, 41, .14);
  --shadow-soft: 0 18px 48px rgba(31, 38, 41, .08);
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

.hero#start {
  scroll-margin-top: var(--header-height);
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px max(20px, calc((100% - 1220px) / 2));
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(31, 38, 41, .05);
}

.brand {
  display: block;
  width: 292px;
  max-width: 42vw;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--red);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  width: 21px;
  height: 2px;
  background: var(--dark);
}

.hero {
  position: relative;
  min-height: 650px;
  height: calc(100svh - var(--header-height));
  max-height: 840px;
  overflow: hidden;
  background: var(--dark);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(73, 83, 86, .84), rgba(73, 83, 86, .5) 48%, rgba(73, 83, 86, .16)),
    linear-gradient(0deg, rgba(73, 83, 86, .56), rgba(73, 83, 86, 0) 58%);
}

.hero-inner {
  position: absolute;
  bottom: 76px;
  left: max(20px, calc((100% - 1220px) / 2));
  width: min(760px, calc(100% - 40px));
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark-feature .eyebrow,
.contact-section .eyebrow {
  color: var(--gold);
}

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

h1 {
  margin-bottom: 22px;
  font-size: 5rem;
  line-height: .96;
}

h2 {
  margin-bottom: 22px;
  font-size: 3.25rem;
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.22;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .86);
  font-size: 1.18rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.contact-form button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(15, 24, 28, .12);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.button:hover,
.button:focus-visible,
.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translateY(-2px);
}

.button.primary,
.contact-form button {
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .42);
  box-shadow: none;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(720px, 100%);
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.hero-proof span {
  min-width: 0;
  padding-right: 22px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.hero-proof span + span {
  padding-left: 22px;
}

.hero-proof span:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  color: #fff;
  font-size: .94rem;
  font-weight: 850;
  line-height: 1.25;
}

.hero-proof small {
  margin-top: 5px;
  color: rgba(255, 255, 255, .68);
  font-size: .82rem;
}

.hero-title {
  margin-bottom: 22px;
}

.hero-title span {
  display: block;
}

.hero-title span:last-child {
  color: #f2b760;
}

.corporate-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1220px, calc(100% - 40px));
  margin: -48px auto 118px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.corporate-strip div {
  position: relative;
  min-height: 142px;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
  transition: background .18s ease;
}

.corporate-strip div::before {
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  height: 3px;
  background: var(--gold);
  content: "";
  opacity: .78;
}

.corporate-strip div:hover {
  background: #faf8f2;
}

.corporate-strip small {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
}

.corporate-strip div:last-child {
  border-right: 0;
}

.corporate-strip strong {
  display: block;
  margin-bottom: 9px;
  color: var(--dark);
  font-size: 1.34rem;
  line-height: 1.1;
}

.corporate-strip span {
  color: var(--muted);
}

.section {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto 112px;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.competence-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, 1.08fr);
  gap: 72px;
}

.competence-text {
  color: var(--muted);
  font-size: 1.08rem;
}

.competence-text p:last-child {
  margin-bottom: 0;
}

.assurance-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.assurance-list li {
  display: grid;
  grid-template-columns: minmax(190px, .42fr) minmax(0, .58fr);
  gap: 28px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.assurance-list strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.assurance-list span {
  color: var(--muted);
}

.dark-feature {
  margin-bottom: 112px;
  padding: 88px 20px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(212, 160, 74, .12), rgba(212, 160, 74, 0) 34%),
    linear-gradient(135deg, #707a7d, #566164);
}

.dark-feature-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 56px;
  width: min(1220px, 100%);
  margin: 0 auto;
  align-items: center;
}

.dark-feature-media {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
}

.dark-feature-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
}

.dark-feature-copy p:not(.eyebrow),
.dark-feature-copy li {
  color: rgba(255, 255, 255, .78);
}

.dark-feature-copy ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.dark-feature-copy li {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.section-heading {
  width: min(850px, 100%);
  margin-bottom: 36px;
}

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

.service-grid article,
.method-list li,
.imprint-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-grid article {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-grid article::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 3px;
  background: var(--gold);
  content: "";
  opacity: .82;
}

.service-grid article:hover {
  border-color: rgba(191, 32, 47, .24);
  box-shadow: 0 24px 64px rgba(31, 38, 41, .13);
  transform: translateY(-3px);
}

.service-grid span,
.method-list span {
  display: inline-flex;
  min-width: 42px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--red);
  background: rgba(191, 32, 47, .08);
  border-radius: 999px;
  font-weight: 900;
}

.service-grid p,
.method-list p,
.project-card p,
.practice-card p,
.imprint-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.analysis-section {
  margin-bottom: 112px;
  padding: 88px max(20px, calc((100% - 1220px) / 2));
  background:
    linear-gradient(135deg, rgba(212, 160, 74, .08), rgba(212, 160, 74, 0) 36%),
    #edf0ed;
  border-top: 1px solid rgba(31, 38, 41, .08);
  border-bottom: 1px solid rgba(31, 38, 41, .08);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.analysis-inner {
  width: min(1220px, 100%);
}

.analysis-intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  gap: 10px 56px;
  align-items: end;
  margin-bottom: 38px;
}

.analysis-intro > * {
  min-width: 0;
}

.analysis-intro .eyebrow,
.analysis-intro h2 {
  grid-column: 1;
}

.analysis-intro h2 {
  margin-bottom: 0;
  overflow-wrap: anywhere;
}

.analysis-intro p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.analysis-steps article,
.package-grid article,
.analysis-bottom aside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.analysis-steps article {
  position: relative;
  min-height: 310px;
  padding: 24px;
  overflow: hidden;
}

.analysis-steps article::before,
.package-grid article::before,
.analysis-bottom aside::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 3px;
  background: var(--gold);
  content: "";
}

.analysis-steps span {
  display: inline-flex;
  min-width: 40px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--red);
  background: rgba(191, 32, 47, .08);
  border-radius: 999px;
  font-weight: 900;
}

.analysis-steps ul,
.extras-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.analysis-steps li {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.45;
}

.analysis-steps li::before {
  color: var(--gold);
  content: "• ";
  font-weight: 900;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.package-grid article {
  position: relative;
  min-height: 210px;
  padding: 28px;
}

.package-grid article.is-recommended {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(212, 160, 74, .16), rgba(212, 160, 74, 0) 42%),
    linear-gradient(135deg, #707a7d, #566164);
  border-color: rgba(255, 255, 255, .18);
}

.package-grid small {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: var(--red);
  background: rgba(191, 32, 47, .08);
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-grid .is-recommended small {
  color: #fff;
  background: rgba(255, 255, 255, .16);
}

.package-grid h3 {
  min-height: 60px;
}

.package-grid strong {
  display: block;
  color: var(--red);
  font-size: 1.7rem;
  line-height: 1.1;
}

.package-grid .is-recommended strong {
  color: #fff;
}

.package-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.package-grid .is-recommended p {
  color: rgba(255, 255, 255, .78);
}

.analysis-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .65fr);
  gap: 16px;
  margin-top: 16px;
}

.analysis-bottom > div {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.extras-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 12px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.extras-list li:last-child {
  border-bottom: 0;
}

.extras-list strong {
  color: var(--ink);
  white-space: nowrap;
}

.analysis-bottom aside {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 28px;
}

.analysis-bottom aside p:not(.eyebrow) {
  color: var(--muted);
}

.practice-section {
  margin-bottom: 112px;
  padding: 88px max(20px, calc((100% - 1220px) / 2));
  background: #e9ede9;
}

.practice-inner {
  width: min(1220px, 100%);
}

.practice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, .72fr);
  gap: 16px;
}

.practice-card {
  position: relative;
  min-height: 308px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
}

.practice-card.is-large {
  grid-row: span 2;
  min-height: 632px;
}

.practice-card img {
  width: 100%;
  height: 100%;
  min-height: 308px;
  object-fit: cover;
  opacity: .88;
}

.practice-card.is-large img {
  min-height: 632px;
}

.practice-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(73, 83, 86, .72), rgba(73, 83, 86, .05) 62%);
}

.practice-card div {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  color: #fff;
}

.practice-card p {
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.practice-card h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.project-showcase {
  margin-bottom: 112px;
  padding: 88px max(20px, calc((100% - 1220px) / 2));
  background: var(--surface);
  border-top: 1px solid rgba(31, 38, 41, .08);
  border-bottom: 1px solid rgba(31, 38, 41, .08);
}

.project-heading {
  width: min(850px, 100%);
  margin-bottom: 36px;
}

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

.project-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}

.project-card:hover {
  box-shadow: 0 26px 72px rgba(31, 38, 41, .18);
  transform: translateY(-3px);
}

.project-card.is-wide {
  grid-column: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: .86;
}

.project-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(73, 83, 86, .68), rgba(73, 83, 86, .05) 62%);
}

.project-card div {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  color: #fff;
}

.project-card p {
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 0;
  font-size: 1.6rem;
}

.developer-projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.developer-projects a {
  display: grid;
  gap: 7px;
  min-height: 132px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(212, 160, 74, .12), rgba(212, 160, 74, 0) 42%),
    linear-gradient(135deg, #707a7d, #566164);
  border-radius: 8px;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.developer-projects a:hover,
.developer-projects a:focus-visible {
  background: var(--red);
  transform: translateY(-2px);
}

.developer-projects span,
.developer-projects small {
  color: rgba(255, 255, 255, .74);
  font-weight: 800;
  text-transform: uppercase;
}

.developer-projects strong {
  font-size: 1.55rem;
  line-height: 1.1;
}

.developer-projects small {
  text-transform: none;
}

.reference-section {
  margin-bottom: 112px;
  padding: 88px max(20px, calc((100% - 1220px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(212, 160, 74, .12), rgba(212, 160, 74, 0) 34%),
    linear-gradient(135deg, #707a7d, #566164);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.reference-inner {
  width: min(1220px, 100%);
}

.reference-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, .72fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 36px;
}

.reference-copy {
  width: min(760px, 100%);
}

.reference-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .76);
  font-size: 1.08rem;
}

.reference-section .eyebrow {
  color: var(--gold);
}

.reference-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
}

.reference-metrics div {
  min-height: 126px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.reference-metrics div:last-child {
  border-right: 0;
}

.reference-metrics strong,
.reference-metrics span {
  display: block;
}

.reference-metrics strong {
  color: #fff;
  font-size: 2.35rem;
  line-height: 1;
}

.reference-metrics span {
  margin-top: 10px;
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
  font-weight: 800;
}

.reference-groups {
  display: grid;
  gap: 12px;
}

.reference-groups details {
  overflow: hidden;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
}

.reference-groups summary {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 64px 22px 26px;
  cursor: pointer;
  list-style: none;
}

.reference-groups summary::-webkit-details-marker {
  display: none;
}

.reference-groups summary::after {
  position: absolute;
  top: 50%;
  right: 26px;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--red);
  border: 1px solid rgba(191, 32, 47, .26);
  border-radius: 999px;
  content: "+";
  font-weight: 900;
  transform: translateY(-50%);
}

.reference-groups details[open] summary::after {
  content: "-";
}

.reference-groups summary span {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 850;
}

.reference-groups summary small {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.reference-list li {
  display: grid;
  grid-template-columns: minmax(128px, .38fr) minmax(0, .62fr);
  gap: 14px;
  padding: 14px 18px 14px 0;
  border-bottom: 1px solid rgba(31, 38, 41, .1);
}

.reference-list li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.reference-list strong {
  color: var(--red);
  font-size: .93rem;
  line-height: 1.35;
}

.reference-list span {
  color: var(--muted);
  line-height: 1.42;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.method-list li {
  min-height: 260px;
  padding: 28px;
  border-top: 0;
  border-left: 0;
  border-radius: 0;
}

.contact-section {
  padding: 88px 20px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(212, 160, 74, .12), rgba(212, 160, 74, 0) 36%),
    linear-gradient(135deg, #6f7778, #535d60);
  border-top: 1px solid rgba(255, 255, 255, .14);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .74fr);
  gap: 70px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem;
}

address {
  margin-top: 32px;
  font-style: normal;
  color: rgba(255, 255, 255, .86);
}

address a {
  text-decoration-color: rgba(255, 255, 255, .4);
  text-underline-offset: 4px;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-badges span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  color: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  color: var(--ink);
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8faf9;
  border: 1px solid rgba(31, 38, 41, .18);
  border-radius: 8px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(191, 32, 47, .12);
}

.contact-form button {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.imprint-section {
  padding-top: 82px;
  border-top: 1px solid var(--line);
}

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

.imprint-grid article {
  min-height: 188px;
  padding: 24px;
}

.imprint-grid a {
  text-underline-offset: 4px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(220px, .8fr) auto;
  align-items: end;
  gap: 34px;
  padding: 42px max(20px, calc((100% - 1220px) / 2));
  color: rgba(255, 255, 255, .76);
  background: #4a5356;
}

.footer-brand img {
  width: min(260px, 46vw);
  padding: 7px 10px;
  background: #fff;
  border-radius: 6px;
}

.footer-brand p,
.footer-copy {
  margin: 0;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .66);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-nav a,
.site-footer a {
  color: rgba(255, 255, 255, .78);
  text-decoration-color: rgba(255, 255, 255, .42);
  text-underline-offset: 4px;
}

.footer-copy {
  justify-self: end;
  white-space: nowrap;
}

@media (max-width: 1060px) {
  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  .site-nav {
    gap: 18px;
  }

  .service-grid,
  .analysis-steps,
  .project-grid,
  .practice-grid,
  .imprint-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-copy {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .practice-card.is-large {
    grid-column: span 2;
    grid-row: auto;
    min-height: 420px;
  }

  .practice-card.is-large img {
    min-height: 420px;
  }

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

  .corporate-strip div:nth-child(2n) {
    border-right: 0;
  }

  .corporate-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .analysis-intro,
  .analysis-bottom {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .analysis-intro .eyebrow,
  .analysis-intro h2,
  .analysis-intro p:not(.eyebrow) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 840px) {
  :root {
    --header-height: 78px;
  }

  .brand {
    width: min(250px, 64vw);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px 20px 20px;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 50px rgba(31, 38, 41, .16);
    transform: translateY(-130%);
    transition: transform .2s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .hero {
    min-height: 560px;
  }

  .hero-inner {
    bottom: 46px;
  }

  .hero-title {
    font-size: 3.4rem;
  }

  .competence-section,
  .dark-feature-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .competence-section,
  .dark-feature-inner,
  .contact-inner {
    gap: 34px;
  }

  .section,
  .dark-feature,
  .analysis-section,
  .practice-section,
  .project-showcase,
  .reference-section {
    margin-bottom: 82px;
  }

  .dark-feature,
  .analysis-section,
  .practice-section,
  .project-showcase,
  .reference-section,
  .contact-section {
    padding-block: 64px;
  }

  .reference-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .reference-list li:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(31, 38, 41, .1);
  }

  .reference-list li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .hero-image {
    position: absolute;
    inset: 0;
  }

  .hero-inner {
    position: relative;
    bottom: auto;
    left: auto;
    width: min(100% - 40px, 760px);
    margin-inline: auto;
    padding-block: 52px 76px;
  }

  h1 {
    font-size: 2.55rem;
    line-height: 1.04;
  }

  .hero-title {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 22px;
    padding-top: 16px;
  }

  .hero-proof span,
  .hero-proof span + span {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .hero-proof span:first-child {
    padding-top: 0;
  }

  .hero-proof span:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .assurance-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .corporate-strip,
  .section {
    width: min(100% - 28px, 1220px);
  }

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

  .corporate-strip div,
  .corporate-strip div:nth-child(2n) {
    border-right: 0;
  }

  .corporate-strip div,
  .corporate-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .corporate-strip div:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .analysis-steps,
  .package-grid,
  .project-grid,
  .practice-grid,
  .developer-projects,
  .reference-metrics,
  .method-list,
  .imprint-grid {
    grid-template-columns: 1fr;
  }

  .project-card.is-wide {
    grid-column: auto;
  }

  .practice-card.is-large {
    grid-column: auto;
  }

  .reference-groups summary {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 58px;
  }

  .reference-metrics div {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .reference-metrics div:last-child {
    border-bottom: 0;
  }

  .reference-list li {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-right: 0;
  }

  .extras-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .extras-list strong {
    white-space: normal;
  }

  .service-grid article,
  .analysis-steps article,
  .package-grid article,
  .analysis-bottom > div,
  .analysis-bottom aside,
  .method-list li,
  .imprint-grid article,
  .contact-form {
    padding: 22px;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-copy {
    justify-self: start;
    white-space: normal;
  }
}
