/* =====================================================
   Midevix Healthcare — Main Stylesheet
   Pharmaceutical & Surgical Products Exporter
   ===================================================== */

:root {
  --blue: #003DA5;
  --blue-dark: #002f7a;
  --blue-deep: #002766;
  --teal: #39B54A;
  --teal-dark: #2f9a3d;
  --green: #39B54A;
  --green-light: #e8f8ea;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-muted: #eef3fa;
  --text: #1a2433;
  --text-muted: #5a6575;
  --border: #d5deeb;
  --white: #ffffff;
  --shadow: 0 8px 28px rgba(0, 61, 165, 0.08);
  --shadow-lg: 0 18px 48px rgba(0, 39, 102, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1280px;
  --header-h: 92px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Sora", "Plus Jakarta Sans", sans-serif;
  --transition: 0.28s ease;
  --whatsapp: #25d366;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--teal);
}

ul,
ol {
  list-style: none;
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3.5rem 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-muted {
  background: var(--bg-muted);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.25;
  color: var(--blue-deep);
  margin-bottom: 0.85rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-header .btn {
  margin-top: 1.15rem;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--blue-deep);
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 650;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-secondary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue-deep);
}

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

.btn-whatsapp:hover {
  filter: brightness(0.95);
  color: var(--white);
}

/* Temporarily hide extra CTAs in the hero copy */
.hero-content .btn-whatsapp,
.hero-content > p,
.hero-content .btn-outline-white {
  display: none !important;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
  overflow: visible;
}

.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(4, 58, 92, 0.08);
}

.site-header .container {
  width: min(100% - 1.25rem, 1360px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 0.75rem;
  flex-wrap: nowrap;
  position: relative;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
  max-width: min(200px, 42vw);
}

.logo:hover {
  opacity: 0.92;
  color: var(--blue);
}

.logo img {
  width: auto;
  height: 90px;
  max-width: 100%;
  object-fit: contain;
  background: transparent;
}

.footer-brand .logo img {
  height: auto;
  width: min(150px, 100%);
  background: transparent !important;
  border-radius: 0;
  padding: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  flex: 1;
  min-width: 0;
  overflow: visible;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.08rem;
}

.main-nav > a,
.nav-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 0.58rem;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
  line-height: 1;
}

.nav-dropdown > .nav-link::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 0.38rem;
  margin-top: -3px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
}

.nav-dropdown.open > .nav-link {
  color: var(--blue);
  background: var(--bg-muted);
}

.nav-dropdown.open > .nav-link::after {
  margin-top: 2px;
  transform: rotate(-135deg);
}

.main-nav > a:hover,
.nav-dropdown > .nav-link:hover,
.main-nav > a.active,
.nav-dropdown.active > .nav-link {
  color: var(--blue);
  background: var(--bg-muted);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: none;
  font-family: inherit;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 1400;
}

.nav-dropdown:not(.nav-wound):not(.nav-pvc) > .dropdown-menu {
  min-width: 220px;
}

.nav-export > .dropdown-menu {
  left: auto;
  right: 0;
}

.nav-dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 0.58rem 0.8rem;
  color: var(--text);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

.dropdown-menu a:hover {
  background: var(--bg-soft);
  color: var(--blue);
}

.nav-wound,
.nav-pvc,
.nav-export {
  position: relative;
}

.nav-wound .mega-panel,
.nav-pvc .mega-panel,
.nav-export .mega-panel {
  position: absolute;
  left: 0;
  top: calc(100% - 4px);
  width: min(560px, 90vw);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 1.2fr);
  gap: 1rem;
  margin: 0;
  padding: 1.2rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 39, 102, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 1400;
}

.nav-pvc .mega-panel,
.nav-export .mega-panel {
  left: auto;
  right: 0;
}

.nav-export .mega-panel {
  width: min(720px, 92vw);
  grid-template-columns: minmax(200px, 1.1fr) minmax(200px, 1fr) minmax(160px, 0.85fr);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -22px;
  height: 22px;
}

.nav-wound.open > .mega-panel,
.nav-pvc.open > .mega-panel,
.nav-export.open > .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-intro h4 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display, "Sora", sans-serif);
  font-size: 0.98rem;
  color: var(--blue-deep, var(--blue));
}

.mega-intro p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted, #5b6b7c);
}

.mega-links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mega-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.mega-links a::after {
  content: "›";
  color: var(--blue);
}

.mega-links a:hover {
  background: var(--bg-soft);
  color: var(--blue);
}

.mega-visual {
  display: none;
}

.mega-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.header-actions .btn {
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  color: var(--blue);
  background: var(--white);
}

.icon-btn.whatsapp {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: white;
  display: none; /* temporarily hidden */
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--blue-deep);
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  color: white;
  overflow: hidden;
  background: #002766;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -8%;
  background:
    linear-gradient(115deg, rgba(0, 39, 102, 0.82) 0%, rgba(0, 61, 165, 0.68) 45%, rgba(57, 181, 74, 0.42) 100%),
    url("../images/hero-healthcare.jpg") center/cover no-repeat;
  animation: heroKenBurns 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 18%, rgba(57, 181, 74, 0.22), transparent 42%),
    radial-gradient(circle at 12% 82%, rgba(0, 61, 165, 0.28), transparent 38%);
  pointer-events: none;
}

@keyframes heroKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, 1.5%); }
}

.hero-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
}

.hero-orb-1 {
  width: 280px;
  height: 280px;
  background: #39B54A;
  top: -80px;
  right: 8%;
  animation: heroOrb 9s ease-in-out infinite;
}

.hero-orb-2 {
  width: 220px;
  height: 220px;
  background: #003DA5;
  bottom: -40px;
  left: 6%;
  animation: heroOrb 11s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.35);
  top: 42%;
  left: 48%;
  animation: heroOrb 7s ease-in-out infinite;
}

@keyframes heroOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -18px) scale(1.12); }
}

.hero-float {
  position: absolute;
  font-size: 1.6rem;
  opacity: 0.55;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.25));
  animation: heroFloat 7s ease-in-out infinite;
}

.hero-float-1 { top: 16%; right: 10%; animation-delay: 0s; }
.hero-float-2 { top: 62%; right: 7%; animation-delay: 1.4s; font-size: 1.85rem; }
.hero-float-3 { bottom: 12%; right: 18%; animation-delay: 0.7s; }
.hero-float-4 { top: 32%; right: 22%; animation-delay: 2s; font-size: 1.45rem; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(-6deg); opacity: 0.4; }
  50% { transform: translateY(-18px) rotate(8deg); opacity: 0.8; }
}

.hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  animation: heroScan 5.5s linear infinite;
}

@keyframes heroScan {
  0% { top: -90px; }
  100% { top: 110%; }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: 4.5rem 0 5rem;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: start;
  align-content: center;
  text-align: left;
  gap: 0;
  min-width: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero-panel {
  min-width: 0;
  width: 100%;
  padding: 1.5rem 1.4rem 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 27, 74, 0.18);
}

.hero-panel-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9dffaa;
  margin-bottom: 0.45rem;
}

.hero-panel-title {
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 1rem;
}

.hero-panel-list {
  list-style: none;
  display: grid;
  gap: 0.35rem;
  margin: 0 0 1rem;
}

.hero-panel-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 42px;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-panel-list a::after {
  content: "→";
  opacity: 0.7;
  font-size: 0.95rem;
}

.hero-panel-list a:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.hero-panel-link {
  display: inline-flex;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-panel-link:hover {
  color: #9dffaa;
}

.hero-float {
  display: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.35rem;
  backdrop-filter: blur(6px);
  max-width: 100%;
}

.hero-badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39B54A;
  box-shadow: 0 0 0 0 rgba(57, 181, 74, 0.7);
  animation: heroPulse 1.8s ease-out infinite;
  flex-shrink: 0;
}

@keyframes heroPulse {
  0% { box-shadow: 0 0 0 0 rgba(57, 181, 74, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(57, 181, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(57, 181, 74, 0); }
}

.hero h1 {
  color: white;
  margin: 0 0 1.75rem;
  max-width: 100%;
  width: 100%;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: left;
  justify-self: stretch;
}

.hero-rotate {
  display: block;
  position: relative;
  height: 1.2em;
  overflow: hidden;
  margin-bottom: 0.15em;
  width: 100%;
}

.hero-rotate span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  color: #7dff8a;
  text-shadow: 0 0 24px rgba(57, 181, 74, 0.45);
  animation: heroWordFlip 9s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  opacity: 0;
  transform: translateY(110%);
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  line-height: 1.15;
}

.hero-rotate span:nth-child(1) { animation-delay: 0s; }
.hero-rotate span:nth-child(2) { animation-delay: 3s; }
.hero-rotate span:nth-child(3) { animation-delay: 6s; }

@keyframes heroWordFlip {
  0% { opacity: 0; transform: translateY(110%); }
  5% { opacity: 1; transform: translateY(0); }
  28% { opacity: 1; transform: translateY(0); }
  33% { opacity: 0; transform: translateY(-110%); }
  100% { opacity: 0; transform: translateY(-110%); }
}

.hero .btn-group {
  margin: 0;
}

.hero .btn-primary {
  animation: heroCtaGlow 2.8s ease-in-out infinite;
}

@keyframes heroCtaGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  margin-bottom: 1.75rem;
  max-width: 580px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
  min-width: 0;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: white;
  line-height: 1.2;
}

.hero-stat span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ---------- Page Hero / Breadcrumb ---------- */
.page-hero {
  background:
    linear-gradient(120deg, rgba(0, 39, 102, 0.88), rgba(0, 61, 165, 0.78)),
    url("../images/page-hero.jpg") center/cover no-repeat;
  color: white;
  padding: 2.15rem 0 1.85rem;
}

.page-hero h1 {
  color: white;
  margin: 0;
}

.page-hero-hh {
  background:
    linear-gradient(105deg, rgba(0, 32, 86, 0.88) 0%, rgba(0, 61, 165, 0.62) 52%, rgba(0, 61, 165, 0.32) 100%),
    url("../images/human-health/hero.png") center/cover no-repeat;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  align-items: center;
  font-size: 0.88rem;
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
  text-align: left;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb > span {
  opacity: 0.7;
}

.breadcrumb > span:last-child {
  opacity: 1;
  color: #fff;
}

/* ---------- Cards ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

#wound-care-dressing,
#medical-pvc-disposable,
#products {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-img {
  aspect-ratio: 16 / 10;
  background: var(--bg-muted);
  overflow: hidden;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.card-body {
  padding: 1.35rem;
}

.card-body h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.card-body p {
  font-size: 0.94rem;
  margin-bottom: 1rem;
}

.card-body .btn {
  width: 100%;
}

.feature-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #e8eefc, #e8f8ea);
  display: grid;
  place-items: center;
  color: var(--blue);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.feature-card p {
  font-size: 0.92rem;
}

.industry-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.industry-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.industry-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg-muted);
  display: grid;
  place-items: center;
  color: var(--teal);
  flex-shrink: 0;
}

.industry-card h3 {
  font-size: 0.98rem;
  margin: 0;
}

/* ---------- About split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.split-content .eyebrow {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  display: block;
}

.split-content h2 {
  margin-bottom: 1rem;
}

.split-content p {
  margin-bottom: 1rem;
}

.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  background:
    linear-gradient(160deg, rgba(0, 61, 165, 0.12), rgba(57, 181, 74, 0.18)),
    url("../images/section-pharma.jpg") center/cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.split-media .float-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: white;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 220px;
}

.split-media .float-badge strong {
  display: block;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.split-media .float-badge span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-creative-section .split-content {
  background: linear-gradient(145deg, #ffffff, #f8fbff);
  border: 1px solid #d9e5f2;
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 16px 36px rgba(0, 61, 165, 0.06);
}

.about-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.35rem 0 1rem;
}

.about-highlight-card {
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--blue-deep), var(--blue));
  color: white;
}

.about-highlight-card-green {
  background: linear-gradient(145deg, #1b6a2a, var(--teal));
}

.about-highlight-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.about-highlight-card span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.about-checks {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.3rem;
}

.about-checks li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 0.95rem;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  color: var(--blue-deep);
  font-size: 0.88rem;
  font-weight: 600;
}

.about-checks li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal), #80f591);
  box-shadow: 0 0 0 4px rgba(57, 181, 74, 0.12);
  flex-shrink: 0;
}

.about-media {
  min-height: 420px;
  background: linear-gradient(160deg, rgba(0, 61, 165, 0.16), rgba(57, 181, 74, 0.18));
}

.about-media-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  z-index: 2;
}

.about-media-badges span {
  width: fit-content;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
  font-size: 0.74rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.about-media-main-card {
  position: absolute;
  top: 3.5rem;
  left: 1rem;
  right: 1rem;
  bottom: 5.5rem;
  padding: 0;
  border-radius: 20px;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
  display: block;
}

.about-media-main-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(0, 39, 102, 0.14);
}

.about-media-info {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 200px;
  display: grid;
  gap: 0.8rem;
  z-index: 2;
}

.about-media-info-box {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(0, 39, 102, 0.12);
}

.about-media-info-box strong {
  display: block;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.about-media-info-box span {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

/* ---------- Markets ---------- */
.markets-visual,
.markets-creative-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.markets-creative-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(57, 181, 74, 0.08), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(0, 61, 165, 0.08), transparent 32%),
    var(--bg-muted);
}

.markets-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(160deg, #e7f0ff, #eef8f1);
  box-shadow: 0 18px 40px rgba(0, 39, 102, 0.12);
  border: 1px solid #d9e5f2;
}

.markets-media img {
  width: 100%;
  height: auto;
  display: block;
}

.markets-media-badge {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow);
  max-width: 320px;
}

.markets-media-badge strong {
  display: block;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.markets-media-badge span {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.map-wrap {
  background:
    linear-gradient(160deg, rgba(0, 61, 165, 0.08), rgba(57, 181, 74, 0.1)),
    #eef4fb;
  border-radius: var(--radius);
  padding: 0.75rem;
  border: 1px solid var(--border);
  min-height: 320px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.map-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.map-wrap svg {
  width: 100%;
  max-width: 520px;
  height: auto;
}

.market-list {
  display: grid;
  gap: 0.85rem;
}

.market-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 61, 165, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.market-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 61, 165, 0.1);
}

.market-item .dot,
.market-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--blue-deep), var(--blue));
  color: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.market-item .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 0.35rem;
}

.market-item h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.market-item p {
  font-size: 0.88rem;
  margin: 0;
}

.market-list .btn {
  margin-top: 0.35rem;
  justify-self: start;
}

.markets-port-banner {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 420px;
  background: #f4f8fc;
  box-shadow: 0 18px 40px rgba(0, 39, 102, 0.12);
  border: 1px solid #d9e5f2;
  margin-bottom: 1.5rem;
}

.markets-port-banner > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.markets-port-copy {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(42%, 480px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2.2rem 1.6rem 2.2rem 2rem;
  z-index: 2;
}

.markets-port-copy h2 {
  color: var(--blue-deep);
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  margin: 0 0 0.7rem;
}

.markets-port-copy p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  max-width: 34ch;
}

.markets-port-stats {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem 0.95rem;
  margin: 0 0 1rem;
  box-shadow: 0 8px 18px rgba(0, 39, 102, 0.08);
}

.markets-port-stats strong {
  display: block;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.markets-port-stats span {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.markets-pins {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  pointer-events: auto;
}

.pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid #fff;
  box-shadow: 0 0 0 6px rgba(57, 181, 74, 0.28), 0 6px 14px rgba(0, 39, 102, 0.2);
  animation: pinPulse 2.4s ease-out infinite;
}

.pin-label {
  background: #002766;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 16px rgba(0, 39, 102, 0.18);
}

.pin-india { top: 58%; left: 46%; }
.pin-africa { top: 22%; left: 54%; }
.pin-me { top: 38%; left: 62%; }
.pin-sea { top: 18%; left: 72%; }
.pin-la { top: 62%; left: 68%; }
.pin-cis { top: 28%; left: 82%; }

@keyframes pinPulse {
  0% { box-shadow: 0 0 0 0 rgba(57, 181, 74, 0.4), 0 6px 14px rgba(0, 39, 102, 0.2); }
  70% { box-shadow: 0 0 0 10px rgba(57, 181, 74, 0), 0 6px 14px rgba(0, 39, 102, 0.2); }
  100% { box-shadow: 0 0 0 0 rgba(57, 181, 74, 0), 0 6px 14px rgba(0, 39, 102, 0.2); }
}

.markets-port-list {
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}

@media (max-width: 1100px) {
  .markets-port-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .markets-port-banner {
    min-height: 0;
  }

  .markets-port-banner > img {
    min-height: 260px;
    height: 260px;
  }

  .markets-port-copy {
    position: relative;
    width: 100%;
    inset: auto;
    padding: 1.35rem 1.1rem 1.5rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), #fff);
  }

  .markets-port-copy p {
    max-width: none;
  }

  .markets-pins {
    display: none;
  }

  .markets-port-list {
    grid-template-columns: 1fr;
  }
}

/* ---------- Quality / Values ---------- */
.checklist {
  display: grid;
  gap: 0.85rem;
}

.checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.checklist .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.value-item {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  text-align: center;
}

.value-item h3 {
  margin-bottom: 0.4rem;
}

.cert-placeholders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cert-box {
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1rem;
  text-align: center;
  background: var(--bg-soft);
  color: var(--text-muted);
}

.cert-box strong {
  display: block;
  color: var(--blue-deep);
  margin-bottom: 0.35rem;
}

.cert-box span {
  font-size: 0.85rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background:
    linear-gradient(120deg, var(--blue-deep) 0%, var(--blue) 55%, var(--teal) 100%);
  color: white;
  border-radius: calc(var(--radius) + 4px);
  padding: 3rem 2rem;
  text-align: center;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin: 0 auto 1.5rem;
}

.cta-banner .btn-group {
  justify-content: center;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: white;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 650;
  color: var(--blue-deep);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--teal);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-answer {
  padding: 0 1.25rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.home-faq-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.25rem;
  align-items: start;
}

.home-faq-split .faq-list {
  max-width: none;
  margin: 0;
}

.home-faq-split .faq-item summary {
  padding: 0.95rem 1.1rem;
  font-size: 0.95rem;
}

.home-inquiry-card {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.home-inquiry-card .form-card {
  padding: 1.5rem 1.6rem;
}

.home-inquiry-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.28rem;
  color: var(--blue-deep);
}

.home-inquiry-card .inquiry-lead {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-inquiry-card .home-inquiry-grid {
  gap: 0.85rem 1rem;
}

.home-inquiry-card .form-group input,
.home-inquiry-card .form-group select,
.home-inquiry-card .form-group textarea {
  padding: 0.7rem 0.85rem;
}

.home-inquiry-card textarea {
  min-height: 88px;
}

.home-inquiry-card .btn {
  width: 100%;
}

@media (max-width: 1100px) {
  .home-faq-split {
    grid-template-columns: 1fr;
  }

  .home-inquiry-card {
    position: static;
  }
}

/* ---------- Forms ---------- */
.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.15rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-deep);
}

.form-group label .req {
  color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fbfdfe;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 110, 168, 0.12);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group .error {
  color: #dc2626;
  font-size: 0.82rem;
  display: none;
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: #dc2626;
}

.form-group.invalid .error {
  display: block;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.contact-layout {
  align-items: start;
}

.contact-info-cards {
  display: grid;
  gap: 1rem;
}

.info-card {
  display: flex;
  gap: 0.9rem;
  padding: 1.15rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.info-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-muted);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-card .icon svg {
  display: block;
}

.info-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.info-card p,
.info-card a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
  background: var(--bg-muted);
  display: grid;
  place-items: center;
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

/* ---------- Subcategory chips ---------- */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
}

.chip {
  font-size: 0.78rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--bg-muted);
  color: var(--blue-dark);
  font-weight: 550;
}

/* ---------- Content prose ---------- */
.prose {
  max-width: 1520px;
}

.prose h2 {
  margin: 2rem 0 0.85rem;
}

.prose h3 {
  margin: 1.5rem 0 0.65rem;
}

.prose p {
  margin-bottom: 1rem;
}

.prose ul {
  margin: 0 0 1.25rem 1.15rem;
  list-style: disc;
}

.prose ul li {
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background:
    radial-gradient(circle at 8% 0%, rgba(57, 181, 74, 0.08), transparent 32%),
    radial-gradient(circle at 100% 100%, rgba(0, 61, 165, 0.08), transparent 36%),
    #eef4fb;
  color: var(--text);
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand .logo {
  color: var(--blue-deep);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 0.65rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  display: grid;
  place-items: center;
  color: var(--blue);
}

.social-links a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.footer-col h4 {
  color: var(--blue-deep);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  padding: 0.3rem 0;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--blue);
}

.footer-col .contact-line {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ---------- Floating buttons ---------- */
.float-actions {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform var(--transition);
}

.float-btn:hover {
  transform: scale(1.06);
  color: white;
}

.float-btn.wa {
  background: var(--whatsapp);
  display: none; /* temporarily hidden */
}

.float-btn.call {
  background: var(--blue);
  display: none;
}

/* ---------- Thank you / 404 ---------- */
.status-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
}

.status-page .icon-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
}

.status-page h1 {
  margin-bottom: 0.75rem;
}

.status-page p {
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

@media (max-width: 1280px) {
  .header-actions .whatsapp {
    display: none;
  }
}

/* ---------- Export page ---------- */
.page-hero-export {
  background:
    linear-gradient(120deg, rgba(0, 39, 102, 0.88), rgba(0, 61, 165, 0.7)),
    url("../images/export-hero.jpg") center/cover no-repeat;
}

.export-intro-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 39, 102, 0.1);
}

.export-intro-media img {
  width: 100%;
  height: auto;
  display: block;
}

.export-docs-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.export-docs-list li {
  position: relative;
  padding: 0.65rem 0.85rem 0.65rem 1.85rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.export-docs-list li::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 0.95rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.export-markets-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.75rem;
  align-items: center;
}

.export-markets-block .export-media img {
  min-height: 240px;
}

.export-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.export-pills span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 650;
}

.export-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.export-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
}

.export-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.export-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.export-list a,
.export-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font-weight: 600;
}

.export-list a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.export-why {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.export-why article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
}

.export-why h3 {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.export-why ul li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.export-why ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.export-docs {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
}

.export-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.export-table th,
.export-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
}

.export-table th {
  background: var(--bg-muted);
  color: var(--blue-deep);
}

.export-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.export-countries span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--bg-muted);
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 650;
}

@media (min-width: 901px) {
  body:has(.page-hero-export) .container {
    width: min(100% - 2rem, 1360px);
  }

  body:has(.page-hero-export) .markets-visual {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2.5rem;
    align-items: center;
  }

  body:has(.page-hero-export) .export-intro-media {
    align-self: stretch;
    min-height: 460px;
  }

  body:has(.page-hero-export) .export-intro-media img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: 92% center;
  }

  body:has(.page-hero-export) .markets-visual .prose {
    max-width: none;
    text-align: left;
  }

  body:has(.page-hero-export) .markets-visual .prose h2 {
    margin-top: 0;
    margin-bottom: 1rem;
  }

  body:has(.page-hero-export) .export-split,
  body:has(.page-hero-export) .export-markets-block {
    gap: 2.5rem;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .export-split,
  .export-why,
  .export-docs,
  .export-markets-block {
    grid-template-columns: 1fr;
  }
}

/* ---------- Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .logo {
    max-width: 200px;
  }

  .logo img {
    height: 90px;
    width: auto;
    max-width: 200px;
  }

  .hero {
    min-height: 70vh;
    align-items: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
    gap: 1.75rem;
    padding: 3.25rem 0 3.5rem;
  }

  .hero-content {
    max-width: none;
    margin: 0;
    justify-items: start;
    text-align: left;
    padding: 0;
  }

  .hero-rotate span {
    text-align: left;
  }

  .hero-float {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-wrap {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }

  .nav-wrap.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    display: none;
    padding: 0;
  }

  .nav-dropdown.open > .dropdown-menu {
    display: grid;
    gap: 0.05rem;
    margin: 0;
    padding: 0.15rem 0 0.45rem 0.85rem;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown.open > .dropdown-menu a {
    display: block;
    min-height: 44px;
    padding: 0.7rem 0.2rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: normal;
  }

  .nav-wound .mega-panel,
  .nav-pvc .mega-panel,
  .nav-export .mega-panel {
    position: static;
    left: auto;
    top: auto;
    width: auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.35rem 0 0.5rem 0.75rem;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-wound.open > .mega-panel,
  .nav-pvc.open > .mega-panel,
  .nav-export.open > .mega-panel {
    display: grid;
  }

  .mega-visual {
    display: none;
  }

  .mega-intro {
    display: none;
  }

  .header-actions .btn-request {
    display: none;
  }

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

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

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    padding: 2.75rem 0 3rem;
  }

  .hero-panel {
    max-width: 520px;
  }

  .about-creative-section .split {
    gap: 1.25rem;
    align-items: stretch;
  }

  .about-creative-section .split-content {
    padding: 1.5rem;
    text-align: left;
  }

  .about-creative-section .split-content .btn {
    width: auto;
    max-width: none;
  }

  .about-highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-creative-section .about-media {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0.85rem;
    overflow: hidden;
  }

  .about-creative-section .about-media-main-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    flex-shrink: 0;
  }

  .about-creative-section .about-media-main-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #eef4fb;
  }

  .about-media-info {
    display: none;
  }

  .about-creative-section .float-badge {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    max-width: none;
    width: 100%;
    text-align: left;
    padding: 0.85rem 1rem;
    box-sizing: border-box;
  }

  .split,
  .markets-visual,
  .markets-creative-layout,
  .grid-3,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-content {
    text-align: center;
  }

  .split-content .btn {
    width: 100%;
    max-width: 320px;
  }

  .split-media:not(.about-media) .float-badge {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    max-width: calc(100% - 2rem);
    text-align: center;
  }

  .values-grid,
  .cert-placeholders {
    grid-template-columns: 1fr 1fr;
  }

  .float-btn.call {
    display: grid;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .hero-stat strong {
    font-size: 1.15rem;
  }

  .hero-stat span {
    font-size: 0.78rem;
  }
}

@media (max-width: 640px) {
  .about-creative-section .split-content {
    padding: 1.15rem;
    border-radius: 18px;
    text-align: left;
  }

  .about-creative-section .split-content h2 {
    font-size: clamp(1.3rem, 5.6vw, 1.65rem);
    line-height: 1.28;
  }

  .about-creative-section .split-content p {
    font-size: 0.9rem;
  }

  .about-creative-section .split-content .btn {
    width: auto;
    padding: 0.55rem 1.15rem;
    font-size: 0.82rem;
  }

  .about-highlight-grid {
    grid-template-columns: 1fr;
  }

  .about-highlight-card {
    padding: 0.9rem;
  }

  .about-checks li {
    border-radius: 16px;
    align-items: flex-start;
    font-size: 0.82rem;
  }

  .about-creative-section .about-media {
    min-height: 0;
    padding: 0.7rem;
    gap: 0.7rem;
    border-radius: 16px;
  }

  .about-media-badges {
    display: none;
  }

  .about-creative-section .about-media-main-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    aspect-ratio: 5 / 3;
    border-radius: 14px;
  }

  .about-creative-section .about-media-main-card img {
    border-radius: 14px;
    object-fit: cover;
  }

  .about-creative-section .float-badge {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    max-width: none;
    width: 100%;
    padding: 0.75rem 0.9rem;
    text-align: left;
  }

  .about-creative-section .float-badge strong {
    font-size: 0.95rem;
  }

  .about-creative-section .float-badge span {
    font-size: 0.78rem;
  }

  :root {
    --header-h: 104px;
  }

  .section {
    padding: 3rem 0;
  }

  .section-sm {
    padding: 2.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
    padding-inline: 0.25rem;
  }

  .section-header h2 {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .values-grid,
  .cert-placeholders,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Header mobile — same logo size as desktop */
  .logo {
    max-width: 200px;
    flex-shrink: 0;
  }

  .logo img {
    height: 90px;
    width: auto;
    max-width: 200px;
  }

  .header-inner {
    min-height: var(--header-h);
    gap: 0.5rem;
  }

  .menu-toggle {
    flex-shrink: 0;
  }

  /* Hero mobile */
  .hero {
    min-height: auto;
    align-items: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    padding: 2.25rem 0 2.5rem;
    justify-items: stretch;
  }

  .hero-content {
    max-width: none;
    margin: 0;
    padding: 0;
    text-align: left;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
  }

  .hero-panel {
    max-width: none;
    padding: 1.15rem 1rem 1.05rem;
  }

  .hero-panel-list a {
    min-height: 40px;
    font-size: 0.88rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    margin: 0 0 1.1rem;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 6.8vw, 1.85rem);
    line-height: 1.25;
    text-align: left;
    width: 100%;
    margin: 0 0 1.5rem;
  }

  .hero-rotate {
    height: 1.2em;
  }

  .hero-rotate span {
    white-space: normal;
    text-align: left;
    line-height: 1.2;
    overflow: visible;
    text-overflow: unset;
  }

  .hero p {
    font-size: 0.94rem;
    line-height: 1.6;
    max-width: 100%;
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .hero .btn-group {
    width: auto;
    max-width: none;
    align-items: start;
    justify-content: start;
    flex-direction: row;
    justify-self: start;
  }

  .hero .btn-primary {
    width: auto;
    min-width: 0;
    padding: 0.55rem 1.15rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .hero-stats {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .hero-stat {
    flex: none;
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
  }

  .hero-stat strong {
    font-size: 1.05rem;
    margin-bottom: 0.15rem;
  }

  .hero-stat span {
    font-size: 0.82rem;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
  }

  .hero .btn-group .btn {
    width: auto;
  }

  /* Split / About mobile */
  .split {
    gap: 1.5rem;
  }

  .split-content {
    text-align: center;
  }

  .split-content .btn {
    width: 100%;
  }

  .split-media:not(.about-media) {
    min-height: 240px;
  }

  .split-media:not(.about-media) .float-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: 1rem;
    max-width: calc(100% - 2rem);
    text-align: center;
  }

  .about-creative-section .split {
    gap: 1rem;
  }

  .about-creative-section .split-content {
    text-align: left;
  }

  .about-creative-section .split-content .btn {
    width: auto;
  }

  .about-creative-section .about-media {
    min-height: 0;
  }

  .about-creative-section .float-badge {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    max-width: none;
    width: 100%;
    text-align: left;
  }

  /* Cards mobile — one left-aligned grid */
  .card-body {
    display: grid;
    justify-items: start;
    align-content: start;
    padding: 1.1rem;
    text-align: left;
    gap: 0;
  }

  .card-body h3,
  .card-body p {
    width: 100%;
    text-align: left;
  }

  .card-body .chip-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    width: 100%;
    gap: 0.4rem;
    margin: 0.15rem 0 0.85rem;
  }

  .card-body .btn {
    width: auto;
    max-width: 100%;
    justify-self: start;
  }

  .feature-card {
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .industry-card {
    padding: 1rem;
  }

  /* Markets mobile */
  .map-wrap {
    min-height: 0;
    padding: 0.5rem;
  }

  .map-wrap img {
    max-width: 100%;
  }

  .markets-media {
    border-radius: 16px;
  }

  .markets-media-badge {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: 0 0.7rem 0.7rem;
    padding: 0.75rem 0.9rem;
  }

  .market-item {
    padding: 0.9rem 1rem;
  }

  .market-list .btn {
    width: 100%;
    justify-self: stretch;
  }

  /* Quality / certs mobile */
  .cert-placeholders {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .cert-box {
    padding: 1rem 0.75rem;
  }

  /* FAQ mobile */
  .faq-item summary {
    padding: 1rem;
    font-size: 0.92rem;
    text-align: left;
  }

  .faq-item .faq-answer {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
  }

  /* CTA mobile */
  .cta-banner {
    padding: 2rem 1.25rem;
    border-radius: 14px;
    text-align: center;
  }

  .cta-banner h2 {
    font-size: 1.3rem;
  }

  .cta-banner p {
    font-size: 0.92rem;
  }

  .cta-banner .btn-group {
    align-items: stretch;
  }

  /* Footer mobile */
  .site-footer {
    padding-top: 3rem;
  }

  .footer-grid {
    gap: 1.75rem;
    text-align: center;
  }

  .footer-brand .logo {
    justify-content: center;
    margin-inline: auto;
  }

  .footer-brand p {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-col h4 {
    margin-bottom: 0.75rem;
  }

  .footer-col .contact-line {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem 0;
  }

  /* Forms mobile */
  .form-card {
    padding: 1.1rem;
  }

  .page-hero {
    padding: 1.6rem 0 1.4rem;
    text-align: left;
  }

  .page-hero h1 {
    font-size: clamp(1.4rem, 6vw, 1.75rem);
  }

  .breadcrumb {
    justify-content: flex-start;
  }

  /* Floating buttons */
  .float-actions {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }

  .header-actions .icon-btn:not(.whatsapp) {
    display: none;
  }

  .chip-list {
    gap: 0.4rem;
    justify-content: flex-start;
  }

  .text-center .btn {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .logo img {
    height: 90px;
    width: auto;
    max-width: 180px;
  }

  .hero h1 {
    font-size: 1.35rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .hero-rotate span:first-child {
    opacity: 1 !important;
    transform: none !important;
    position: relative;
  }

  .hero-rotate span:not(:first-child) {
    display: none;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Human Health catalog (Juvencia-style) ---------- */
.hh-catalog-section {
  padding-top: 2.5rem;
}

.hh-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 1.75rem;
  align-items: start;
}

.hh-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.hh-cat-nav {
  display: flex;
  flex-direction: column;
}

.hh-cat-nav a {
  display: block;
  padding: 0.9rem 1.15rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background var(--transition), color var(--transition);
}

.hh-cat-nav a:last-child {
  border-bottom: none;
}

.hh-cat-nav a:hover {
  color: var(--blue);
  background: var(--bg-soft);
}

.hh-cat-nav a.active {
  background: var(--blue-deep);
  color: var(--white);
}

.hh-cat-nav a.active:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.hh-content {
  min-width: 0;
}

.hh-table-wrap {
  border: 1px solid var(--border);
  overflow: auto;
  max-height: 520px;
  background: var(--white);
}

.hh-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hh-table thead th {
  background: var(--blue-deep);
  color: var(--white);
  font-weight: 600;
  text-align: left;
  padding: 0.85rem 1rem;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 1;
}

.hh-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.hh-gallery[hidden] {
  display: none;
}

.hh-gallery-item {
  margin: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.hh-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ---------- Surgical Products (Mediplus-style cards) ---------- */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sp-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.sp-card:hover {
  color: inherit;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.sp-card-media {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eef2f6;
}

.sp-card-caption {
  position: absolute;
  display: none;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0.55rem 0.7rem;
  background: linear-gradient(180deg, transparent, rgba(0, 39, 102, 0.88));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.sp-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-card-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: var(--blue-deep);
  color: var(--white);
  padding: 0.85rem 1rem;
  min-height: 3.25rem;
}

.sp-card-title {
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.35;
  white-space: normal;
}

.sp-card-arrow {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--blue-deep);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.sp-detail-top {
  margin-bottom: 1.5rem;
}

.sp-back {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.sp-detail-top h2 {
  margin: 0;
  color: var(--blue-deep);
}

.sp-card-media-product {
  background: #f4f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.sp-card-media-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sp-product-intro {
  margin: 0 0 1.25rem;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 920px;
}

.sp-product-intro[hidden] {
  display: none;
}

.sp-product-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: #eef2f6;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 2rem;
}

.sp-product-media {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 360px;
  position: relative;
}

.sp-product-media img {
  max-width: 100%;
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.sp-product-info {
  background: var(--blue-deep);
  color: #fff;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.sp-product-info h2 {
  color: #fff;
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.25;
}

.sp-product-info .btn {
  align-self: flex-start;
  margin-top: 0.75rem;
}

.sp-product-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.75rem;
  align-items: start;
}

.sp-product-desc h3 {
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.sp-product-desc ul {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--text);
}

.sp-product-desc li {
  margin-bottom: 0.55rem;
  line-height: 1.55;
}

.sp-inquiry-box {
  border: 1px solid var(--border);
  background: #fff;
  padding: 1.25rem;
  text-align: center;
}

.sp-inquiry-box p {
  margin: 0 0 1rem;
  font-weight: 600;
  color: var(--blue-deep);
}

@media (max-width: 900px) {
  .sp-product-hero,
  .sp-product-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .sp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

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

.hh-table tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}

.hh-table tbody tr:nth-child(even) {
  background: var(--bg-soft);
}

.hh-table tbody tr:hover {
  background: var(--bg-muted);
}

.hh-table .col-sr {
  width: 5.5rem;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  color: var(--text-muted);
}

.hh-table thead .col-sr {
  color: var(--white);
}

.hh-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hh-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hh-sidebar {
    position: static;
  }

  .hh-cat-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hh-cat-nav a {
    border-right: 1px solid var(--border);
  }

  .hh-cat-nav a:nth-child(2n) {
    border-right: none;
  }

  .hh-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-top: 1.75rem;
  }

  .hh-table-wrap {
    max-height: 420px;
  }
}

@media (max-width: 560px) {
  .hh-cat-nav {
    grid-template-columns: 1fr;
  }

  .hh-cat-nav a {
    border-right: none;
  }

  .hh-table .col-sr {
    width: 3.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .hh-gallery {
    grid-template-columns: 1fr;
  }
}

/* ---------- Wound Care product detail (Medicare-style) ---------- */
.wc-pdp {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 1fr);
  gap: 2.25rem 2.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.wc-pdp-info {
  display: grid;
  align-content: start;
  min-width: 0;
}

.wc-pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.wc-pdp-main {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #f7f9fc;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.wc-pdp-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}

.wc-pdp-main img[hidden] {
  display: none !important;
}

.wc-gallery-caption {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.wc-pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 92px));
  gap: 0.55rem;
}

.wc-pack-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    radial-gradient(circle at 20% 0%, rgba(16, 185, 129, 0.12), transparent 46%),
    linear-gradient(180deg, #f4f8fd 0%, #e7eef7 100%);
}

.wc-pack-art[hidden] {
  display: none !important;
}

.wc-pack-art-card {
  width: min(92%, 360px);
  background: #fff;
  border: 1px solid #d7e4f2;
  border-radius: 14px;
  padding: 1.2rem 1.15rem 1.05rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(15, 45, 80, 0.1);
}

.wc-pack-art-logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: 180px;
  margin: 0 auto 0.7rem;
  object-fit: contain;
}

.wc-pack-art-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal, #0f9d6e);
}

.wc-pack-art-generic {
  margin: 0 0 0.2rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue-deep, var(--blue));
  line-height: 1.25;
}

.wc-pack-art-name {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.wc-pack-art-badge {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.28rem 0.7rem;
  border-radius: 4px;
  background: #c81e1e;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.wc-pack-art-badge.is-clean {
  background: var(--blue);
}

.wc-pack-art-meta {
  margin: 0 0 0.7rem;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.55;
}

.wc-pack-art-label {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sp-detail-desc {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  max-width: 52rem;
  line-height: 1.6;
}

.wc-thumb {
  width: auto;
  height: auto;
  min-height: 0;
  padding: 0;
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  display: grid;
}

.wc-thumb.is-active,
.wc-thumb:hover {
  border-color: var(--blue);
}

.wc-thumb[data-type="pack"] {
  background: #eef4fb;
}

.wc-thumb img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  display: block;
}

.wc-thumb-label {
  display: block;
  padding: 0.28rem 0.3rem;
  background: var(--blue-deep);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.wc-pdp-info h2 {
  margin: 0 0 0.45rem;
  color: var(--blue-deep, var(--blue));
  font-family: var(--font-display, "Sora", sans-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.25;
}

.wc-manufacturer {
  margin: 0 0 0.35rem;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.92rem;
}

.wc-pdp-subtitle {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.wc-pdp-copy p {
  margin: 0 0 0.85rem;
  color: var(--text);
  line-height: 1.65;
  font-size: 0.95rem;
}

.wc-pdp-apps {
  margin: 1.15rem 0 1.35rem;
}

.wc-pdp-packing {
  margin: 0 0 1.35rem;
}

.wc-pdp-packing h3,
.wc-pdp-apps h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  color: var(--blue-deep, var(--blue));
}

.wc-packing-lead {
  margin: 0 0 0.85rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.65;
}

.wc-packing-table th[scope="row"] {
  width: 38%;
  white-space: nowrap;
  vertical-align: top;
}

.wc-pdp-apps ul {
  margin: 0;
  padding-left: 1.15rem;
}

.wc-pdp-apps li {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.wc-pdp-specs {
  margin: 0 0 1.35rem;
}

.wc-pdp-specs h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--blue-deep, var(--blue));
}

.wc-info-tabs,
.wc-spec-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
}

.wc-info-tab,
.wc-spec-tab {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--blue-deep);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
}

.wc-info-tab.is-active,
.wc-spec-tab.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.wc-spec-panel {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.wc-specs-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.wc-specs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
  background: #fff;
}

.wc-specs-table th,
.wc-specs-table td {
  padding: 0.7rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.wc-specs-table th {
  background: var(--bg-muted);
  color: var(--blue-deep, var(--blue));
  font-weight: 700;
}

.wc-specs-table tr:last-child td {
  border-bottom: 0;
}

.wc-specs-note {
  margin: 0.65rem 0 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.wc-pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.wc-features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 0.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wc-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.wc-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background:
    radial-gradient(circle at 50% 45%, rgba(14, 90, 167, 0.12), transparent 65%),
    #fff;
  position: relative;
}

.wc-feature-icon::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid var(--blue);
  border-radius: 4px;
  transform: rotate(45deg);
}

.wc-faq h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  color: var(--blue-deep, var(--blue));
}

.wc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.wc-faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.wc-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1.1rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding-right: 2.5rem;
}

.wc-faq-item summary::-webkit-details-marker {
  display: none;
}

.wc-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 700;
}

.wc-faq-item[open] summary::after {
  content: "–";
}

.wc-faq-a {
  padding: 0 1.1rem 1rem;
  color: var(--muted, #5b6b7c);
  line-height: 1.55;
}

.wc-faq-a p {
  margin: 0;
}

.wc-callout {
  margin: 2rem 0;
  padding: 1.35rem 1.5rem;
  border-radius: 14px;
  background: var(--blue-deep, var(--blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.wc-callout p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.wc-related {
  margin-top: 1.5rem;
}

.wc-related h3 {
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--blue-deep, var(--blue));
}

.sp-card-media-product {
  background: #fff;
}

.sp-card-media-product img {
  object-fit: contain;
  padding: 0.75rem;
}

@media (max-width: 900px) {
  .wc-pdp {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .wc-pdp-gallery {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .wc-pdp-info {
    text-align: left;
  }

  .wc-pdp-info h2 {
    font-size: 1.35rem;
  }

  .wc-pdp-actions {
    justify-content: stretch;
  }

  .wc-pdp-actions .btn {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
  }

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

@media (max-width: 560px) {
  .wc-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .wc-pdp-thumbs {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  }

  .wc-thumb-label {
    font-size: 0.55rem;
    padding: 0.2rem 0.15rem;
  }

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

/* Wound Care Dressing 2nd-level navigation */
.nav-wound > .nav-link[href] {
  text-decoration: none;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .submenu-parent {
  position: relative;
  padding-right: 2rem;
}

.dropdown-submenu > .submenu-parent::after {
  content: none;
}

.dropdown-submenu > .dropdown-level-2 {
  top: -.45rem;
  left: calc(100% - 2px);
  min-width: 355px;
  max-height: 460px;
  overflow-y: auto;
  transform: translateX(6px);
}

.dropdown-submenu:hover > .dropdown-level-2,
.dropdown-submenu:focus-within > .dropdown-level-2 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.dropdown-level-2 a {
  white-space: normal;
  line-height: 1.35;
}

/* Desktop mega panel: category tabs left, related products right */
@media (min-width: 1101px) {
  .nav-wound > .wound-level-1,
  .nav-pvc > .pvc-level-1 {
    left: 0;
    right: auto;
    display: grid;
    grid-template-columns: 188px auto;
    align-items: start;
    grid-template-rows: repeat(10, 34px);
    width: max-content;
    max-width: min(640px, calc(100vw - 2.5rem));
    min-height: 0;
    max-height: min(70vh, 760px);
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    background:
      linear-gradient(to right, #f4f7fb 188px, #fff 188px);
  }

  .nav-pvc > .pvc-level-1 {
    left: 0;
    right: auto;
    transform: none;
  }

  .nav-wound > .wound-level-1 > .dropdown-submenu,
  .nav-pvc > .pvc-level-1 > .dropdown-submenu {
    display: contents;
  }

  .nav-wound > .wound-level-1 > .dropdown-submenu > .submenu-parent,
  .nav-pvc > .pvc-level-1 > .dropdown-submenu > .submenu-parent {
    grid-column: 1;
    display: flex;
    align-items: center;
    align-self: start;
    width: auto;
    height: 34px;
    min-height: 34px;
    max-height: 34px;
    margin: 0;
    padding: 0 0.85rem;
    border-radius: 0;
    border-bottom: 1px solid #e6edf6;
    background: transparent;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
  }

  .nav-wound > .wound-level-1 > .dropdown-submenu.is-active > .submenu-parent,
  .nav-pvc > .pvc-level-1 > .dropdown-submenu.is-active > .submenu-parent {
    background: var(--blue);
    color: #fff;
  }

  .nav-wound > .wound-level-1 > .dropdown-submenu > .submenu-parent::after,
  .nav-pvc > .pvc-level-1 > .dropdown-submenu > .submenu-parent::after {
    content: none;
  }

  .nav-wound > .wound-level-1 > .dropdown-submenu > .dropdown-level-2,
  .nav-pvc > .pvc-level-1 > .dropdown-submenu > .dropdown-level-2 {
    display: none;
    grid-column: 2;
    grid-row: 1 / span 10;
    align-self: start;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    min-width: 0;
    width: auto;
    max-height: none;
    height: 100%;
    margin: 0;
    padding: 0.35rem 0.55rem 0.4rem 0.6rem;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    background: #fff;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-wound > .wound-level-1 > .dropdown-submenu.is-active > .dropdown-level-2,
  .nav-pvc > .pvc-level-1 > .dropdown-submenu.is-active > .dropdown-level-2 {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
  }

  .nav-wound > .wound-level-1 .mega-view-all,
  .nav-pvc > .pvc-level-1 .mega-view-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 0.3rem;
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
    background: var(--bg-soft);
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
  }

  .nav-wound > .wound-level-1 .mega-view-all:hover,
  .nav-pvc > .pvc-level-1 .mega-view-all:hover {
    background: var(--bg-muted);
    color: var(--blue-deep);
  }

  .nav-wound > .wound-level-1 .dropdown-level-2 a,
  .nav-pvc > .pvc-level-1 .dropdown-level-2 a {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.42rem 0.65rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    border-radius: 8px;
  }

  .nav-wound > .wound-level-1 .dropdown-level-2 a:hover,
  .nav-pvc > .pvc-level-1 .dropdown-level-2 a:hover {
    background: var(--bg-soft);
    color: var(--blue);
  }
}

@media (max-width: 1100px) {
  .nav-dropdown {
    display: block;
    width: 100%;
  }

  .nav-dropdown > .nav-link {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 48px;
    justify-content: space-between;
    padding: 0.85rem 0.2rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    text-align: left;
  }

  .main-nav > a {
    height: auto;
    min-height: 48px;
    padding: 0.85rem 0.2rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .nav-dropdown > .nav-link::after {
    display: inline-block;
    margin-left: auto;
    margin-top: -3px;
  }

  .nav-dropdown.open > .nav-link::after {
    margin-top: 2px;
  }

  .dropdown-submenu {
    display: block;
    width: 100%;
  }

  .dropdown-submenu > .submenu-parent {
    display: flex;
    width: 100%;
    min-height: 44px;
    padding: 0.7rem 0.2rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
  }

  .dropdown-submenu > .submenu-parent::after,
  .submenu-toggle,
  .nav-back {
    display: none !important;
  }

  .nav-dropdown > .nav-link.dropdown-toggle {
    display: flex !important;
  }

  .dropdown-submenu > .dropdown-level-2 {
    display: none !important;
  }

  .mega-view-all {
    display: none !important;
  }

  .dropdown-level-2 a {
    min-height: 48px;
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    font-size: 0.92rem;
    line-height: 1.35;
    white-space: normal;
  }
}

/* Mobile + PVC nested menu */
.nav-pvc > .nav-link[href] { text-decoration: none; }

.submenu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font: inherit;
}

/* ---------- About page creative sections ---------- */
.page-hero-about {
  padding: 2.75rem 0 2.5rem;
}

.about-hero-lead {
  max-width: 680px;
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.65;
}

.about-stats-band {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: white;
  border-radius: 20px;
  padding: 0.25rem 0;
  box-shadow: 0 20px 44px rgba(0, 39, 102, 0.1);
  border: 1px solid #e3ebf5;
}

.about-stat-item {
  text-align: center;
  padding: 1.15rem 0.75rem;
  border-right: 1px solid #e8eef6;
}

.about-stat-item:last-child {
  border-right: 0;
}

.about-stat-item strong {
  display: block;
  font-family: var(--font-display);
  color: var(--blue-deep);
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.about-stat-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.about-mission-section {
  padding-top: 2.5rem;
}

.about-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.about-mv-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 2rem 1.85rem;
  border-radius: 24px;
  color: white;
}

.about-mv-card-mission {
  background: linear-gradient(135deg, #002966 0%, var(--blue) 58%, #3b7fd9 100%);
}

.about-mv-card-vision {
  background: linear-gradient(135deg, #145322 0%, var(--teal) 58%, #5fd06f 100%);
}

.about-mv-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-mv-card h3 {
  color: white;
  margin-bottom: 0.75rem;
  max-width: 18rem;
}

.about-mv-card p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 26rem;
  margin: 0;
  line-height: 1.65;
}

.about-mv-icon {
  position: absolute;
  right: 1rem;
  bottom: -0.35rem;
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
}

.about-products-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.15rem;
}

.about-product-tile {
  grid-column: span 5;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 20px;
  background: white;
  border: 1px solid #e3ebf5;
  box-shadow: 0 12px 28px rgba(0, 39, 102, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-product-tile-lg {
  grid-column: span 7;
}

.about-product-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 39, 102, 0.1);
}

.about-product-media {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.about-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-product-copy {
  display: grid;
  gap: 0.35rem;
}

.about-product-tag {
  width: fit-content;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.about-product-copy strong {
  font-family: var(--font-display);
  color: var(--blue-deep);
  font-size: 1.08rem;
}

.about-product-copy > span:last-child {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.about-values-creative {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-value-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.35rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f8fbff);
  border: 1px solid #e3ebf5;
}

.about-value-num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  opacity: 0.28;
  flex-shrink: 0;
}

.about-value-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.about-value-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.about-quality-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 28px;
  background: white;
  border: 1px solid #dce8f5;
  box-shadow: 0 18px 40px rgba(0, 39, 102, 0.08);
}

.about-quality-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 20px;
}

.about-quality-copy h2 {
  margin-bottom: 0.75rem;
}

.about-quality-copy p {
  margin-bottom: 1rem;
}

.about-quality-certs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 0 0 1.25rem;
}

.about-cert-chip {
  padding: 0.75rem 0.55rem;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px dashed #c5d4e8;
  text-align: center;
}

.about-cert-chip strong {
  display: block;
  color: var(--blue-deep);
  font-size: 0.86rem;
  margin-bottom: 0.15rem;
}

.about-cert-chip span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stat-item:nth-child(2) {
    border-right: 0;
  }

  .about-stat-item:nth-child(1),
  .about-stat-item:nth-child(2) {
    border-bottom: 1px solid #e8eef6;
  }

  .about-mv-grid,
  .about-quality-panel {
    grid-template-columns: 1fr;
  }

  .about-products-bento {
    grid-template-columns: 1fr;
  }

  .about-product-tile,
  .about-product-tile-lg {
    grid-column: auto;
  }

  .about-values-creative {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-hero-lead {
    font-size: 0.95rem;
  }

  .about-stats-band {
    margin-top: -1.25rem;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-item {
    border-right: 0;
    border-bottom: 1px solid #e8eef6;
  }

  .about-stat-item:last-child {
    border-bottom: 0;
  }

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

  .about-product-media {
    width: 100%;
    height: 160px;
  }

  .about-values-creative,
  .about-quality-certs {
    grid-template-columns: 1fr;
  }
}


/* ===== Midevix About Us refresh + Products menu update (Aug 2026) ===== */
.products-dropdown{min-width:270px!important}
.products-dropdown a{padding:.72rem .88rem!important}
.products-dropdown .dropdown-submenu > .submenu-parent{
  position:relative;
  padding-right:1.7rem!important;
}
.products-dropdown .dropdown-submenu > .submenu-parent::after{
  content:"";
  position:absolute;
  right:.7rem;
  top:50%;
  width:6px;
  height:6px;
  margin:0;
  border-right:1.6px solid currentColor;
  border-bottom:1.6px solid currentColor;
  transform:translateY(-70%) rotate(-45deg);
}
.products-dropdown .dropdown-submenu > .dropdown-level-2{
  position:absolute;
  top:-.45rem;
  left:calc(100% - 4px);
  min-width:220px;
  max-height:none;
  overflow:visible;
  padding:.45rem;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:var(--shadow-lg);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateX(6px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index:1500;
}
.products-dropdown .dropdown-submenu:hover > .dropdown-level-2,
.products-dropdown .dropdown-submenu:focus-within > .dropdown-level-2,
.products-dropdown .dropdown-submenu.is-active > .dropdown-level-2{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(0);
}
.products-dropdown .mobile-view-all{display:none}
@media (max-width:1100px){
  .products-dropdown{min-width:0!important;width:100%}
  .products-dropdown a{padding:.7rem .2rem!important}
  .products-dropdown .dropdown-submenu > .submenu-parent{
    padding-right:2.6rem!important;
  }
  .products-dropdown .dropdown-submenu > .submenu-parent::after{
    display:block!important;
    content:"";
    position:absolute;
    right:.55rem;
    top:50%;
    width:7px;
    height:7px;
    margin:0;
    border-right:1.7px solid currentColor;
    border-bottom:1.7px solid currentColor;
    transform:translateY(-80%) rotate(45deg);
    pointer-events:none;
  }
  .products-dropdown .dropdown-submenu.submenu-open > .submenu-parent::after{
    transform:translateY(-20%) rotate(-135deg);
  }
  .products-dropdown .dropdown-submenu > .dropdown-level-2{
    display:none!important;
    position:static;
    left:auto;
    top:auto;
    min-width:0;
    width:100%;
    margin:0;
    padding:0 0 .15rem .75rem;
    background:transparent;
    border:0;
    border-radius:0;
    box-shadow:none;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:none;
  }
  .products-dropdown .dropdown-submenu.submenu-open > .dropdown-level-2{
    display:block!important;
  }
  .products-dropdown .dropdown-level-2 a{
    min-height:42px;
    font-size:.9rem;
    font-weight:600;
    color:var(--text-muted);
  }
  .products-dropdown .mobile-view-all{
    display:block;
    color:var(--blue)!important;
    font-weight:700!important;
  }
}

.midevix-about-hero{position:relative;overflow:hidden;padding:5.8rem 0 4.6rem;background:linear-gradient(120deg,rgba(2,47,102,.94),rgba(0,145,160,.86)),url('../images/page-hero.jpg') center/cover no-repeat;color:#fff}
.midevix-about-hero:after{content:"";position:absolute;right:-90px;top:-90px;width:320px;height:320px;border-radius:50%;border:70px solid rgba(255,255,255,.07)}
.midevix-about-hero .container{position:relative;z-index:2}.midevix-about-hero .breadcrumb,.midevix-about-hero .breadcrumb a{color:rgba(255,255,255,.82)}
.midevix-about-hero .eyebrow{color:#bff6f0}.midevix-about-hero h1{max-width:820px;margin:.55rem 0 1rem;color:#fff;font-size:clamp(2.35rem,5vw,4.6rem);line-height:1.06}.midevix-about-hero p{max-width:760px;margin:0;color:rgba(255,255,255,.9);font-size:1.1rem}

.midevix-about-intro-grid,.midevix-why-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr);gap:4rem;align-items:center}.midevix-about-copy h2,.midevix-why-copy h2{margin:.5rem 0 1.2rem}.midevix-about-copy p{font-size:1.02rem;line-height:1.82}.midevix-signature-quote{margin-top:1.75rem;padding:1.2rem 1.4rem;border-left:4px solid var(--teal);border-radius:0 14px 14px 0;background:linear-gradient(90deg,rgba(0,150,160,.09),rgba(25,101,180,.04));font-weight:700;line-height:1.65;color:var(--blue-deep,var(--blue))}.midevix-about-visual{position:relative}.midevix-about-visual img,.midevix-why-visual img{width:100%;display:block;object-fit:cover;border-radius:26px;box-shadow:0 22px 55px rgba(4,57,96,.16)}.midevix-about-visual img{min-height:430px}.midevix-visual-badge{position:absolute;left:-24px;bottom:26px;display:flex;flex-direction:column;gap:.2rem;padding:1rem 1.15rem;border-radius:16px;background:#fff;box-shadow:0 16px 36px rgba(2,45,80,.18)}.midevix-visual-badge strong{color:var(--blue);font-size:.95rem}.midevix-visual-badge span{font-size:.76rem;color:var(--muted)}

.midevix-offer-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1.2rem}.midevix-offer-card{position:relative;overflow:hidden;min-height:270px;padding:1.6rem;border:1px solid var(--border);border-radius:22px;background:#fff;box-shadow:0 14px 34px rgba(8,59,91,.07);transition:.25s ease}.midevix-offer-card:before{content:"";position:absolute;right:-40px;top:-40px;width:110px;height:110px;border-radius:50%;background:linear-gradient(135deg,rgba(31,105,186,.09),rgba(0,157,160,.13))}.midevix-offer-card:hover{transform:translateY(-7px);box-shadow:0 20px 44px rgba(8,59,91,.13)}.midevix-card-icon{width:52px;height:52px;border-radius:15px;background:linear-gradient(135deg,var(--blue),var(--teal));display:grid;place-items:center;color:#fff;font-weight:800;font-size:1.05rem}.midevix-offer-card h3{margin:1.2rem 0 .6rem}.midevix-offer-card p{min-height:78px;line-height:1.7}.midevix-offer-card a{font-weight:700;color:var(--blue)}

.midevix-why-visual img{min-height:540px}.midevix-benefit-list{display:grid;gap:.72rem;margin:1.45rem 0}.midevix-benefit-list>div{display:flex;align-items:center;gap:.9rem;padding:.78rem .9rem;border-radius:12px;background:var(--bg-soft);border:1px solid rgba(30,98,165,.09)}.midevix-benefit-list span{flex:0 0 34px;height:34px;border-radius:10px;display:grid;place-items:center;background:var(--blue);color:#fff;font-size:.75rem;font-weight:800}.midevix-benefit-list strong{font-size:.94rem}.midevix-why-copy blockquote{margin:1.5rem 0 0;padding:1.15rem 1.25rem;border:0;border-left:4px solid var(--teal);background:linear-gradient(90deg,rgba(0,148,153,.09),rgba(34,106,181,.035));border-radius:0 14px 14px 0;font-size:1.02rem;font-weight:700;line-height:1.65;color:var(--blue-deep,var(--blue))}

.midevix-commitment-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1.25rem}.midevix-commit-card{padding:1.65rem 1.4rem;border-radius:22px;background:#fff;border:1px solid var(--border);box-shadow:0 12px 30px rgba(6,55,85,.06);text-align:center}.midevix-commit-card>span{width:58px;height:58px;margin:0 auto 1rem;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,rgba(25,96,180,.12),rgba(0,158,160,.15));color:var(--blue);font-weight:900;font-size:1.35rem}.midevix-commit-card h3{margin:.2rem 0 .5rem}.midevix-commit-card p{margin:0;line-height:1.65}

@media (max-width:1100px){.midevix-about-intro-grid,.midevix-why-grid{grid-template-columns:1fr;gap:2.3rem}.midevix-offer-grid,.midevix-commitment-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.midevix-about-visual{max-width:720px}.midevix-visual-badge{left:18px}.main-nav> a,.nav-dropdown>.nav-link{height:auto}}
@media (max-width:640px){.midevix-about-hero{padding:4.7rem 0 3.6rem}.midevix-about-hero h1{font-size:2.35rem}.midevix-about-intro-grid,.midevix-why-grid{gap:1.7rem}.midevix-about-visual img,.midevix-why-visual img{min-height:320px;border-radius:18px}.midevix-visual-badge{position:relative;left:auto;bottom:auto;margin:-24px 14px 0}.midevix-offer-grid,.midevix-commitment-grid{grid-template-columns:1fr}.midevix-offer-card{min-height:auto}.midevix-offer-card p{min-height:auto}.midevix-signature-quote,.midevix-why-copy blockquote{font-size:.95rem}}


/* Midevix requested refinements - breadcrumb-only About hero + updated Home About */
.midevix-about-hero.midevix-breadcrumb-only{padding:2.15rem 0;background:linear-gradient(120deg,rgba(2,47,102,.94),rgba(0,145,160,.86)),url('../images/page-hero.jpg') center/cover no-repeat}
.midevix-about-hero.midevix-breadcrumb-only .breadcrumb{margin:0}
.midevix-about-hero.midevix-breadcrumb-only .breadcrumb span[aria-current="page"]{color:#fff;font-weight:600}
.home-about-updated .split-content p{font-size:1.02rem;line-height:1.82}
.qa-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.qa-steps article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem 1.4rem;
}

.qa-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.qa-steps h3 {
  margin-bottom: 0.5rem;
  font-size: 1.02rem;
}

.qa-steps p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

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

@media (max-width: 640px) {
  .qa-steps {
    grid-template-columns: 1fr;
  }
}
@media (max-width:640px){.midevix-about-hero.midevix-breadcrumb-only{padding:1.65rem 0}.home-about-updated .midevix-signature-quote{margin:1.2rem 0 1.45rem}}

/* ---------- Global Presence map ---------- */
.presence-map {
  max-width: 1080px;
  margin: 0 auto;
}

.presence-map-frame {
  position: relative;
  width: 100%;
}

.presence-map-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.presence-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.presence-routes path {
  fill: none;
  stroke: #003DA5;
  stroke-width: 1.6;
  stroke-dasharray: 5 6;
  stroke-linecap: round;
  opacity: 0.72;
}

.presence-routes circle {
  fill: #003DA5;
  stroke: #fff;
  stroke-width: 2;
}

.presence-routes circle.hub {
  fill: #39B54A;
  stroke: #fff;
  stroke-width: 3;
}

.presence-hub-label {
  position: absolute;
  left: 72%;
  top: 52%;
  transform: translate(-50%, 10px);
  background: #39B54A;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
}

.presence-country-line {
  margin: 1.6rem auto 0;
  max-width: 920px;
  text-align: center;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 2.05;
}

.presence-country-line span {
  color: var(--blue);
  padding: 0 0.35rem;
  font-weight: 500;
}

@media (max-width: 640px) {
  .presence-country-line {
    font-size: 0.86rem;
    line-height: 1.95;
    text-align: left;
  }

  .presence-hub-label {
    font-size: 0.58rem;
    padding: 0.12rem 0.35rem;
  }

  .presence-routes path {
    stroke-width: 1.2;
  }
}

/* ---------- Homepage: products, why choose, quality, map, industries ---------- */
.home-products-grid .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-products-grid .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
}

.home-products-grid .card-body p {
  flex: 1;
  margin-bottom: 1.1rem;
}

.home-products-grid .card-body .btn {
  width: auto;
  margin-top: auto;
}

.why-choose-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(57, 181, 74, 0.08), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(0, 61, 165, 0.08), transparent 32%),
    #fff;
}

.why-choose-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: -0.5rem 0 1.75rem;
}

.why-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #f7fafc 0%, #eef5fb 100%);
  border: 1px solid var(--border);
  min-height: 108px;
}

.why-stat strong {
  font-family: var(--font-display);
  color: var(--blue-deep);
  font-size: 1.02rem;
}

.why-stat span {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.why-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 100%;
  padding: 1.55rem 1.35rem 1.45rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--teal));
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #b8d7e8;
}

.why-card-num {
  position: absolute;
  right: 1rem;
  top: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: rgba(0, 61, 165, 0.1);
  line-height: 1;
}

.why-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.95rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #e8eefc, #e8f8ea);
  display: grid;
  place-items: center;
  color: var(--blue);
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  padding-right: 2rem;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

.quality-home-section {
  overflow: hidden;
}

.quality-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.quality-home-copy .eyebrow {
  display: block;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.quality-home-copy h2 {
  margin-bottom: 0.9rem;
}

.quality-home-copy > p {
  margin-bottom: 1.25rem;
}

.quality-home-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin: 0 0 1.5rem;
}

.quality-home-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-height: 118px;
  padding: 0.95rem 0.95rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.quality-home-points span {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.quality-home-points h3 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.quality-home-points p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.quality-home-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-muted);
}

.quality-home-frame img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.quality-home-badges {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quality-home-badges span {
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.home-presence-map {
  max-width: 1080px;
  margin: 0 auto;
}

.home-region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
  margin-top: 1.75rem;
  align-items: stretch;
}

.home-region-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-height: 108px;
  padding: 1rem 0.95rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: left;
}

.home-region-card span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-deep);
  font-size: 0.95rem;
}

.home-region-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.home-presence-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.industry-home-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.industry-home-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  min-height: 132px;
  height: 100%;
  padding: 1.15rem 1.15rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.industry-home-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.industry-home-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(145deg, #e8eefc, #e8f8ea);
  display: grid;
  place-items: center;
  color: var(--teal);
  flex-shrink: 0;
}

.industry-home-card h3 {
  font-size: 0.98rem;
  margin: 0 0 0.28rem;
}

.industry-home-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
}

#quality,
#why-choose,
#industries,
#export-markets {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

@media (max-width: 1100px) {
  .why-choose-grid,
  .industry-home-grid,
  .quality-home-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-home-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .quality-home-frame img {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .why-choose-grid,
  .industry-home-grid,
  .quality-home-points,
  .home-region-grid,
  .why-choose-stats {
    grid-template-columns: 1fr;
  }

  .why-stat,
  .why-card,
  .quality-home-points li,
  .industry-home-card,
  .home-region-card {
    min-height: 0;
  }

  .quality-home-frame img {
    min-height: 280px;
  }

  .quality-home-copy,
  .why-card,
  .industry-home-card {
    text-align: left;
  }
}
