:root {
    --ink: #101828;
    --muted: #667085;
    --line: #e6eef5;

    --soft: #f6f9fc;
    --soft-blue: #eaf5fb;

    --blue: #0b5fa5;
    --blue-2: #2f9dcc;
    --blue-dark: #073f73;

    --dark: #0b1220;
    --white: #ffffff;

    --success: #16a34a;
    --warning: #d97706;
    --danger: #dc2626;

    --radius: 28px;
    --shadow: 0 28px 70px rgba(7, 38, 66, .13);
    --shadow-sm: 0 14px 40px rgba(7, 38, 66, .08);
    --max: 1180px;

    /* Animation easing curves — natural deceleration */
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out:    cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.brand-copy strong {
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transform: translateY(calc(-100% - 20px));
  transition: transform .22s var(--ease-out-quart);
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline-color: var(--blue-2);
}

main:focus {
  outline: none;
}

/* Accessibility focus visible indicator ring */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.nav-links a:focus-visible {
  background: var(--soft-blue);
  color: var(--blue);
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(11, 95, 165, 0.25);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.section {
  padding: clamp(60px, 8vw, 110px) 0;
}

.section.tight {
  padding: clamp(40px, 5vw, 76px) 0;
}

.section-title {
  margin: 12px 0 18px;
  font-size: clamp(26px, 3.5vw, 34px);
  line-height: 1.15;
  letter-spacing: normal;
}

.section-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.subtle {
  color: var(--muted);
}

.top-note {
  background: #07111c;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  padding: 9px 0;
}

.top-note .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 237, 244, .8);
  transition: box-shadow .3s var(--ease-out-quart), background .3s var(--ease-out-quart);
}

/* Scrolled state — added by JS */
.site-header.scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 4px 28px rgba(7, 38, 66, .09);
}

.navbar {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 206px;
}

.brand-logo {
  width: 200px;
  height: 70px;
  object-fit: contain;
  border-radius: 12px;
}

.brand-copy strong {
  display: block;
  font-size: 14px;
  letter-spacing: .18em;
  line-height: 1;
}

.brand-copy span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .18em;
  margin-top: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 12px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #2f3945;
  position: relative;
  transition: color .2s var(--ease-out-quart), background .2s var(--ease-out-quart);
}

/* Underline slide-in on hover */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 6px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease-out-quart);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: var(--soft-blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 14px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s var(--ease-out-quart),
              background .2s var(--ease-out-quart),
              box-shadow .2s var(--ease-out-quart),
              border-color .2s var(--ease-out-quart),
              color .2s var(--ease-out-quart);
  will-change: transform;
}

.btn:active {
  transform: scale(0.96) !important;
  transition-duration: .1s;
}

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 15px 34px rgba(10, 104, 180, .25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #074f8c;
}

.btn-dark {
  background: var(--dark);
  color: white;
}

.btn-outline {
  border-color: #cddce8;
  color: var(--ink);
  background: white;
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 50%, #eff5f9 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(10, 104, 180, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 104, 180, .055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
  opacity: .7;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0 68px;
}

.hero h1 {
  margin: 14px 0 22px;
  font-size: clamp(36px, 5.5vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero p {
  color: var(--muted);
  font-size: 17px;
  max-width: 610px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
  max-width: 620px;
}

.hero-meta div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.hero-meta strong {
  display: block;
  font-size: 24px;
  letter-spacing: -.03em;
}

.hero-meta span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 38px 55px rgba(3, 37, 65, .12));
}

.floating-card {
  position: absolute;
  left: 2%;
  bottom: 11%;
  width: min(330px, 62%);
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(255, 255, 255, .7);
  backdrop-filter: blur(14px);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  margin-bottom: 5px;
}

.floating-card small {
  color: var(--muted);
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-grid>div {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}

.trust-grid>div:last-child {
  border-right: 0;
}

.trust-grid span {
  display: block;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}

.trust-grid strong {
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.image-card {
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.content-card {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: #344150;
}

.check-list li::before {
  content: "✓";
  flex: 0 0 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.service-card,
.product-card,
.stat-card,
.team-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out-quart),
              box-shadow .3s var(--ease-out-quart),
              border-color .3s var(--ease-out-quart);
  will-change: transform;
}

.service-card:hover,
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: #c8dff0;
}

.service-card img.icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
}

.service-card h3,
.product-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.service-card p,
.product-card p {
  color: var(--muted);
  margin: 0;
}

.band {
  background: #07111c;
  color: white;
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(20, 184, 214, .18);
}

.band .section-title,
.band .section-lead {
  color: white;
}

.band .section-lead {
  opacity: .76;
}

.band-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
  position: relative;
}

.band-panel {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 34px;
}

.band-panel ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, .76);
}

.category-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin: 34px 0 28px;
}

.search-box {
  flex: 1;
  min-width: 260px;
  position: relative;
}

.search-box input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 22px;
  outline: 0;
}

.search-box input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10, 104, 180, .09);
}

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-pills button {
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 800;
  color: #334155;
}

.filter-pills button.active,
.filter-pills button:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

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

.product-card {
  padding: 0;
  overflow: hidden;
}

.product-card .product-img {
  background: linear-gradient(135deg, #f7fbff, #eef8ff);
  aspect-ratio: 1.45;
  display: grid;
  place-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.product-card .product-body {
  padding: 24px;
}

.product-card .tag {
  display: inline-flex;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}

.product-card .meta {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.product-card .meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  color: var(--muted);
}

.notice {
  padding: 18px 22px;
  border: 1px solid #cfe8f7;
  background: #f1faff;
  border-radius: 12px;
  color: #335163;
  margin-top: 28px;
}

.page-hero {
  background: linear-gradient(135deg, #f8fbff, #edf8ff);
  padding: 86px 0 72px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 12px 0 16px;
  font-size: clamp(32px, 4.5vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 900px;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.breadcrumb {
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.process-card {
  background: transparent;
  border: 0;
  border-top: 3px solid var(--blue);
  border-radius: 0;
  padding: 24px 0 0 0;
  box-shadow: none;
  transition: border-color .3s var(--ease-out-quart);
}

.process-card:hover {
  border-top-color: var(--blue-2);
}

.process-card span {
  display: inline-block;
  color: var(--blue);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 12px;
  transition: color .3s var(--ease-out-quart);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 760px;
}

th,
td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  background: #f7fbfe;
}

tr:last-child td {
  border-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  background: white;
}

.contact-card h3 {
  margin-top: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 16px;
  outline: 0;
  width: 100%;
  background: white;
  color: var(--ink);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10, 104, 180, .08);
}

.map-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.cta {
  background: linear-gradient(135deg, #07111c, #062b4b);
  color: white;
  border-radius: 40px;
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  overflow: hidden;
  position: relative;
}

.cta::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(20, 184, 214, .22);
  right: -90px;
  top: -90px;
}

.cta h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.5vw, 34px);
  line-height: 1.15;
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  max-width: 690px;
}

.cta>* {
  position: relative;
  z-index: 1;
}

.site-footer {
  background: #050608;
  color: white;
  padding: 70px 0 28px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: white;
  border-radius: 14px;
}

.footer-brand strong {
  letter-spacing: .18em;
  font-size: 14px;
}

.site-footer h4 {
  margin: 0 0 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.site-footer a,
.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, .7);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {

  .hero-grid,
  .split,
  .band-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 780px;
    margin-inline: auto;
  }

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

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

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

@media (max-width: 820px) {
  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }

  .navbar {
    height: 74px;
  }

  .brand {
    min-width: auto;
  }

  .brand-copy {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 74px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 98px);
    max-height: calc(100dvh - 98px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow);
  }

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

  body.no-js .menu-toggle {
    display: none;
  }

  body.no-js .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin: 0 0 14px;
    padding: 0 0 8px;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    scrollbar-width: thin;
  }

  body.no-js .navbar {
    height: auto;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-block: 14px;
  }

  body.no-js .brand,
  body.no-js .nav-actions {
    order: 1;
  }

  body.no-js .nav-links {
    order: 2;
    flex-basis: 100%;
  }

  .nav-links a {
    border-radius: 16px;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .hero-meta,
  .cards-grid,
  .product-grid,
  .timeline,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px;
    border-radius: 28px;
  }

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

@media (max-width: 520px) {
  .container {
    width: min(var(--max), calc(100% - 26px));
  }

  .top-note {
    display: none;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-grid {
    padding: 52px 0;
    gap: 28px;
  }

  .nav-actions .btn-primary {
    padding: 0 14px;
    min-height: 42px;
    font-size: 12px;
  }

  .service-card,
  .contact-card {
    padding: 22px;
  }
}

/* Laravel 12 catalog additions */
.centered {
  text-align: center;
}

.centered .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.between {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.muted-section {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-block: 1px solid var(--line);
}

.compact {
  padding: 68px 0 56px;
}

.reverse {
  direction: rtl;
}

.reverse>* {
  direction: ltr;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  display: block;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: .25s ease;
  color: var(--ink);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #c8e0f2;
}

.feature-card img {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

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

.cta-section {
  padding-top: 42px;
}

.cta-card {
  background: #09101d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  border-radius: 24px;
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}

.cta-card>* {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  color: white;
  margin: 8px 0 12px;
  font-size: clamp(24px, 3vw, 28px);
  letter-spacing: normal;
  line-height: 1.15;
}

.cta-card p {
  color: rgba(255, 255, 255, .72);
  max-width: 760px;
  margin: 0;
}

.product-image {
  background: linear-gradient(135deg, #f7fbff, #eef8ff);
  aspect-ratio: 1.45;
  display: grid;
  place-items: center;
  /* padding: 18px; */
  border-bottom: 1px solid var(--line);
}

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

.product-category {
  display: inline-flex;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}

.product-card h3 a {
  color: var(--ink);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

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

.product-meta a {
  color: var(--blue);
  font-weight: 900;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}

.catalog-sidebar {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 104px;
}

.catalog-sidebar h3 {
  margin: 0 0 16px;
}

.filter-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 14px;
  color: #334155;
  font-weight: 800;
  border: 1px solid transparent;
}

.filter-link:hover,
.filter-link.active {
  background: var(--soft-blue);
  color: var(--blue);
  border-color: #d5e9f8;
}

.catalog-search {
  display: flex;
  gap: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 12px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.catalog-search input {
  border: 0;
  box-shadow: none;
  min-height: 48px;
}

.catalog-search input:focus {
  box-shadow: none;
}

.catalog-count {
  color: var(--muted);
  margin: 12px 0 22px;
  font-weight: 800;
}

.catalog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.empty-state {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 46px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.product-detail-hero {
  padding: 70px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}

.product-pack-shot {
  background: white;
  border: 1px solid var(--line);
  border-radius: 38px;
  /* padding: 36px; */
  box-shadow: var(--shadow);
}

.product-pack-shot img {
  width: 100%;
  /* max-height: 390px; */
  object-fit: cover;
  border-radius: 35px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

.detail-content,
.detail-sidebar,
.contact-panel,
.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 26px 0;
}

.product-specs div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: #fbfdff;
}

.product-specs dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  margin-bottom: 6px;
}

.product-specs dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.medical-disclaimer {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 22px;
}

.medical-disclaimer h3 {
  margin-top: 0;
  color: #9a3412;
}

.detail-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
}

.detail-sidebar .btn {
  width: 100%;
  justify-content: center;
}

.contact-panel img {
  width: 100%;
  margin-top: 28px;
  border-radius: 12px;
  background: #f8fbff;
}

.contact-map-card {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--soft);
  box-shadow: var(--shadow-sm);
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  min-height: 360px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.contact-list > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 6px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

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

.contact-list strong {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
}

.contact-list span,
.contact-list a {
  color: var(--ink);
  font-weight: 600;
}

.contact-list a {
  color: var(--blue);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-intro {
  padding-bottom: 4px;
}

.form-intro h2 {
  margin: 6px 0 8px;
  font-size: clamp(20px, 2.5vw, 24px);
}

.form-intro p {
  color: var(--muted);
  margin: 0;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

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

.contact-form label {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  display: grid;
  gap: 7px;
}

.alert {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 800;
}

.alert.success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.alert.error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.site-footer a {
  display: block;
  margin: 0 0 9px;
  transition: color .2s var(--ease-out-quart), opacity .2s var(--ease-out-quart);
}

.site-footer a:hover {
  color: rgba(255, 255, 255, 0.95);
  opacity: 1;
}

.footer-brand {
  color: white;
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 220;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 18px 8px 8px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #16a34a, #0f8f41);
  box-shadow: 0 22px 50px rgba(15, 143, 65, .34);
  backdrop-filter: blur(14px);
  transition:
    transform .25s var(--ease-out-quart),
    box-shadow .25s var(--ease-out-quart),
    filter .25s var(--ease-out-quart);
}

.whatsapp-float:hover {
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(15, 143, 65, .42);
  filter: saturate(1.05);
}

.whatsapp-float-pulse {
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: rgba(22, 163, 74, .22);
  animation: whatsapp-pulse 2.4s var(--ease-in-out) infinite;
  pointer-events: none;
}

.whatsapp-float-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.whatsapp-float-icon svg {
  width: 26px;
  height: 26px;
}

.whatsapp-float-label {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
}

@keyframes whatsapp-pulse {
  0%, 100% {
    opacity: .35;
    transform: scale(.96);
  }
  50% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@media (max-width: 1120px) {

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

  .catalog-layout,
  .product-detail-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar,
  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 820px) {

  .feature-grid,
  .feature-grid.three,
  .process-grid,
  .catalog-grid,
  .product-specs,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .catalog-search,
  .cta-card {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-map-card iframe {
    min-height: 300px;
  }

  .cta-card {
    padding: 34px;
    border-radius: 28px;
  }
}

.cta-section .eyebrow {
  color: white !important;
}

/* ═══════════════════════════════════════════
   ANIMATION SYSTEM
   ═══════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes draw-line {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ── Hero page-load choreography ── */
/* Applied to .hero children via JS on DOMContentLoaded */
.hero-animate .eyebrow {
  animation: fade-up .6s var(--ease-out-expo) .05s both;
}

.hero-animate .hero h1,
.hero-animate h1 {
  animation: fade-up .75s var(--ease-out-expo) .18s both;
}

.hero-animate .hero p,
.hero-animate p {
  animation: fade-up .65s var(--ease-out-expo) .32s both;
}

.hero-animate .hero-actions {
  animation: fade-up .6s var(--ease-out-expo) .46s both;
}

.hero-animate .hero-meta {
  animation: fade-up .55s var(--ease-out-expo) .58s both;
}

.hero-animate .hero-visual {
  animation: fade-in .9s var(--ease-out-expo) .22s both;
}

.hero-visual-animate {
  animation: fade-in .9s var(--ease-out-expo) .22s both;
}

/* ── Floating card drift (continuous, gentle) ── */
.floating-card {
  animation: drift 6s var(--ease-in-out) infinite;
}

/* ── Header entrance on load ── */
.header-animate {
  animation: slide-down .5s var(--ease-out-expo) both;
}

/* ── Staggered reveal: grid children get cascade delays ── */
/* JS adds data-reveal-index to each child; CSS reads var(--reveal-i) */
.reveal-stagger {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .55s var(--ease-out-quart) var(--reveal-delay, 0ms),
    transform .55s var(--ease-out-quart) var(--reveal-delay, 0ms);
}

.reveal-stagger.visible {
  opacity: 1;
  transform: none;
}

/* ── Upgrade base .reveal easing ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .6s var(--ease-out-quart),
    transform .6s var(--ease-out-quart);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Feature-card / filter-link hover refinement ── */
.feature-card {
  transition: transform .3s var(--ease-out-quart),
              box-shadow .3s var(--ease-out-quart),
              border-color .3s var(--ease-out-quart);
  will-change: transform;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: #c8e0f2;
}

.filter-link {
  transition: background .2s var(--ease-out-quart),
              color .2s var(--ease-out-quart),
              border-color .2s var(--ease-out-quart),
              transform .2s var(--ease-out-quart);
}

.filter-link:hover {
  transform: translateX(3px);
}

/* ── Form input focus lift ── */
input, textarea, select {
  transition: border-color .2s var(--ease-out-quart),
              box-shadow .2s var(--ease-out-quart),
              transform .2s var(--ease-out-quart);
}

input:focus, textarea:focus, select:focus {
  transform: translateY(-1px);
}

/* ── Process card step hover ── */
.process-card:hover span {
  color: var(--blue-2);
  transition: color .25s var(--ease-out-quart);
}

/* ── Check-list item stagger ── */
.check-list li {
  transition: opacity .35s var(--ease-out-quart) var(--reveal-delay, 0ms);
}

/* ── Trust-grid item entrance ── */
.trust-grid > div {
  transition: background .2s var(--ease-out-quart);
}

.trust-grid > div:hover {
  background: var(--soft-blue);
}

/* ── Product image hover zoom (scale inside clipping box) ── */
.product-image img {
  transition: transform .45s var(--ease-out-expo), filter .45s var(--ease-out-expo);
  /* will-change: transform; */
  aspect-ratio: 1;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

/* ── Page-hero eyebrow line entrance ── */
.page-hero .eyebrow::before {
  animation: draw-line .5s var(--ease-out-expo) .3s both;
  transform-origin: left;
}

/* ── Mobile nav slide-down entrance ── */
@keyframes nav-open {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-links.open {
  animation: nav-open .25s var(--ease-out-quart) both;
}

/* ── Homepage Redesign: Visual Category Grid ── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 38px;
}

.category-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out-quart), box-shadow .3s var(--ease-out-quart), border-color .3s var(--ease-out-quart);
  height: 100%;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: #c8dff0;
}

.category-card .category-img-wrapper {
  background: linear-gradient(135deg, #f7fbff, #eef8ff);
  aspect-ratio: 1.55;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.category-card .category-img-wrapper img {
  max-width: 86%;
  max-height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(3, 37, 65, .05));
  transition: transform .45s var(--ease-out-expo);
  will-change: transform;
}

.category-card:hover .category-img-wrapper img {
  transform: scale(1.05);
}

.category-card .category-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 95, 165, 0.9);
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
}

.category-card .category-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}

.category-card .category-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s var(--ease-out-quart);
}

.category-card:hover .category-link {
  gap: 10px;
}

/* ── Service icon wrapper for condensed principles section ── */
.service-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--soft-blue);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.service-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

/* ── Responsive adjustments for category grid ── */
@media (max-width: 1040px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ── Accessibility: respect reduced-motion preference ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .floating-card {
    animation: none;
  }
}

/* Premium biomedical homepage refresh */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: var(--scroll-progress, 0%);
  height: 3px;
  z-index: 999;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  transform-origin: left;
  pointer-events: none;
}

.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 42px);
  display: grid;
  align-items: center;
  padding: clamp(72px, 8vw, 118px) 0 88px;
  background:
    radial-gradient(circle at 78% 22%, rgba(47, 157, 204, .18), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f6f9fc 47%, #eaf5fb 100%);
}

.home-hero::before,
.editorial-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 95, 165, .065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 95, 165, .065) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .72) 52%, transparent 100%);
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(38px, 6vw, 78px);
  align-items: center;
}

.home-hero-copy h1 {
  margin: 16px 0 22px;
  max-width: 720px;
  font-size: clamp(42px, 5.7vw, 76px);
  line-height: .98;
  letter-spacing: 0;
}

.home-hero-copy p {
  max-width: 660px;
  margin: 0;
  color: #425466;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.8;
}

.home-hero .hero-actions {
  margin-top: 34px;
}

.hero-stat-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: 690px;
}

.hero-stat-pill {
  position: relative;
  overflow: hidden;
  min-height: 108px;
  padding: 20px;
  border: 1px solid rgba(188, 216, 235, .9);
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.hero-stat-pill::after {
  content: "";
  position: absolute;
  inset: auto -28px -38px auto;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: rgba(47, 157, 204, .14);
}

.hero-stat-pill strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.hero-stat-pill span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.home-hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-image-card {
  /* position: absolute;
  inset: 46px 0 auto auto;
  width: min(100%, 620px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 42px;
  background: rgba(255, 255, 255, .64);
  box-shadow: 0 34px 90px rgba(7, 38, 66, .18);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d; */
}

.hero-image-card::before {
  /* content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(47, 157, 204, .24);
  border-radius: 30px;
  pointer-events: none; */
}

.hero-image-card img {
  width: 100%;
  min-height: 500px;
  object-fit: contain;
}

.medical-glow {
  position: absolute;
  inset: 10% 2% auto auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 157, 204, .35), transparent 66%);
  filter: blur(16px);
  animation: pulse-glow 7s var(--ease-in-out) infinite;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(47, 157, 204, .22);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit-spin 26s linear infinite;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 28px rgba(47, 157, 204, .82);
}

.hero-orbit-one {
  width: 520px;
  height: 520px;
  right: 5%;
  top: 12%;
}

.hero-orbit-one::after {
  top: 64px;
  left: 96px;
}

.hero-orbit-two {
  width: 300px;
  height: 300px;
  right: 29%;
  bottom: 8%;
  animation-direction: reverse;
  animation-duration: 32s;
}

.hero-orbit-two::after {
  right: 28px;
  bottom: 58px;
}

.molecule {
  position: absolute;
  z-index: 3;
  width: 112px;
  height: 112px;
  animation: soft-float 8s var(--ease-in-out) infinite;
}

.molecule::before,
.molecule::after {
  content: "";
  position: absolute;
  height: 1px;
  background: rgba(11, 95, 165, .34);
  transform-origin: left;
}

.molecule::before {
  width: 70px;
  left: 22px;
  top: 38px;
  transform: rotate(28deg);
}

.molecule::after {
  width: 58px;
  left: 32px;
  top: 66px;
  transform: rotate(-31deg);
}

.molecule span {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 5px solid rgba(47, 157, 204, .18);
  border-radius: 50%;
  background: white;
  box-shadow: 0 10px 26px rgba(7, 38, 66, .1);
}

.molecule span:nth-child(1) {
  left: 6px;
  top: 22px;
}

.molecule span:nth-child(2) {
  right: 8px;
  top: 48px;
}

.molecule span:nth-child(3) {
  left: 38px;
  bottom: 6px;
}

.molecule-one {
  left: 0;
  top: 28px;
}

.molecule-two {
  right: 3%;
  bottom: 38px;
  animation-delay: -2s;
}

.floating-product-card,
.compliance-badge,
.image-badge {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.floating-product-card {
  width: min(260px, 48%);
  border-radius: 24px;
  padding: 18px 20px;
  animation: soft-float 7s var(--ease-in-out) infinite;
}

.floating-product-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.floating-product-card strong {
  display: block;
  color: var(--ink);
  line-height: 1.35;
}

.floating-card-one {
  left: -6px;
  bottom: 142px;
}

.floating-card-two {
  right: 0;
  top: 72px;
  animation-delay: -2.5s;
}

.compliance-badge {
  left: 12%;
  top: 88px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.compliance-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(22, 163, 74, .12);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: grid;
  place-items: start center;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(11, 95, 165, .32);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  width: 4px;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--blue);
  animation: scroll-dot 1.8s var(--ease-in-out) infinite;
}

.service-lab-section,
.therapeutic-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(47, 157, 204, .08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.trusted-brands-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(72px, 8vw, 118px);
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 157, 204, .16), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(11, 95, 165, .12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 54%, #eef8ff 100%);
}

.trusted-brands-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(11, 95, 165, .052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 95, 165, .052) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 42%, #000 0%, transparent 76%);
}

.trusted-brands-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .86));
  pointer-events: none;
}

.trusted-brands-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  opacity: .75;
  animation: pulse-glow 8s var(--ease-in-out) infinite;
}

.trusted-brands-glow-one {
  left: -110px;
  top: 90px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(47, 157, 204, .2), transparent 68%);
}

.trusted-brands-glow-two {
  right: -90px;
  bottom: 80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(11, 95, 165, .18), transparent 70%);
  animation-delay: -3s;
}

.trusted-brands-header {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 44px;
}

.trusted-brands-header .section-title {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(34px, 4.8vw, 60px);
  letter-spacing: 0;
}

.trusted-brands-header .section-lead {
  margin: 0;
}

.trusted-brands-stage {
  position: relative;
  overflow: hidden;
  padding: 30px 0 0;
}

.trusted-brands-stage::before,
.trusted-brands-stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: min(160px, 18vw);
  pointer-events: none;
}

.trusted-brands-stage::before {
  left: 0;
  background: linear-gradient(90deg, #f8fbff 0%, rgba(248, 251, 255, 0) 100%);
}

.trusted-brands-stage::after {
  right: 0;
  background: linear-gradient(270deg, #f8fbff 0%, rgba(248, 251, 255, 0) 100%);
}

.brand-marquee {
  overflow: hidden;
  padding: 10px 0;
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: brand-marquee 34s linear infinite;
}

.brand-marquee-secondary {
  margin-top: 14px;
}

.brand-marquee-secondary .brand-marquee-track {
  animation-name: brand-marquee-reverse;
  animation-duration: 42s;
}

.brand-marquee:hover .brand-marquee-track {
  animation-play-state: paused;
}

.brand-logo-card {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 218px;
  height: 126px;
  overflow: hidden;
  border: 1px solid rgba(205, 220, 232, .92);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(234, 245, 251, .62)),
    #ffffff;
  box-shadow: 0 18px 46px rgba(7, 38, 66, .08);
  backdrop-filter: blur(18px);
  transition:
    transform .35s var(--ease-out-quart),
    box-shadow .35s var(--ease-out-quart),
    border-color .35s var(--ease-out-quart),
    background .35s var(--ease-out-quart);
  align-content: center;
}

.brand-logo-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .95) 46%, transparent 58%);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity .25s var(--ease-out-quart);
}

.brand-logo-card:hover {
  z-index: 3;
  border-color: rgba(47, 157, 204, .48);
  background:
    radial-gradient(circle at 70% 18%, rgba(47, 157, 204, .14), transparent 36%),
    #ffffff;
  box-shadow: 0 26px 70px rgba(7, 38, 66, .16);
  transform: translateY(-8px) scale(1.035);
}

.brand-logo-card:hover::before {
  opacity: 1;
  animation: logo-shine 1.1s var(--ease-out-quart) both;
}

.brand-logo-card img {
  position: relative;
  z-index: 1;
  max-width: 72%;
  max-height: 88px;
  object-fit: contain;
  filter: saturate(.98) contrast(1.02);
  transition: transform .35s var(--ease-out-quart), filter .35s var(--ease-out-quart);
}

.brand-logo-card:hover img {
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.04);
}

.brand-logo-card.compact {
  flex-basis: 176px;
  height: 94px;
  border-radius: 22px;
  opacity: .86;
}

.brand-logo-card.compact img {
  max-height: 75px;
}

.brand-spotlight {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 30px auto 0;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(47, 157, 204, .34), transparent 34%),
    linear-gradient(135deg, #07111c 0%, #073f73 100%);
  box-shadow: var(--shadow);
}

.brand-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
  pointer-events: none;
}

.brand-spotlight > * {
  position: relative;
  z-index: 1;
}

.brand-spotlight-copy span {
  display: inline-flex;
  margin-bottom: 9px;
  color: #8fd7ef;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.brand-spotlight-copy strong {
  display: block;
  max-width: 760px;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.24;
}

.white-logo-stack {
  display: flex;
  align-items: center;
  gap: 12px;
}

.white-logo-card {
  display: grid;
  place-items: center;
  width: 126px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  transition: transform .3s var(--ease-out-quart), background .3s var(--ease-out-quart);
}

.white-logo-card:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-4px);
}

.white-logo-card img {
  max-width: 74%;
  max-height: 44px;
  object-fit: contain;
}

.service-lab-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.service-lab-card,
.vision-card,
.therapeutic-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition:
    transform .45s var(--ease-out-quart),
    box-shadow .45s var(--ease-out-quart),
    border-color .45s var(--ease-out-quart);
  transform-style: preserve-3d;
}

.service-lab-card {
  min-height: 318px;
  padding: 28px;
}

.service-lab-card::before,
.vision-card::before,
.therapeutic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47, 157, 204, .18), transparent 42%);
  opacity: 0;
  transition: opacity .35s var(--ease-out-quart);
}

.service-lab-card:hover,
.vision-card:hover,
.therapeutic-card:hover {
  border-color: rgba(47, 157, 204, .55);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-lab-card:hover::before,
.vision-card:hover::before,
.therapeutic-card:hover::before {
  opacity: 1;
}

.service-lab-icon,
.vision-icon,
.therapeutic-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: var(--blue);
  background: linear-gradient(135deg, #eaf5fb, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(47, 157, 204, .18);
}

.service-lab-icon svg,
.vision-icon svg,
.therapeutic-icon svg {
  width: 28px;
  height: 28px;
  transition: transform .45s var(--ease-out-quart);
}

.service-lab-card:hover svg,
.vision-card:hover svg,
.therapeutic-card:hover svg {
  transform: rotate(8deg) scale(1.04);
}

.service-lab-card h3,
.vision-card h3,
.therapeutic-card h3 {
  position: relative;
  z-index: 1;
  margin: 24px 0 12px;
  font-size: 20px;
  line-height: 1.25;
}

.service-lab-card p,
.vision-card p,
.therapeutic-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.card-arrow {
  position: absolute;
  left: 28px;
  bottom: 24px;
  color: var(--blue);
  font-weight: 900;
  transition: transform .3s var(--ease-out-quart);
}

.service-lab-card:hover .card-arrow {
  transform: translateX(8px);
}

.board-section,
.customer-service-section {
  position: relative;
  overflow: hidden;
  background: white;
}

.board-grid,
.support-grid,
.market-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(38px, 6vw, 72px);
  align-items: center;
}

.board-image-wrap,
.support-image-wrap,
.market-map {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.board-image-wrap img,
.support-image-wrap img,
.market-map img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: transform .75s var(--ease-out-expo);
}

.image-reveal {
  clip-path: inset(0 0 0 0 round 36px);
}

.image-badge {
  right: 24px;
  bottom: 24px;
  max-width: 260px;
  border-radius: 999px;
  padding: 13px 18px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.board-copy p,
.support-copy p {
  max-width: 700px;
  color: var(--muted);
  font-size: 16px;
}

.check-list.reveal.visible li {
  animation: fade-up .55s var(--ease-out-quart) both;
}

.check-list.reveal.visible li:nth-child(2) {
  animation-delay: .08s;
}

.check-list.reveal.visible li:nth-child(3) {
  animation-delay: .16s;
}

.check-list.reveal.visible li:nth-child(4) {
  animation-delay: .24s;
}

.editorial-statement {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 132px) 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(47, 157, 204, .2), transparent 30%),
    linear-gradient(135deg, #eaf5fb 0%, #f8fbff 58%, #ffffff 100%);
  border-block: 1px solid var(--line);
}

.editorial-statement p {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0;
  color: var(--dark);
  font-size: clamp(38px, 6vw, 82px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.editorial-statement span {
  color: transparent;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.vision-section {
  background: var(--dark);
  color: white;
}

.vision-section .section-title,
.vision-section .section-lead {
  color: white;
}

.vision-section .eyebrow {
  color: #8fd7ef;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.vision-card {
  min-height: 390px;
  padding: 34px;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .13);
  box-shadow: none;
}

.vision-card:hover {
  border-color: rgba(143, 215, 239, .42);
  box-shadow: 0 26px 72px rgba(0, 0, 0, .28);
}

.vision-number {
  position: absolute;
  right: 26px;
  top: 20px;
  color: rgba(255, 255, 255, .14);
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
}

.vision-card h3 {
  color: white;
}

.vision-card p {
  color: rgba(255, 255, 255, .72);
}

.therapeutic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.therapeutic-card {
  display: block;
  min-height: 282px;
  padding: 26px;
}

.therapeutic-count {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 18px;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.therapeutic-card h3 {
  margin-top: 16px;
}

.therapeutic-link {
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 900;
}

.therapeutic-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out-quart);
}

.therapeutic-card:hover::after {
  transform: scaleX(1);
}

.product-categories-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(47, 157, 204, .14), transparent 32%),
    radial-gradient(circle at 88% 28%, rgba(11, 95, 165, .09), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.product-categories-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 95, 165, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 95, 165, .045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 72%);
  pointer-events: none;
}

.product-categories-section > .container {
  position: relative;
  z-index: 1;
}

.category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: var(--dark);
}

.category-showcase-card {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: clamp(420px, 48vw, 620px);
  overflow: hidden;
  color: white;
  background: var(--dark);
  transform-style: preserve-3d;
}

.category-showcase-card::before,
.category-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.category-showcase-card::before {
  background:
    linear-gradient(180deg, rgba(7, 17, 28, .04) 0%, rgba(7, 17, 28, .34) 48%, rgba(7, 17, 28, .86) 100%),
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, .16), transparent 32%);
  transition: opacity .45s var(--ease-out-quart), background .45s var(--ease-out-quart);
}

.category-showcase-card::after {
  width: 48%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .28) 42%, transparent 72%);
  opacity: 0;
  transform: translateX(-120%) skewX(-14deg);
}

.category-showcase-card:hover::after {
  opacity: 1;
  animation: category-card-shine 1.05s var(--ease-out-quart) both;
}

.category-showcase-image,
.category-showcase-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.03) contrast(1.03);
  transition: transform .75s var(--ease-out-expo), filter .75s var(--ease-out-expo);
}

.category-showcase-bg {
  opacity: .96;
  filter: saturate(1.06) contrast(1.04);
  object-position: center top;
}

.category-showcase-card:hover .category-showcase-image,
.category-showcase-card:hover .category-showcase-bg {
  transform: scale(1.12);
  filter: saturate(1.18) contrast(1.06);
}

.category-showcase-card:hover .category-showcase-bg {
  filter: saturate(1.2) contrast(1.08) blur(.2px);
}

.category-showcase-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  display: grid;
  gap: 12px;
  padding: clamp(24px, 3vw, 34px);
  transform: translateY(18px);
  transition: transform .45s var(--ease-out-quart);
}

.category-showcase-card:hover .category-showcase-content {
  transform: translateY(0);
}

.category-showcase-count {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity .4s var(--ease-out-quart),
    transform .4s var(--ease-out-quart);
}

.category-showcase-card:hover .category-showcase-count,
.category-showcase-card:focus-visible .category-showcase-count {
  opacity: 1;
  transform: translateY(0);
}

.category-showcase-card h3 {
  margin: 0;
  color: white;
  font-size: clamp(22px, 2.3vw, 22px);
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 12px 34px rgba(0, 0, 0, .32);
}

.category-showcase-card p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-weight: 600;
  line-height: 1.55;
  font-size: 14px;
}

.category-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 6px;
  color: white;
  font-weight: 900;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .4s var(--ease-out-quart),
    transform .4s var(--ease-out-quart),
    gap .25s var(--ease-out-quart);
}

.category-showcase-card:hover .category-showcase-link,
.category-showcase-card:focus-visible .category-showcase-link {
  opacity: 1;
  transform: translateY(0);
}

.category-showcase-card:hover .category-showcase-link {
  gap: 13px;
}

@keyframes category-card-shine {
  from {
    transform: translateX(-120%) skewX(-14deg);
  }
  to {
    transform: translateX(240%) skewX(-14deg);
  }
}

.featured-portfolio-section {
  background: white;
}

.home-product-grid {
  margin-top: 36px;
}

.home-product-grid > .empty-state,
.therapeutic-grid > .empty-state {
  grid-column: 1 / -1;
}

.home-product-grid .product-card {
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.home-product-grid .product-image {
  min-height: 230px;
  background:
    radial-gradient(circle at 70% 22%, rgba(47, 157, 204, .13), transparent 34%),
    linear-gradient(135deg, #ffffff, #eef8ff);
}

.home-product-grid .product-meta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.home-product-grid .product-meta a::after {
  content: "->";
  transition: transform .2s var(--ease-out-quart);
}

.home-product-grid .product-card:hover .product-meta a::after {
  transform: translateX(5px);
}

.support-grid.reverse {
  direction: rtl;
}

.support-grid.reverse > * {
  direction: ltr;
}

.uae-market-section {
  background:
    radial-gradient(circle at 20% 22%, rgba(47, 157, 204, .12), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.market-stat {
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.market-stat strong,
.market-stat span {
  display: block;
}

.market-stat strong {
  color: var(--blue-dark);
  font-size: 26px;
  line-height: 1.1;
}

.market-stat span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.market-map {
  padding: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(47, 157, 204, .14), transparent 45%),
    white;
}

.market-map img {
  min-height: 390px;
  border-radius: 24px;
  object-fit: contain;
}

.final-cta-section {
  padding-top: 40px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 36px;
  color: white;
  background:
    radial-gradient(circle at 82% 22%, rgba(47, 157, 204, .36), transparent 32%),
    linear-gradient(135deg, #07111c 0%, #073f73 100%);
  box-shadow: var(--shadow);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta .eyebrow,
.final-cta .section-title {
  color: white;
}

.final-cta h2 {
  max-width: 850px;
  margin: 12px 0;
  color: white;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.final-cta p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .74);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.final-cta .btn-outline {
  color: white;
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .08);
}

.final-cta .btn-outline:hover {
  border-color: white;
  color: white;
}

.cta-shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit-spin 28s linear infinite;
}

.cta-shape-one {
  right: -70px;
  top: -120px;
  width: 300px;
  height: 300px;
}

.cta-shape-two {
  right: 22%;
  bottom: -118px;
  width: 220px;
  height: 220px;
  animation-direction: reverse;
}

[data-tilt-card] {
  will-change: transform;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: .72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes soft-float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes scroll-dot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  35%, 70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes brand-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 9px), 0, 0);
  }
}

@keyframes brand-marquee-reverse {
  from {
    transform: translate3d(calc(-50% - 9px), 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes logo-shine {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@media (max-width: 1180px) {
  .home-hero-grid,
  .board-grid,
  .support-grid,
  .market-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    min-height: 560px;
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }

  .hero-image-card {
    left: 50%;
    right: auto;
    /* transform: translateX(-50%); */
  }

  .service-lab-grid,
  .therapeutic-grid,
  .category-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trusted-brands-header,
  .brand-spotlight {
    grid-template-columns: 1fr;
  }

  .white-logo-stack {
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .home-hero {
    min-height: auto;
    padding-top: 64px;
  }

  .home-hero-copy h1 {
    font-size: clamp(38px, 10vw, 60px);
  }

  .hero-stat-pills,
  .market-stats,
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    min-height: 460px;
  }

  .hero-image-card {
    width: 100%;
    inset-block-start: 20px;
  }

  .hero-image-card img {
    min-height: 390px;
  }

  .floating-product-card,
  .compliance-badge,
  .molecule,
  .hero-orbit,
  .scroll-indicator {
    display: none;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta-actions {
    justify-content: flex-start;
  }

  .brand-logo-card {
    flex-basis: 180px;
    height: 104px;
  }

  .brand-logo-card.compact {
    flex-basis: 150px;
    height: 82px;
  }

  .trusted-brands-stage::before,
  .trusted-brands-stage::after {
    width: 56px;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding: 48px 0 62px;
  }

  .home-hero-grid {
    gap: 30px;
  }

  .hero-stat-pill {
    min-height: auto;
  }

  .home-hero-visual {
    min-height: 360px;
  }

  .hero-image-card {
    border-radius: 28px;
  }

  .hero-image-card img {
    min-height: 320px;
  }

  .service-lab-grid,
  .therapeutic-grid,
  .category-showcase-grid,
  .product-grid.home-product-grid {
    grid-template-columns: 1fr;
  }

  .service-lab-card,
  .vision-card,
  .therapeutic-card {
    min-height: auto;
  }

  .category-showcase-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 0 12px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .category-showcase-card {
    flex: 0 0 min(82vw, 360px);
    min-height: 460px !important;
    border-radius: 28px;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
  }

  .category-showcase-bg {
    transform: scale(1.01);
  }

  .category-showcase-content {
    transform: none;
  }

  .category-showcase-count,
  .category-showcase-link {
    opacity: 1;
    transform: none;
  }

  .board-image-wrap img,
  .support-image-wrap img,
  .market-map img {
    min-height: 300px;
  }

  .editorial-statement p {
    font-size: clamp(30px, 11vw, 44px);
  }

  .final-cta,
  .cta {
    border-radius: 26px;
  }

  .final-cta-actions .btn {
    width: 100%;
  }

  .trusted-brands-section {
    padding-block: 64px;
  }

  .trusted-brands-header {
    width: min(var(--max), calc(100% - 26px));
    margin-bottom: 28px;
  }

  .brand-marquee-track {
    gap: 12px;
    animation-duration: 26s;
  }

  .brand-marquee-secondary .brand-marquee-track {
    animation-duration: 32s;
  }

  .brand-logo-card {
    flex-basis: 150px;
    height: 88px;
    border-radius: 20px;
  }

  .brand-logo-card img {
    max-height: 58px;
  }

  .brand-logo-card.compact {
    flex-basis: 128px;
    height: 72px;
  }

  .brand-spotlight {
    width: min(var(--max), calc(100% - 26px));
    border-radius: 24px;
  }

  .white-logo-card {
    width: 100px;
    height: 64px;
    border-radius: 16px;
  }

  .whatsapp-float {
    min-height: 54px;
    padding-right: 10px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float-label {
    display: none;
  }
}

@media (max-width: 900px) and (orientation: landscape) and (max-height: 520px) {
  .top-note {
    display: none;
  }

  .navbar {
    height: 64px;
  }

  .nav-links {
    inset: 64px 16px auto;
    max-height: calc(100vh - 84px);
    max-height: calc(100dvh - 84px);
  }

  .home-hero {
    padding: 34px 0 42px;
  }

  .home-hero-grid {
    gap: 22px;
  }

  .home-hero-copy h1 {
    max-width: 620px;
    font-size: clamp(34px, 7vw, 48px);
    line-height: 1.02;
  }

  .home-hero-copy p {
    max-width: 640px;
    font-size: 15px;
    line-height: 1.65;
  }

  .home-hero .hero-actions {
    margin-top: 22px;
  }

  .hero-stat-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .hero-stat-pill {
    flex: 0 0 min(220px, 42vw);
    min-height: 88px;
    padding: 16px;
    scroll-snap-align: start;
  }

  .home-hero-visual {
    display: none;
  }

  .section,
  .trusted-brands-section,
  .editorial-statement,
  .product-categories-section {
    padding-block: 48px;
  }

  .category-showcase-card {
    min-height: 340px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    transition: none !important;
  }

  .hero-orbit,
  .medical-glow,
  .molecule,
  .floating-product-card,
  .trusted-brands-glow,
  .cta-shape,
  .scroll-indicator span {
    animation: none !important;
  }

  .brand-marquee-track {
    animation: none !important;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }

  .brand-marquee-secondary {
    display: none;
  }

  .whatsapp-float-pulse {
    animation: none !important;
  }

  .category-showcase-card::after {
    animation: none !important;
  }

  .category-showcase-image,
  .category-showcase-bg,
  .category-showcase-content,
  .category-showcase-count,
  .category-showcase-link {
    transform: none !important;
  }

  [data-tilt-card],
  [data-parallax-layer],
  [data-parallax-image] img {
    transform: none !important;
  }
}

@media (prefers-reduced-data: reduce) {
  .scroll-progress,
  .trusted-brands-glow,
  .hero-orbit,
  .medical-glow,
  .molecule,
  .cta-shape,
  .category-showcase-card::after,
  .whatsapp-float-pulse {
    display: none !important;
  }

  .home-hero,
  .trusted-brands-section,
  .editorial-statement,
  .product-categories-section,
  .final-cta {
    background-image: none !important;
  }

  .brand-marquee-track {
    animation: none !important;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }

  .brand-marquee-secondary {
    display: none !important;
  }

  .reveal,
  .reveal-stagger {
    opacity: 1 !important;
    transform: none !important;
    transition-duration: 1ms !important;
  }

  [data-tilt-card],
  [data-parallax-layer],
  [data-parallax-image] img {
    transform: none !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  a,
  button,
  .btn,
  .menu-toggle,
  .category-showcase-card,
  .brand-logo-card,
  .product-card {
    -webkit-tap-highlight-color: rgba(0, 120, 220, .14);
  }

  .nav-links a,
  .btn,
  .menu-toggle,
  .category-showcase-card,
  .product-card a,
  .whatsapp-float {
    min-height: 44px;
  }

  .category-showcase-content,
  .category-showcase-count,
  .category-showcase-link {
    opacity: 1;
    transform: none;
  }

  .category-showcase-card:hover .category-showcase-bg,
  .brand-logo-card:hover,
  .product-card:hover,
  .service-lab-card:hover,
  .vision-card:hover,
  .therapeutic-card:hover {
    transform: none;
  }
}

@media (forced-colors: active) {
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    background: Canvas;
    color: CanvasText;
  }

  .site-header,
  .nav-links,
  .top-note,
  .product-card,
  .category-showcase-card,
  .service-lab-card,
  .vision-card,
  .therapeutic-card,
  .contact-panel,
  .contact-form,
  .contact-map-card,
  .hero-stat-pill,
  .final-cta,
  .trusted-brands-section,
  .brand-logo-card {
    background: Canvas !important;
    color: CanvasText !important;
    border: 1px solid CanvasText !important;
  }

  .category-showcase-card *,
  .final-cta *,
  .trusted-brands-section *,
  .hero-stat-pill *,
  .product-card * {
    color: CanvasText !important;
  }

  .btn,
  .filter-link,
  .nav-links a,
  .whatsapp-float,
  .skip-link {
    border: 1px solid ButtonText !important;
    background: ButtonFace !important;
    color: ButtonText !important;
    forced-color-adjust: auto;
  }

  .btn-primary,
  .nav-links a.active,
  .filter-link.active {
    border-color: Highlight !important;
    background: Highlight !important;
    color: HighlightText !important;
  }

  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible,
  .category-showcase-card:focus-visible {
    outline: 3px solid Highlight !important;
    outline-offset: 3px;
  }

  input,
  textarea,
  select {
    border: 1px solid FieldText !important;
    background: Field !important;
    color: FieldText !important;
  }

  .category-showcase-bg,
  .trusted-brands-glow,
  .hero-orbit,
  .medical-glow,
  .molecule,
  .cta-shape,
  .trusted-brands-stage::before,
  .trusted-brands-stage::after,
  .scroll-progress {
    display: none !important;
  }
}

.category-showcase-card,
.product-card {
  container-type: inline-size;
}

@container (max-width: 380px) {
  .category-showcase-content {
    padding: 22px;
  }

  .category-showcase-content h3,
  .product-card h3 {
    font-size: clamp(21px, 11cqw, 22px);
  }

  .product-body {
    padding: 20px;
  }
}

@media (max-width: 380px) {
  .category-showcase-card,
  .product-card {
    border-radius: 20px;
  }

  .category-showcase-card {
    flex-basis: min(88vw, 330px);
    min-height: 390px;
  }
}

@media print {
  *,
  *::before,
  *::after {
    animation: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    color: #172033;
    background: #fff;
  }

  .top-note,
  .site-header,
  .site-footer,
  .whatsapp-float,
  .scroll-progress,
  .hero-orbit,
  .medical-glow,
  .molecule,
  .floating-product-card,
  .compliance-badge,
  .scroll-indicator,
  .final-cta-section,
  .trusted-brands-section,
  .contact-map-card,
  .btn,
  .menu-toggle {
    display: none !important;
  }

  main,
  .section,
  .page-hero,
  .home-hero {
    padding: 0 !important;
    background: transparent !important;
  }

  .container {
    width: 100% !important;
    max-width: none !important;
  }

  a {
    color: #073f73;
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 10px;
    color: #667085;
  }

  .contact-list a[href^="http"]::after,
  .site-footer a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 10px;
    color: #667085;
  }

  .product-grid,
  .catalog-grid,
  .category-showcase-grid,
  .vision-grid,
  .market-stats {
    display: block !important;
  }

  .product-card,
  .category-showcase-card,
  .vision-card,
  .market-stat,
  .contact-panel,
  .contact-form {
    break-inside: avoid;
    margin: 0 0 14px;
    border: 1px solid #d7e2ea;
  }

  .home-hero-grid,
  .board-grid,
  .support-grid,
  .market-grid,
  .detail-layout,
  .contact-grid {
    display: block !important;
  }

  .home-hero-visual,
  .board-image-wrap,
  .support-image-wrap,
  .market-map,
  .category-showcase-bg,
  .product-image {
    display: none !important;
  }
}
