*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
  --bg: #edf5fb;
  --surface: #ffffff;
  --surface-soft: #f3f8fc;
  --surface-blue: #e2f0fb;
  --ink: #061b35;
  --ink-soft: #465f7e;
  --muted: #7f90a4;
  --line: #cfdce8;
  --brand: #09aee0;
  --brand-mid: #0c6dad;
  --brand-dark: #0a315f;
  --brand-deep: #082347;
  --success: #1f9b73;
  --danger: #b83b3b;
  --shadow: 0 24px 70px rgba(6, 27, 53, .12);
  --shadow-soft: 0 18px 44px rgba(6, 27, 53, .08);
  --radius: 8px;
  --container: 1210px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--ink-soft); }
h1, h2, h3, h4 { margin: 0; color: var(--ink); letter-spacing: 0; }
h1 { max-width: 700px; font-size: clamp(2.7rem, 4.15vw, 4.55rem); font-weight: 800; }
h1 { line-height: 1.04; }
h2 { max-width: 820px; font-size: clamp(2.2rem, 3.9vw, 4.05rem); font-weight: 800; line-height: 1.12; }
h3 { font-size: 1.15rem; font-weight: 800; }
section { position: relative; padding: 112px 0; background: #fff; }
.container { width: min(100% - 40px, var(--container)); margin: 0 auto; }
.alt { background: linear-gradient(180deg, #f7fbfe, #eef6fc); }
.lead { max-width: 760px; font-size: 1.12rem; color: var(--ink-soft); line-height: 1.55; }
.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: #0066b3;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}
.section-head { max-width: 820px; margin-bottom: 42px; }
.section-head.wide { max-width: 920px; }
.section-head .lead { margin-top: 22px; }
.trust-section .lead { margin-top: 18px; }
.section-rule {
  height: 8px;
  background:
    linear-gradient(90deg, transparent 0, transparent 29.5%, var(--brand-deep) 29.5%, var(--brand-deep) 44.7%, var(--brand-mid) 44.7%, var(--brand-mid) 73.8%, var(--brand) 73.8%, var(--brand) 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 34px rgba(6, 27, 53, .08);
}
.header-row { min-height: 74px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; }
.brand-logo { width: 166px; height: auto; transition: transform .18s ease; }
.brand:hover .brand-logo { transform: translateY(-1px); }
.nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav a {
  color: #4d6078;
  font-size: .87rem;
  font-weight: 780;
  padding: 10px 11px;
  border-radius: 7px;
  transition: color .16s ease, background .16s ease, transform .16s ease;
}
.nav a:hover, .nav a.active { color: var(--brand-dark); background: var(--surface-blue); transform: translateY(-1px); }
.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 7px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-size: .95rem;
  font-weight: 850;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  color: #fff;
  background: var(--brand-mid);
  box-shadow: 0 14px 28px rgba(12, 109, 173, .22);
}
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 18px 36px rgba(12, 109, 173, .28); }
.btn-secondary { color: var(--brand-deep); background: #fff; border-color: var(--line); box-shadow: 0 12px 28px rgba(6, 27, 53, .1); }
.btn-secondary:hover { background: var(--surface-blue); border-color: var(--brand); }
.btn-ghost { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); }
.btn-sm { min-height: 38px; padding: 9px 14px; font-size: .84rem; }

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 38px 0 42px;
  background: #082347;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 27, 53, .94), rgba(8, 49, 95, .82) 54%, rgba(9, 174, 224, .45)),
    linear-gradient(180deg, rgba(6, 27, 53, .22), rgba(6, 27, 53, .38));
  pointer-events: none;
}
.hero::after {
  display: none;
}
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #082347;
}
.hero-slide {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero-slide.is-active { opacity: 1; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 760px); gap: 56px; align-items: center; }
.hero-copy h1, .hero-copy p { color: #fff; }
.hero-copy .lead { max-width: 690px; margin-top: 18px; color: rgba(255,255,255,.84); font-size: 1.02rem; line-height: 1.45; }
.hero-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 13px;
  color: #fff;
  font-size: .9rem;
  font-weight: 850;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 7px;
  background: rgba(255,255,255,.12);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.hero-actions.center { justify-content: center; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  max-width: 700px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.13);
}
.hero-proof div { padding: 12px 14px; border-right: 1px solid rgba(255,255,255,.14); }
.hero-proof div:last-child { border-right: 0; }
.hero-proof strong { display: block; color: #fff; font-size: .88rem; margin-bottom: 4px; }
.hero-proof span { color: rgba(255,255,255,.76); font-size: .82rem; line-height: 1.35; }
.hero-note { margin-top: 14px; color: rgba(255,255,255,.75); font-size: .88rem; }
.hero-panel, .manual-panel {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 10px;
  background: rgba(255,255,255,.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.panel-label {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 7px 11px;
  color: var(--brand-dark);
  background: #dcebfa;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 850;
}
.clinical-shot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,174,232,.12), transparent 42%),
    linear-gradient(145deg, #ffffff, #eef9fd 58%, #dff2fb);
}
.clinical-shot img {
  position: relative;
  z-index: 1;
  width: min(220px, 62%);
  opacity: 1;
}
.clinical-shot::before,
.clinical-shot::after {
  display: none;
}
.panel-caption {
  margin-top: 7px;
  padding: 13px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.94);
}
.panel-caption strong { display: block; color: var(--ink); margin-bottom: 6px; }
.panel-caption span { color: var(--ink-soft); font-size: .88rem; line-height: 1.4; }

.context-grid, .grid-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.image-card, .product-card, .contact-card, .trust-cards article, .metric-grid article, .manual-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(6, 27, 53, .03);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.image-card:hover, .product-card:hover, .contact-card:hover, .trust-cards article:hover, .metric-grid article:hover, .manual-grid article:hover {
  transform: translateY(-5px);
  border-color: #abc5dc;
  box-shadow: var(--shadow-soft);
}
.image-card { overflow: hidden; }
.image-card {
  display: grid;
  grid-template-rows: 240px auto 1fr;
}
.image-card h3 { padding: 22px 22px 0; background: var(--surface); }
.image-card p { padding: 16px 22px 24px; }
.card-visual {
  display: grid;
  place-items: center;
  height: 240px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 174, 232, .16), transparent 42%),
    linear-gradient(135deg, #eff9fd, #d9edf8);
}
.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.method-section, .impact-section, .users-section { background: linear-gradient(180deg, #fff, #f3f8fc); }
.method-grid, .trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 58px;
  align-items: center;
}
.manual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.manual-grid article { padding: 22px; }
.manual-grid span, .trust-cards span, .metric-grid span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #004d91;
  font-size: .74rem;
  font-weight: 850;
  text-transform: uppercase;
}
.manual-grid strong { display: block; font-size: 1.85rem; line-height: 1; margin-bottom: 8px; }
.manual-panel { background: #fff; border-color: var(--line); }
.manual-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  background: linear-gradient(145deg, #f6fbfe, #dcedf8);
}

.flow-section { background: #edf5fb; }
.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin: 72px 0 54px;
  text-align: center;
}
.process-line::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-mid), var(--brand));
}
.process-line article { position: relative; z-index: 1; }
.process-line article > span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 24px;
  color: #fff;
  background: var(--brand-mid);
  border-radius: 999px;
  font-weight: 850;
  font-size: 1.1rem;
  box-shadow: 0 12px 28px rgba(12, 109, 173, .22);
}
.process-line strong { display: block; margin-bottom: 14px; font-size: 1rem; }
.process-line p { min-height: 78px; }
.process-line small {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 14px;
  border: 1px solid #bad4e8;
  border-radius: 7px;
  background: #f3f9fd;
  color: var(--ink-soft);
  font-weight: 800;
}
.catalog-toolbar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.catalog-toolbar input, .catalog-toolbar select, .field select {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.catalog-toolbar input { flex: 1; min-width: 260px; }
.catalog-toolbar select { min-width: 230px; }
.catalog-toolbar input:focus, .catalog-toolbar select:focus, .field input:focus, .field textarea:focus, .field select:focus {
  outline: 3px solid rgba(9, 174, 224, .2);
  border-color: var(--brand);
}
.admin-catalog-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -8px 0 22px;
  padding: 16px;
  border: 1px solid #bcd6e9;
  border-radius: var(--radius);
  background: #fff;
}
.admin-catalog-tools strong { display: block; color: var(--brand-dark); }
.admin-catalog-tools span { color: var(--ink-soft); font-size: .9rem; }
.product-card { overflow: hidden; display: flex; flex-direction: column; }
.product-visual {
  min-height: 170px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background-color: var(--brand-deep);
  background-image: url("assets/logo1.png");
  background-position: right 16px top 16px;
  background-size: 90px auto;
  background-repeat: no-repeat;
}
.product-visual.has-image {
  min-height: 190px;
  align-items: stretch;
  padding: 0;
  background: var(--surface-blue);
}
.product-visual.has-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
}
.product-card:nth-child(3n + 2) .product-visual { background-color: var(--brand-mid); }
.product-card:nth-child(3n + 3) .product-visual { background-color: var(--success); }
.product-visual strong { color: #fff; font-size: 1.14rem; line-height: 1.15; max-width: 78%; }
.prod-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.prod-cat { color: #004d91; font-size: .72rem; text-transform: uppercase; font-weight: 850; }
.prod-body small { color: var(--muted); }
.prod-desc { font-size: .93rem; flex: 1; }
.prod-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.admin-actions { display: none; gap: 8px; flex-wrap: wrap; padding-top: 12px; margin-top: 6px; border-top: 1px solid var(--line); }
body.is-admin .admin-actions { display: flex; }
.btn-admin-edit { background: var(--surface-blue); color: var(--brand-dark); border-color: #bcd6e9; }
.btn-admin-delete { background: #fff2ef; color: #96362d; border-color: #f2c9c1; }
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--surface-blue);
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: .7rem;
  font-weight: 850;
}
.prod-img-wrap { position: relative; }
.empty { grid-column: 1 / -1; padding: 32px; border: 1px dashed var(--line); color: var(--muted); text-align: center; border-radius: var(--radius); }
.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: var(--ink-soft);
}
.catalog-pagination span,
.catalog-pagination strong {
  font-size: .92rem;
}
.catalog-pagination strong { color: var(--ink); }
.catalog-pagination .btn[disabled] {
  cursor: not-allowed;
  opacity: .48;
  transform: none;
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.sector-list span, .region-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px 14px;
  color: var(--brand-dark);
  font-weight: 800;
  font-size: .9rem;
}
.region-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.metric-grid article {
  position: relative;
  padding: 26px;
  border-top: 5px solid var(--brand);
}
.metric-grid strong { display: inline-block; margin-right: 8px; font-size: 3rem; line-height: 1; }
.metric-grid small { color: #004d91; font-weight: 850; }
.metric-grid p { margin: 16px 0; }
.metric-grid em {
  display: inline-flex;
  padding: 8px 12px;
  color: var(--brand-dark);
  background: var(--surface-blue);
  border-radius: 999px;
  font-style: normal;
  font-size: .82rem;
  font-weight: 850;
}

.trust-section { background: #fff; }
.trust-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.trust-cards article { padding: 26px; min-height: 178px; }
.trust-cards strong { display: block; margin-bottom: 16px; font-size: 1.08rem; }
.contact-section {
  padding: 74px 0 88px;
  background: linear-gradient(180deg, #edf5fb, #dfeef8);
}
.final-cta {
  overflow: hidden;
  max-width: 1060px;
  padding: 56px 48px;
  border-radius: 16px;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(8, 35, 71, .96), rgba(12, 109, 173, .88)),
    url("assets/logosupmed1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}
.final-cta h2 { margin: 0 auto; max-width: 780px; color: #fff; }
.final-cta p { margin: 24px auto 0; max-width: 740px; color: rgba(255,255,255,.84); }
.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin: 22px auto 0;
  color: #fff;
  font-size: .95rem;
}
.contact-details a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.contact-details span { width: 100%; }

.site-footer {
  background: linear-gradient(135deg, #0b2447, #0c6dad);
  color: rgba(255,255,255,.78);
  padding: 58px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 38px; }
.footer-logo { width: 220px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.site-footer p { max-width: 460px; color: rgba(255,255,255,.78); }
.site-footer h4 { color: #fff; font-size: .9rem; margin-bottom: 12px; text-transform: uppercase; }
.site-footer a { display: block; color: rgba(255,255,255,.74); padding: 4px 0; font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.62); font-size: .84rem; }
.floating-quote {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .32);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}
.floating-quote:hover { transform: translateY(-2px); }
.floating-quote svg { width: 30px; height: 30px; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(6, 27, 53, .62);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}
.modal-backdrop.open { opacity: 1; visibility: visible; pointer-events: auto; }
.modal { width: min(720px, 100%); max-height: 90vh; overflow: auto; background: #fff; border-radius: var(--radius); box-shadow: 0 28px 70px rgba(0,0,0,.25); transform: translateY(14px) scale(.98); transition: transform .2s ease; }
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
.modal-sm { width: min(430px, 100%); }
.modal-head, .modal-foot { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.modal-foot { border-top: 1px solid var(--line); border-bottom: 0; justify-content: flex-end; }
.modal-body { padding: 22px; }
.modal-note { margin-bottom: 16px; font-size: .94rem; }
.close-x { border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 1.7rem; line-height: 1; transition: color .16s ease, transform .16s ease; }
.close-x:hover { color: var(--ink); transform: rotate(4deg); }
.quote-tag { display: inline-flex; background: var(--surface-blue); color: var(--brand-dark); border-radius: 999px; padding: 7px 11px; font-weight: 800; font-size: .85rem; margin-bottom: 14px; }
.quote-form { display: grid; gap: 14px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { color: var(--ink); font-size: .86rem; font-weight: 800; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
}
.field textarea { min-height: 112px; resize: vertical; }
.field textarea.variants-input { min-height: 78px; }
.field-help { color: var(--muted); font-size: .82rem; }
.product-variant-picker {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-blue);
  color: var(--ink);
  font-size: .88rem;
  font-weight: 800;
}
.product-variant-picker select {
  min-width: 0;
  width: 100%;
  padding: 8px 34px 8px 10px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 4px);
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.check-field {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 800;
  font-size: .92rem;
}
.check-field input { width: 18px; height: 18px; accent-color: var(--brand-mid); }
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.toast-stack { position: fixed; right: 22px; bottom: 92px; z-index: 140; display: grid; gap: 10px; }
.toast { max-width: 360px; padding: 12px 16px; border-radius: var(--radius); background: var(--brand-deep); color: #fff; box-shadow: var(--shadow); animation: toastIn .24s ease both; }
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.hidden { display: none !important; }

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .reveal-card { animation: cardEnter .7s .15s ease both; }
@keyframes cardEnter {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .hero-grid, .method-grid, .trust-grid { grid-template-columns: 1fr; }
  .hero-panel, .manual-panel { max-width: 620px; }
  .context-grid, .grid-products, .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    margin: 0;
    padding: 12px 20px 18px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 32px rgba(6, 27, 53, .1);
  }
  .nav.open { display: flex; }
  .nav .btn { width: 100%; }
  .brand-logo { width: 150px; }
  .hero-proof, .process-line, .manual-grid, .trust-cards { grid-template-columns: 1fr; }
  .process-line { text-align: left; }
  .process-line::before { display: none; }
  .process-line article > span { margin-left: 0; }
  .process-line p { min-height: 0; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  section { padding: 74px 0; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.2rem); }
  h2 { font-size: clamp(2rem, 10vw, 2.75rem); }
  .hero { min-height: auto; padding: 48px 0 58px; }
  .hero-actions, .prod-actions { flex-direction: column; }
  .btn { width: 100%; }
  .context-grid, .grid-products, .metric-grid, .footer-grid, .sector-list { grid-template-columns: 1fr; }
  .clinical-shot { min-height: 420px; }
  .manual-panel img { height: 360px; }
  .row-2 { grid-template-columns: 1fr; }
  .admin-catalog-tools { align-items: stretch; flex-direction: column; }
  .final-cta { padding: 42px 22px; }
  .floating-quote { right: 16px; bottom: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .hero-slide { animation: none; opacity: 0; transform: none; }
  .hero-slide:first-child { opacity: 1; }
  .js .reveal { opacity: 1; transform: none; }
}
