:root {
  --brand-ink: #2f2d31;
  --brand-navy: #242225;
  --brand-teal: #ef2f3a;
  --brand-teal-dark: #c9202d;
  --brand-mint: #fff0f1;
  --brand-red: #ef2f3a;
  --brand-gold: #b8b8bc;
  --surface: #ffffff;
  --surface-soft: #f7f7f8;
  --surface-warm: #fbf6f6;
  --line: #e3dcde;
  --muted: #656165;
  --shadow-soft: 0 18px 45px rgba(47, 45, 49, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 136px;
  font-family: "Inter", "Roboto", Arial, sans-serif;
  color: var(--brand-ink);
  background: var(--surface);
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand-teal);
}

a:hover,
a:focus {
  color: var(--brand-red);
}

.layout_padding,
.layout_padding-top {
  padding: 84px 0 !important;
}

.hero_area {
  display: block;
}

.site-header {
  padding: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(47, 45, 49, 0.08);
  box-shadow: 0 10px 35px rgba(47, 45, 49, 0.08) !important;
  backdrop-filter: saturate(160%) blur(16px);
}

.site-topbar {
  color: #ffffff;
  background: var(--brand-navy);
  font-size: 13px;
  font-weight: 600;
}

.site-topbar .container {
  min-height: 34px;
  gap: 18px;
}

.site-topbar i {
  color: var(--brand-gold);
  margin-right: 8px;
}

.custom_nav-container {
  min-height: 100px;
  position: relative;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.navbar-brand .custom-logo {
  width: 232px;
  height: auto;
  max-height: 90px;
  object-fit: contain;
}

.custom_nav-container .navbar-nav {
  gap: 4px;
}

.navbar-collapse {
  position: static;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 10px 13px !important;
  margin: 0;
  border-radius: 6px;
  color: var(--brand-ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.custom_nav-container .navbar-nav .nav-item .nav-link:hover,
.custom_nav-container .navbar-nav .nav-item .nav-link:focus,
.custom_nav-container .navbar-nav .nav-item .nav-link.active {
  color: var(--brand-teal);
  background: rgba(239, 47, 58, 0.08);
}

.custom_nav-container .navbar-nav .nav-cta .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  color: #ffffff;
  background: var(--brand-teal);
  border: 1px solid var(--brand-teal);
}

.custom_nav-container .navbar-nav .nav-cta .nav-link:hover,
.custom_nav-container .navbar-nav .nav-cta .nav-link:focus,
.custom_nav-container .navbar-nav .nav-cta .nav-link.active {
  color: #ffffff;
  background: var(--brand-teal-dark);
  border-color: var(--brand-teal-dark);
}

.mega-menu-item {
  position: static;
}

.mega-menu {
  position: absolute;
  width: min(70vw, 1180px);
  max-width: calc(100vw - 48px);
  padding: 0;
  border: 1px solid rgba(47, 45, 49, 0.12);
  border-top: 3px solid var(--brand-teal);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(47, 45, 49, 0.16);
  overflow: visible;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(150%) blur(14px);
}

.compact-mega-item {
  position: static;
}

.compact-mega-menu {
  width: min(70vw, 1180px);
}

.compact-mega-inner {
  grid-template-columns: 0.8fr 1.6fr;
}

.compact-mega-menu .mega-menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 0.72fr 1.8fr;
  overflow: hidden;
  border-radius: 6px;
  background: #ffffff;
}

.mega-menu-feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 30px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(239, 47, 58, 0.88), rgba(36, 34, 37, 0.96)),
    var(--brand-navy);
}

.mega-menu-feature strong,
.mega-menu-grid strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.mega-menu-feature span,
.mega-menu-grid small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.4;
}

.mega-menu-feature:hover,
.mega-menu-feature:focus {
  color: #ffffff;
  background: var(--brand-teal-dark);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 14px;
}

.mega-menu-grid a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 104px;
  padding: 16px 14px;
  border-radius: 6px;
  color: var(--brand-ink);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.mega-menu-grid a:hover,
.mega-menu-grid a:focus {
  color: var(--brand-ink);
  background: var(--surface-soft);
  box-shadow: inset 0 0 0 1px rgba(239, 47, 58, 0.16);
  transform: translateY(-2px);
}

.mega-menu-grid i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  border-radius: 6px;
  color: var(--brand-teal);
  background: var(--brand-mint);
}

.mega-menu-grid small {
  color: var(--muted);
}

.custom_nav-container .navbar-toggler {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.custom_nav-container .navbar-toggler span,
.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  background-color: var(--brand-navy);
}

.btn-brand,
.btn-outline-brand,
.about_section .detail-box a,
.improve_business_section .detail-box a,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-brand,
input[type="submit"] {
  color: #ffffff !important;
  background: var(--brand-teal) !important;
  border: 1px solid var(--brand-teal) !important;
  box-shadow: 0 14px 30px rgba(239, 47, 58, 0.22);
}

.btn-brand:hover,
.btn-brand:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  color: #ffffff !important;
  background: var(--brand-teal-dark) !important;
  border-color: var(--brand-teal-dark) !important;
  transform: translateY(-1px);
}

.btn-outline-brand {
  color: var(--brand-navy);
  background: #ffffff;
  border: 1px solid rgba(47, 45, 49, 0.22);
  box-shadow: 0 12px 28px rgba(47, 45, 49, 0.08);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  color: #ffffff;
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  transform: translateY(-1px);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--brand-teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--brand-gold);
}

.section-title {
  margin: 0;
  color: var(--brand-ink);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.section-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.home-hero {
  position: relative;
  min-height: 520px;
  min-height: min(520px, calc(100svh - var(--header-offset, 136px)));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--brand-navy);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(28, 26, 29, 0.94) 0%, rgba(28, 26, 29, 0.78) 45%, rgba(28, 26, 29, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.36) 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 7px;
  background: linear-gradient(90deg, var(--brand-teal), rgba(255, 255, 255, 0.7), var(--brand-navy));
}

.home-hero-media,
.home-hero-slide,
.home-hero-slide img,
.home-hero-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-media {
  z-index: 0;
}

.home-hero-slide {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 6.5s ease;
}

.home-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.home-hero-slide img,
.home-hero-slide video {
  object-fit: cover;
}

.home-hero-copy-track {
  display: grid;
  max-width: 1000px;
}

.home-hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  grid-area: 1 / 1;
  max-width: 1000px;
  padding: clamp(28px, 4.4vh, 64px) 0 clamp(20px, 3.2vh, 52px);
  color: #ffffff;
}

.home-hero-copy {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.42s ease, transform 0.42s ease, visibility 0.42s ease;
}

.home-hero-copy.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
  color: #f6ddad;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.hero-content h1::after {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin-top: 22px;
  border-radius: 999px;
  background: var(--brand-teal);
}

.hero-content p {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin-top: clamp(16px, 2.6vh, 34px);
}

.hero-metric {
  min-height: clamp(84px, 11vh, 112px);
  padding: clamp(14px, 1.8vh, 18px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-metric strong {
  display: block;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.1;
}

.hero-metric span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.home-slider-controls {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.home-slider-controls button {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.home-slider-controls button:hover,
.home-slider-controls button:focus {
  background: var(--brand-teal);
  transform: translateY(-1px);
}

.home-slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-slider-dots button {
  width: 28px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.home-slider-dots button.active {
  background: #ffffff;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-strip,
.capability-section,
.focus-section,
.product-spotlight,
.process-section,
.contact-band,
.products_section,
.page-intro,
.contact_info_section {
  position: relative;
}

.capability-card,
.focus-card,
.about-proof,
.process-step,
.contact-tile,
.product-card,
.catalog-card,
.category-overview-card,
.form-shell {
  border: 1px solid rgba(47, 45, 49, 0.1);
  box-shadow: 0 16px 44px rgba(47, 45, 49, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.capability-card:hover,
.focus-card:hover,
.about-proof:hover,
.process-step:hover,
.contact-tile:hover,
.product-card:hover,
.catalog-card:hover,
.category-overview-card:hover {
  border-color: rgba(239, 47, 58, 0.28);
  box-shadow: 0 24px 60px rgba(47, 45, 49, 0.12);
  transform: translateY(-4px);
}

.capability-card::before,
.focus-card::before,
.about-proof::before,
.process-step::before,
.contact-tile::before,
.category-overview-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-navy));
  opacity: 0.88;
}

.capability-card,
.focus-card,
.about-proof,
.process-step,
.contact-tile,
.category-overview-card {
  position: relative;
  overflow: hidden;
}

.banner_section_overlay {
  background:
    linear-gradient(90deg, rgba(36, 34, 37, 0.88), rgba(36, 34, 37, 0.58)),
    rgba(36, 34, 37, 0.58);
}

.banner-content {
  max-width: 860px;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--brand-teal);
}

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  border-radius: 6px;
  color: var(--brand-teal);
  background: var(--brand-mint);
  font-size: 18px;
}

.trust-item strong {
  display: block;
  color: var(--brand-ink);
  font-size: 15px;
  line-height: 1.25;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.section-header {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-header.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header.centered .section-kicker {
  justify-content: center;
}

.capability-section,
.about-lead-section,
.privacy_policy_section {
  background: var(--surface-soft);
}

.capability-grid,
.focus-grid,
.about-proof-grid,
.privacy-grid,
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.capability-card,
.focus-card,
.about-proof,
.privacy-item,
.contact-tile,
.product-card,
.process-step {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(47, 45, 49, 0.05);
}

.capability-card i,
.focus-card i,
.about-proof i,
.privacy-item i,
.contact-tile i,
.process-step i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 6px;
  color: var(--brand-teal);
  background: var(--brand-mint);
  font-size: 19px;
}

.capability-card h3,
.focus-card h3,
.about-proof h3,
.privacy-item h3,
.contact-tile h3,
.product-card h3,
.process-step h3 {
  margin: 0 0 10px;
  color: var(--brand-ink);
  font-size: 19px;
  font-weight: 800;
}

.capability-card p,
.focus-card p,
.about-proof p,
.privacy-item p,
.contact-tile p,
.product-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.media-panel {
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.content-panel {
  max-width: 610px;
}

.quality-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.quality-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--brand-ink);
  font-weight: 600;
}

.quality-list i {
  margin-top: 4px;
  color: var(--brand-teal);
}

.focus-section {
  background: var(--surface-warm);
}

.product-spotlight {
  background: var(--surface);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  padding: 0;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 230px;
  padding: 22px;
  object-fit: contain;
  background: #f7faf8;
}

.product-card-body {
  padding: 24px;
}

.product-card .therapy {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.process-section {
  color: #ffffff;
  background: var(--brand-navy);
}

.process-section .section-title,
.process-section .section-copy,
.process-section .section-kicker {
  color: #ffffff;
}

.process-section .section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.process-step i {
  color: #ffffff;
  background: var(--brand-teal);
}

.process-step h3 {
  color: #ffffff;
}

.process-step p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-band {
  background: var(--surface-soft);
}

.form-shell {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.form-shell h2,
.form-shell h3 {
  margin: 0 0 18px;
  color: var(--brand-ink);
  font-weight: 800;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact_section .form_container input,
.contact_section .form_container textarea,
.form-shell input,
.form-shell textarea,
.form-shell select {
  width: 100%;
  min-height: 50px;
  margin-bottom: 14px;
  padding: 13px 15px;
  border: 1px solid var(--line) !important;
  border-radius: 6px;
  color: var(--brand-ink);
  background: #ffffff;
  outline: none;
}

.contact_section .form_container textarea,
.form-shell textarea {
  min-height: 140px;
  resize: vertical;
}

.contact_section .form_container input:focus,
.contact_section .form_container textarea:focus,
.form-shell input:focus,
.form-shell textarea:focus,
.form-shell select:focus {
  border-color: var(--brand-teal) !important;
  box-shadow: 0 0 0 3px rgba(239, 47, 58, 0.13);
}

.form-shell input[type="file"] {
  padding-top: 11px;
}

.career-opening-card {
  display: flex;
  flex-direction: column;
}

.career-meta {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.career-location {
  margin-bottom: 12px !important;
  color: var(--brand-ink) !important;
  font-weight: 800;
}

.career-location i {
  width: auto;
  height: auto;
  display: inline;
  margin: 0 6px 0 0;
  border-radius: 0;
  color: var(--brand-teal);
  background: transparent;
  font-size: 14px;
}

.career-requirements {
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.career-opening-card .btn-outline-brand {
  width: fit-content;
  margin-top: auto;
}

.alert {
  border-radius: 6px;
  font-weight: 700;
}

.page-intro {
  background: var(--surface);
}

.banner_section {
  z-index: 0;
  height: 330px;
  background-position: center;
}

.gallery_banner {
  background-image: url("../images/banners/gallery_banner.webp");
}

.aboutus_banner {
  background-image: url("../images/banners/about_banner.webp");
}

.contactus_banner {
  background-image: url("../images/banners/contact_us_banner.webp");
}

.products_banner {
  background-image: url("../images/banners/products_banner.webp");
}

.privacy_policy_banner {
  background-image: url("../images/banners/privacy_policy_banner.webp");
}

.banner_section_overlay {
  height: 100%;
  background:
    linear-gradient(90deg, rgba(47, 45, 49, 0.88), rgba(47, 45, 49, 0.35));
}

.banner-content {
  animation: none;
}

.banner-content h1 {
  max-width: 980px;
  margin: 0;
  color: #ffffff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.018em;
}

.banner-content .page-kicker {
  display: block;
  margin-bottom: 12px;
  color: #f6ddad;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.welcome_heading,
.animated-text {
  animation: none !important;
  color: var(--brand-ink) !important;
}

.welcome_heading {
  margin: 0 auto 24px;
  font-size: 1rem;
}

.welcome_heading .welcome_title h2,
.welcome_heading .website_title,
.welcome_heading .welcome_title {
  color: var(--brand-ink);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
}

.border-line {
  background: var(--line);
}

.about_section {
  background: var(--surface);
  border-top: 0;
}

.about_section .row,
.improve_business_section .row {
  align-items: center;
}

.about_section .about_us_image img,
.improve_business_section .img-box img {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.about_us_content,
.contact_us_content,
.right_animation,
.about_us_image,
.contact_us_image,
.apply_left_animation,
.about_section .ourCompany_info p:nth-child(1),
.about_section .ourCompany_info p:nth-child(2),
.fade-in {
  animation: none !important;
  transform: none !important;
  opacity: 1 !important;
}

.blossomtheme-cta-container {
  padding: 0;
  text-align: left;
}

.about_adivine_biotec_tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.about_adivine_biotec_tabs .nav-item {
  width: 100%;
}

.about_adivine_biotec_tabs .nav-link {
  min-height: 64px;
  border: 1px solid var(--line) !important;
  border-radius: 8px;
  color: var(--brand-ink);
  background: #ffffff;
  font-weight: 800;
}

.about_adivine_biotec_tabs .nav-link.active {
  color: #ffffff;
  background: var(--brand-teal);
}

.colored_borders {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  animation: none;
  box-shadow: var(--shadow-soft);
}

.colored_borders::before,
.colored_borders::after {
  display: none;
}

.colored_borders .blockquote {
  margin: 0;
  color: var(--brand-ink);
  font-size: 17px;
}

.products_section {
  background: var(--surface-soft);
}

.catalog-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 840px;
  margin: 0 auto 28px;
}

.catalog-summary div {
  min-height: 104px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 12px 30px rgba(47, 45, 49, 0.05);
}

.catalog-summary strong {
  display: block;
  color: var(--brand-teal);
  font-size: 32px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.catalog-summary span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 34px;
}

.category-overview-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--brand-ink);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(47, 45, 49, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-overview-card:hover,
.category-overview-card:focus {
  transform: translateY(-3px);
  color: var(--brand-ink);
  border-color: rgba(239, 47, 58, 0.35);
  box-shadow: 0 22px 42px rgba(47, 45, 49, 0.12);
}

.category-overview-card i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 6px;
  color: var(--brand-teal);
  background: var(--brand-mint);
}

.category-overview-card .category-count {
  margin-bottom: 10px;
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-overview-card h3 {
  margin: 0 0 10px;
  color: var(--brand-ink);
  font-size: 18px;
  font-weight: 800;
}

.category-overview-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.segment-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 34px;
}

.segment-filter a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--brand-ink);
  background: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.segment-filter a span {
  min-width: 24px;
  padding: 2px 7px;
  border-radius: 999px;
  color: var(--brand-teal);
  background: var(--brand-mint);
  font-size: 12px;
}

.segment-filter a:hover,
.segment-filter a:focus,
.segment-filter a.active {
  color: #ffffff;
  background: var(--brand-teal);
  border-color: var(--brand-teal);
}

.segment-filter a:hover span,
.segment-filter a:focus span,
.segment-filter a.active span {
  color: var(--brand-navy);
  background: #ffffff;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.catalog-card {
  min-height: 100%;
}

.catalog-card a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(47, 45, 49, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: zoom-in;
}

.catalog-card a:hover,
.catalog-card a:focus {
  transform: translateY(-4px);
  border-color: rgba(239, 47, 58, 0.35);
  box-shadow: 0 24px 48px rgba(47, 45, 49, 0.13);
}

.catalog-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 20px;
  background: #f8faf9;
}

.catalog-card-image img {
  width: 100%;
  height: 280px;
  object-fit: contain;
}

.catalog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
  border-top: 1px solid var(--line);
}

.catalog-card-body strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.catalog-card-body > span:last-child {
  color: var(--muted);
  font-size: 14px;
}

.products_section .items-container {
  row-gap: 22px;
}

.product_item .inner-box {
  height: 100%;
  min-height: 402px;
  margin-bottom: 0 !important;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(47, 45, 49, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product_item .inner-box:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 47, 58, 0.35);
  box-shadow: 0 22px 44px rgba(47, 45, 49, 0.12);
}

.product_item .img_holder {
  height: 220px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #f6f9f8;
  overflow: hidden;
}

.product_item .img_holder img {
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
  border: 0 !important;
  border-radius: 0 !important;
}

.product_item .img_holder .BI-layer {
  top: 10px;
  right: 10px;
  width: auto;
  height: auto;
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--brand-gold);
  font-weight: 800;
  line-height: 1.15;
}

.product_item .inner-box .image-content h6 {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.product_item .inner-box .image-content h6 > span {
  color: var(--brand-teal);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product_item .inner-box .image-content h6.title {
  color: var(--brand-ink);
  font-size: 16px;
  font-weight: 800;
}

.product_item .inner-box .image-content h6.overflow-text {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.gallery_section {
  background: var(--surface-soft);
}

.gallery_section::after {
  display: none;
}

.gallery_section .products_gallery .image_wrapper {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(47, 45, 49, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: zoom-in;
}

.gallery-card:hover,
.gallery-card:focus {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(47, 45, 49, 0.12);
}

.gallery-card img {
  width: 100%;
  height: 230px;
  padding: 14px;
  object-fit: contain;
  background: #f8faf9;
}

.gallery-card span {
  display: block;
  padding: 15px 16px 17px;
  border-top: 1px solid var(--line);
}

.gallery-card strong {
  display: block;
  color: var(--brand-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.gallery-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.product-modal[hidden] {
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 28, 0.72);
  backdrop-filter: blur(4px);
}

.product-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(860px, calc(100vh - 56px));
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.product-modal.show .product-modal-dialog {
  opacity: 1;
  transform: translateY(0);
}

.product-modal-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 32px;
  background: linear-gradient(135deg, #f7faf9 0%, #eef7f4 100%);
}

.product-modal-image img {
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: contain;
}

.product-modal-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  border-left: 1px solid var(--line);
}

.product-modal-body span {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 6px;
  color: var(--brand-teal);
  background: var(--brand-mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-modal-body h3 {
  margin: 0 0 14px;
  color: var(--brand-navy);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.12;
}

.product-modal-body p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.product-modal-details {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.product-modal-details div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.product-modal-details dt {
  margin-bottom: 5px;
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-modal-details dd {
  margin: 0;
  color: var(--brand-ink);
  font-size: 14px;
  line-height: 1.55;
}

.product-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand-navy);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(47, 45, 49, 0.16);
  cursor: pointer;
}

.product-modal-close:hover,
.product-modal-close:focus {
  color: #ffffff;
  background: var(--brand-teal);
  border-color: var(--brand-teal);
}

body.product-modal-open {
  overflow: hidden;
}

.contact-info-grid {
  margin-top: 24px;
}

.contact-tile {
  display: flex;
  flex-direction: column;
}

.contact-tile a {
  color: var(--brand-ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-tile a:hover {
  color: var(--brand-teal);
}

.feature-item .feature-icon {
  min-height: 480px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  animation: none;
}

.privacy-grid {
  margin-top: 34px;
}

.privacy-content-container p {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 17px;
}

.policy-meta {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(239, 47, 58, 0.18);
  border-radius: 999px;
  color: var(--brand-red);
  background: var(--brand-mint);
  font-size: 13px;
  font-weight: 800;
}

.policy-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.policy-detail-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(47, 45, 49, 0.05);
}

.policy-detail-card h3 {
  margin: 0 0 12px;
  color: var(--brand-ink);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.25;
}

.policy-detail-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.policy-detail-card p:last-child {
  margin-bottom: 0;
}

.policy-detail-card ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.policy-detail-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.policy-detail-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-teal);
}

.policy-contact-card {
  border-color: rgba(239, 47, 58, 0.22);
  background: linear-gradient(135deg, #ffffff, var(--brand-mint));
}

.journey-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
}

.journey-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, rgba(239, 47, 58, 0.12), rgba(239, 47, 58, 0.7), rgba(47, 45, 49, 0.28));
}

.journey-card {
  position: relative;
  min-height: 100%;
  padding: 70px 24px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(47, 45, 49, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.journey-card::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 24px;
  width: 18px;
  height: 18px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--brand-teal);
  box-shadow: 0 0 0 1px rgba(239, 47, 58, 0.24), 0 10px 24px rgba(239, 47, 58, 0.24);
}

.journey-card:hover {
  border-color: rgba(239, 47, 58, 0.3);
  box-shadow: 0 24px 56px rgba(47, 45, 49, 0.12);
  transform: translateY(-4px);
}

.journey-year {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--brand-teal);
  background: var(--brand-mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-card h3 {
  margin: 0 0 10px;
  color: var(--brand-ink);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.25;
}

.journey-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

a.quality-link-card {
  color: var(--brand-ink);
}

a.quality-link-card:hover,
a.quality-link-card:focus {
  color: var(--brand-ink);
  text-decoration: none;
}

.quality-focus-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1199px) {
  .quality-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Industry-grade corporate refinement */
.site-header .container,
.home-hero .container,
.site-footer .container {
  max-width: 1260px;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.home-hero {
  min-height: 540px;
  min-height: min(540px, calc(100svh - var(--header-offset, 136px)));
}

.home-hero::after {
  background:
    linear-gradient(90deg, rgba(29, 27, 31, 0.94) 0%, rgba(29, 27, 31, 0.8) 42%, rgba(29, 27, 31, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.46) 100%);
}

.hero-content h1 {
  max-width: 1000px;
}

.hero-content p {
  max-width: 700px;
}

.corporate-access-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

.corporate-access-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.corporate-access-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 236px;
  border: 1px solid rgba(47, 45, 49, 0.1);
  border-radius: 10px;
  color: var(--brand-ink);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(47, 45, 49, 0.07);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.corporate-access-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-teal), rgba(47, 45, 49, 0.72));
}

/* Head row: icon + eyebrow */
.corporate-access-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 22px 16px;
  border-bottom: 1px solid rgba(47, 45, 49, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, rgba(247, 247, 248, 0.85) 100%);
}

.corporate-access-head i {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  font-size: 17px;
  background: var(--brand-teal);
  box-shadow: 0 12px 26px rgba(239, 47, 58, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.corporate-access-eyebrow {
  min-width: 0;
  color: var(--brand-teal-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Body row: title + copy */
.corporate-access-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  padding: 18px 22px 22px;
}

.corporate-access-body strong {
  color: var(--brand-ink);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.26;
}

.corporate-access-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.corporate-access-body::after {
  content: "\f105";
  margin-top: auto;
  padding-top: 14px;
  color: var(--brand-teal);
  font-family: FontAwesome;
  font-size: 18px;
  line-height: 1;
  opacity: 0.55;
  transform: translateX(0);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.corporate-access-card:hover,
.corporate-access-card:focus {
  color: var(--brand-ink);
  text-decoration: none;
  border-color: rgba(239, 47, 58, 0.3);
  box-shadow: 0 26px 58px rgba(47, 45, 49, 0.13);
  transform: translateY(-5px);
}

.corporate-access-card:hover .corporate-access-head i,
.corporate-access-card:focus .corporate-access-head i {
  background: var(--brand-navy);
}

.corporate-access-card:hover .corporate-access-body::after,
.corporate-access-card:focus .corporate-access-body::after {
  opacity: 1;
  transform: translateX(6px);
}

.section-kicker {
  color: var(--brand-teal-dark);
}

.section-title {
  text-wrap: balance;
}

.section-copy {
  text-wrap: pretty;
}

.banner_section {
  min-height: 350px;
}

.banner-content h1 {
  text-wrap: balance;
}

.catalog-summary div,
.trust-item,
.about-proof,
.capability-card,
.focus-card,
.process-step,
.privacy-item,
.policy-detail-card,
.journey-card,
.catalog-card a {
  border-color: rgba(47, 45, 49, 0.095);
}

.media-panel {
  position: relative;
}

.media-panel::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 6px;
  pointer-events: none;
}

.process-section {
  background:
    linear-gradient(135deg, #242225 0%, #303033 58%, #1f1d20 100%);
}

.process-step {
  backdrop-filter: blur(10px);
}

@media (max-width: 1199px) {
  .corporate-access-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .home-hero {
    min-height: 470px;
  }

  .corporate-access-grid {
    grid-template-columns: 1fr;
  }

  .corporate-access-card {
    min-height: auto;
  }
}

.site-footer {
  padding-bottom: 0 !important;
  color: rgba(255, 255, 255, 0.82);
  background: var(--brand-navy);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1.15fr 0.85fr 0.9fr;
  gap: 34px;
  padding-bottom: 42px;
}

.footer-brand img {
  width: 220px;
  max-height: 82px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 6px;
  background: #ffffff;
}

.footer-brand p {
  margin: 0 0 18px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 6px;
  color: #ffffff;
  background: var(--brand-teal);
  font-weight: 800;
}

.footer-cta:hover,
.footer-cta:focus {
  color: #ffffff;
  background: var(--brand-red);
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.footer-social-links a:hover,
.footer-social-links a:focus {
  color: #ffffff;
  background: var(--brand-red);
  border-color: var(--brand-red);
}

.site-footer h4 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer a:hover,
.site-footer a:focus {
  color: #ffffff;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 9px;
}

.footer-capabilities li {
  position: relative;
  padding-left: 18px;
}

.footer-capabilities li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.icon {
  right: 20px;
  bottom: 34px;
  z-index: 1000;
}

.icon img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(47, 45, 49, 0.22);
}

.back-to-top {
  right: 24px;
  bottom: 104px;
  border: 1px solid var(--line);
  color: var(--brand-teal);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(47, 45, 49, 0.16);
}

.back-to-top:hover {
  color: #ffffff;
  background: var(--brand-teal);
}

@media (min-width: 992px) {
  .mega-menu {
    display: block;
    top: calc(100% - 2px);
    right: auto;
    left: 50%;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 14px) scale(0.985);
    transform-origin: top center;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 2050;
  }

  .mega-menu::before {
    content: "";
    position: absolute;
    top: -22px;
    right: 0;
    left: 0;
    height: 22px;
  }

  .mega-menu-item:hover > .mega-menu,
  .mega-menu-item:focus-within > .mega-menu,
  .mega-menu-item.show > .mega-menu,
  .mega-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
  }
}

@media (max-width: 1199px) {
  .trust-grid,
  .process-grid,
  .category-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  body {
    padding-top: 88px;
  }

  .site-topbar {
    display: none;
  }

  .custom_nav-container {
    min-height: 88px;
  }

  .navbar-brand .custom-logo {
    width: 196px;
    max-height: 76px;
  }

  .custom_nav-container .navbar-nav {
    align-items: stretch !important;
    gap: 6px;
    padding: 16px 0 20px;
  }

  .custom_nav-container .navbar-nav .nav-item .nav-link,
  .custom_nav-container .navbar-nav .nav-cta .nav-link {
    margin: 0;
    text-align: left;
  }

  .mega-menu {
    width: 100%;
    max-width: none;
    margin: 8px 0 0;
    border-radius: 8px;
    border-top-width: 1px;
  }

  .mega-menu-inner,
  .mega-menu-grid {
    grid-template-columns: 1fr;
  }

  .mega-menu-feature {
    min-height: auto;
  }

  .product-modal {
    padding: 18px;
  }

  .product-modal-dialog {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 36px);
    overflow-y: auto;
  }

  .product-modal-image {
    min-height: 340px;
    padding: 24px;
  }

  .product-modal-body {
    padding: 26px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .home-hero {
    min-height: 470px;
    background-image: none;
  }

  .hero-content {
    padding: 50px 0 44px;
  }

  .section-title {
    font-size: 40px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .banner-content h1 {
    font-size: 46px;
  }

  .two-column,
  .capability-grid,
  .focus-grid,
  .about-proof-grid,
  .privacy-grid,
  .policy-detail-grid,
  .contact-info-grid,
  .product-grid,
  .catalog-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about_adivine_biotec_tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 88px;
  }

  .layout_padding,
  .layout_padding-top {
    padding: 54px 0 !important;
  }

  .home-hero {
    min-height: 440px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .section-title {
    font-size: 32px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .banner-content h1,
  .welcome_heading .welcome_title h2,
  .welcome_heading .website_title,
  .welcome_heading .welcome_title {
    font-size: 32px;
  }

  .hero-metrics,
  .trust-grid,
  .process-grid,
  .catalog-summary,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-metric,
  .trust-item {
    min-height: auto;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .banner_section {
    height: 270px;
  }

  .media-panel,
  .media-panel img,
  .feature-item .feature-icon {
    min-height: 300px;
  }

  .form-shell,
  .capability-card,
  .focus-card,
  .about-proof,
  .privacy-item,
  .contact-tile,
  .process-step {
    padding: 22px;
  }

  .product_item .inner-box {
    min-height: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .navbar-brand .custom-logo {
    width: 166px;
  }

  .custom_nav-container .navbar-toggler {
    width: 44px;
    height: 44px;
  }

  .section-actions {
    flex-direction: column;
  }

  .product-modal {
    padding: 12px;
  }

  .product-modal-image {
    min-height: 260px;
    padding: 18px;
  }

  .product-modal-body h3 {
    font-size: 24px;
  }

  .btn-brand,
  .btn-outline-brand,
  input[type="submit"] {
    width: 100%;
  }

  .about_adivine_biotec_tabs {
    grid-template-columns: 1fr;
  }
}

/* Public refinement layer */
body {
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: #ffffff;
  background: var(--brand-teal);
}

a,
button,
input,
select,
textarea {
  outline-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(239, 47, 58, 0.28);
  outline-offset: 3px;
}

.site-header {
  border-bottom-color: rgba(239, 47, 58, 0.12);
}

.site-header::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 47, 58, 0.56), transparent);
}

.navbar-brand .custom-logo {
  width: 248px;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  position: relative;
}

.custom_nav-container .navbar-nav .nav-item .nav-link::after {
  transition: transform 0.2s ease;
}

.custom_nav-container .navbar-nav .nav-item .nav-link:hover::after,
.custom_nav-container .navbar-nav .nav-item .nav-link.active::after,
.mega-menu-item.show > .nav-link::after {
  transform: translateY(1px);
}

.mega-menu {
  max-height: calc(100vh - 158px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mega-menu-feature {
  position: relative;
  isolation: isolate;
}

.mega-menu-feature::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.mega-menu-grid a {
  border: 1px solid transparent;
}

.mega-menu-grid a:hover,
.mega-menu-grid a:focus {
  border-color: rgba(239, 47, 58, 0.14);
}

.home-hero-slide img,
.home-hero-slide video {
  filter: saturate(1.05) contrast(1.04);
}

.home-hero-copy-track {
  min-height: clamp(200px, 29vh, 292px);
  align-items: center;
}

.home-slider-controls {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.hero-metric {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 18px 40px rgba(0, 0, 0, 0.14);
}

.trust-strip {
  box-shadow: 0 18px 50px rgba(47, 45, 49, 0.05);
}

.section-header {
  position: relative;
}

.capability-card,
.focus-card,
.about-proof,
.privacy-item,
.contact-tile,
.product-card,
.process-step,
.category-overview-card,
.catalog-card a,
.gallery-card {
  isolation: isolate;
}

.capability-card i,
.focus-card i,
.about-proof i,
.privacy-item i,
.contact-tile i,
.process-step i,
.category-overview-card i {
  box-shadow: inset 0 0 0 1px rgba(239, 47, 58, 0.08);
}

.catalog-card-image,
.product_item .img_holder,
.product-card img {
  background:
    linear-gradient(135deg, rgba(255, 240, 241, 0.82), rgba(247, 247, 248, 0.96)),
    #f7f7f8;
}

.catalog-card-body .therapy,
.product-card .therapy {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--brand-mint);
}

.catalog-card-body strong,
.product-card h3 {
  letter-spacing: 0;
}

.segment-filter {
  position: sticky;
  top: 134px;
  z-index: 10;
  padding: 12px;
  border: 1px solid rgba(47, 45, 49, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(47, 45, 49, 0.07);
  backdrop-filter: blur(14px);
}

.product-modal-dialog {
  outline: 1px solid rgba(255, 255, 255, 0.22);
}

.product-modal-image {
  background:
    linear-gradient(135deg, rgba(255, 240, 241, 0.8), rgba(247, 247, 248, 1)),
    #ffffff;
}

.site-footer {
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-teal), rgba(255, 255, 255, 0.72), var(--brand-navy));
}

.footer-brand img {
  padding: 8px;
}

.site-footer .contact_link_box > div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.site-footer li a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-footer li a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(239, 47, 58, 0.72);
  transform: scale(0.75);
  transition: transform 0.18s ease, background 0.18s ease;
}

.site-footer li a:hover::before,
.site-footer li a:focus::before {
  background: #ffffff;
  transform: scale(1);
}

.footer-capabilities li {
  padding-left: 0;
}

.footer-capabilities li::before {
  display: none;
}

@media (max-width: 991px) {
  .navbar-brand .custom-logo {
    width: 206px;
  }

  .mega-menu {
    position: static;
    display: none;
    max-height: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  .mega-menu-item.show > .mega-menu,
  .mega-menu.show {
    display: block;
  }

  .mega-menu-grid a {
    min-height: auto;
  }

  .home-hero-copy-track {
    min-height: 262px;
  }

  .segment-filter {
    position: static;
  }

  .journey-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-timeline::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar-brand .custom-logo {
    width: 174px;
  }

  .home-slider-controls {
    border-radius: 8px;
  }

  .journey-timeline {
    grid-template-columns: 1fr;
  }

  .journey-card {
    padding: 62px 22px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .home-hero-slide {
    transform: none !important;
  }
}

/* ==========================================================================
   Brand gradient headings — animated, derived from the Adivines logo palette
   ========================================================================== */

:root {
  --brand-gradient: linear-gradient(100deg, #ef2f3a 0%, #ff6169 18%, #c9202d 42%, #7a3138 68%, #2f2d31 100%);
  --brand-gradient-light: linear-gradient(100deg, #ffffff 0%, #ffd7da 30%, #ff8d95 58%, #ffe6e8 80%, #ffffff 100%);
  --brand-gradient-speed: 9s;
}

@keyframes brandGradientShift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.section-title,
.welcome_heading .welcome_title h2,
.welcome_heading .website_title,
.welcome_heading .welcome_title,
.form-shell h2,
.gradient-heading {
  color: var(--brand-ink);
}

.hero-content h1,
.banner-content h1,
.site-footer h4,
.gradient-heading-light {
  color: #ffffff;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .section-title,
  .welcome_heading .welcome_title h2,
  .welcome_heading .website_title,
  .welcome_heading .welcome_title,
  .form-shell h2,
  .gradient-heading,
  .hero-content h1,
  .banner-content h1,
  .site-footer h4,
  .gradient-heading-light {
    background-image: var(--brand-gradient);
    background-repeat: no-repeat;
    background-size: 240% 100%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brandGradientShift var(--brand-gradient-speed) ease-in-out infinite alternate;
  }

  .hero-content h1,
  .banner-content h1,
  .site-footer h4,
  .gradient-heading-light {
    background-image: var(--brand-gradient-light);
  }
}

/* Keep decorative rules and pseudo elements out of the text clip. */
.hero-content h1::after,
.section-kicker::before {
  -webkit-text-fill-color: initial;
}

@media (prefers-reduced-motion: reduce) {
  .section-title,
  .gradient-heading,
  .hero-content h1,
  .banner-content h1,
  .site-footer h4,
  .gradient-heading-light {
    animation: none !important;
    background-position: 12% 50% !important;
  }
}

/* ==========================================================================
   Icon-beside-heading card layout
   ========================================================================== */

.capability-card,
.focus-card,
.about-proof,
.privacy-item,
.contact-tile,
.process-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-content: start;
  column-gap: 14px;
  row-gap: 14px;
}

.capability-card > i,
.focus-card > i,
.about-proof > i,
.privacy-item > i,
.contact-tile > i,
.process-step > i {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.capability-card > h3,
.focus-card > h3,
.about-proof > h3,
.privacy-item > h3,
.contact-tile > h3,
.process-step > h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin: 0;
}

/* Body copy, links and lists keep the full card width below the icon row. */
.capability-card > *:not(i):not(h3),
.focus-card > *:not(i):not(h3),
.about-proof > *:not(i):not(h3),
.privacy-item > *:not(i):not(h3),
.contact-tile > *:not(i):not(h3),
.process-step > *:not(i):not(h3) {
  grid-column: 1 / -1;
}

/* ==========================================================================
   Refinement layer — tokens, typography, focus, print
   ========================================================================== */

:root {
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 0.16s;
  --dur: 0.24s;
  --measure: 68ch;
  --focus-ring: 0 0 0 3px rgba(239, 47, 58, 0.35);
}

/* Crisper type rendering for the Inter stack. */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  text-rendering: optimizeLegibility;
}

/* Headings hold their shape; body copy stays inside a readable measure. */
.section-title,
.banner-content h1,
.hero-content h1,
.welcome_heading .welcome_title h2 {
  text-wrap: balance;
}

.section-copy,
.hero-content p,
.banner-content p {
  max-width: min(100%, var(--measure));
  text-wrap: pretty;
}

.capability-card p,
.focus-card p,
.about-proof p,
.privacy-item p,
.contact-tile p,
.process-step p,
.corporate-access-body p,
.journey-card p,
.policy-detail-card p {
  text-wrap: pretty;
}

/* Tabular figures keep stat rows optically aligned. */
.hero-metric strong,
.catalog-summary strong,
.journey-card .journey-year {
  font-variant-numeric: tabular-nums;
}

/* --- Focus: visible for keyboard users, quiet for pointer users ----------- */
:focus:not(:focus-visible) {
  outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--brand-teal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.btn-brand:focus-visible,
.btn-outline-brand:focus-visible,
input[type="submit"]:focus-visible {
  outline-offset: 4px;
  box-shadow: var(--focus-ring);
}

/* Buttons gain a deliberate press state. */
.btn-brand:active,
.btn-outline-brand:active,
input[type="submit"]:active {
  transform: translateY(1px);
}

/* Brand-tinted selection. */
::selection {
  color: var(--brand-ink);
  background: rgba(239, 47, 58, 0.16);
}

/* Anchor targets clear the fixed header when linked to directly. */
[id] {
  scroll-margin-top: calc(var(--header-offset, 136px) + 18px);
}

/* Skip link — injected by the footer script, visible only on focus. */
.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2000;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  background: var(--brand-teal);
  box-shadow: 0 10px 24px rgba(47, 45, 49, 0.24);
  transform: translateY(-160%);
  transition: transform var(--dur) var(--ease);
}

.skip-link:focus {
  color: #ffffff;
  transform: translateY(0);
}

/* Gradient headings idle when scrolled out of view. */
.gradient-paused {
  animation-play-state: paused !important;
}

@media print {
  body {
    padding-top: 0 !important;
    color: #000000;
    background: #ffffff;
    font-size: 11pt;
  }

  .site-header,
  .site-footer,
  .home-hero,
  .banner_section,
  .trust-strip,
  .whatsapp-float,
  .scroll-to-top,
  .skip-link,
  .product-modal {
    display: none !important;
  }

  .section-title,
  .banner-content h1,
  .hero-content h1,
  .site-footer h4,
  .gradient-heading,
  .gradient-heading-light {
    color: #000000 !important;
    background: none !important;
    -webkit-text-fill-color: #000000 !important;
    animation: none !important;
  }

  .layout_padding,
  .layout_padding-top {
    padding: 18pt 0 !important;
  }

  .capability-card,
  .focus-card,
  .about-proof,
  .privacy-item,
  .contact-tile,
  .process-step,
  .corporate-access-card,
  .product-card {
    break-inside: avoid;
    border: 1px solid #cccccc;
    box-shadow: none;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    word-break: break-all;
  }
}
