:root {
  --ink: #081133;
  --muted: #5f677a;
  --red: #e7192e;
  --red-dark: #bd1021;
  --blue: #111a55;
  --green: #0f8b6f;
  --sky: #e9f5ff;
  --line: #dfe5ee;
  --panel: #ffffff;
  --soft: #f6f8fb;
  --shadow: 0 20px 50px rgba(8, 17, 51, 0.1);
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroGlow {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 0.92;
    transform: scale(1.04);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js .reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms ease,
    transform 720ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.healfast-catalog-hero {
  min-height: auto;
}

.catalog-showcase {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 16px;
  align-items: end;
  min-height: 440px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.catalog-showcase img {
  width: 100%;
  object-fit: contain;
  animation: softFloat 7s ease-in-out infinite;
}

.catalog-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.catalog-stats span,
.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-catalog {
  background: var(--soft);
}

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

.product-tile {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(8, 17, 51, 0.08);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.product-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 25, 46, 0.24);
  box-shadow: 0 24px 60px rgba(8, 17, 51, 0.12);
}

.product-tile__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 24px;
  background: linear-gradient(135deg, #fff8f8, #eaf7ff);
}

.product-tile__media img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  transition: transform 320ms ease;
}

.product-tile:hover .product-tile__media img {
  transform: scale(1.035);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #fff;
  background: var(--red);
  border-color: transparent;
}

.product-tile__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.product-tile__body p:not(.company-card__type) {
  color: var(--muted);
}

.product-tile__meta {
  display: grid;
  gap: 7px;
  margin: 10px 0 22px;
  font-weight: 900;
}

.product-tile__meta span:first-child {
  color: var(--red);
  font-size: 24px;
}

.product-page-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  padding: clamp(34px, 6vw, 70px) clamp(18px, 4vw, 64px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.92), rgba(250, 238, 238, 0.86)),
    radial-gradient(circle at 82% 18%, rgba(231, 25, 46, 0.16), transparent 32%),
    linear-gradient(135deg, #fff, #edf7fb);
}

.product-page-hero--scar {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.94), rgba(235, 250, 246, 0.88)),
    radial-gradient(circle at 82% 18%, rgba(15, 139, 111, 0.18), transparent 32%),
    linear-gradient(135deg, #fff, #f6fbff);
}

.product-gallery {
  position: sticky;
  top: 104px;
}

.product-gallery__main {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 590px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-gallery__main img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  transition:
    opacity 220ms ease,
    transform 320ms ease;
}

.product-gallery__main:hover img {
  transform: scale(1.018);
}

.product-gallery__thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.product-gallery__thumbs button {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.product-gallery__thumbs button.is-active {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(231, 25, 46, 0.12);
}

.product-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--blue);
  font-size: 36px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(8, 17, 51, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
}

.product-gallery__arrow:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.product-gallery__arrow--prev {
  left: 18px;
}

.product-gallery__arrow--next {
  right: 18px;
}

.product-buybox {
  padding: 32px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-buybox h1 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.product-subtitle {
  color: var(--muted);
  font-size: 18px;
}

.review-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 22px 0;
}

.review-row span {
  color: #f2a900;
  font-weight: 900;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-row strong {
  color: var(--red);
  font-size: 38px;
  line-height: 1;
}

.price-row span {
  color: var(--muted);
  font-size: 20px;
  text-decoration: line-through;
}

.price-row em {
  padding: 6px 9px;
  color: var(--green);
  font-style: normal;
  font-weight: 900;
  background: #e8f8f3;
  border-radius: 8px;
}

.product-options {
  margin: 24px 0;
}

.product-options p {
  margin-bottom: 10px;
  font-weight: 900;
}

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

.option-grid button {
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.option-grid button.is-selected {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.trust-list {
  display: grid;
  gap: 8px;
  padding: 18px 0 0;
  margin: 18px 0 0;
  color: var(--muted);
  list-style: none;
  border-top: 1px solid var(--line);
}

.trust-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.product-proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.product-proof-band div {
  padding: 28px clamp(18px, 4vw, 64px);
  background: var(--blue);
}

.product-proof-band--scar div {
  background: var(--green);
}

.product-proof-band strong,
.product-proof-band span {
  display: block;
  color: #fff;
}

.product-proof-band strong {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.product-proof-band span {
  margin-top: 8px;
  opacity: 0.82;
  font-weight: 800;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.story-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.story-grid article,
.warning-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(8, 17, 51, 0.06);
}

.story-grid p,
.ingredient-copy p,
.warning-card p,
.instruction-section p {
  color: var(--muted);
}

.ingredient-section,
.instruction-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: center;
  background: var(--soft);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.benefit-list div {
  min-height: 92px;
  padding: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  background: var(--blue);
  border-radius: 8px;
}

.instruction-section {
  background: #fff;
}

.product-reviews {
  background: var(--soft);
}

.scar-doctor-trust {
  padding: clamp(56px, 8vw, 92px) clamp(18px, 4vw, 64px);
  text-align: center;
  background: #fff;
}

.scar-doctor-trust > div {
  max-width: 980px;
  margin: 0 auto;
}

.scar-doctor-trust h2 {
  max-width: 900px;
  margin-inline: auto;
  text-transform: uppercase;
}

.scar-doctor-trust p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 18px;
}

.scar-tabs-section {
  padding: 0 clamp(18px, 4vw, 64px) clamp(58px, 7vw, 86px);
  background: #fff;
}

.scar-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 3px solid #d9d9d9;
}

.scar-tabs button {
  min-height: 78px;
  padding: 18px 10px;
  color: #000;
  font: inherit;
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  cursor: pointer;
}

.scar-tabs button.is-active {
  color: #a81722;
  border-bottom-color: #a81722;
}

.scar-tab-panel {
  display: none;
  padding-top: 44px;
}

.scar-tab-panel.is-active {
  display: block;
}

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

.before-after {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.06 / 0.72;
  background: #eee;
}

.before-after__image,
.before-after__overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after__overlay {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
}

.before-after input {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.before-after__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #111;
  font-size: 20px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.before-after__label {
  position: absolute;
  bottom: 14px;
  z-index: 2;
  padding: 7px 14px;
  color: #223;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.88);
}

.before-after__label--before {
  left: 14px;
}

.before-after__label--after {
  right: 14px;
}

.scar-info-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.scar-info-layout p {
  color: var(--muted);
}

.recovery-vs-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  padding: clamp(72px, 9vw, 116px) clamp(18px, 6vw, 96px);
  background: #fff;
}

.recovery-vs-card {
  min-height: 300px;
  padding: clamp(28px, 4vw, 54px);
  text-align: center;
  border-radius: 0;
}

.recovery-vs-card h2 {
  margin-bottom: 24px;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  text-transform: uppercase;
}

.recovery-vs-card p {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.35;
}

.recovery-vs-card--old {
  color: #fff;
  background: #8f252b;
}

.recovery-vs-card--old p,
.recovery-vs-card--old h2 {
  color: #fff;
}

.recovery-vs-card--new {
  color: var(--ink);
  background: #fff;
}

.recovery-vs-card--new p {
  color: #10162d;
}

.recovery-vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: #a81722;
  font-size: 24px;
  font-weight: 900;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(8, 17, 51, 0.16);
  transform: translate(-50%, -50%);
}

.scar-benefit-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.scar-benefits-section .section__heading {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.scar-benefit-icons article {
  padding: 8px;
}

.scar-benefit-icons span {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  background: #a81722;
  border-radius: 999px;
}

.scar-benefit-icons h3 {
  text-transform: uppercase;
}

.scar-benefit-icons p {
  max-width: 260px;
  margin-inline: auto;
  color: #10162d;
  font-size: 18px;
  line-height: 1.35;
}

.scar-clinical-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 42px;
  max-width: 1040px;
  margin: 34px auto 0;
}

.scar-clinical-notes p {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  color: #10162d;
  font-size: 19px;
  text-align: center;
}

.scar-clinical-notes div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.scar-clinical-notes span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #a81722;
  font-weight: 900;
  border: 3px solid #a81722;
  border-radius: 999px;
}

.scar-clinical-notes strong {
  color: #000;
  font-size: 20px;
  line-height: 1.35;
}

.healfast-certificates {
  background:
    linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}

.section__heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.quality-logo-strip {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(8, 17, 51, 0.08);
}

.quality-logo-strip__inner {
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: clamp(18px, 4vw, 34px);
}

.quality-logo-strip img {
  width: 100%;
  max-width: 980px;
  height: auto;
  max-height: 210px;
  object-fit: contain;
}

.certificate-doc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.certificate-doc {
  display: grid;
  grid-template-columns: minmax(220px, 0.74fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(8, 17, 51, 0.08);
}

.certificate-doc__image {
  max-height: 520px;
  overflow: hidden;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.certificate-doc__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.certificate-doc__content span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  background: var(--blue);
  border-radius: 8px;
}

.certificate-doc__content p {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .product-catalog-grid,
  .product-tile,
  .product-page-hero,
  .novotec-hero,
  .novotec-product-card,
  .ingredient-section,
  .instruction-section,
  .scar-info-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

  .story-grid,
  .story-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .certificate-doc-grid,
  .certificate-doc {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .catalog-showcase,
  .product-proof-band,
  .story-grid,
  .story-grid--four,
  .benefit-list,
  .before-after-grid,
  .scar-benefit-icons,
  .scar-clinical-notes {
    grid-template-columns: 1fr;
  }

  .scar-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .recovery-vs-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .recovery-vs-badge {
    position: static;
    margin: -8px auto;
    transform: none;
  }

  .scar-tabs button {
    min-height: 62px;
    font-size: 15px;
  }

  .product-gallery__main {
    min-height: 390px;
  }

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

  .quality-logo-strip__inner {
    min-height: auto;
    padding: 16px;
  }

  .quality-logo-strip img {
    max-height: none;
  }
}

@media (max-width: 520px) {
  .option-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-buybox,
  .product-gallery__main,
  .product-tile__body {
    padding: 20px;
  }

  .scar-tabs {
    grid-template-columns: 1fr;
  }

  .scar-tabs-section {
    padding-inline: 14px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family:
    Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 8px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 229, 238, 0.9);
  box-shadow: 0 10px 28px rgba(8, 17, 51, 0.04);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  width: 126px;
}

.brand img {
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
}

.main-nav a:hover {
  color: var(--red);
  background: #fff3f4;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(70px, 10vw, 128px) clamp(18px, 5vw, 84px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(8, 17, 51, 0.48) 24%, rgba(8, 17, 51, 0.82) 100%),
    linear-gradient(115deg, rgba(8, 17, 51, 0.86), rgba(8, 17, 51, 0.56) 48%, rgba(231, 25, 46, 0.28)),
    url("assets/backgrounds/medical-hero.jpg") center / cover no-repeat;
  background-blend-mode: normal, multiply, normal;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(8, 17, 51, 0.86) 0%, rgba(8, 17, 51, 0.58) 34%, rgba(8, 17, 51, 0.18) 66%, transparent 100%),
    linear-gradient(90deg, rgba(231, 25, 46, 0.2), transparent 28%, transparent 72%, rgba(15, 139, 111, 0.18));
  pointer-events: none;
}

.hero::after {
  content: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  text-align: center;
  animation: fadeUp 780ms ease both;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  color: #fff;
  background: rgba(231, 25, 46, 0.92);
  border-radius: 999px;
}

.hero h1 {
  max-width: 980px;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(44px, 6.2vw, 72px);
  line-height: 1.02;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.48);
}

.hero__lead {
  max-width: 780px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  line-height: 1.62;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 16px 30px rgba(231, 25, 46, 0.22);
}

.button--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 20px 38px rgba(231, 25, 46, 0.28);
}

.button--secondary {
  color: var(--blue);
  background: #fff;
  border-color: var(--line);
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 64px);
}

.section__heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.companies .section__heading {
  margin-inline: auto;
  text-align: center;
}

.intro .section__heading,
.certificates .section__heading {
  margin-inline: auto;
  text-align: center;
}

.intro .section__heading p:not(.eyebrow),
.certificates .section__heading p:not(.eyebrow) {
  margin-inline: auto;
}

.intro,
.certificates {
  background: var(--soft);
}

.feature-grid,
.company-grid,
.review-grid,
.certificate-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid article,
.company-card,
.certificate-list article,
.review-grid blockquote,
.product-main,
.product-aside,
.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(8, 17, 51, 0.06);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.feature-grid article:hover,
.company-card:hover,
.certificate-list article:hover,
.review-grid blockquote:hover,
.product-main:hover,
.product-aside:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 139, 111, 0.22);
  box-shadow: 0 22px 52px rgba(8, 17, 51, 0.1);
}

.feature-grid article,
.company-card,
.certificate-list article,
.review-grid blockquote,
.product-main,
.product-aside {
  padding: 26px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: #fff;
  font-weight: 900;
  background: var(--blue);
  border-radius: 8px;
}

.company-grid {
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  max-width: 1600px;
  margin-inline: auto;
}

.certificate-list {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  max-width: 1320px;
  margin-inline: auto;
}

.company-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.company-card--featured {
  position: relative;
  overflow: hidden;
}

.company-card__image {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  margin-bottom: 18px;
  object-fit: contain;
  background: linear-gradient(135deg, #fff6f5, #eef8ff);
  border: 1px solid #f0dfe1;
  border-radius: 8px;
  transition: transform 320ms ease;
}

.company-card:hover .company-card__image {
  transform: scale(1.025);
}

.company-card__image--logo {
  padding: 22px;
  background: #f7fbff;
}

.company-card__image--instara {
  padding: 18px;
  background: linear-gradient(135deg, #f3fffb, #eef8ff);
}

.company-card__image--medixil {
  padding: 12px;
  background: linear-gradient(135deg, #ffffff, #eef8ff);
}

.company-card__image--icg {
  padding: 14px;
  background:
    radial-gradient(circle at 64% 28%, rgba(15, 139, 111, 0.14), transparent 34%),
    linear-gradient(135deg, #ffffff, #eefbf7);
}

.company-card__type {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.company-card p:not(.company-card__type) {
  color: var(--muted);
}

.company-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.company-card a:hover {
  text-decoration: underline;
}

.company-card__button {
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 44px;
  width: fit-content;
  margin-top: auto !important;
  padding: 11px 18px;
  color: #fff !important;
  background: var(--red);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(231, 25, 46, 0.18);
}

.company-card__button:hover {
  background: var(--red-dark);
  text-decoration: none !important;
  box-shadow: 0 16px 28px rgba(231, 25, 46, 0.24);
}

.company-card--empty {
  background: #f9fbfd;
}

.company-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 950;
  background: var(--sky);
  border: 1px solid #cde8ff;
  border-radius: 8px;
}

.company-logo--healfast {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #ff6b4a);
  border-color: transparent;
}

.company-logo--novatec {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #2f6fc8);
  border-color: transparent;
}

.company-logo--instara {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #34b28e);
  border-color: transparent;
}

.certificate-list article span {
  display: inline-flex;
  margin-top: 8px;
  padding: 7px 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  background: #e9f8f3;
  border-radius: 8px;
}

.certificate-card {
  display: flex;
  flex-direction: column;
}

.certificate-card--document img {
  width: 100%;
  height: 360px;
  margin-bottom: 22px;
  padding: 10px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-grid blockquote {
  margin: 0;
}

.review-grid p {
  color: var(--muted);
  font-size: 17px;
}

.review-grid cite {
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.contacts {
  background: linear-gradient(135deg, var(--blue), #17206a);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
}

.contact-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.contact-list li {
  padding: 9px 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #f9fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(18px, 4vw, 64px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 120px;
}

.nature-ingredients-section {
  padding: clamp(58px, 8vw, 92px) clamp(18px, 6vw, 96px);
  background: #fbf6ee;
}

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

.nature-ingredients__heading h2 {
  margin-bottom: 10px;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
}

.nature-ingredients__heading p {
  color: #1e2740;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.nature-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 52px;
  max-width: 980px;
  margin: 0 auto;
}

.nature-ingredients-grid article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0 14px 16px;
  border-left: 1px solid rgba(8, 17, 51, 0.18);
}

.ingredient-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  font-size: 34px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(8, 17, 51, 0.08);
}

.nature-ingredients-grid h3 {
  margin-bottom: 6px;
  color: #202a44;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.nature-ingredients-grid p {
  margin-bottom: 0;
  color: #40485d;
  font-size: 15px;
  line-height: 1.4;
}

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

.nature-ingredients__footer h3 {
  margin-bottom: 6px;
  color: #202a44;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.nature-ingredients__footer p {
  color: var(--muted);
  font-size: 14px;
}

.product-cert-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(46px, 7vw, 76px) clamp(18px, 6vw, 96px);
  background: #fff;
  border-top: 1px solid var(--line);
}

.product-cert-strip__image {
  display: grid;
  place-items: center;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(8, 17, 51, 0.08);
}

.product-cert-strip__image img {
  width: 100%;
  max-width: 580px;
  height: auto;
}

.product-cert-strip__content {
  max-width: 620px;
}

.product-cert-strip__content p:not(.eyebrow) {
  color: var(--muted);
}

@media (max-width: 880px) {
  .nature-ingredients-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-cert-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nature-ingredients-grid article {
    grid-template-columns: 54px 1fr;
    gap: 12px;
    padding-left: 10px;
  }

  .ingredient-icon {
    width: 46px;
    height: 46px;
    font-size: 26px;
  }
}

.company-hero {
  padding: clamp(52px, 8vw, 92px) clamp(18px, 4vw, 64px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.92), rgba(233, 245, 255, 0.9)),
    radial-gradient(circle at 86% 20%, rgba(15, 139, 111, 0.18), transparent 30%);
}

.novotec-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: clamp(48px, 8vw, 92px) clamp(18px, 4vw, 64px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.94), rgba(235, 246, 255, 0.9)),
    radial-gradient(circle at 82% 22%, rgba(0, 104, 170, 0.2), transparent 32%),
    linear-gradient(135deg, #fff, #edf7fb);
}

.novotec-hero__copy {
  max-width: 780px;
}

.novotec-hero__copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.novotec-hero__brand,
.novotec-product-card__visual {
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.novotec-hero__brand img,
.novotec-product-card__visual img {
  width: 100%;
  max-width: 620px;
  object-fit: contain;
  animation: softFloat 7.5s ease-in-out infinite;
}

.novotec-overview,
.novotec-usecases {
  background: #fff;
}

.novotec-benefits {
  background: var(--soft);
}

.novotec-product-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(8, 17, 51, 0.08);
}

.novotec-product-card p {
  color: var(--muted);
}

.novotec-hero--blu .novotec-hero__brand {
  min-height: 360px;
}

.novotec-hero--blu .novotec-hero__brand img {
  max-width: 760px;
  border-radius: 8px;
}

.blu-intro,
.blu-use {
  background: #fff;
}

.blu-hero-image {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(8, 17, 51, 0.08);
}

.blu-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.blu-products {
  background: var(--soft);
}

.blu-product {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(22px, 4vw, 36px);
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(8, 17, 51, 0.08);
}

.blu-product__gallery .product-gallery__main {
  min-height: 430px;
}

.blu-product__gallery .product-gallery__main img {
  max-height: 390px;
  border-radius: 8px;
}

.blu-product__content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.blu-benefits {
  background: #eef8ff;
}

.instara-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(54px, 8vw, 108px) clamp(18px, 4vw, 64px);
  background:
    radial-gradient(circle at 82% 18%, rgba(43, 164, 139, 0.2), transparent 32%),
    radial-gradient(circle at 8% 92%, rgba(231, 25, 46, 0.08), transparent 34%),
    linear-gradient(135deg, #f7fffd 0%, #ffffff 48%, #eef8ff 100%);
}

.instara-hero__copy {
  max-width: 760px;
}

.instara-hero__copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.instara-hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.86), rgba(231,248,255,0.72)),
    radial-gradient(circle at 50% 50%, rgba(43, 164, 139, 0.16), transparent 48%);
  box-shadow: 0 28px 70px rgba(8, 17, 51, 0.09);
  overflow: hidden;
}

.instara-hero__sensor {
  position: absolute;
  left: clamp(18px, 4vw, 58px);
  bottom: clamp(26px, 5vw, 78px);
  width: clamp(150px, 15vw, 230px);
  filter: drop-shadow(0 22px 28px rgba(8, 17, 51, 0.14));
  animation: softFloat 7s ease-in-out infinite;
}

.instara-hero__phone {
  width: min(76%, 360px);
  transform: translateX(9%);
  filter: drop-shadow(0 28px 40px rgba(8, 17, 51, 0.18));
  animation: softFloat 8s ease-in-out infinite;
}

.instara-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.instara-metrics article {
  display: grid;
  place-items: center;
  min-height: 138px;
  padding: 24px;
  text-align: center;
  background: #fff;
}

.instara-metrics strong {
  color: var(--red);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
}

.instara-metrics span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.instara-product,
.instara-management {
  background: #fff;
}

.instara-product .section__heading,
.instara-management .section__heading,
.instara-specs .section__heading {
  margin-inline: auto;
  text-align: center;
}

.instara-product .section__heading p:not(.eyebrow) {
  margin-inline: auto;
}

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

.instara-advantage-grid article,
.instara-management__cards article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(8, 17, 51, 0.06);
}

.instara-advantage-grid img {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
}

.instara-advantage-grid p,
.instara-future__copy p,
.instara-management__cards p,
.instara-kazakhstan p {
  color: var(--muted);
}

.instara-future {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--soft);
}

.instara-future__visual {
  display: grid;
  place-items: center;
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #eefbf7);
}

.instara-future__visual img {
  width: min(78%, 330px);
  filter: drop-shadow(0 24px 36px rgba(8, 17, 51, 0.13));
}

.instara-feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.instara-feature-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.instara-feature-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  font-weight: 900;
  border-radius: 8px;
  background: var(--green);
}

.instara-feature-list h3,
.instara-feature-list p {
  margin: 0;
}

.instara-management__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

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

.instara-management__cards article {
  box-shadow: none;
}

.instara-management__layout > img {
  width: 100%;
  max-width: 560px;
  justify-self: center;
}

.instara-specs {
  background: #f7fbff;
}

.instara-specs__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.instara-specs__layout > img {
  width: min(100%, 360px);
  justify-self: center;
}

.instara-spec-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.instara-spec-table div {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) 1fr;
  gap: 18px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}

.instara-spec-table div:last-child {
  border-bottom: 0;
}

.instara-spec-table dt {
  color: var(--muted);
  font-weight: 800;
}

.instara-spec-table dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.instara-kazakhstan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(135deg, #10194b, #147760);
  color: #fff;
}

.instara-kazakhstan h2,
.instara-kazakhstan .eyebrow {
  color: #fff;
}

.instara-kazakhstan p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.medixil-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: clamp(54px, 8vw, 102px) clamp(18px, 4vw, 64px);
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 159, 211, 0.22), transparent 30%),
    radial-gradient(circle at 14% 84%, rgba(231, 25, 46, 0.1), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f5fbff 48%, #eef7fb 100%);
}

.medixil-hero__copy {
  max-width: 760px;
}

.medixil-hero__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
}

.medixil-hero__visual {
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.medixil-hero__visual img {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
}

.medixil-proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.medixil-proof-band div {
  display: grid;
  place-items: center;
  min-height: 128px;
  padding: 24px;
  text-align: center;
  background: #fff;
}

.medixil-proof-band strong {
  color: var(--red);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.medixil-proof-band span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.medixil-products,
.medixil-compare {
  background: var(--soft);
}

.medixil-products .section__heading,
.medixil-compare .section__heading {
  margin-inline: auto;
  text-align: center;
}

.medixil-products .section__heading p:not(.eyebrow) {
  margin-inline: auto;
}

.medixil-product-grid {
  display: grid;
  gap: 22px;
}

.medixil-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(8, 17, 51, 0.08);
}

.medixil-card img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(135deg, #ffffff, #f3fbff);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.medixil-card--normal {
  border-top: 4px solid #08a9d6;
}

.medixil-card--strong {
  border-top: 4px solid #e7192e;
}

.medixil-card--sensitive {
  border-top: 4px solid #78b92b;
}

.medixil-card p:not(.eyebrow),
.medixil-compare-grid p,
.medixil-kazakhstan p {
  color: var(--muted);
}

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

.medixil-compare-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(8, 17, 51, 0.06);
}

.medixil-kazakhstan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background: linear-gradient(135deg, #081133, #0f8b6f);
}

.medixil-kazakhstan h2,
.medixil-kazakhstan .eyebrow {
  color: #fff;
}

.medixil-kazakhstan p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.icg-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 0.92fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: clamp(54px, 8vw, 108px) clamp(18px, 4vw, 64px);
  background:
    radial-gradient(circle at 82% 18%, rgba(15, 139, 111, 0.2), transparent 30%),
    radial-gradient(circle at 16% 86%, rgba(231, 25, 46, 0.08), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f3fbff 48%, #eefbf7 100%);
}

.icg-hero__copy {
  max-width: 780px;
}

.icg-hero__copy p:not(.eyebrow),
.icg-overview__panel p,
.icg-application-grid p,
.icg-spec-grid p,
.icg-cert-grid p,
.icg-kazakhstan p {
  color: var(--muted);
}

.icg-hero__copy p:not(.eyebrow) {
  font-size: 20px;
}

.icg-hero__visual {
  position: relative;
  display: grid;
  min-height: 560px;
  padding: clamp(16px, 3vw, 28px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.icg-hero__surgery {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.icg-hero__product {
  position: absolute;
  right: clamp(18px, 4vw, 48px);
  bottom: clamp(18px, 4vw, 48px);
  width: min(46%, 270px);
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(8, 17, 51, 0.18);
  animation: softFloat 7s ease-in-out infinite;
}

.icg-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.icg-metrics article {
  display: grid;
  place-items: center;
  min-height: 134px;
  padding: 24px;
  text-align: center;
  background: #fff;
}

.icg-metrics strong {
  color: var(--green);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
}

.icg-metrics span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.icg-overview,
.icg-specs {
  background: #fff;
}

.icg-overview .section__heading,
.icg-applications .section__heading,
.icg-specs .section__heading,
.icg-certificates .section__heading {
  margin-inline: auto;
  text-align: center;
}

.icg-overview .section__heading p:not(.eyebrow),
.icg-specs .section__heading p:not(.eyebrow),
.icg-certificates .section__heading p:not(.eyebrow) {
  margin-inline: auto;
}

.icg-overview__panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(22px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(8, 17, 51, 0.08);
}

.icg-overview__panel img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  padding: 16px;
  background: linear-gradient(135deg, #ffffff, #eefbf7);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.icg-applications {
  background: var(--soft);
}

.icg-application-grid,
.icg-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.icg-application-grid article,
.icg-spec-grid article,
.icg-cert-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(8, 17, 51, 0.06);
}

.icg-application-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 900;
  background: var(--green);
  border-radius: 8px;
}

.icg-certificates {
  background: #f7fbff;
}

.icg-cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1240px;
  margin-inline: auto;
}

.icg-cert-grid img {
  width: 100%;
  height: 540px;
  object-fit: contain;
  object-position: top;
  padding: 16px;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.icg-kazakhstan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background: linear-gradient(135deg, #081133, #0f8b6f);
}

.icg-kazakhstan h2,
.icg-kazakhstan .eyebrow {
  color: #fff;
}

.icg-kazakhstan p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.company-hero--visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 82px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.88), rgba(250, 238, 238, 0.85)),
    radial-gradient(circle at 84% 24%, rgba(231, 25, 46, 0.18), transparent 30%),
    linear-gradient(135deg, #fff, #edf7fb);
}

.company-hero__copy {
  max-width: 780px;
}

.company-hero__media {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.company-hero__media img {
  width: min(100%, 560px);
  max-height: 560px;
  object-fit: contain;
}

.company-hero h1 {
  margin-bottom: 18px;
}

.company-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: start;
}

.product-main ul {
  padding-left: 20px;
  color: var(--muted);
}

.product-aside dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.product-aside div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.product-aside dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-aside dd {
  margin: 3px 0 0;
  font-weight: 900;
}

.healfast-strip {
  background: #fff;
}

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

.healfast-gallery article {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(8, 17, 51, 0.06);
}

.healfast-gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  margin-bottom: 18px;
  object-fit: contain;
  background: linear-gradient(135deg, #fff8f8, #edf8ff);
  border-radius: 8px;
}

.healfast-gallery p {
  color: var(--muted);
}

.healfast-benefits {
  background: var(--soft);
}

@media (max-width: 1120px) {
  .company-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .novotec-hero,
  .novotec-product-card,
  .blu-product {
    grid-template-columns: 1fr;
  }

  .novotec-hero {
    min-height: auto;
  }

  .novotec-hero__copy,
  .novotec-hero__copy p:not(.eyebrow) {
    max-width: none;
  }

  .blu-product--ribbon .blu-product__gallery {
    order: -1;
  }

  .instara-hero,
  .instara-future,
  .instara-management__layout,
  .instara-specs__layout,
  .medixil-hero,
  .medixil-card,
  .icg-hero,
  .icg-overview__panel {
    grid-template-columns: 1fr;
  }

  .instara-hero__visual,
  .instara-future__visual {
    min-height: 460px;
  }

  .medixil-hero {
    min-height: auto;
  }

  .icg-hero {
    min-height: auto;
  }

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

@media (max-width: 880px) {
  .site-header {
    min-height: 64px;
  }

  .brand {
    width: 112px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .hero,
  .contact-card,
  .product-layout,
  .company-hero--visual {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .novotec-hero {
    gap: 22px;
    padding: 30px 18px 44px;
  }

  .novotec-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.06;
  }

  .novotec-hero__copy p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.55;
  }

  .novotec-hero__brand,
  .novotec-product-card__visual {
    width: 100%;
    min-width: 0;
    padding: 16px;
  }

  .novotec-hero--blu .novotec-hero__brand {
    min-height: 220px;
  }

  .novotec-hero--blu .novotec-hero__brand img {
    max-height: 230px;
    object-fit: contain;
  }

  .blu-intro,
  .blu-products,
  .blu-benefits,
  .blu-use {
    padding-right: 18px;
    padding-left: 18px;
  }

  .blu-hero-image img {
    aspect-ratio: 4 / 3;
  }

  .blu-product {
    padding: 18px;
  }

  .blu-product__gallery .product-gallery__main {
    min-height: 300px;
  }

  .blu-product__gallery .product-gallery__main img {
    max-height: 260px;
  }

  .feature-grid,
  .company-grid,
  .review-grid,
  .certificate-list,
  .healfast-gallery,
  .instara-metrics,
  .instara-advantage-grid,
  .instara-management__cards,
  .medixil-proof-band,
  .medixil-compare-grid,
  .icg-metrics,
  .icg-application-grid,
  .icg-spec-grid,
  .icg-cert-grid {
    grid-template-columns: 1fr;
  }

  .company-hero--visual {
    min-height: auto;
  }

  .company-hero__media {
    min-height: 300px;
  }

  .instara-hero {
    min-height: auto;
  }

  .instara-hero__visual {
    min-height: 390px;
  }

  .instara-hero__phone {
    width: min(72%, 300px);
  }

  .instara-hero__sensor {
    width: 128px;
  }

  .instara-spec-table div,
  .instara-feature-list div {
    grid-template-columns: 1fr;
  }

  .instara-kazakhstan {
    align-items: flex-start;
    flex-direction: column;
  }

  .medixil-hero {
    padding: 36px 18px 48px;
  }

  .medixil-hero h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .medixil-card {
    padding: 18px;
  }

  .medixil-card img {
    max-height: 300px;
  }

  .medixil-kazakhstan {
    align-items: flex-start;
    flex-direction: column;
  }

  .icg-hero {
    padding: 36px 18px 48px;
  }

  .icg-hero h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .icg-hero__visual {
    min-height: 360px;
    padding: 12px;
  }

  .icg-hero__surgery {
    min-height: 330px;
  }

  .icg-hero__product {
    right: 18px;
    bottom: 18px;
    width: min(50%, 180px);
  }

  .icg-cert-grid img {
    height: 420px;
  }

  .icg-kazakhstan {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 38px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .feature-grid article,
  .company-card,
  .certificate-list article,
  .review-grid blockquote,
  .product-main,
  .product-aside {
    padding: 20px;
  }

  .certificate-card--document img {
    height: 300px;
  }

  .icg-hero__visual {
    min-height: 300px;
  }

  .icg-hero__surgery {
    min-height: 280px;
  }

  .icg-hero__product {
    width: min(56%, 150px);
    padding: 8px;
  }

  .icg-cert-grid img {
    height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
