:root {
  --blue: #0048b9;
  --blue-dark: #05347e;
  --graphite: #2f343a;
  --muted: #6f7782;
  --line: #dce3ed;
  --soft: #f4f7fb;
  --soft-2: #edf3f8;
  --white: #ffffff;
  --teal: #167c80;
  --amber: #b8841c;
  --max: 1180px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 72, 185, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 72, 185, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 0, transparent 700px);
  pointer-events: none;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 14px clamp(20px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(188px, 21vw, 286px);
  text-decoration: none;
}

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

.site-nav a {
  min-height: 40px;
  padding: 10px 11px;
  border-radius: 6px;
  color: #3d454f;
  font-size: 13px;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  color: var(--blue-dark);
  background: var(--soft);
}

.nav-toggle {
  display: none;
}

.nav-button {
  display: none;
}

.hero {
  min-height: calc(100svh - var(--header-h) - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(46px, 6vw, 86px) clamp(20px, 4vw, 48px) clamp(34px, 5vw, 62px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: #1f2730;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: #222a32;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  color: #25303a;
  font-size: 20px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 700px;
  margin: 10px 0 0;
  color: #3a424c;
  font-size: clamp(18px, 1.45vw, 21px);
}

.appeal-title {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 72, 185, 0.14);
}

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

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

.signature {
  display: grid;
  gap: 2px;
  margin-top: 28px;
  padding-left: 18px;
  border-left: 3px solid var(--blue);
}

.signature strong {
  color: #222a32;
}

.signature span {
  color: var(--muted);
  font-size: 14px;
}

.director-panel {
  align-self: stretch;
  margin: 0;
  min-height: 520px;
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.portrait-photo {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  background: #ffffff;
  overflow: hidden;
}

.portrait-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(1.03);
}

.portrait-caption {
  display: grid;
  gap: 4px;
  padding: 22px;
  border-top: 4px solid var(--blue);
  background: var(--white);
}

.portrait-caption strong {
  font-size: 18px;
}

.portrait-caption span {
  color: var(--muted);
  font-size: 14px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) clamp(54px, 7vw, 82px);
}

.trust-strip div {
  min-height: 122px;
  padding: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
}

.trust-strip div:last-child {
  border-right: 1px solid var(--line);
}

.trust-strip span,
.trust-strip small {
  display: block;
  color: var(--muted);
}

.trust-strip span {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.trust-strip strong {
  display: block;
  color: #222a32;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.16;
}

.trust-strip small {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.35;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 48px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

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

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
  gap: clamp(28px, 5vw, 70px);
}

.text-block {
  color: #454e59;
  font-size: 18px;
}

.text-block p {
  margin: 0;
}

.text-block p + p {
  margin-top: 18px;
}

.facts-list {
  border-top: 4px solid var(--blue);
  background: var(--soft);
}

.facts-list dl {
  margin: 0;
}

.facts-list div {
  display: grid;
  gap: 4px;
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
}

.facts-list div:last-child {
  border-bottom: 0;
}

.facts-list dt {
  color: var(--muted);
  font-size: 13px;
}

.facts-list dd {
  margin: 0;
  color: #202832;
  font-weight: 700;
}

.warehouse-section {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(320px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  padding-left: max(clamp(20px, 4vw, 48px), calc((100vw - var(--max)) / 2 + 48px));
  padding-right: 0;
  background: var(--soft-2);
}

.warehouse-copy {
  max-width: 540px;
}

.warehouse-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #4a535e;
  font-size: 17px;
}

.warehouse-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  border: 1px solid var(--line);
  background: var(--line);
}

.warehouse-metrics div {
  min-height: 104px;
  padding: 18px;
  background: var(--white);
}

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

.warehouse-metrics strong {
  color: var(--blue-dark);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.1;
}

.warehouse-metrics span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.warehouse-visual {
  margin: 0;
  min-width: 0;
}

.warehouse-visual img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.partners-section {
  border-bottom: 1px solid var(--line);
}

.trusted-section {
  border-bottom: 1px solid var(--line);
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.logo-tile {
  min-height: 124px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: var(--white);
  text-align: center;
}

.logo-tile span {
  display: block;
  max-width: 100%;
  color: #26313d;
  font-weight: 700;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.logo-tile--image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo-tile img {
  display: block;
  width: auto;
  max-width: min(150px, 100%);
  max-height: 52px;
  object-fit: contain;
}

.logo-tile--medical {
  min-height: 142px;
}

.logo-tile--medical img {
  max-width: min(168px, 100%);
  max-height: 62px;
}

.logo-tile--medical span {
  color: #51606f;
  font-size: 13px;
  font-weight: 600;
}

.logo-tile--contrast img {
  max-height: 64px;
  padding: 8px 12px;
  border-radius: 6px;
  background: #25384d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.placeholder-logo span {
  color: #51606f;
  font-size: 15px;
}

.placeholder-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.placeholder-logo::before {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 72, 185, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, rgba(0, 72, 185, 0.35) 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(0, 72, 185, 0.35) 47% 53%, transparent 53%),
    rgba(0, 72, 185, 0.06);
}

.manufacturers-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.manufacturer-group + .manufacturer-group {
  margin-top: 34px;
}

.group-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.group-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.group-title span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.manufacturer-wall .logo-tile {
  min-height: 118px;
  padding: 16px 14px;
}

.brand-logo img {
  max-width: min(136px, 100%);
  max-height: 46px;
}

.brand-logo span {
  color: #51606f;
  font-size: 12px;
  font-weight: 600;
}

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

.partner-cards article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.partner-cards article:nth-child(2) {
  border-top-color: var(--teal);
  border-top-width: 4px;
}

.partner-cards article:nth-child(3) {
  border-top-color: var(--amber);
  border-top-width: 4px;
}

.partner-cards p {
  margin: 0;
  color: var(--muted);
}

.team-section {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

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

.team-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.48fr) minmax(0, 1fr);
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.team-photo {
  min-height: 360px;
  margin: 0;
  display: grid;
  place-items: center;
  background: #f5f7fa;
}

.team-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
}

.team-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
}

.team-copy p {
  position: relative;
  margin: 0;
  color: #39434f;
  font-size: 17px;
  line-height: 1.58;
}

.team-copy p::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: 20px;
  background: var(--blue);
}

.team-copy strong,
.team-copy span {
  display: block;
}

.team-copy strong {
  color: #222a32;
  font-size: 18px;
}

.team-copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.license-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.license-section p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: #4a535e;
  font-size: 17px;
}

.license-number {
  display: grid;
  gap: 10px;
  padding: 26px;
  border-left: 4px solid var(--blue);
  background: var(--soft);
}

.license-number span {
  color: var(--muted);
  font-size: 13px;
}

.license-number strong {
  color: var(--blue-dark);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.contacts-section {
  max-width: none;
  padding-left: max(clamp(20px, 4vw, 48px), calc((100vw - var(--max)) / 2 + 48px));
  padding-right: max(clamp(20px, 4vw, 48px), calc((100vw - var(--max)) / 2 + 48px));
  background: #17212d;
}

.contacts-section .eyebrow {
  color: #8eb8ff;
}

.contacts-section h2 {
  color: var(--white);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.8fr 0.9fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.contacts-grid > * {
  min-height: 148px;
  display: grid;
  align-content: start;
  gap: 12px;
  margin: 0;
  padding: 22px;
  color: rgba(255, 255, 255, 0.78);
  background: #1f2d3b;
  font-style: normal;
}

.contacts-grid strong {
  color: var(--white);
}

.contacts-grid a {
  color: #a9c8ff;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contacts-grid a:hover {
  text-decoration: underline;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
  padding: 22px clamp(20px, 4vw, 48px);
  color: #c7d0dc;
  background: #121a24;
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    min-height: 70px;
  }

  .brand {
    width: 220px;
  }

  .nav-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    cursor: pointer;
  }

  .nav-button span,
  .nav-button::before,
  .nav-button::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: var(--graphite);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .nav-button::before {
    position: absolute;
    transform: translateY(-7px);
  }

  .nav-button::after {
    position: absolute;
    transform: translateY(7px);
  }

  .nav-toggle:checked + .nav-button span {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-button::before {
    transform: rotate(45deg);
  }

  .nav-toggle:checked + .nav-button::after {
    transform: rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 20px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .nav-toggle:checked ~ .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 48px;
    padding: 13px 0;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .director-panel {
    min-height: 420px;
    grid-template-rows: minmax(310px, 1fr) auto;
  }

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

  .trust-strip div:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .trust-strip div:nth-child(n + 3) {
    border-top: 0;
  }

  .company-grid,
  .license-section {
    grid-template-columns: 1fr;
  }

  .warehouse-section {
    grid-template-columns: 1fr;
    padding-right: clamp(20px, 4vw, 48px);
    padding-left: clamp(20px, 4vw, 48px);
  }

  .warehouse-copy {
    max-width: 780px;
  }

  .warehouse-visual img {
    min-height: 340px;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .partner-cards {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 640px) {
  :root {
    --header-h: 68px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand {
    width: 190px;
  }

  .hero {
    padding: 34px 16px 28px;
  }

  h1 {
    font-size: clamp(34px, 12vw, 46px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .director-panel {
    min-height: 360px;
    grid-template-rows: minmax(250px, 1fr) auto;
  }

  .portrait-photo {
    min-height: 250px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding: 0 16px 48px;
  }

  .trust-strip div,
  .trust-strip div:nth-child(2),
  .trust-strip div:last-child {
    border-right: 1px solid var(--line);
  }

  .trust-strip div:nth-child(n + 2) {
    border-top: 0;
  }

  .section {
    padding: 52px 16px;
  }

  .warehouse-section,
  .contacts-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .warehouse-metrics {
    grid-template-columns: 1fr;
  }

  .warehouse-visual img {
    min-height: 260px;
  }

  .partner-cards article {
    min-height: auto;
    padding: 22px;
  }

  .team-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .team-photo img {
    min-height: inherit;
    max-height: 430px;
    object-position: center top;
  }

  .team-copy {
    padding: 24px;
  }

  .team-copy p {
    font-size: 16px;
  }

  .logo-wall,
  .manufacturer-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .logo-tile,
  .manufacturer-wall .logo-tile {
    min-height: 86px;
    padding: 10px 8px;
  }

  .logo-tile--medical {
    min-height: 96px;
  }

  .logo-tile img {
    max-height: 34px;
  }

  .logo-tile span,
  .brand-logo span,
  .logo-tile--medical span {
    font-size: 10px;
    line-height: 1.15;
  }

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

  .contacts-grid > * {
    min-height: auto;
  }
}
