:root {
  --navy: #06233d;
  --navy-2: #0a355e;
  --navy-3: #02182c;
  --gold: #c38b35;
  --gold-2: #dfc390;
  --text: #1f344d;
  --muted: #697b8f;
  --line: #dfe6ee;
  --soft: #f6f8fb;
  --white: #ffffff;
  --radius: 7px;
  --shadow: 0 18px 44px rgba(8, 34, 61, .1);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  color: var(--text);
  background: #fbfcfe;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
}

#top,
section[id] {
  scroll-margin-top: 96px;
}

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

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

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

.container {
  width: min(1190px, calc(100% - 54px));
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(8, 34, 61, .06);
  backdrop-filter: blur(14px);
}

.header__inner {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--navy);
}

.brand__logo {
  display: block;
  width: 300px;
  height: auto;
  max-height: 76px;
  aspect-ratio: 3 / 1;
  object-fit: contain;
}

.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: .92;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--gold);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex: 1 1 auto;
  color: #31445c;
  font-size: .9rem;
  font-weight: 900;
}

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

.header__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.langs {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
}

.langs button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 900;
  cursor: pointer;
}

.langs button.is-active {
  color: var(--gold);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 4px;
  background: linear-gradient(180deg, #c9974a 0%, #a87328 100%);
  color: var(--white);
  font-size: .85rem;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(178, 122, 43, .26);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 4px;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  padding: 48px 0 0;
  background-color: #020b17;
  background-image: url("assets/hero-background-wide-final.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(8, 34, 61, .18);
}

.hero__grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  min-height: 520px;
  gap: 34px;
}

.hero__content {
  padding-left: 38px;
}

.hero h1 {
  margin: 0 0 22px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.68rem, 4.15vw, 4.55rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 4px 22px rgba(0, 0, 0, .24);
}

.hero p {
  max-width: 455px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .86);
  font-size: .98rem;
  font-weight: 600;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: .8rem;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.btn--navy {
  background: var(--navy-3);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(0, 13, 26, .26);
}

.btn--navy::after {
  content: "→";
  margin-left: 12px;
}

.btn--light {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(223, 195, 144, .78);
  color: var(--gold);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.btn--light::after {
  content: "↓";
  margin-left: 12px;
}

.hero__image {
  display: none;
}

.hero__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  mix-blend-mode: multiply;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 22px 0 26px;
  align-items: center;
}

.fact {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 30px;
  border-right: 0;
}

.fact:first-child {
  padding-left: 0;
}

.fact:last-child {
  border-right: 0;
}

.fact:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 46px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .42);
}

.icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon svg *,
.b2b-icon svg * {
  vector-effect: non-scaling-stroke;
}

.fact strong {
  max-width: 130px;
  color: rgba(255, 255, 255, .92);
  font-size: .78rem;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .22);
}

.section {
  padding: 72px 0;
}

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

.company {
  background: var(--white);
  padding: 66px 0 70px;
}

.company__grid {
  display: block;
}

h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3,
p {
  margin-top: 0;
}

.company__copy p {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  color: #42576e;
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.78;
}

.company__copy p:first-child {
  color: var(--navy);
  font-size: 1.22rem;
  font-weight: 700;
}

.company__copy {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.company__eyebrow {
  display: block;
  margin: 0 auto 24px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.18vw, 2.18rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.company__eyebrow::after {
  content: "";
  display: block;
  width: 92px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent 0, var(--gold) 16%, var(--gold) 84%, transparent 100%);
}

.section-title h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent 0, var(--gold) 18%, var(--gold) 82%, transparent 100%);
}

.section-title {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 12px;
}

.section-title p {
  color: #53677c;
  font-size: .92rem;
  font-weight: 600;
}

.categories {
  background: linear-gradient(180deg, #fbfcfe 0%, #f7f9fc 100%);
}

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

.category-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(8, 34, 61, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.category-card img {
  width: 100%;
  height: 222px;
  object-fit: cover;
}

.category-card div {
  padding: 28px 30px 30px;
}

.category-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.2;
}

.category-card p {
  min-height: 82px;
  color: #52667c;
  font-size: .9rem;
  font-weight: 600;
}

.category-card span {
  display: block;
  width: 32px;
  height: 3px;
  margin-top: 20px;
  background: var(--gold);
}

.company-work {
  border-top: 1px solid rgba(210, 219, 229, .78);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.b2b-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.b2b-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  min-height: 148px;
  padding: 25px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 34, 61, .045);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.b2b-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: var(--navy);
}

.b2b-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.b2b-icon .accent {
  stroke: var(--gold);
}

.b2b-card__copy {
  min-width: 0;
}

.b2b-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.25;
}

.b2b-card p {
  margin: 0;
  color: #405a73;
  font-size: .9rem;
  line-height: 1.62;
  font-weight: 600;
}

.b2b-card:hover {
  transform: translateY(-3px);
  border-color: #d4dde7;
  box-shadow: 0 22px 48px rgba(8, 34, 61, .11);
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: #d4dde7;
  box-shadow: 0 22px 48px rgba(8, 34, 61, .11);
}

.standards {
  border-top: 1px solid rgba(210, 219, 229, .78);
  background: #fbfcfe;
}

.standards__inner {
  max-width: 1190px;
}

.standards-grid {
  margin-top: 6px;
}

.process {
  border-top: 1px solid rgba(210, 219, 229, .78);
  background: var(--white);
}

.process .section-title {
  margin-bottom: 28px;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
  max-width: 1120px;
  margin: 0 auto;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 9.5%;
  right: 9.5%;
  top: 29px;
  height: 1px;
  background: rgba(200, 157, 42, .76);
}

.process-steps article {
  position: relative;
  text-align: center;
}

.process-steps span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--white);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
}

.process-steps h3 {
  min-height: 40px;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: .96rem;
  line-height: 1.2;
}

.process-steps p {
  color: #405a73;
  font-size: .84rem;
  line-height: 1.6;
  font-weight: 600;
}

.contact {
  background: #f7f9fc;
}

.contact-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 28px;
  align-items: start;
}

.form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 52px rgba(8, 34, 61, .09);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #4b5c70;
  font-size: .78rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8e1eb;
  border-radius: 4px;
  background: #fff;
  color: var(--navy);
  padding: 13px 14px;
  font-size: .9rem;
  outline: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(180, 135, 69, .13);
}

.privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #53677c;
}

.privacy input {
  width: auto;
  accent-color: var(--gold);
}

.submit {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, #082c4e 0%, #031a30 100%);
  color: var(--white);
  font-size: .85rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(3, 26, 48, .18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(3, 26, 48, .22);
}

.submit:disabled {
  cursor: wait;
  opacity: .72;
}

.form-status {
  display: none;
}

.form-status.is-visible {
  display: block;
  margin: 12px 0 0;
  color: #4b5c70;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.5;
}

.form-status.is-success {
  color: #17633a;
}

.form-status.is-error {
  color: #9b2f25;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.contact-cards article {
  min-height: 150px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(8, 34, 61, .07);
}

.contact-card-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: var(--gold);
}

.contact-card-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-cards h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: .95rem;
}

.contact-cards p {
  margin: 0;
  color: #52667c;
  font-size: .82rem;
  font-weight: 600;
}

.contact-cards a,
.footer p a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.contact-cards a:hover,
.footer p a:hover {
  color: var(--gold);
}

.footer p a {
  display: inline;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .9);
}

.map {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(8, 34, 61, .08);
}

.map iframe {
  display: block;
  width: 100%;
  height: 440px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 900;
}

.map-link::after {
  content: "↗";
  margin-left: 8px;
  color: var(--gold);
}

.footer {
  padding: 46px 0 24px;
  background: linear-gradient(135deg, #021a30 0%, #062b4d 60%, #031a30 100%);
  color: rgba(255, 255, 255, .75);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr .65fr .95fr 1.12fr;
  align-items: start;
  gap: 34px;
}

.footer__grid > * {
  align-self: start;
}

@media (min-width: 1101px) {
  .footer__grid {
    --footer-right-column-offset: 62px;
  }

  .footer__grid > :not(.footer__brand) {
    padding-top: var(--footer-right-column-offset);
  }
}

.brand--footer {
  color: var(--white);
  margin-bottom: 18px;
}

.brand--footer .brand__logo {
  width: 274px;
  height: auto;
  max-height: 92px;
}

.footer p {
  margin: 0 0 14px;
  font-size: .86rem;
}

.footer h3 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .76);
  font-size: .86rem;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .86rem;
}

.langs--footer button,
.langs--footer span {
  color: rgba(255, 255, 255, .8);
}

.langs--footer button.is-active {
  color: var(--gold-2);
}

.legal-main {
  background: linear-gradient(180deg, #fbfcfe 0%, #f7f9fc 100%);
}

.policy {
  padding: 86px 0 78px;
}

.policy__content {
  max-width: 780px;
  padding: 48px 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 52px rgba(8, 34, 61, .08);
}

.policy__back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2rem;
  color: var(--gold);
  font-size: .875rem;
  font-weight: 800;
  transition: opacity .2s;
}

.policy__back:hover {
  opacity: .7;
}

.policy h1 {
  margin: 0 0 .5rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}

.policy__updated {
  margin-bottom: 3rem;
  color: var(--muted);
  font-size: .85rem;
}

.policy h2 {
  margin: 2.5rem 0 1rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
}

.policy h3 {
  margin: 1.5rem 0 .5rem;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 600;
}

.policy p,
.policy li {
  margin-bottom: .75rem;
  color: #52667c;
  font-size: .95rem;
  line-height: 1.7;
}

.policy ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.policy a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy a:hover {
  opacity: .7;
}

@media (max-width: 1100px) {
  .header__cta {
    display: none;
  }

  .nav {
    gap: 20px;
  }

  .hero__grid,
  .company__grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__image img {
    height: 360px;
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 34px, 1190px);
  }

  .header__inner {
    height: 72px;
    gap: 10px;
  }

  .brand__logo {
    width: 206px;
    height: auto;
    max-height: 62px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 1.55rem;
  }

  .nav {
    position: fixed;
    left: 17px;
    right: 17px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px 10px;
  }

  .burger {
    display: block;
  }

  .langs {
    gap: 4px;
    font-size: .68rem;
  }

  .hero {
    padding-top: 30px;
    background-position: 38% center;
  }

  .hero__content {
    padding-left: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.12rem, 6.8vw, 2.65rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .category-grid,
  .contact-cards,
  .b2b-card-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

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

  .footer__bottom {
    flex-direction: column;
  }

  .policy {
    padding: 56px 0;
  }

  .policy__content {
    padding: 34px 28px;
  }
}

@media (max-width: 560px) {
  .header .container {
    width: min(1190px, calc(100% - 24px));
  }

  .header__inner {
    max-width: 100%;
    min-width: 0;
  }

  .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .section {
    padding: 54px 0;
  }

  .hero h1 {
    font-size: clamp(1.74rem, 8.7vw, 2.14rem);
    line-height: 1.1;
  }

  .company {
    padding: 54px 0 58px;
  }

  .company__eyebrow {
    margin-bottom: 22px;
    font-size: 1.42rem;
    line-height: 1.12;
  }

  .company__eyebrow::after {
    width: 76px;
    margin-top: 11px;
  }

  .company__copy p,
  .company__copy p:first-child {
    font-size: .98rem;
    line-height: 1.68;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .facts,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .fact {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact:not(:last-child)::after {
    display: none;
  }

  .brand__logo {
    width: 154px;
    height: auto;
    max-height: 58px;
  }

  .header__inner {
    gap: 6px;
  }

  .header__right {
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
    gap: 6px;
  }

  .langs {
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
    gap: 2px;
    font-size: clamp(.56rem, 2.7vw, .64rem);
    white-space: nowrap;
  }

  .langs button,
  .langs span,
  .burger {
    flex: 0 0 auto;
  }

  .burger {
    width: 40px;
    height: 40px;
  }

  .hero__image img {
    height: 270px;
  }

  .b2b-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 22px 18px;
  }

  .b2b-icon {
    width: 56px;
    height: 56px;
  }

  .b2b-card h3 {
    font-size: .98rem;
  }

  .b2b-card p {
    font-size: .84rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-steps article {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 0 18px;
    text-align: left;
  }

  .process-steps span {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .process-steps h3 {
    min-height: 0;
  }

  .policy__content {
    padding: 28px 20px;
  }
}
