:root {
  --blue: #073d82;
  --dark: #032653;
  --green: #20a56b;
  --text: #182b3d;
  --muted: #68798a;
  --pale: #f5f9fd;
  --line: #e3eaf1;
  --shadow: 0 18px 50px rgba(5, 43, 84, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(7, 61, 130, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(32, 165, 107, 0.08), transparent 24%),
    #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.topbar {
  background: linear-gradient(90deg, #06234a, #0a3870);
  color: #dce8f5;
  font-size: 12px;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 18px;
  padding: 6px 0;
}

.topbar-social {
  display: flex;
  gap: 18px;
}

.topbar-social a {
  color: #dce8f5;
  transition: color 0.2s;
}

.topbar-social a:hover {
  color: #fff;
  text-decoration: underline;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(227, 234, 241, 0.75);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header .brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand-association {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-left: 60px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-association strong {
  display: inline;
  color: var(--blue);
  font-family: inherit;
  font-size: inherit;
  letter-spacing: 0;
}

.brand-association small {
  display: inline;
  color: var(--blue);
  font-size: inherit;
  letter-spacing: 0;
}

.brand-association a {
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: underline;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 4px;
  box-shadow: 0 12px 24px rgba(7, 61, 130, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--blue);
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
}

nav a {
  position: relative;
  color: var(--dark);
}

nav a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: 0.25s;
}

nav a:hover:after,
nav a.active:after {
  width: 100%;
}

.nav-cta {
  background: var(--blue);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(7, 61, 130, 0.18);
}

.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 25px;
  color: var(--dark);
}

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #eff7ff 0%, #f4faff 40%, rgba(244, 250, 255, 0.82) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40px -60px auto auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 165, 107, 0.24), rgba(32, 165, 107, 0) 70%);
}

.hero-highlight {
  position: absolute;
  z-index: 1;
  right: 4%;
  bottom: 8%;
  width: min(300px, 34vw);
  padding: 26px 26px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.32));
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 24px 60px rgba(7, 61, 130, 0.12);
  backdrop-filter: blur(10px);
}

.hero-highlight strong {
  display: block;
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: 44px;
  line-height: 1;
  color: var(--blue);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.hero-highlight span {
  display: block;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 94px 0;
  position: relative;
  z-index: 1;
  transform: translateY(-22px);
}

.hero-copy {
  max-width: 680px;
  padding: 0;
  position: relative;
  z-index: 2;
}

.hero-copy::before {
  content: "Healthcare by design";
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(7, 61, 130, 0.08);
  margin-bottom: 15px;
  box-shadow: 0 10px 24px rgba(7, 61, 130, 0.06);
  transform: translateY(-6px);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: clamp(46px, 5.8vw, 76px);
  line-height: 1.02;
  color: var(--dark);
  margin: 0 0 22px;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

.hero h1 span,
h2 span {
  color: var(--green);
}

.hero p {
  font-size: 18px;
  color: #516173;
  max-width: 620px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s;
  transform: translateY(0);
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: linear-gradient(135deg, var(--blue), #0b579d);
  color: #fff;
  box-shadow: 0 14px 30px rgba(7, 61, 130, 0.24);
}

.outline {
  border: 1px solid rgba(7, 61, 130, 0.16);
  background: #fff;
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(7, 61, 130, 0.06);
}

.white {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.trust {
  background: #fff;
  margin-top: -56px;
  position: relative;
  z-index: 5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.trust article {
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.trust article:last-child {
  border-right: 0;
}

.trust b {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(32, 165, 107, 0.12);
  color: var(--green);
  margin-bottom: 14px;
}

.trust h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--dark);
}

.trust p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section.pale {
  background: var(--pale);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(32, 165, 107, 0.07), transparent 32%),
    radial-gradient(circle at bottom left, rgba(7, 61, 130, 0.06), transparent 24%);
  pointer-events: none;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head h2,
.quality h2,
.cta h2 {
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1.06;
  margin: 0 0 16px;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.section-head p,
.quality p,
.cta p {
  color: var(--muted);
  font-size: 16px;
}

.cards,
.news-grid {
  display: grid;
  gap: 20px;
}

.products-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card-extra {
  display: none;
}

.products-grid.show-all .product-card-extra {
  display: block;
}

.products-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.card,
.news-card,
.quality-grid,
.cta-inner,
.footer-grid {
  background: #fff;
}

.card {
  padding: 28px;
  border: 1px solid rgba(227, 234, 241, 0.85);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(7, 61, 130, 0.06);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(7, 61, 130, 0.12);
  border-color: rgba(32, 165, 107, 0.18);
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 24px;
  background: linear-gradient(135deg, rgba(7, 61, 130, 0.1), rgba(32, 165, 107, 0.12));
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--dark);
}

.card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.card a {
  font-weight: 700;
  color: var(--green);
}

.product-card {
  padding: 14px;
  overflow: hidden;
}

.product-media {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f7fbff);
  border: 1px solid rgba(227, 234, 241, 0.9);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-body {
  padding: 18px 10px 10px;
}

.product-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(32, 165, 107, 0.12);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quality {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.quality-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) 1.18fr;
  gap: 28px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid rgba(227, 234, 241, 0.9);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.quality-visual {
  border-radius: 24px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.quality-visual img {
  width: 100%;
  height: 100%;
  max-height: 800px;
  object-fit: contain;
}

.visual-badge {
  position: relative;
  z-index: 1;
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.visual-badge strong {
  font-size: 42px;
}

.quality-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.quality-grid > .quality-points {
  margin-top: 0;
}

.quality-points div,
.stats div {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: #f8fbfe;
  border: 1px solid var(--line);
}

.quality-points strong,
.stats strong {
  display: block;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 6px;
}

.quality-points span,
.stats span {
  color: var(--muted);
  font-size: 14px;
}

.about-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}

.about-tile {
  background: #fff;
  border: 1px solid rgba(227, 234, 241, 0.85);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(7, 61, 130, 0.06);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.about-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(7, 61, 130, 0.12);
  border-color: rgba(32, 165, 107, 0.18);
}

.about-tile-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.about-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-tile:nth-child(2) .about-tile-media {
  background: #fff;
}

.about-tile:nth-child(2) .about-tile-media img {
  object-fit: contain;
}

.about-tile-body {
  padding: 22px 20px 24px;
}

.about-tile-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--dark);
}

.about-tile-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 10px;
}

.leader-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.leader-tile {
  background: #fff;
  border: 1px solid rgba(227, 234, 241, 0.85);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(7, 61, 130, 0.06);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.leader-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(7, 61, 130, 0.12);
  border-color: rgba(32, 165, 107, 0.18);
}

.leader-tile-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.leader-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.leader-tile-body {
  padding: 22px 20px 24px;
}

.leader-tile-body h3 {
  margin: 0 0 6px;
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: 20px;
  color: var(--dark);
}

.leader-tile-body .role {
  display: inline-block;
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.leader-tile-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.leader-more {
  margin-top: 14px;
}

.leader-more summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}

.leader-more summary::-webkit-details-marker {
  display: none;
}

.leader-more summary::after {
  content: "→";
  transition: transform 0.2s;
}

.leader-more[open] summary::after {
  transform: rotate(90deg);
}

.leader-more[open] summary {
  margin-bottom: 12px;
}

.leader-more p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.leader-more p:last-of-type {
  margin-bottom: 0;
}

.leader-more blockquote {
  margin: 12px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  background: #f7fbff;
  border-radius: 0 14px 14px 0;
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
}

.news-grid {
  grid-template-columns: repeat(3, 1fr);
}

.news-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(227, 234, 241, 0.9);
  box-shadow: 0 12px 28px rgba(7, 61, 130, 0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(7, 61, 130, 0.1);
}

.news-art {
  border-radius: 18px;
  min-height: 130px;
}

.news-art.a {
  background: linear-gradient(160deg, rgba(7, 61, 130, 0.95), rgba(32, 165, 107, 0.7));
}

.news-art.b {
  background: linear-gradient(160deg, #dff2ff, #7bb7eb);
}

.news-art.c {
  background: linear-gradient(160deg, #f1f6fb, #b9d8f0);
}

.news-card small {
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.news-card h3 {
  margin: 8px 0 10px;
  font-size: 20px;
  color: var(--dark);
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

.cta {
  padding: 0 0 96px;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--dark), var(--blue));
  color: #fff;
  box-shadow: 0 26px 54px rgba(7, 61, 130, 0.22);
  position: relative;
  overflow: hidden;
}

.cta-inner::after {
  content: "";
  position: absolute;
  inset: auto -100px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta h2,
.cta p {
  color: #fff;
  max-width: 650px;
  margin-right: auto;
}

.cta .eyebrow {
  color: #8fe0b8;
}

footer {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.9fr;
  gap: 24px;
  padding: 52px 0;
}

.footer-grid h4 {
  margin: 0 0 12px;
  color: var(--dark);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
}

.footer-brand {
  margin-bottom: 14px;
}

.copyright {
  background: #f4f8fc;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}

.copyright .container {
  padding: 14px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

.hero-inner.reveal.show {
  transform: translateY(-30px);
}

#topBtn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: none;
  background: var(--green);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 14px 28px rgba(32, 165, 107, 0.28);
  cursor: pointer;
}

@media (max-width: 1100px) {
  .products-grid,
  .news-grid,
  .about-tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .leader-tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-highlight {
    position: static;
    width: 100%;
    max-width: 320px;
    margin-top: 28px;
  }
}

@media (max-width: 960px) {
  .menu-btn {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    box-shadow: 0 18px 34px rgba(7, 61, 130, 0.12);
    border-bottom: 1px solid rgba(227, 234, 241, 0.9);
  }

  nav.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    font-size: 10px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-inner {
    padding: 72px 0;
  }

  .hero h1 {
    font-size: 44px;
    max-width: none;
  }

  .trust {
    margin-top: 0;
    padding-top: 18px;
  }

  .trust-grid,
  .products-grid,
  .news-grid,
  .quality-points,
  .stats,
  .about-tiles,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .section-head h2,
  .about-grid h2,
  .quality h2,
  .cta h2 {
    font-size: 34px;
  }

  .leader-tiles {
    grid-template-columns: 1fr;
  }

  .quality-grid {
    grid-template-columns: 1fr;
  }

  .quality-grid > .quality-points {
    margin-top: 22px;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .news-art {
    min-height: 180px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 26px;
  }

  .cta h2 {
    font-size: 30px;
  }
}