/* IQ Dental Equipment — Revamped Design System */

:root {
  --navy: #0a2540;
  --navy-light: #123456;
  --blue: #1e5a8a;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --cyan: #06b6d4;
  --white: #ffffff;
  --bg-light: #f4f8fb;
  --bg-muted: #e8f0f6;
  --text: #334155;
  --text-light: #64748b;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.1);
  --shadow-lg: 0 16px 48px rgba(10, 37, 64, 0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --header-h: 72px;
  --transition: 0.25s ease;
  --gradient-cta: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  --gradient-hero: linear-gradient(135deg, var(--navy) 0%, var(--blue) 55%, #0e7490 100%);
  --max-width: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--teal-light);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--muted {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--gradient-cta);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.btn--primary:hover {
  color: var(--white);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.btn--outline-dark:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner,
.header-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem 2rem;
  height: var(--header-h);
}

.header-bar .logo {
  grid-column: 1;
}

.header-bar .header-nav {
  grid-column: 2;
  justify-self: center;
}

.header-bar .header-tools {
  grid-column: 3;
  justify-self: end;
}

.header-bar .nav-toggle {
  grid-column: 3;
  justify-self: end;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}

.nav-list--header {
  gap: 0.125rem;
}

.nav-list--header > li > a,
.nav-list--header > li > .nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  background: none;
}

.nav-list--header > li > a:hover,
.nav-list--header > li > a.active,
.nav-list--header > li > .nav-link:hover,
.nav-list--header > li > .nav-link.active {
  background: none;
  color: var(--royal-blue);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 40px;
  width: auto;
}

.logo-img--footer {
  margin-bottom: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-list > li > a,
.nav-list > li > .nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.nav-list > li > a:hover,
.nav-list > li > a.active,
.nav-list > li > .nav-link:hover {
  background: var(--bg-light);
  color: var(--teal);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: var(--bg-light);
  color: var(--teal);
}

.nav-dropdown-menu a.active {
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-actions--mobile {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  background: var(--gradient-hero);
  padding: 5rem 0 6rem;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-cta);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.hero-badge-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero-badge-text strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}

.hero-badge-text span {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* Cards */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--6 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 148, 136, 0.25);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal);
  transition: background var(--transition), color var(--transition);
}

.card:hover .card-icon {
  background: var(--gradient-cta);
  color: var(--white);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
}

.card-link svg {
  width: 16px;
  height: 16px;
   fill: currentColor;
  transition: transform var(--transition);
}

.card:hover .card-link svg {
  transform: translateX(4px);
}

/* About preview */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-muted);
  border-left: 4px solid var(--teal);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0 2rem;
}

.about-highlight strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
}

.about-highlight span {
  font-size: 0.9375rem;
  color: var(--navy);
  font-weight: 500;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Why partner */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.why-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.why-card-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.why-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--teal);
  opacity: 0.3;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-size: 0.9375rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* CTA Banner */
.cta-banner {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 0;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Inner page hero */
.page-hero {
  background: var(--gradient-hero);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(20, 184, 166, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto;
}

.page-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
}

.page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
}

.page-hero-breadcrumb a:hover {
  color: var(--teal-light);
}

.page-hero-breadcrumb span {
  opacity: 0.5;
}

/* Our Story */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.story-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.story-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.story-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1.2;
}

.story-stat span {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 500;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.story-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Mission & Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-cta);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mv-card-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.mv-card-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.mv-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.mv-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Product category grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-grid--six {
  max-width: 960px;
  margin: 0 auto;
}

.product-grid--three {
  max-width: 1000px;
  margin: 0 auto;
}

.product-grid--four {
  max-width: 900px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
}

.product-grid--two {
  max-width: 720px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
}

/* Air quality page accents */
.page-hero--air::before {
  background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.15) 0%, transparent 55%);
}

.product-card--air .product-card-visual {
  background: linear-gradient(145deg, rgba(6, 182, 212, 0.08) 0%, var(--bg-light) 100%);
}

.product-card--air:hover .product-card-visual {
  background: linear-gradient(145deg, rgba(6, 182, 212, 0.14) 0%, var(--bg-light) 100%);
}

/* Benefit cards row */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-card-mini {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card-mini:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.benefit-card-mini-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.benefit-card-mini-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.benefit-card-mini h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* Contact page */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: var(--gradient-cta);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.contact-card-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contact-card h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.contact-card a,
.contact-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.65;
  display: block;
  margin-bottom: 0.35rem;
}

.contact-card a {
  color: var(--teal);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--teal-light);
}

.contact-form-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-align: center;
}

.contact-form-section > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.jotform-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.jotform-wrap iframe {
  display: block;
  min-width: 100%;
  width: 100%;
  height: 1002px;
  border: none;
}

.catalogue-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 2.5rem;
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.catalogue-cta h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.catalogue-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Infection-control category accent */
.page-hero--sterile::before {
  background: radial-gradient(circle at 50% 0%, rgba(13, 148, 136, 0.18) 0%, transparent 55%);
}

.product-card--sterile .product-card-visual {
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.06) 0%, var(--bg-light) 100%);
}

.product-card--sterile:hover .product-card-visual {
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.12) 0%, var(--bg-light) 100%);
}

/* Benefit strip */
.benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.benefit-strip-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  justify-content: center;
  text-align: left;
}

.benefit-strip-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--gradient-cta);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.benefit-strip-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.benefit-strip-item span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 148, 136, 0.25);
}

.product-card-visual {
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, var(--bg-muted) 0%, var(--bg-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}

.product-card:hover .product-card-visual {
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.08) 0%, var(--bg-light) 100%);
}

.product-card-visual svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
  opacity: 0.85;
}

.product-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.product-card-body p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-card-body .btn {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

.cta-simple {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-simple h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.cta-simple p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--teal-light);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: var(--teal-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.5);
  z-index: 998;
}

.nav-overlay.is-visible {
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .card-grid--6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header-bar {
    grid-template-columns: 1fr auto;
  }

  .header-bar .header-nav {
    grid-column: 1 / -1;
  }

  .header-bar .header-tools {
    display: none;
  }

  .section {
    padding: 3.5rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    right: -100%;
    width: min(320px, 85vw);
    height: calc(100vh - var(--header-h));
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.is-open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-list > li > a,
  .nav-list > li > .nav-link {
    padding: 0.875rem 1rem;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    display: none;
    background: var(--bg-light);
    margin-top: 0.25rem;
    border-radius: 8px;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .header-actions--mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }

  .header-actions--mobile .btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-badge {
    left: 1rem;
    bottom: -0.75rem;
  }

  .card-grid--3,
  .card-grid--6,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-grid--four,
  .product-grid--two {
    grid-template-columns: 1fr;
  }

  .benefit-cards {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .benefit-strip {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .benefit-strip-item {
    justify-content: flex-start;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .cta-banner-actions {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* —— Mockup design extensions —— */

:root {
  --royal-blue: #1e40af;
  --royal-blue-dark: #1e3a8a;
}

.logo--text {
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  gap: 0;
}

.logo-mark {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: 0.01em;
}

.logo-sub {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.logo--footer .logo-mark {
  color: var(--white);
}

.logo--footer .logo-sub {
  color: rgba(255, 255, 255, 0.6);
}

.header-search {
  display: flex;
  align-items: center;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 0.35rem 0.5rem 0.35rem 1rem;
  width: 220px;
}

.header-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.8125rem;
  color: var(--navy);
  outline: none;
  min-width: 0;
}

.header-search input::placeholder {
  color: var(--text-light);
}

.header-search button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
}

.header-search button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.header-quote-btn {
  white-space: nowrap;
}

.btn--quote {
  background: var(--royal-blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: none;
  text-decoration: none;
}

.btn--quote:hover {
  background: var(--royal-blue-dark);
  color: var(--white);
  transform: none;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.25);
}

.btn--outline-navy {
  background: transparent;
  color: var(--royal-blue);
  border: 2px solid var(--royal-blue);
}

.btn--outline-navy:hover {
  background: rgba(30, 64, 175, 0.06);
  color: var(--royal-blue-dark);
}

.btn--dark {
  background: var(--royal-blue-dark);
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.35);
}

.btn--dark:hover {
  color: var(--white);
}

.btn-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero--light {
  background: var(--white);
  padding: 4rem 0 2rem;
}

.hero--light::before {
  display: none;
}

.hero--light .hero-content h1 {
  color: var(--navy);
}

.hero--light .hero-content p {
  color: var(--text-light);
}

.hero--light .text-accent {
  color: var(--royal-blue);
}

.hero-image-wrap--rounded {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-bar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-bar-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--royal-blue);
}

.trust-bar-item span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}

.section--compact {
  padding: 3.5rem 0;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.category-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 0.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.category-strip-item:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  color: var(--royal-blue);
}

.category-strip-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-strip-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--royal-blue);
}

.category-strip-item span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

.section-cta-link {
  text-align: center;
  margin-top: 1.5rem;
}

.section-cta-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--royal-blue);
}

.section-cta-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-header-row h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--royal-blue);
  white-space: nowrap;
}

.section-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.featured-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.featured-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.featured-card-image {
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--bg-muted);
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.featured-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  flex: 1;
}

.featured-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--royal-blue);
}

.featured-card-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.value-strip {
  background: var(--bg-muted);
  padding: 1.75rem 0;
  border-block: 1px solid var(--border);
}

.value-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.value-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.value-strip-item svg {
  width: 28px;
  height: 28px;
  fill: var(--royal-blue);
}

.value-strip-item span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--royal-blue);
  margin-bottom: 0.75rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
}

.stats-row-item {
  text-align: center;
}

.stats-row-item strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--royal-blue);
  margin-bottom: 0.25rem;
}

.stats-row-item span {
  font-size: 0.875rem;
  color: var(--text-light);
}

.testimonial-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.testimonial-stars {
  color: var(--royal-blue);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.consultation-banner {
  background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
  padding: 2.5rem 0;
}

.consultation-banner-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.consultation-banner-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--royal-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.consultation-banner-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.consultation-banner-content {
  flex: 1;
}

.consultation-banner-content h2 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.consultation-banner-content h2 span {
  font-weight: 700;
  color: var(--royal-blue-dark);
}

.consultation-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.consultation-checklist li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding-left: 1.5rem;
  position: relative;
}

.consultation-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--royal-blue);
  font-weight: 700;
}

.footer-grid--wide {
  grid-template-columns: 1.4fr repeat(4, 1fr);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: var(--teal-light);
}

.footer-newsletter p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-form input {
  padding: 0.625rem 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.875rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: var(--teal-light);
}

@media (max-width: 1200px) {
  .nav-list--header > li > a,
  .nav-list--header > li > .nav-link {
    padding: 0.5rem 0.5rem;
    font-size: 0.8125rem;
  }

  .header-search {
    width: 180px;
  }
}

@media (max-width: 992px) {
  .header-bar .header-tools {
    display: none;
  }

  .header-search {
    display: none;
  }
}

@media (max-width: 1100px) {

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .value-strip-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid--wide {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .consultation-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .consultation-checklist {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .featured-grid,
  .category-strip,
  .value-strip-inner,
  .trust-bar,
  .testimonial-grid--4,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
