:root {
  --ink: #071018;
  --night: #0c1721;
  --panel: #111f2b;
  --steel: #6f7d86;
  --line: #d8dde1;
  --paper: #f5f7f8;
  --white: #ffffff;
  --blue: #0066cc;
  --blue-strong: #004ea3;
  --cyan: #7fc7e8;
  --signal: #d98d2b;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 76px;
  padding: 14px clamp(10px, 1.6vw, 22px);
  color: var(--white);
  background: rgba(7, 16, 24, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: max-content;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  isolation: isolate;
  padding: 4px 4px 3px 0;
  overflow: visible;
  color: transparent;
  background: linear-gradient(35deg, var(--white) 0 58%, #bfeaff 76%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.brand-mark::before {
  inset: 4px -8px 1px -5px;
  z-index: -1;
  opacity: 0.54;
  background:
    radial-gradient(circle at 10% 75%, rgba(255, 255, 255, 0.78) 0 1.5px, transparent 2px),
    radial-gradient(circle at 82% 24%, rgba(127, 199, 232, 0.9) 0 1.5px, transparent 2px),
    repeating-linear-gradient(0deg, transparent 0 10px, rgba(255, 255, 255, 0.34) 11px 12px, transparent 13px 23px),
    repeating-linear-gradient(90deg, transparent 0 15px, rgba(127, 199, 232, 0.4) 16px 17px, transparent 18px 31px);
  -webkit-mask-image: linear-gradient(35deg, rgba(0, 0, 0, 0.16), #000 28%, #000 72%, transparent 100%);
  mask-image: linear-gradient(35deg, rgba(0, 0, 0, 0.16), #000 28%, #000 72%, transparent 100%);
}

.brand-mark::after {
  left: -5px;
  right: -9px;
  top: 13%;
  bottom: 10%;
  z-index: 2;
  opacity: 0.24;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(127, 199, 232, 0.88)) 2px 32% / 80% 1px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.52), rgba(127, 199, 232, 0.68)) 0 69% / 58% 1px no-repeat,
    linear-gradient(135deg, transparent 0 49%, rgba(127, 199, 232, 0.72) 49.5% 50%, transparent 50.5% 100%);
  mix-blend-mode: screen;
}

.brand-copy strong {
  display: block;
  font-size: 0.82rem;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand-copy small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--white);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta {
  color: var(--cyan);
  background: rgba(0, 102, 204, 0.08);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.button-primary:hover {
  background: var(--blue-strong);
  border-color: var(--blue-strong);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(720px, calc(100vh - 76px));
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 16, 24, 0.96) 0%, rgba(7, 16, 24, 0.82) 36%, rgba(7, 16, 24, 0.22) 74%),
    radial-gradient(circle at 82% 54%, rgba(0, 102, 204, 0.35), transparent 32%),
    var(--night);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-visual {
  position: absolute;
  right: max(-150px, -9vw);
  bottom: clamp(12px, 4vw, 54px);
  width: min(62vw, 880px);
  opacity: 0.92;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.34));
}

.hero-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 64% 40%, rgba(0, 102, 204, 0.24), transparent 35%),
    var(--night);
  -webkit-mask-image:
    radial-gradient(circle at 60% 48%, #000 0 43%, rgba(0, 0, 0, 0.82) 56%, transparent 78%),
    linear-gradient(90deg, transparent 0, #000 18%, #000 100%);
  mask-image:
    radial-gradient(circle at 60% 48%, #000 0 43%, rgba(0, 0, 0, 0.82) 56%, transparent 78%),
    linear-gradient(90deg, transparent 0, #000 18%, #000 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 16, 24, 0.78), rgba(7, 16, 24, 0.4) 40%, rgba(7, 16, 24, 0.14)),
    radial-gradient(circle at 52% 44%, transparent 0 28%, rgba(7, 16, 24, 0.6) 72%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(7, 16, 24, 0.6), transparent 48%),
    radial-gradient(circle at 60% 46%, rgba(0, 102, 204, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(7, 16, 24, 0.14), rgba(7, 16, 24, 0.66));
  pointer-events: none;
}

.hero-photo {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 46%;
  opacity: 0.94;
  filter: saturate(0.72) contrast(1.22) brightness(0.76);
  transform: scale(1.08);
  animation: heroPhotoMove 11s ease-in-out infinite alternate;
}

.hero-trace {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0.52;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-grid-line,
.hero-path,
.hero-measure {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.hero-grid-line {
  stroke: rgba(102, 240, 255, 0.16);
  stroke-width: 1;
}

.hero-path {
  stroke: rgba(102, 240, 255, 0.72);
  stroke-width: 2;
  stroke-dasharray: 12 13;
  animation: heroPathFlow 2.6s linear infinite;
}

.hero-measure {
  stroke: rgba(255, 255, 255, 0.62);
  stroke-width: 2;
  stroke-dasharray: 10 10;
  animation: heroMeasurePulse 4.2s ease-in-out infinite;
}

@keyframes heroPhotoMove {
  from {
    transform: scale(1.04) translate3d(-1.2%, 0, 0);
  }

  to {
    transform: scale(1.11) translate3d(1.8%, -1.6%, 0);
  }
}

@keyframes heroPathFlow {
  to {
    stroke-dashoffset: -76;
  }
}

@keyframes heroMeasurePulse {
  0%,
  100% {
    opacity: 0.38;
  }

  50% {
    opacity: 0.92;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo,
  .hero-path,
  .hero-measure {
    animation: none;
  }
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 5rem;
  line-height: 0.93;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
}

h1 span {
  display: block;
}

.headline-long {
  font-size: 0.78em;
}

.hero-copy {
  max-width: 460px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip article {
  min-height: 142px;
  padding: 28px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  color: var(--blue);
  border: 1px solid rgba(0, 102, 204, 0.35);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 900;
}

.trust-strip h2,
.process-list h3 {
  margin-bottom: 6px;
  font-size: 0.88rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.trust-strip p,
.process-list p {
  margin-bottom: 0;
  color: #53606a;
  font-size: 0.88rem;
}

.section {
  padding: clamp(44px, 6vw, 76px) clamp(20px, 5vw, 64px);
}

.section-dark {
  color: var(--white);
  background: linear-gradient(180deg, var(--night), #0a121a);
}

.section-light {
  background: var(--paper);
}

.section-head {
  width: min(100%, var(--max));
  margin: 0 auto 30px;
}

.section-head.compact {
  margin-bottom: 24px;
}

.section-head.with-action {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
}

.section-head h2 {
  max-width: 790px;
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.section-head p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
}

.section-light .section-head p:not(.eyebrow) {
  color: #53606a;
}

.service-grid,
.reference-grid {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  gap: 18px;
}

.partner-grid,
.why-grid,
.cost-panel {
  width: min(100%, var(--max));
  margin: 0 auto;
}

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

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

.service-card,
.reference-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.service-card-featured {
  grid-column: span 2;
  border-color: rgba(127, 199, 232, 0.36);
  background:
    linear-gradient(135deg, rgba(0, 102, 204, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
}

.service-card img,
.reference-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #0d1822;
}

.service-card-featured img {
  aspect-ratio: 8 / 3;
}

.service-card h3,
.reference-card h3 {
  margin: 16px 16px 6px;
  font-size: 0.96rem;
  text-transform: uppercase;
}

.service-card-featured h3 {
  font-size: 1.12rem;
}

.service-card p,
.reference-card p {
  margin: 0 16px 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.team-section {
  background:
    linear-gradient(180deg, #0a121a, var(--night));
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.partner-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(0, 102, 204, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.partner-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.partner-card p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.partner-card a {
  display: inline-flex;
  margin-top: 6px;
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.why-grid article {
  padding: 24px;
  border-left: 3px solid var(--signal);
  background: rgba(255, 255, 255, 0.045);
}

.why-grid h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  text-transform: uppercase;
}

.why-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cost-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1.05fr);
  gap: 24px;
  margin-bottom: 28px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(127, 199, 232, 0.34);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(0, 102, 204, 0.18), rgba(217, 141, 43, 0.08)),
    rgba(255, 255, 255, 0.045);
}

.cost-panel strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.cost-panel p,
.cost-panel li,
.cost-panel small {
  color: rgba(255, 255, 255, 0.74);
}

.cost-panel p {
  margin-bottom: 0;
}

.cost-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.challenge-box {
  grid-column: 1 / -1;
  padding: 18px 20px;
  border: 1px solid rgba(217, 141, 43, 0.42);
  border-radius: 4px;
  background: rgba(217, 141, 43, 0.1);
}

.challenge-box span {
  display: block;
  margin-bottom: 6px;
  color: var(--signal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.challenge-box p {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.82);
}

.cost-panel small {
  grid-column: 1 / -1;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 24px 0 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 41px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: #b7c1c9;
}

.process-list li {
  position: relative;
  padding: 0 16px;
  text-align: center;
}

.process-list span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  width: min(100%, var(--max));
  margin: 0 auto;
  background:
    linear-gradient(90deg, rgba(245, 247, 248, 0.98), rgba(245, 247, 248, 0.92)),
    repeating-linear-gradient(135deg, rgba(0, 102, 204, 0.06) 0 1px, transparent 1px 16px);
}

.inquiry h2 {
  max-width: 480px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.inquiry-copy p {
  color: #53606a;
}

.quote-path {
  margin: 22px 0 0;
  padding: 16px;
  border: 1px solid rgba(0, 102, 204, 0.2);
  border-left: 3px solid var(--blue);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
}

.quote-path span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-path p {
  margin-bottom: 0;
}

dl {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
}

dt {
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 3px 0 0;
  color: #53606a;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-content: start;
}

label {
  display: grid;
  gap: 7px;
  color: #2a343c;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfd6dc;
  border-radius: 3px;
  font: inherit;
  text-transform: none;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.upload {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed #aeb8c0;
  border-radius: 4px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.footer-meta {
  text-align: right;
  font-size: 0.82rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

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

.legal-main {
  min-height: calc(100vh - 190px);
  padding: 126px clamp(18px, 5vw, 64px) 72px;
  background:
    linear-gradient(90deg, rgba(7, 16, 24, 0.05), transparent 32%),
    var(--paper);
}

.legal-content {
  width: min(840px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(7, 16, 24, 0.08);
}

.legal-content h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-content h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
}

.legal-content p {
  max-width: 74ch;
  margin: 0 0 16px;
  color: #34414a;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(780px, calc(100vw - 36px));
  padding: 18px;
  color: var(--white);
  background: rgba(7, 16, 24, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.cookie-consent strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
}

.cookie-consent p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.cookie-consent a {
  display: inline-block;
  margin-top: 8px;
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-consent button {
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
  }

  .hero-visual {
    width: 72vw;
    opacity: 0.38;
  }

  .trust-strip,
  .service-grid,
  .reference-grid,
  .partner-grid,
  .why-grid,
  .cost-panel,
  .process-list,
  .inquiry,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .process-list {
    gap: 22px 0;
  }

  .process-list::before {
    display: none;
  }

  .section-head.with-action {
    align-items: start;
    flex-direction: column;
  }

  .site-footer {
    align-items: start;
  }

  .footer-meta {
    grid-column: 1 / -1;
    text-align: left;
  }

  .legal-links {
    justify-content: flex-start;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand-mark {
    font-size: 2rem;
  }

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

  .brand-copy small {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .hero {
    padding: 62px 18px 54px;
  }

  .hero-visual {
    right: -110px;
    width: 118vw;
    opacity: 0.2;
  }

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

  .headline-long {
    font-size: 0.7em;
  }

  .trust-strip,
  .service-grid,
  .reference-grid,
  .partner-grid,
  .why-grid,
  .cost-panel,
  .process-list,
  .inquiry,
  .inquiry-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .cost-panel small {
    grid-column: auto;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .inquiry {
    padding-left: 18px;
    padding-right: 18px;
  }

  .legal-main {
    padding: 92px 16px 48px;
  }

  .legal-content {
    padding: 22px;
  }

  .cookie-consent {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .cookie-consent__actions {
    align-items: stretch;
    flex-direction: column;
  }
}
