:root {
  --ink: #202326;
  --muted: #66717b;
  --line: #e6ebef;
  --paper: #f6f8fa;
  --white: #ffffff;
  --navy: #0a3a5a;
  --navy-deep: #07304a;
  --blue: #127fbd;
  --aqua: #19a8c2;
  --gold: #ffb866;
  --green: #2fb985;
  --shadow: 0 22px 60px rgba(30, 56, 76, 0.16);
  --soft-shadow: 0 16px 38px rgba(30, 56, 76, 0.1);
  --radius: 8px;
  --hero-radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: #fff;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  background: #fff;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: min(100% - 72px, 1380px);
  margin: 34px auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(43, 84, 114, 0.16);
}

.container {
  width: min(100% - 72px, var(--container));
  margin: 0 auto;
}

.topbar {
  display: none;
}

.site-header {
  position: absolute;
  top: 30px;
  right: 48px;
  left: 48px;
  z-index: 20;
}

main {
  position: relative;
  z-index: 2;
}

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 54px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 180px;
  min-height: 46px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.brand img {
  width: 150px;
  height: auto;
}

.site-menu {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.site-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 750;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.site-menu a:hover,
.site-menu a.is-active,
.site-menu a.is-page-active {
  color: #10212b;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 142px;
  min-height: 36px;
  padding: 0;
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 160ms ease, border-color 160ms ease;
}

.language-switcher::after {
  position: absolute;
  top: 50%;
  right: 12px;
  z-index: 3;
  width: 7px;
  height: 7px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  pointer-events: none;
  transform: translateY(-64%) rotate(45deg);
}

.language-switcher:hover,
.language-switcher:focus-within {
  color: #10212b;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.92);
}

.language-switcher select {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0 30px 0 45px;
  color: inherit;
  font-size: 13px;
  font-weight: 850;
  border: 0;
  background: transparent;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.language-switcher option {
  color: var(--ink);
  background: #fff;
}

.language-switcher__flag {
  position: absolute;
  top: 50%;
  left: 12px;
  z-index: 1;
  width: 24px;
  height: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(18, 36, 50, 0.08);
  pointer-events: none;
  transform: translateY(-50%);
}

.language-switcher__flag--pl {
  background: linear-gradient(180deg, #fff 0 50%, #dc143c 50% 100%);
}

.language-switcher__flag--en {
  background: #012169 url("./assets/flag-gb.svg") center / cover no-repeat;
}

.language-switcher__flag--de {
  background: linear-gradient(180deg, #000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.nowrap {
  display: inline-block;
  white-space: nowrap;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 850;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.header-cta {
  color: #14212a;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(18, 36, 50, 0.14);
}

.btn--primary {
  color: #13212a;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 36, 50, 0.16);
}

.btn--accent {
  color: #13212a;
  background: var(--gold);
}

.btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.36);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(18, 36, 50, 0.14);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #14212a;
  border-radius: 2px;
}

.hero {
  padding: 18px 18px 72px;
  color: #fff;
  background: #fff;
}

.hero__panel {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--hero-radius);
  background:
    linear-gradient(90deg, rgba(4, 34, 49, 0.74), rgba(4, 34, 49, 0.32) 48%, rgba(4, 34, 49, 0.16)),
    linear-gradient(180deg, rgba(3, 18, 25, 0.1), rgba(3, 18, 25, 0.42)),
    url("./assets/translandcontainer-1536x1018.webp") center / cover;
}

.hero__panel::after {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(5, 26, 37, 0.34));
}

#scene {
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  opacity: 0.82;
  filter: saturate(1.08) contrast(1.02);
  pointer-events: none;
}

.hero__content,
.hero__trust,
.hero__scroll {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 650px;
  padding: 128px 64px 66px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.hero .eyebrow,
.feature-card .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: 66px;
  line-height: 1;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 620px;
  margin-top: 72px;
}

.service-pills span {
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.hero__trust {
  position: absolute;
  right: 64px;
  top: 190px;
  width: 178px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(3, 22, 32, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__trust span,
.hero__trust strong,
.hero__trust small {
  display: block;
}

.hero__trust span {
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.hero__trust strong {
  margin-top: 6px;
  font-size: 13px;
}

.hero__trust small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.35;
}

.hero__scroll {
  position: absolute;
  right: 64px;
  bottom: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #fff;
  font-size: 22px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.hero__stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100% - 140px, 1060px);
  margin: -44px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(223, 230, 235, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.hero__stats div {
  min-width: 0;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

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

.hero__stats strong {
  display: block;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.hero__stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.subpage-hero {
  padding: 18px 18px 0;
  color: #fff;
  background: #fff;
}

.subpage-hero__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  min-height: 480px;
  overflow: hidden;
  padding: 128px 64px 58px;
  border-radius: var(--hero-radius);
  background:
    linear-gradient(90deg, rgba(4, 34, 49, 0.8), rgba(4, 34, 49, 0.46) 56%, rgba(4, 34, 49, 0.28)),
    url("./assets/translandcontainer-1536x1018.webp") center / cover;
}

.subpage-hero--career .subpage-hero__panel {
  background:
    linear-gradient(90deg, rgba(4, 34, 49, 0.82), rgba(4, 34, 49, 0.48) 58%, rgba(4, 34, 49, 0.28)),
    url("./assets/road-680x658.webp") center / cover;
}

.subpage-hero__panel::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 18, 25, 0), rgba(3, 18, 25, 0.3));
}

.subpage-hero__content,
.subpage-hero__stats {
  position: relative;
  z-index: 1;
}

.subpage-hero .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.subpage-hero__content {
  max-width: 720px;
}

.subpage-hero__content h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

.subpage-hero__content p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.68;
}

.subpage-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(128px, 1fr));
  gap: 10px;
  min-width: 300px;
}

.subpage-hero__stats div {
  padding: 18px;
  background: rgba(3, 22, 32, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.subpage-hero__stats strong,
.subpage-hero__stats span {
  display: block;
}

.subpage-hero__stats strong {
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.subpage-hero__stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
}

.section {
  padding: 86px 0;
}

.content-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66) 0%, rgba(255, 255, 255, 0.74) 44%, rgba(255, 255, 255, 0.7) 100%);
}

.content-stage > .section,
.content-stage > .site-footer {
  position: relative;
  z-index: 1;
}

.section-heading,
.intro-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.intro-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.intro-heading h2,
.split__content h2,
.career-intro h2,
.contact-layout h2,
.reviews-summary h2 {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p:last-child,
.split__content p,
.career-intro p,
.contact-layout p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.section--intro,
.section--light,
.section--reviews,
.section--partners,
.section--team,
.section--career,
.section--contact,
.section--split {
  background: transparent;
}

.feature-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--hero-radius);
  box-shadow: var(--soft-shadow);
}

.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 34, 49, 0.72), rgba(4, 34, 49, 0.08) 56%),
    linear-gradient(180deg, rgba(4, 34, 49, 0.04), rgba(4, 34, 49, 0.42));
}

.feature-card__copy {
  position: relative;
  z-index: 1;
  max-width: 470px;
  padding: 54px;
  color: #fff;
}

.feature-card__copy h3 {
  margin: 0;
  color: #fff;
  font-size: 38px;
  line-height: 1.12;
}

.feature-card__copy p:not(.eyebrow) {
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

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

.service-card {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--soft-shadow);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.service-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(5, 26, 37, 0.04), rgba(5, 26, 37, 0.78));
}

.service-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 24px;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card h3,
.capability-grid h3,
.process-list h3,
.strengths-grid h3,
.career-details h3,
.team-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
}

.service-card h3 {
  color: #fff;
}

.service-card p,
.capability-grid p,
.process-list p,
.strengths-grid p,
.career-details li,
.team-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-card p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.capability-grid div {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.capability-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--aqua);
  font-weight: 900;
}

.section--process {
  background: transparent;
}

.section--process .section-heading h2 {
  color: var(--ink);
}

.section--process .eyebrow,
.section--dark .eyebrow {
  color: var(--gold);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
  border-radius: var(--hero-radius);
}

.process-list article {
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.process-list article:last-child {
  border-right: 0;
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: #13212a;
  font-weight: 900;
  background: #fff;
  border-radius: 50%;
}

.process-list h3,
.strengths-grid h3 {
  color: #fff;
}

.process-list p,
.strengths-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: center;
}

.split__media {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  align-items: end;
}

.split__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.split__media img:first-child {
  aspect-ratio: 0.86;
  object-fit: cover;
}

.split__media img:last-child {
  aspect-ratio: 0.8;
  object-fit: cover;
  margin-bottom: 46px;
}

.split__content p {
  margin: 18px 0 0;
}

.signature {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.signature span,
.signature small {
  display: block;
}

.signature span {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.signature small {
  margin-top: 4px;
  color: var(--muted);
}

.section--dark {
  margin: 0 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7, 48, 74, 0.96), rgba(7, 48, 74, 0.98));
  border-radius: var(--hero-radius);
}

@media (min-width: 781px) {
  .section--dark {
    background:
      linear-gradient(180deg, rgba(7, 48, 74, 0.96), rgba(7, 48, 74, 0.98)),
      url("./assets/slide1-1536x600.webp") center / cover;
  }
}

.section--dark .section-heading h2 {
  color: #fff;
}

.section-heading--dark p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.strengths-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 42px;
  align-items: start;
}

.rating {
  margin: 26px 0 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(230, 235, 239, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.rating strong {
  display: block;
  color: var(--blue);
  font-size: 58px;
  line-height: 1;
}

.rating span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 850;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--blue);
  font-weight: 900;
  border-bottom: 2px solid rgba(18, 127, 189, 0.24);
}

.reviews-widget {
  --review-halo: #127fbd;
  --review-card-w: 360px;
  --review-card-h: 318px;
  --review-stage-h: 430px;
  min-width: 0;
  padding: 16px 16px 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 50% 52%, color-mix(in srgb, var(--review-halo) 16%, transparent), transparent 35%),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(230, 235, 239, 0.88);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.reviews-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  color: #22323e;
  font-size: 13px;
  font-weight: 900;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.reviews-carousel {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.reviews-carousel::before {
  position: absolute;
  top: 48%;
  left: 50%;
  z-index: 0;
  width: min(72%, 440px);
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(closest-side, color-mix(in srgb, var(--review-halo) 42%, transparent), transparent 72%);
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.42;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: background 320ms ease;
}

.reviews-track {
  position: relative;
  z-index: 1;
  display: grid;
  height: var(--review-stage-h);
  min-height: var(--review-stage-h);
  place-items: center;
  overflow: hidden;
  cursor: grab;
  outline: none;
  perspective: 1380px;
  perspective-origin: 50% 46%;
  touch-action: pan-y;
  user-select: none;
}

.reviews-track.is-dragging {
  cursor: grabbing;
}

.reviews-track:focus-visible {
  outline: 3px solid rgba(18, 127, 189, 0.28);
  outline-offset: -3px;
}

.review-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  align-content: start;
  gap: 16px;
  width: var(--review-card-w);
  min-height: var(--review-card-h);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 250, 0.96));
  border: 1px solid rgba(230, 235, 239, 0.96);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(30, 56, 76, 0.08);
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  transition: box-shadow 180ms ease, border-color 180ms ease;
  will-change: transform, opacity, filter;
  -webkit-tap-highlight-color: transparent;
}

.review-card.is-active {
  border-color: color-mix(in srgb, var(--review-halo) 34%, var(--line));
  box-shadow:
    0 26px 58px rgba(30, 56, 76, 0.14),
    0 0 0 1px color-mix(in srgb, var(--review-halo) 18%, transparent),
    0 0 48px color-mix(in srgb, var(--review-halo) 18%, transparent);
}

.review-card__top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--navy-deep));
  border-radius: 50%;
}

.review-card strong,
.review-card small {
  display: block;
}

.review-card strong {
  color: var(--ink);
  font-size: 18px;
}

.review-card small {
  margin-top: 5px;
  color: var(--muted);
}

.review-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.stars {
  color: #f6a600;
  font-size: 18px;
  letter-spacing: 0;
}

.review-dots {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin-top: 4px;
}

.review-dots button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.review-dots button::before {
  width: 8px;
  height: 8px;
  border-radius: inherit;
  background: #b9c8d2;
  content: "";
  transition: width 180ms ease, background-color 180ms ease;
}

.review-dots button.is-active {
  width: 36px;
}

.review-dots button.is-active::before {
  width: 28px;
  background: var(--blue);
}

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

.carousel-controls {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.carousel-controls button {
  width: 42px;
  height: 42px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(30, 56, 76, 0.1);
}

.carousel-controls button:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.carousel-controls button:disabled {
  color: #8fa0ac;
  background: rgba(255, 255, 255, 0.62);
  cursor: default;
  box-shadow: none;
}

.partner-carousel {
  position: relative;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.partner-strip img {
  width: 100%;
  height: 96px;
  padding: 24px;
  object-fit: contain;
  background: #fff;
  filter: saturate(0.9);
}

.partner-strip:focus-visible {
  outline: 3px solid rgba(18, 127, 189, 0.24);
  outline-offset: 4px;
}

.partner-controls {
  display: none;
}

.team-top {
  display: flex;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.team-top .section-heading {
  margin-bottom: 0;
}

.team-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.team-filters button {
  min-height: 40px;
  padding: 0 14px;
  color: var(--muted);
  font-weight: 900;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.team-filters button.is-active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

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

.team-card {
  min-width: 0;
  min-height: 170px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.team-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.team-card[hidden] {
  display: none;
}

.team-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 900;
  background: var(--navy);
  border-radius: 50%;
}

.team-card h3 {
  font-size: 18px;
}

.team-card p {
  font-size: 14px;
}

.career-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 42px;
}

.career-intro {
  position: sticky;
  top: 32px;
  align-self: start;
}

.career-role {
  display: inline-flex;
  margin-top: 22px;
  padding: 10px 14px;
  color: #13212a;
  font-weight: 900;
  background: var(--gold);
  border-radius: 999px;
}

.career-mail {
  margin-top: 18px;
  color: #fff;
  background: var(--navy);
  box-shadow: var(--soft-shadow);
}

.section--page-team,
.section--page-career {
  padding-top: 96px;
}

.career-details {
  display: grid;
  gap: 14px;
}

.career-details article {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.career-details ul,
.career-details ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.career-details a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--blue);
  font-weight: 900;
}

.legal-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 46px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-cards a {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-cards span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.contact-cards strong {
  color: var(--ink);
  line-height: 1.35;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-form span {
  color: #263541;
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  outline: none;
}

.contact-form input {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 148px;
  resize: vertical;
  padding: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(18, 127, 189, 0.12);
}

.contact-form .btn--primary {
  color: #fff;
  background: var(--navy);
}

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

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  position: relative;
  z-index: 1;
  margin: 0 18px 18px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(135deg, rgba(8, 47, 73, 0.82), rgba(3, 30, 48, 0.78));
  border-radius: var(--hero-radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.18;
}

.footer-cta,
.footer-metrics,
.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 36px 0;
}

.footer-cta .eyebrow {
  color: var(--gold);
}

.footer-cta h2 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1.16;
}

.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-metrics {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 1.2fr;
  gap: 1px;
  overflow: hidden;
  margin-top: 26px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.footer-metrics div,
.footer-metrics a {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.07);
}

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

.footer-metrics strong {
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 20px;
  line-height: 1.15;
}

.footer-metrics span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.34fr 0.82fr 0.82fr 1fr;
  gap: 34px;
  padding: 36px 0 44px;
}

.footer-grid img {
  width: 176px;
  margin-bottom: 18px;
  padding: 10px;
  background: #fff;
  border-radius: var(--radius);
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
  line-height: 1.7;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 17px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 10px 0;
  line-height: 1.45;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 72px, var(--container));
  margin: 0 auto;
  padding: 18px 0 22px;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1120px) {
  .page-shell {
    width: min(100% - 34px, 1380px);
    margin: 18px auto;
    border-radius: 22px;
  }

  .site-header {
    right: 34px;
    left: 34px;
  }

  .navbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-menu,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero__trust {
    display: none;
  }

  .site-menu.is-open {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 5px;
    justify-content: stretch;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius);
    box-shadow: var(--soft-shadow);
  }

  .site-menu.is-open a {
    min-height: 40px;
    color: var(--ink);
    background: var(--paper);
    border-color: var(--line);
  }

  .site-menu.is-open a.is-active,
  .site-menu.is-open a.is-page-active {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
  }

  .site-menu.is-open .language-switcher {
    width: 100%;
    min-height: 44px;
    padding: 0;
    color: var(--ink);
    background: rgba(18, 127, 189, 0.08);
    border-color: var(--line);
  }

  .site-menu.is-open .language-switcher::after {
    right: 20px;
  }

  .site-menu.is-open .language-switcher select {
    width: 100%;
    height: 100%;
    padding: 0 44px 0 74px;
    color: var(--ink);
  }

  .site-menu.is-open .language-switcher__flag {
    left: 28px;
  }

  .subpage-hero__panel {
    grid-template-columns: 1fr;
  }

  .subpage-hero__stats {
    min-width: 0;
    max-width: 430px;
  }

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

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

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

@media (max-width: 780px) {
  .page-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.88);
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    top: 14px;
    right: 14px;
    left: 14px;
  }

  .brand {
    width: 140px;
    min-height: 38px;
    padding: 8px 10px;
  }

  .brand img {
    width: 116px;
  }

  .hero {
    padding: 8px 8px 16px;
  }

  #scene {
    opacity: 0.78;
    filter: saturate(1.16) contrast(1.04);
  }

  .content-stage {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.7) 48%, rgba(255, 255, 255, 0.68) 100%);
  }

  .hero__panel {
    min-height: 456px;
    border-radius: 18px;
    background-position: center top;
  }

  .hero__content {
    max-width: none;
    padding: 96px 22px 28px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 36px;
    line-height: 1;
  }

  .hero__lead {
    max-width: 330px;
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.48;
  }

  .hero__actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 42px;
  }

  .hero__actions .btn--ghost,
  .service-pills,
  .hero__scroll {
    display: none;
  }

  .service-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .service-pills span {
    min-width: 0;
    padding: 8px 10px;
    font-size: 11.5px;
  }

  .hero__trust {
    display: none;
  }

  .hero__stats {
    display: none;
  }

  .subpage-hero {
    padding: 8px 8px 0;
  }

  .subpage-hero__panel {
    min-height: 500px;
    padding: 104px 22px 28px;
    border-radius: 18px;
  }

  .subpage-hero__content h1 {
    font-size: 36px;
    line-height: 1;
  }

  .subpage-hero__content p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.55;
  }

  .subpage-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .subpage-hero__stats div {
    padding: 14px;
  }

  .subpage-hero__stats strong {
    font-size: 30px;
  }

  .subpage-hero__stats span {
    font-size: 12px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading,
  .intro-heading {
    margin-bottom: 26px;
  }

  .section-heading h2,
  .intro-heading h2,
  .split__content h2,
  .career-intro h2,
  .contact-layout h2,
  .reviews-summary h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .section-heading p:last-child,
  .split__content p,
  .career-intro p,
  .contact-layout p {
    font-size: 15px;
    line-height: 1.58;
  }

  .feature-card {
    min-height: 520px;
    border-radius: 18px;
  }

  .feature-card__copy {
    padding: 34px 24px;
  }

  .feature-card__copy h3 {
    font-size: 32px;
  }

  .services-grid,
  .capability-grid,
  .process-list,
  .strengths-grid,
  .reviews-layout,
  .split,
  .career-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .reviews-layout {
    gap: 26px;
  }

  .reviews-summary .eyebrow {
    margin-bottom: 10px;
  }

  .reviews-summary h2 {
    max-width: none;
  }

  .rating {
    margin: 18px 0 12px;
    padding: 18px 20px;
  }

  .rating strong {
    font-size: 46px;
  }

  .rating span {
    margin-top: 6px;
    font-size: 13.5px;
    line-height: 1.35;
  }

  .text-link {
    font-size: 15px;
  }

  .service-card {
    min-height: 280px;
  }

  .reviews-widget {
    --review-card-w: min(calc(100vw - 60px), 320px);
    --review-card-h: 276px;
    --review-stage-h: 318px;
    padding: 12px 10px 14px;
  }

  .reviews-toolbar {
    align-items: center;
    margin-bottom: 8px;
  }

  .reviews-badge {
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }

  .carousel-controls {
    gap: 8px;
  }

  .carousel-controls button {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .review-card {
    gap: 11px;
    padding: 18px;
  }

  .review-card__top {
    gap: 10px;
  }

  .review-avatar {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }

  .review-card strong {
    font-size: 16px;
  }

  .review-card small {
    margin-top: 3px;
    font-size: 12.5px;
  }

  .stars {
    font-size: 16px;
  }

  .review-card p {
    font-size: 14.5px;
    line-height: 1.5;
    -webkit-line-clamp: 4;
  }

  .review-dots {
    margin-top: 0;
  }

  .process-list article {
    min-height: auto;
    border-right: 0;
  }

  .section--dark {
    margin: 0 8px;
    border-radius: 18px;
  }

  .split__media {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .split__media img:last-child {
    margin-bottom: 26px;
  }

  .team-top {
    display: grid;
  }

  .team-filters {
    justify-content: flex-start;
  }

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

  .career-intro {
    position: static;
  }

  .section--page-team,
  .section--page-career {
    padding-top: 58px;
  }

  .partner-carousel {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .partner-carousel::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 56px;
    z-index: 1;
    width: 34px;
    content: "";
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff);
  }

  .partner-controls {
    position: static;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
    pointer-events: none;
  }

  .partner-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    color: var(--ink);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(223, 230, 235, 0.94);
    border-radius: 50%;
    box-shadow: 0 16px 34px rgba(30, 56, 76, 0.18);
    cursor: pointer;
    pointer-events: auto;
  }

  .partner-control:disabled {
    color: rgba(32, 35, 38, 0.28);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 10px 22px rgba(30, 56, 76, 0.08);
    cursor: default;
  }

  .partner-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 44px 10px 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    scroll-padding-left: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .partner-strip::-webkit-scrollbar {
    display: none;
  }

  .partner-strip img {
    flex: 0 0 min(220px, 68vw);
    width: min(220px, 68vw);
    max-width: none;
    height: 82px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 32px rgba(30, 56, 76, 0.08);
    scroll-snap-align: start;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .site-footer {
    margin: 0 8px 8px;
    background:
      radial-gradient(circle at 18% 8%, rgba(25, 168, 194, 0.26), transparent 28%),
      linear-gradient(145deg, rgba(7, 48, 74, 0.96), rgba(3, 25, 39, 0.98));
    border-radius: 18px;
  }

  .site-footer::before {
    background-size: 52px 52px;
    opacity: 0.12;
  }

  .footer-cta__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    width: min(100% - 32px, var(--container));
    padding: 24px 0 20px;
  }

  .footer-cta h2 {
    max-width: 320px;
    font-size: 24px;
    line-height: 1.14;
  }

  .footer-cta__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    justify-content: stretch;
  }

  .footer-cta__actions .btn {
    min-height: 44px;
    padding: 0 12px;
  }

  .footer-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: min(100% - 32px, var(--container));
    align-items: stretch;
    margin: 14px auto 0;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .footer-metrics::-webkit-scrollbar {
    display: none;
  }

  .footer-metrics div,
  .footer-metrics a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 84px;
    padding: 13px 14px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
  }

  .footer-metrics a {
    display: none;
  }

  .footer-metrics strong {
    white-space: nowrap;
    font-size: 16px;
    line-height: 1;
  }

  .footer-metrics span {
    display: block;
    max-width: 15ch;
    margin: 6px auto 0;
    font-size: 12px;
    line-height: 1.35;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: min(100% - 32px, var(--container));
    padding: 16px 0 22px;
  }

  .footer-brand,
  .footer-grid > div:not(.footer-brand) {
    min-width: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
  }

  .footer-grid img {
    width: 84px;
    margin: 0;
    padding: 6px;
  }

  .footer-brand p {
    max-width: none;
    font-size: 12px;
    line-height: 1.45;
  }

  .footer-grid h2 {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .footer-grid a,
  .footer-grid span {
    margin: 7px 0;
    font-size: 13px;
  }

  .footer-grid a {
    display: flex;
    align-items: center;
    min-height: 32px;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child a,
  .footer-grid > div:last-child span {
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    width: min(100% - 32px, var(--container));
    padding: 12px 0 18px;
    font-size: 11.5px;
  }
}

@media (max-width: 480px) {
  .hero__panel {
    min-height: 440px;
  }

  .hero h1 {
    font-size: 35px;
  }

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

  .subpage-hero__content h1 {
    font-size: 34px;
  }

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

  .reviews-summary h2 {
    font-size: 28px;
  }

  .rating {
    padding: 16px 18px;
  }

  .rating strong {
    font-size: 42px;
  }

  .reviews-toolbar {
    display: flex;
  }

  .carousel-controls {
    justify-content: flex-end;
  }

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

  .footer-cta__actions .btn {
    width: auto;
  }
}

@media (max-width: 380px) {
  .reviews-summary h2 {
    font-size: 26px;
  }
}

@media (max-width: 340px) {
  .reviews-summary h2 {
    font-size: 23px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
