@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 400 600; font-display: swap; src: url("assets/fonts/dm-sans-latin-ext.woff2") format("woff2"); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB; }
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 400 600; font-display: swap; src: url("assets/fonts/dm-sans-latin.woff2") format("woff2"); unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122; }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 400 700; font-display: swap; src: url("assets/fonts/manrope-latin-ext.woff2") format("woff2"); unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB; }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 400 700; font-display: swap; src: url("assets/fonts/manrope-latin.woff2") format("woff2"); unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122; }

:root {
  --navy: #071b33;
  --navy-2: #0c294b;
  --navy-3: #143d68;
  --red: #e3212b;
  --red-dark: #bd1720;
  --ink: #111820;
  --muted: #5d6975;
  --line: #d9e0e6;
  --soft: #f2f5f7;
  --white: #fff;
  --container: min(1200px, calc(100vw - 64px));
  --shadow: 0 26px 70px rgba(7, 27, 51, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 128px 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--red);
  transition: top .2s;
}
.skip-link:focus { top: 16px; }
.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; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(7, 27, 51, .1);
  box-shadow: 0 8px 28px rgba(7, 27, 51, .07);
  backdrop-filter: blur(18px);
}
.header-inner { height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { position: relative; flex: 0 0 auto; width: 174px; height: 67px; }
.brand-logo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: opacity .25s; }
.brand .logo-light { opacity: 1; }
.brand .logo-dark { opacity: 0; }
.site-header.scrolled .brand .logo-light { opacity: 0; }
.site-header.scrolled .brand .logo-dark { opacity: 1; }
.desktop-nav { display: flex; gap: 32px; align-items: center; margin-left: auto; }
.desktop-nav a { position: relative; color: var(--white); font-size: 14px; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--red); transition: right .25s; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.site-header.scrolled .desktop-nav a { color: var(--ink); }
.header-actions { display: flex; gap: 22px; align-items: center; }
.language-switcher { display: flex; align-items: center; gap: 4px; color: rgba(255,255,255,.55); font-size: 12px; font-weight: 700; }
.lang-btn { padding: 3px; border: 0; color: rgba(255,255,255,.58); background: transparent; cursor: pointer; }
.lang-btn.active { color: var(--white); }
.site-header.scrolled .language-switcher { color: #a2a9b0; }
.site-header.scrolled .lang-btn { color: #89929b; }
.site-header.scrolled .lang-btn.active { color: var(--navy); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--red);
  color: var(--white);
  background: var(--red);
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s;
}
.button:hover, .button:focus-visible { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 13px; }
.button-outline { border-color: rgba(255,255,255,.4); background: transparent; }
.button-outline:hover { border-color: var(--white); background: var(--white); color: var(--navy); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--white); transition: transform .25s, opacity .25s; }
.site-header.scrolled .menu-toggle span { background: var(--navy); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { position: fixed; inset: 80px 0 0; padding: 44px 28px; background: var(--navy); }
.mobile-nav a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.13); color: var(--white); font-family: Manrope, sans-serif; font-size: clamp(26px, 8vw, 40px); }

.hero { position: relative; min-height: 790px; height: 100svh; overflow: hidden; color: var(--white); background: var(--navy); }
.hero-media { position: absolute; inset: 0; background: url("assets/images/bausch-stroebel.webp") center / cover no-repeat; transform: scale(1.02); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,17,33,.98) 0%, rgba(3,20,39,.92) 34%, rgba(4,24,46,.56) 63%, rgba(4,21,40,.24) 100%), linear-gradient(0deg, rgba(5,23,43,.7), transparent 45%); }
.hero-grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg, black, transparent 75%); }
.hero-content { position: relative; z-index: 2; padding-top: max(190px, 22vh); }
.eyebrow { margin: 0 0 22px; color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: #ff6b72; }
h1, h2, h3 { margin-top: 0; font-family: Manrope, Arial, sans-serif; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 880px; margin-bottom: 26px; font-size: clamp(50px, 6.6vw, 92px); font-weight: 500; }
h2 { margin-bottom: 28px; font-size: clamp(38px, 4.2vw, 62px); font-weight: 500; }
h3 { font-size: 24px; font-weight: 600; }
.hero-lead { max-width: 650px; margin: 0 0 38px; color: rgba(255,255,255,.78); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.text-link { display: inline-flex; align-items: center; gap: 14px; padding-bottom: 5px; border-bottom: 1px solid currentColor; color: var(--navy); font-size: 14px; font-weight: 700; transition: gap .2s, color .2s; }
.text-link:hover { gap: 20px; color: var(--red); }
.light-link { color: var(--white); }
.scroll-cue { position: absolute; right: 32px; bottom: 34px; z-index: 2; display: grid; place-items: start center; width: 28px; height: 56px; border: 1px solid rgba(255,255,255,.35); border-radius: 20px; }
.scroll-cue span { width: 3px; height: 8px; margin-top: 9px; border-radius: 2px; background: white; animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 80%, 100% { transform: translateY(25px); opacity: 0; } }

.intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; align-items: start; }
.section-heading h2 { max-width: 570px; }
.intro-copy { padding-top: 42px; }
.intro-copy p { color: var(--muted); }
.intro-copy .lead { margin-top: 0; color: var(--ink); font-size: 21px; line-height: 1.55; }
.intro-copy .text-link { margin-top: 18px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 100px; background: var(--line); border: 1px solid var(--line); }
.value-card { min-height: 300px; padding: 42px; background: var(--white); transition: background .25s, color .25s; }
.value-card:hover { color: var(--white); background: var(--navy); }
.value-number { display: block; margin-bottom: 76px; color: var(--red); font-size: 12px; font-weight: 700; }
.value-card h3 { margin-bottom: 17px; }
.value-card p { margin: 0; color: var(--muted); }
.value-card:hover p { color: rgba(255,255,255,.72); }

.service-section { position: relative; overflow: hidden; color: var(--white); background: var(--navy); }
.service-section::before { content: ""; position: absolute; inset: -20% auto auto 42%; width: 800px; height: 800px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; box-shadow: 0 0 0 100px rgba(255,255,255,.015), 0 0 0 200px rgba(255,255,255,.01); }
.service-layout { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: 10vw; }
.service-sticky { position: sticky; top: 150px; align-self: start; }
.service-sticky p:not(.eyebrow) { max-width: 480px; color: rgba(255,255,255,.66); }
.service-sticky .button { margin-top: 28px; }
.service-list { border-top: 1px solid rgba(255,255,255,.16); }
.service-item { display: grid; grid-template-columns: 52px 1fr; gap: 25px; padding: 38px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.service-item > span { color: #ff7077; font-size: 12px; font-weight: 700; }
.service-item h3 { margin-bottom: 12px; }
.service-item p { margin: 0; color: rgba(255,255,255,.62); }

.partners { background: var(--soft); }
.partners-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 10vw; align-items: end; margin-bottom: 70px; }
.partners-heading h2 { margin: 0; }
.partners-heading > p { margin: 0 0 8px; color: var(--muted); }
.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.partner-card { overflow: hidden; background: var(--white); box-shadow: 0 0 0 rgba(7,27,51,0); transition: transform .3s, box-shadow .3s; }
.partner-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.partner-image { height: 330px; overflow: hidden; background: #dfe6eb; }
.partner-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7); transition: transform .7s, filter .3s; }
.partner-image.contain { background: var(--white); }
.partner-image.contain img { padding: 24px; object-fit: contain; }
.partner-card:hover .partner-image img { transform: scale(1.045); filter: saturate(1); }
.partner-body { padding: 38px 40px 42px; }
.partner-logo { display: flex; align-items: center; height: 45px; margin-bottom: 26px; }
.partner-logo img { max-width: 120px; max-height: 45px; }
.partner-logo.wide img { max-width: 180px; }
.partner-kicker { margin: 0 0 12px; color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.partner-body h3 { max-width: 460px; margin-bottom: 18px; font-size: 28px; }
.partner-body > p:not(.partner-kicker) { color: var(--muted); }
.partner-body .text-link { margin-top: 12px; }

.territory { position: relative; color: var(--white); background: var(--navy-2); }
.territory::after { content: ""; position: absolute; inset: 0; opacity: .15; background: radial-gradient(circle at 76% 50%, #6fa8d5, transparent 34%); }
.territory-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.1fr; gap: 10vw; align-items: center; }
.territory-copy p:not(.eyebrow) { max-width: 510px; color: rgba(255,255,255,.68); }
.country-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.2); }
.country-list span { padding: 18px 12px 18px 0; border-bottom: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.88); }
.country-list span::before { content: "+"; margin-right: 12px; color: var(--red); }

.reference { background: #f7f9fb; }
.reference-heading { margin-bottom: 58px; text-align: center; }
.reference-heading h2 { margin-bottom: 0; }
.reference-logo-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); column-gap: 48px; row-gap: 50px; align-items: center; }
.reference-logo:nth-child(11) { grid-column: 2; }
.reference-logo { display: flex; align-items: center; justify-content: center; min-width: 0; height: 88px; padding: 8px; filter: grayscale(1); opacity: .56; transition: filter .25s, opacity .25s, transform .25s; }
.reference-logo:hover { filter: none; opacity: 1; transform: translateY(-3px); }
.reference-logo > img { display: block; width: 100%; max-width: 178px; max-height: 58px; object-fit: contain; }
.reference-logo--hospira > img { max-width: 150px; max-height: 72px; }
.reference-logo--jgl > img { max-width: 115px; max-height: 72px; }
.reference-logo-composite { display: inline-flex; align-items: center; gap: 11px; color: #163b6c; }
.reference-logo-composite img { width: 38px; height: 38px; }
.reference-logo-composite strong { font: 700 20px/1 Manrope, Arial, sans-serif; letter-spacing: .08em; }

.contact { color: var(--white); background: #061628; }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 9vw; }
.contact-copy { align-self: start; }
.contact-copy h2 { max-width: 450px; }
.contact-copy > p:not(.eyebrow) { max-width: 430px; color: rgba(255,255,255,.66); font-size: 18px; }
.contact-details { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; margin-top: 52px; }
.contact-details a { font-size: 18px; border-bottom: 1px solid rgba(255,255,255,.32); }
.contact-details address { margin-top: 20px; color: rgba(255,255,255,.66); font-style: normal; }
.contact-form { padding: 46px; color: var(--ink); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form label { display: block; margin-bottom: 24px; color: #38434e; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { display: block; width: 100%; margin-top: 7px; padding: 12px 0; border: 0; border-bottom: 1px solid #b8c2cb; border-radius: 0; outline: none; color: var(--ink); background: transparent; letter-spacing: 0; text-transform: none; transition: border-color .2s; }
.contact-form textarea { min-height: 100px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--red); }
.check-label { display: flex !important; align-items: flex-start; gap: 11px; color: var(--muted) !important; font-size: 11px !important; font-weight: 500 !important; line-height: 1.45; letter-spacing: 0 !important; text-transform: none !important; }
.check-label input { flex: 0 0 auto; margin-top: 3px; accent-color: var(--red); }
.check-label a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.form-submit { width: 100%; justify-content: space-between; }
.form-submit:disabled { opacity: .62; cursor: wait; }
.form-note, .form-status { margin: 12px 0 0; color: var(--muted); font-size: 11px; }
.form-status { color: var(--red); font-weight: 600; }
.form-status.is-success { color: #23733c; }
.form-status.is-error { color: var(--red); }

.site-footer { padding: 68px 0 28px; color: var(--white); background: #030d18; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 40px; padding-bottom: 55px; border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-brand { display: block; width: 170px; }
.footer-brand img { width: 100%; height: auto; object-fit: contain; }
.footer-top p { margin: 0; color: rgba(255,255,255,.66); }
.back-top { display: flex; gap: 14px; color: rgba(255,255,255,.7); font-size: 13px; }
.footer-bottom { display: grid; grid-template-columns: 1fr 1.3fr auto; gap: 30px; padding-top: 28px; color: rgba(255,255,255,.46); font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 18px; }
.footer-bottom a:hover, .footer-bottom a:focus-visible { color: var(--white); }

.policy-main { padding-top: 92px; background: var(--soft); }
.policy-hero { padding: 108px 0 86px; color: var(--white); background: var(--navy); }
.policy-hero h1 { max-width: 900px; margin-bottom: 24px; font-size: clamp(48px, 6vw, 78px); }
.policy-hero .policy-lead { max-width: 720px; margin: 0; color: rgba(255,255,255,.72); font-size: 20px; }
.policy-content { padding: 96px 0 128px; }
.policy-copy { max-width: 900px; margin: 0 auto; padding: 64px 72px; background: var(--white); box-shadow: var(--shadow); }
.policy-meta { margin: 0 0 44px; color: var(--muted); font-size: 13px; }
.policy-section { padding: 0 0 42px; margin: 0 0 42px; border-bottom: 1px solid var(--line); scroll-margin-top: 120px; }
.policy-section:last-of-type { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.policy-section h2 { margin-bottom: 20px; font-size: clamp(29px, 3.4vw, 42px); }
.policy-section h3 { margin: 28px 0 12px; font-size: 20px; letter-spacing: -.02em; }
.policy-section p, .policy-section li { color: #46515d; }
.policy-section ul { padding-left: 22px; }
.policy-section a { color: var(--navy-3); text-decoration: underline; text-underline-offset: 3px; }
.policy-note { padding: 20px 22px; border-left: 3px solid var(--red); background: var(--soft); }
.company-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0 46px; margin-top: 28px; }
.company-facts div { padding: 15px 0; border-top: 1px solid var(--line); }
.company-facts dt { margin-bottom: 3px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.company-facts dd { margin: 0; color: var(--ink); }
.policy-table-wrap { overflow-x: auto; margin-top: 24px; }
.policy-table { width: 100%; min-width: 650px; border-collapse: collapse; font-size: 14px; }
.policy-table th, .policy-table td { padding: 15px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.policy-table th { color: var(--navy); background: var(--soft); }
.policy-actions { display: flex; align-items: center; gap: 34px; margin-top: 48px; padding: 28px 30px; background: var(--navy); }
.policy-section .policy-actions .button { color: var(--white); text-decoration: none; }
.policy-section .policy-actions .text-link { color: var(--white); font-size: 14px; text-decoration: none; }
.policy-section .policy-actions .text-link:hover { color: #ff747b; }
.policy-copy[hidden] { display: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1024px) {
  :root { --container: min(100% - 48px, 940px); }
  .section { padding: 100px 0; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .header-actions { margin-left: auto; }
  .intro-grid, .service-layout, .territory-grid, .contact-grid { gap: 6vw; }
  .partners-heading { gap: 5vw; }
  .partner-image { height: 270px; }
  .partner-body { padding: 32px; }
  .reference-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px 48px; }
  .reference-logo:nth-child(11) { grid-column: auto; }
  .reference-logo:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  :root { --container: calc(100% - 36px); }
  body { font-size: 15px; }
  .section { padding: 62px 0; }
  .header-inner { height: 78px; }
  .brand { width: 142px; height: 55px; }
  .desktop-cta { display: none; }
  .header-actions { gap: 10px; }
  .mobile-nav { inset: 78px 0 0; }
  .hero { min-height: 620px; height: auto; }
  .hero-media { background-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,17,33,.96), rgba(3,20,39,.74)), linear-gradient(0deg, rgba(5,23,43,.82), transparent 55%); }
  .hero-content { padding-top: 128px; }
  h1 { font-size: clamp(43px, 13vw, 62px); }
  h2 { font-size: clamp(34px, 10vw, 48px); }
  .hero-lead { margin-bottom: 30px; font-size: 17px; }
  .hero-actions { align-items: center; flex-direction: row; gap: 18px; }
  .scroll-cue { display: none; }
  .intro-grid, .partners-heading, .service-layout, .territory-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 14px; }
  .intro-copy { padding-top: 0; }
  .intro-copy .lead { font-size: 18px; }
  .values-grid { grid-template-columns: 1fr; margin-top: 44px; }
  .value-card { min-height: auto; padding: 26px; }
  .value-number { margin-bottom: 12px; }
  .service-sticky { position: static; margin-bottom: 38px; }
  .service-sticky .button { margin-top: 22px; }
  .service-item { grid-template-columns: 38px 1fr; gap: 14px; padding: 24px 0; }
  .service-item h3 { font-size: 22px; }
  .partners-heading { gap: 14px; margin-bottom: 32px; }
  .partners-heading h2 br { display: none; }
  .partner-grid { grid-template-columns: 1fr; gap: 16px; }
  .partner-image { height: 215px; }
  .partner-body { padding: 24px 22px 26px; }
  .partner-body h3 { font-size: 24px; }
  .territory-grid { gap: 32px; }
  .country-list { grid-template-columns: 1fr; }
  .reference-heading { margin-bottom: 30px; }
  .reference-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 18px; }
  .reference-logo:last-child { grid-column: 1 / -1; }
  .reference-logo { height: 72px; padding: 5px; }
  .reference-logo > img { max-width: 142px; max-height: 48px; }
  .reference-logo--hospira > img, .reference-logo--jgl > img { max-width: 112px; max-height: 58px; }
  .reference-logo-composite { gap: 8px; }
  .reference-logo-composite img { width: 30px; height: 30px; }
  .reference-logo-composite strong { font-size: 16px; }
  .contact-grid { gap: 36px; }
  .contact-form { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top, .footer-bottom { grid-template-columns: 1fr; }
  .site-footer { padding: 36px 0 22px; }
  .footer-top { gap: 24px; padding-bottom: 36px; }
  .back-top { justify-self: end; }
  .footer-bottom { padding-top: 20px; }
  .footer-bottom { gap: 11px; }
  .footer-bottom div { flex-direction: column; gap: 3px; }
  .policy-main { padding-top: 78px; }
  .policy-hero { padding: 62px 0 50px; }
  .policy-hero h1 { font-size: clamp(40px, 12vw, 58px); }
  .policy-hero .policy-lead { font-size: 17px; }
  .policy-content { padding: 46px 0 64px; }
  .policy-copy { padding: 32px 22px; }
  .policy-section { padding-bottom: 26px; margin-bottom: 26px; }
  .company-facts { grid-template-columns: 1fr; gap: 0; }
  .policy-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 36px; padding: 24px 22px; }
}

@media (max-width: 380px) {
  :root { --container: calc(100% - 28px); }
  .language-switcher { display: none; }
  .hero-actions { gap: 12px; }
  .hero-actions .button { min-height: 50px; padding: 0 16px; font-size: 13px; }
  .hero-actions .text-link { gap: 8px; font-size: 13px; }
}
