/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --navy: #07131f;
  --navy-deep: #050d16;
  --teal: #2aa89a;
  --teal-dark: #1d8a7e;
  --teal-soft: #7fd4c8;
  --cream: #f4f1ea;
  --white: #ffffff;
  --site-bg: #C3D9DF;
  --white-muted: rgba(255, 255, 255, 0.78);
  --white-faint: rgba(255, 255, 255, 0.14);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-ui: "Outfit", "Segoe UI", sans-serif;

  --header-height: 72px;
  --header-glass-bg: #C3D9DF;
  --header-glass-border: rgba(7, 19, 31, 0.08);
  --products-bg: #C3D9DF;
  --product-accent: #1093bb;
  --product-btn: #104470;
  --product-btn-hover: #1093bb;
  --container: min(1180px, calc(100% - 48px));
  --radius: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ui);
  color: var(--white);
  background: var(--site-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: relative;
  z-index: 40;
  width: 100%;
  padding: 12px 0;
  background: #C3D9DF;
  border-bottom: 1px solid var(--header-glass-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: var(--container);
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 50;
}

.logo-image {
  display: block;
  width: clamp(76px, 7.5vw, 96px);
  height: auto;
  max-width: 100px;
  min-width: 76px;
  object-fit: contain;
  object-position: left center;
}

/* Desktop nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(7, 19, 31, 0.72);
  transition: color 0.25s var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--navy);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-item--dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link--dropdown {
  padding-right: 4px;
}

.nav-link--dropdown::after {
  display: none;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: -2px;
  border-radius: 6px;
  color: rgba(7, 19, 31, 0.62);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}

.nav-item--dropdown:hover .nav-dropdown-toggle,
.nav-item--dropdown:focus-within .nav-dropdown-toggle,
.nav-item--dropdown.is-open .nav-dropdown-toggle {
  color: var(--navy);
}

.nav-item--dropdown.is-open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 60;
  min-width: 300px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(7, 19, 31, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(5, 13, 22, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease), visibility 0.24s var(--ease);
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown,
.nav-item--dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(7, 19, 31, 0.78);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible {
  color: var(--navy);
  background: rgba(16, 68, 112, 0.06);
}

/* Products mega menu */
.nav-item--mega {
  position: static;
}

.nav-mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.nav-item--mega .nav-link--dropdown {
  padding-right: 2px;
}

.nav-item--mega .nav-mega-toggle {
  width: 22px;
  height: 22px;
  margin: 0;
  flex-shrink: 0;
  align-self: center;
}

.nav-item--mega .nav-mega-toggle svg {
  width: 14px;
  height: 14px;
  display: block;
}

.site-header.is-products-mega-open .nav-item--mega .nav-mega-toggle,
.nav-item--mega:hover .nav-mega-toggle,
.nav-item--mega:focus-within .nav-mega-toggle {
  color: var(--navy);
}

.site-header.is-products-mega-open .nav-item--mega .nav-mega-toggle svg {
  transform: rotate(180deg);
}

.products-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 55;
  padding-top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease), visibility 0.24s var(--ease);
}

.products-mega-menu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

.site-header.is-products-mega-open .products-mega-menu,
.site-header:has(.nav-item--mega:hover) .products-mega-menu,
.site-header:has(.products-mega-menu:hover) .products-mega-menu,
.site-header:has(.nav-item--mega:focus-within) .products-mega-menu,
.site-header:has(.products-mega-menu:focus-within) .products-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header:has(.nav-item--mega:hover) .nav-mega-toggle svg,
.site-header:has(.products-mega-menu:hover) .nav-mega-toggle svg {
  transform: rotate(180deg);
}

.products-mega-menu__panel {
  width: var(--container);
  max-width: 100%;
  margin: 8px auto 0;
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(7, 19, 31, 0.08);
  border-radius: 18px;
  box-shadow: 0 22px 56px rgba(5, 13, 22, 0.14);
}

.products-mega-menu__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 2.1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.products-mega-menu__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--product-accent);
}

.products-mega-menu__lead {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

.products-mega-menu__description {
  margin: 0 0 22px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(7, 19, 31, 0.68);
  max-width: 38ch;
}

.products-mega-menu__all-link {
  min-height: 44px;
  padding-inline: 22px;
}

.products-mega-menu__categories-label {
  margin: 0 0 14px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(7, 19, 31, 0.52);
}

.products-mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.products-mega-menu__card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(7, 19, 31, 0.08);
  background: rgba(195, 217, 223, 0.22);
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.products-mega-menu__card:hover,
.products-mega-menu__card:focus-visible {
  border-color: rgba(16, 68, 112, 0.18);
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(7, 19, 31, 0.08);
}

.products-mega-menu__card-media {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--site-bg);
}

.products-mega-menu__card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-mega-menu__card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.products-mega-menu__card-title {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.products-mega-menu__card-text {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(7, 19, 31, 0.62);
}

@media (max-width: 1180px) {
  .products-mega-menu__inner {
    grid-template-columns: 1fr;
  }

  .products-mega-menu__intro {
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(7, 19, 31, 0.08);
  }
}

@media (max-width: 980px) {
  .products-mega-menu {
    display: none;
  }
}

.mobile-nav-item--dropdown {
  border-bottom: 1px solid var(--white-faint);
}

.mobile-nav-item--dropdown.is-open .mobile-nav-dropdown-toggle {
  color: var(--white);
}

.mobile-nav-dropdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mobile-nav-dropdown-row .mobile-nav-link {
  flex: 1;
}

.mobile-nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.mobile-nav-dropdown-toggle:hover,
.mobile-nav-dropdown-toggle:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav-dropdown-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease);
}

.mobile-nav-item--dropdown.is-open .mobile-nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.mobile-nav-dropdown {
  margin: 0;
  padding: 0 0 8px 12px;
  list-style: none;
}

.mobile-nav-dropdown[hidden] {
  display: none;
}

.mobile-nav-sublink {
  display: block;
  padding: 10px 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.mobile-nav-sublink:hover,
.mobile-nav-sublink:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.page-categories .product-categories {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.page-categories .category-reviews {
  scroll-margin-top: calc(var(--header-height) + 24px);
  background: #C3D9DF;
}

.page-categories .category-faq {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.page-categories .popular-products-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
}

.page-categories .popular-product-card-inner {
  border: none;
  background: #101a28;
  box-shadow: 0 10px 28px rgba(5, 13, 22, 0.18);
}

.page-categories .popular-product-image {
  object-fit: cover;
  object-position: center;
}

.page-categories .popular-product-shade {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(7, 19, 31, 0.18) 42%,
      rgba(5, 13, 22, 0.82) 72%,
      rgba(5, 13, 22, 0.96) 100%
    );
  pointer-events: none;
}

.page-categories .popular-product-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 16px 16px;
  background: transparent;
}

.page-categories .popular-product-name {
  color: #fff;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  line-height: 1.35;
}

.page-categories .popular-product-category {
  display: none;
}

@media (max-width: 1180px) {
  .page-categories .popular-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .page-categories .popular-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-categories .popular-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-catalog {
  position: relative;
  display: inline-flex;
  align-items: stretch;
}

.header-catalog-trigger {
  border: none;
  font-family: inherit;
  cursor: pointer;
}

.header-catalog-dropdown {
  left: auto;
  right: 0;
  min-width: 260px;
  transform: translateX(0) translateY(8px);
}

.header-catalog.header-item--dropdown:hover .header-catalog-dropdown,
.header-catalog.header-item--dropdown:focus-within .header-catalog-dropdown {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header-catalog.header-item--dropdown.is-open .header-catalog-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) translateY(0);
}

.mobile-catalog-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-catalog-list {
  flex-direction: column;
  gap: 4px;
}

.mobile-catalog-list:not([hidden]) {
  display: flex;
}

.mobile-catalog-list[hidden] {
  display: none;
}

.mobile-catalog-link {
  display: block;
  padding: 10px 0 10px 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s var(--ease);
}

.mobile-catalog-link:hover,
.mobile-catalog-link:focus-visible {
  color: var(--white);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(7, 19, 31, 0.12);
  border-radius: 10px;
}

.nav-toggle-bar {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease, top 0.3s var(--ease);
}

.nav-toggle-bar:nth-child(1) { top: 15px; }
.nav-toggle-bar:nth-child(2) { top: 21px; }
.nav-toggle-bar:nth-child(3) { top: 27px; }

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* Mobile navigation panel */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(5, 13, 22, 0.72);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 86vw);
  height: 100%;
  padding: calc(var(--header-height) + 16px) 32px 40px;
  background: linear-gradient(180deg, #0b1c2c 0%, #07131f 100%);
  border-left: 1px solid var(--white-faint);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}

.mobile-nav.is-open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  border-bottom: 1px solid var(--white-faint);
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  color: var(--teal-soft);
  padding-left: 8px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background-color 0.28s var(--ease), color 0.28s var(--ease),
    border-color 0.28s var(--ease), transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--teal);
  color: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(42, 168, 154, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--teal-soft);
  box-shadow: 0 12px 28px rgba(42, 168, 154, 0.32);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

.btn-header {
  background: var(--white);
  color: var(--navy);
  min-height: 44px;
  padding: 0 22px;
  box-shadow: inset 0 0 0 1px rgba(7, 19, 31, 0.08);
}

.btn-header:hover,
.btn-header:focus-visible {
  background: var(--teal);
  color: var(--navy-deep);
}

.btn-block {
  width: 100%;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero video,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(5, 13, 22, 0.82) 0%,
      rgba(7, 19, 31, 0.68) 42%,
      rgba(7, 19, 31, 0.42) 100%
    ),
    linear-gradient(
      to top,
      rgba(5, 13, 22, 0.45) 0%,
      transparent 28%
    );
}

.hero-content {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 16px 72px;
  text-align: center;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-soft);
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--teal);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 22px;
}

.hero-text {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products {
  width: 100%;
  background: var(--products-bg);
  color: var(--navy);
  padding: 96px 0;
}

.products-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(24px, 5vw, 64px);
}

.products-header {
  margin-bottom: 48px;
  text-align: center;
}

.products-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
}

.products-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(7, 19, 31, 0.68);
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.product-card-link {
  position: relative;
  display: block;
  aspect-ratio: 5 / 4.8;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(7, 19, 31, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.product-card-link::after {
  content: none;
  display: none;
}

.product-card-link:hover,
.product-card-link:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(7, 19, 31, 0.14);
}

.product-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease);
}

.product-card-link:hover .product-card-image,
.product-card-link:focus-visible .product-card-image {
  transform: scale(1.05);
}

.product-card-overlay {
  display: none;
}

.product-card-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 24px 68px 20px 20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.28) 55%,
    transparent 100%
  );
}

.product-card-title {
  font-family: var(--font-ui);
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
}

.product-card-arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #104470;
  color: var(--white);
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  transition: background-color 0.32s var(--ease), color 0.32s var(--ease), transform 0.32s var(--ease);
}

.product-card-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.product-card-link:hover .product-card-arrow,
.product-card-link:focus-visible .product-card-arrow {
  background: #1093bb;
  color: var(--white);
  transform: translate(1px, -1px);
}

/* ============================================================
   POPULAR PRODUCTS SECTION
   ============================================================ */
.popular-products {
  width: 100%;
  background: var(--site-bg);
  color: var(--navy);
  padding: 96px 0;
  border-top: 1px solid rgba(7, 19, 31, 0.06);
}

.popular-products-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(24px, 5vw, 64px);
}

.popular-products-header {
  margin-bottom: 48px;
  text-align: center;
}

.popular-products-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
}

.popular-products-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(7, 19, 31, 0.68);
}

.popular-products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.popular-product-card {
  min-width: 0;
}

.popular-product-card-inner {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background: #F6F6F6;
  border: 1px solid rgba(7, 19, 31, 0.08);
  box-shadow: 0 6px 20px rgba(7, 19, 31, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.popular-product-card-inner:hover,
.popular-product-card-inner:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(7, 19, 31, 0.12);
}

.popular-product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease);
}

.popular-product-image--contain {
  object-fit: contain;
  background: #F6F6F6;
  padding: 12px;
}

.popular-product-card-inner:hover .popular-product-image,
.popular-product-card-inner:focus-within .popular-product-image {
  transform: scale(1.04);
}

.popular-product-shade {
  display: none;
}

.popular-product-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 14px 16px;
  background: #F6F6F6;
}

.popular-product-name {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.popular-product-category {
  margin: 0 0 4px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--product-accent);
}

.popular-product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease);
}

@media (hover: hover) {
  .popular-product-card-inner:hover .popular-product-actions,
  .popular-product-card-inner:focus-within .popular-product-actions {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: none) {
  .popular-product-actions {
    opacity: 1;
    transform: translateY(0);
  }
}

.popular-product-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--product-btn);
  border: 0;
  box-shadow: 0 4px 14px rgba(7, 19, 31, 0.16);
  cursor: pointer;
  transition:
    background-color 0.28s var(--ease),
    color 0.28s var(--ease),
    transform 0.28s var(--ease);
}

.popular-product-action svg {
  width: 15px;
  height: 15px;
}

.popular-product-action:hover,
.popular-product-action:focus-visible {
  background: var(--product-btn);
  color: var(--white);
  transform: translate(1px, -1px);
}

.popular-product-action--whatsapp:hover,
.popular-product-action--whatsapp:focus-visible {
  background: #25d366;
  color: var(--white);
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-modal[hidden] {
  display: none;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 22, 0.72);
  backdrop-filter: blur(6px);
}

.product-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 28px 64px rgba(7, 19, 31, 0.24);
}

.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 19, 31, 0.08);
  color: var(--navy);
  cursor: pointer;
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.product-modal-close svg {
  width: 18px;
  height: 18px;
}

.product-modal-close:hover,
.product-modal-close:focus-visible {
  background: var(--white);
  transform: scale(1.04);
}

.product-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 420px;
}

.product-modal-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: linear-gradient(180deg, #f7f9fa 0%, #eef3f5 100%);
}

.product-modal-image {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  object-position: center;
}

.product-modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 40px 36px 36px;
}

.product-modal-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--teal-dark);
}

.product-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.product-modal-text {
  font-size: clamp(0.95rem, 1.2vw, 1.02rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.product-modal-cta {
  align-self: flex-start;
  min-width: 200px;
  margin-top: 8px;
}

.popular-products-footer {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.popular-products-cta {
  min-width: 220px;
}

/* ============================================================
   ABOUT US SECTION
   ============================================================ */
.about {
  background: var(--site-bg);
  color: var(--navy);
  padding: 96px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(24px, 5vw, 64px);
}

.about-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(7, 19, 31, 0.12);
}

.about-video {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.about-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 19, 31, 0.18) 0%,
    transparent 45%
  );
  pointer-events: none;
}

.about-content {
  max-width: 560px;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 24px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.about-text p {
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.about-cta {
  min-width: 220px;
}

.about-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.about-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-content.about-reveal {
  transition-delay: 0.12s;
}

/* ============================================================
   OUR MISSION SECTION
   ============================================================ */
.our-mission {
  background: var(--site-bg);
  color: var(--navy);
  padding: 96px 0;
}

.our-mission-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(24px, 5vw, 64px);
}

.our-mission-content {
  max-width: 560px;
}

.our-mission-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 24px;
}

.our-mission-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.our-mission-text p {
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.our-mission-cta {
  min-width: 220px;
}

.our-mission-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(7, 19, 31, 0.12);
}

.our-mission-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.our-mission-media.about-reveal {
  transition-delay: 0.12s;
}

@media (max-width: 900px) {
  .our-mission-inner {
    grid-template-columns: 1fr;
  }

  .our-mission-content {
    max-width: none;
  }

  .our-mission-media {
    max-height: 480px;
  }
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.why-choose {
  background: var(--site-bg);
  color: var(--navy);
  padding: 96px 0;
  overflow: hidden;
}

.why-choose-inner {
  width: 100%;
  max-width: none;
  margin: 0;
}

.why-choose-canvas {
  position: relative;
  width: 100%;
  min-height: clamp(760px, 92vh, 980px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(32px, 5vw, 72px) clamp(24px, 5vw, 64px);
}

.why-choose-intro {
  position: relative;
  z-index: 1;
  flex: 0 1 min(460px, 40vw);
  padding-left: clamp(24px, 8vw, 120px);
}

.why-choose-heading {
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
}

.why-choose-description {
  max-width: 48ch;
  margin-bottom: 18px;
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.why-choose-description:last-of-type {
  margin-bottom: 28px;
}

.why-choose-cta {
  min-width: 220px;
}

.why-choose-showcase {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: min(520px, 38vw);
  margin-left: auto;
  margin-right: clamp(24px, 6vw, 80px);
  display: flex;
  justify-content: flex-end;
}

.why-choose-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(520px, 38vw);
  min-width: 320px;
  min-height: clamp(680px, 82vh, 860px);
  max-height: none;
  border-radius: 32px;
  background: #0a0706;
  box-shadow:
    0 28px 64px rgba(7, 19, 31, 0.18),
    0 8px 24px rgba(7, 19, 31, 0.1);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.why-choose-images {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why-choose-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  filter: blur(6px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease),
    filter 0.85s var(--ease),
    visibility 0.85s var(--ease);
}

.why-choose-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  filter: blur(0);
  z-index: 1;
}

.why-choose-product-image {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.why-choose-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(7, 19, 31, 0.28) 0%,
      rgba(7, 19, 31, 0.08) 34%,
      rgba(7, 19, 31, 0.42) 68%,
      rgba(7, 19, 31, 0.82) 100%
    );
  pointer-events: none;
}

.why-choose-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 auto;
  min-height: inherit;
  padding: 22px 22px 26px;
}

.why-choose-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-choose-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.why-choose-chip-chevron {
  width: 14px;
  height: 14px;
  opacity: 0.72;
}

.why-choose-body {
  position: relative;
  flex-shrink: 0;
  min-height: 148px;
  margin-top: auto;
}

.why-choose-stat-wrap {
  position: relative;
  height: clamp(64px, 10vw, 80px);
  margin-bottom: 10px;
}

.why-choose-stat {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 5rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  filter: blur(4px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease),
    filter 0.75s var(--ease);
}

.why-choose-stat.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.why-choose-copy {
  position: relative;
  min-height: 104px;
}

.why-choose-headline,
.why-choose-support {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
  filter: blur(4px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease),
    filter 0.75s var(--ease);
}

.why-choose-headline {
  top: 0;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
}

.why-choose-support {
  top: 2.55rem;
  font-size: clamp(0.82rem, 1.8vw, 0.92rem);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.why-choose-headline.is-active,
.why-choose-support.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.why-choose-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  flex-shrink: 0;
}

.why-choose-dash {
  display: block;
  height: 3px;
  width: 18px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    width 0.45s var(--ease),
    background-color 0.45s var(--ease),
    opacity 0.45s var(--ease);
}

.why-choose-dash.is-active {
  width: 42px;
  background: var(--white);
}

.why-choose-dash:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

/* ============================================================
   INDUSTRIES WE SERVE SECTION
   ============================================================ */
.industries {
  background: var(--site-bg);
  color: var(--navy);
  padding: 96px 0;
}

.industries-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(24px, 5vw, 64px);
}

.industries-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.industries-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
}

.industries-intro {
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(200px, auto);
  gap: clamp(16px, 2vw, 24px);
}

.industries-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: clamp(24px, 3vw, 36px);
  padding-bottom: clamp(64px, 8vw, 72px);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(7, 19, 31, 0.12);
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.industries-item-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.industries-item--01 .industries-item-bg {
  background-image: url("assets/images/hospitals-healthcare.webp");
}

.industries-item--02 .industries-item-bg {
  background-image: url("assets/images/orthopedic-surgical.webp");
}

.industries-item--03 .industries-item-bg {
  background-image: url("assets/images/dental-clinics.webp");
}

.industries-item--04 .industries-item-bg {
  background-image: url("assets/images/veterinary-clinics.webp");
}

.industries-item--05 .industries-item-bg {
  background-image: url("assets/images/medical-surgical-centers.webp");
}

.industries-item-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(7, 19, 31, 0.38) 0%,
    rgba(7, 19, 31, 0.18) 38%,
    rgba(7, 19, 31, 0.52) 68%,
    rgba(16, 68, 112, 0.84) 100%
  );
  transition: opacity 0.35s var(--ease), background 0.35s var(--ease);
}

.industries-item-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 auto;
  height: 100%;
}

.industries-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 3;
  width: 3px;
  background: linear-gradient(to bottom, var(--teal-soft), var(--teal));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.industries-item:hover,
.industries-item:focus-within {
  transform: translateY(-6px);
  border-color: rgba(127, 212, 200, 0.42);
  box-shadow: 0 18px 42px rgba(7, 19, 31, 0.22);
}

.industries-item:hover .industries-item-bg,
.industries-item:focus-within .industries-item-bg {
  transform: scale(1.05);
}

.industries-item:hover .industries-item-overlay,
.industries-item:focus-within .industries-item-overlay {
  background: linear-gradient(
    to bottom,
    rgba(7, 19, 31, 0.28) 0%,
    rgba(7, 19, 31, 0.1) 38%,
    rgba(7, 19, 31, 0.4) 68%,
    rgba(16, 68, 112, 0.72) 100%
  );
}

.industries-item:hover::before,
.industries-item:focus-within::before {
  opacity: 1;
}

.industries-item--01 {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  min-height: 440px;
}

.industries-item--01 .industries-item-inner {
  justify-content: flex-end;
  margin-top: auto;
}

.industries-item--02 {
  grid-column: 8 / 13;
  grid-row: 1;
}

.industries-item--03 {
  grid-column: 8 / 13;
  grid-row: 2;
}

.industries-item--04 {
  grid-column: 1 / 5;
  grid-row: 3;
}

.industries-item--05 {
  grid-column: 5 / 13;
  grid-row: 3;
  min-height: 260px;
}

.industries-item-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.industries-item-number {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.22);
}

.industries-item--featured .industries-item-number {
  font-size: clamp(3rem, 6vw, 4.8rem);
}

.industries-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: var(--teal-soft);
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}

.industries-item--featured .industries-item-icon {
  width: 52px;
  height: 52px;
}

.industries-item:hover .industries-item-icon,
.industries-item:focus-within .industries-item-icon {
  transform: scale(1.06);
  color: var(--white);
}

.industries-item-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--white);
}

.industries-item--featured .industries-item-title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.industries-item-text {
  max-width: 42ch;
  font-size: clamp(0.94rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.industries-item--05 .industries-item-text {
  max-width: 56ch;
}

.industries-item-arrow {
  position: absolute;
  right: clamp(20px, 2.5vw, 28px);
  bottom: clamp(20px, 2.5vw, 28px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    color 0.35s var(--ease);
}

.industries-item-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 0.35s var(--ease);
}

.industries-item:hover .industries-item-arrow,
.industries-item:focus-within .industries-item-arrow {
  transform: translate(3px, -3px);
  background: rgba(127, 212, 200, 0.22);
  border-color: rgba(127, 212, 200, 0.45);
  color: var(--white);
}

.industries-item:hover .industries-item-arrow svg,
.industries-item:focus-within .industries-item-arrow svg {
  transform: translate(2px, -2px);
}

.industries-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.industries-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.industries-item--01.industries-reveal { transition-delay: 0.08s; }
.industries-item--02.industries-reveal { transition-delay: 0.16s; }
.industries-item--03.industries-reveal { transition-delay: 0.24s; }
.industries-item--04.industries-reveal { transition-delay: 0.32s; }
.industries-item--05.industries-reveal { transition-delay: 0.4s; }

/* ========================================
   PRODUCT VIDEO SHOWCASE SECTION
======================================== */
.product-video-showcase {
  background: var(--site-bg);
  color: var(--navy);
  padding: clamp(80px, 10vw, 120px) 0;
  overflow: hidden;
}

.product-video-showcase__inner {
  width: var(--container);
  margin: 0 auto;
}

.product-video-showcase__header {
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
}

.product-video-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
  align-items: start;
}

.product-video-showcase__item {
  width: 100%;
  min-width: 0;
}

.product-video-showcase__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin: 0;
}

.product-video-showcase__decor {
  position: absolute;
  top: 10px;
  right: -10px;
  left: 10px;
  bottom: -10px;
  width: auto;
  border-radius: 22px;
  border: 1px solid rgba(42, 168, 154, 0.35);
  box-shadow: 0 0 36px rgba(42, 168, 154, 0.12);
  pointer-events: none;
  z-index: 0;
}

.product-video-showcase__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(400px, 34vw, 460px);
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy-deep);
  border: 1px solid rgba(42, 168, 154, 0.28);
  box-shadow:
    0 20px 48px rgba(7, 19, 31, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.product-video-showcase__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--navy-deep);
}

.product-video-showcase__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}

.product-video-showcase__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 18px;
}

.product-video-showcase__description,
.product-video-showcase__supporting-text {
  font-family: var(--font-ui);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: rgba(7, 19, 31, 0.78);
}

.product-video-showcase__description {
  margin-bottom: 16px;
}

.product-video-showcase__supporting-text {
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  color: rgba(7, 19, 31, 0.62);
}

.pvs-reveal--header {
  opacity: 1;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.pvs-reveal--card {
  opacity: 1;
  transform: translateY(36px) scale(0.98);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.pvs-reveal--header.is-visible,
.pvs-reveal--card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-video-showcase__item:nth-child(1).pvs-reveal--card { transition-delay: 0.08s; }
.product-video-showcase__item:nth-child(2).pvs-reveal--card { transition-delay: 0.16s; }
.product-video-showcase__item:nth-child(3).pvs-reveal--card { transition-delay: 0.24s; }
.product-video-showcase__item:nth-child(4).pvs-reveal--card { transition-delay: 0.32s; }

@media (max-width: 980px) {
  .product-video-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 4vw, 32px);
    max-width: 100%;
    margin: 0 auto;
  }

  .product-video-showcase__frame {
    height: clamp(380px, 52vw, 440px);
  }
}

@media (max-width: 640px) {
  .product-video-showcase__header {
    text-align: left;
    margin-bottom: 40px;
  }

  .product-video-showcase__grid {
    grid-template-columns: 1fr;
    max-width: min(100%, 360px);
    gap: 24px;
  }

  .product-video-showcase__frame {
    height: clamp(360px, 72vw, 420px);
  }

  .product-video-showcase__frame,
  .product-video-showcase__decor {
    border-radius: 18px;
  }
}

/* ============================================================
   WHY CHOOSE HB CARE CANADA SECTION
   ============================================================ */
.why-hbcare {
  background: var(--site-bg);
  color: var(--navy);
  padding: 96px 0;
}

.why-hbcare-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(24px, 5vw, 64px);
}

.why-hbcare-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.28fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.why-hbcare-intro {
  max-width: 520px;
}

.why-hbcare-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 18px;
}

.why-hbcare-description {
  margin-bottom: 28px;
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.why-hbcare-cta {
  min-width: 220px;
}

.why-hbcare-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 20px);
}

.why-hbcare-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 196px;
  padding: clamp(22px, 2.5vw, 28px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 19, 31, 0.08);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(7, 19, 31, 0.05);
  backdrop-filter: blur(6px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
  overflow: hidden;
}

.why-hbcare-feature::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(to right, var(--teal), var(--product-accent));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.why-hbcare-feature:hover,
.why-hbcare-feature:focus-within {
  transform: translateY(-5px);
  border-color: rgba(42, 168, 154, 0.28);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(7, 19, 31, 0.1);
}

.why-hbcare-feature:hover::before,
.why-hbcare-feature:focus-within::before {
  opacity: 1;
}

.why-hbcare-feature-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.why-hbcare-feature-number {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(16, 68, 112, 0.14);
  transition: color 0.35s var(--ease);
}

.why-hbcare-feature:hover .why-hbcare-feature-number,
.why-hbcare-feature:focus-within .why-hbcare-feature-number {
  color: rgba(42, 168, 154, 0.45);
}

.why-hbcare-feature-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  color: var(--product-accent);
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}

.why-hbcare-feature:hover .why-hbcare-feature-icon,
.why-hbcare-feature:focus-within .why-hbcare-feature-icon {
  transform: scale(1.06);
  color: var(--teal-dark);
}

.why-hbcare-feature-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.why-hbcare-feature-text {
  font-size: clamp(0.9rem, 1.05vw, 0.98rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(7, 19, 31, 0.68);
}

.why-hbcare-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.why-hbcare-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.why-hbcare-intro.why-hbcare-reveal {
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

/* ============================================================
   QUALITY & PRECISION SECTION
   ============================================================ */
.quality-precision {
  background: var(--site-bg);
  color: var(--navy);
  padding: 96px 0;
  overflow: hidden;
}

.quality-precision-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(24px, 5vw, 64px);
}

.quality-precision-header {
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
}

.quality-precision-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
}

.quality-precision-intro {
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.quality-precision-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(40px, 6vw, 72px);
  row-gap: clamp(36px, 4.5vw, 52px);
  max-width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(8px, 2vw, 24px) 0;
}

#how-we-work + .why-hbcare {
  padding-top: clamp(40px, 6vw, 72px);
}

.why-hbcare + .product-video-showcase {
  padding-top: clamp(56px, 8vw, 96px);
}

.quality-precision-connectors {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: clamp(48px, 8vw, 80px);
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.5;
}

.quality-precision-connector {
  fill: none;
  stroke: rgba(16, 147, 187, 0.42);
  stroke-width: 2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.qp-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  max-width: 480px;
  min-height: auto;
  padding: clamp(28px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 19, 31, 0.07);
  box-shadow:
    0 10px 32px rgba(7, 19, 31, 0.06),
    0 2px 8px rgba(7, 19, 31, 0.04);
  overflow: hidden;
  transition:
    opacity 0.7s var(--ease),
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.qp-card--01 {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  border-radius: 28px 88px 28px 28px;
}

.qp-card--02 {
  grid-column: 2;
  grid-row: 2;
  justify-self: start;
  border-radius: 28px 28px 28px 88px;
}

.qp-card--03 {
  grid-column: 1;
  grid-row: 3;
  justify-self: end;
  border-radius: 88px 28px 28px 28px;
}

.qp-card--04 {
  grid-column: 2;
  grid-row: 4;
  justify-self: start;
  border-radius: 28px 28px 88px 28px;
}

.qp-card:hover,
.qp-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(42, 168, 154, 0.24);
  box-shadow:
    0 20px 44px rgba(7, 19, 31, 0.1),
    0 4px 12px rgba(42, 168, 154, 0.08);
}

.qp-card-number {
  display: block;
  align-self: flex-end;
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(16, 68, 112, 0.12);
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}

.qp-card--02 .qp-card-number,
.qp-card--04 .qp-card-number {
  align-self: flex-start;
}

.qp-card:hover .qp-card-number,
.qp-card:focus-within .qp-card-number {
  color: rgba(42, 168, 154, 0.38);
  transform: translateY(-3px);
}

.qp-card-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 168, 154, 0.12) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.qp-card--01 .qp-card-accent {
  top: -40px;
  right: -30px;
}

.qp-card--02 .qp-card-accent {
  bottom: -36px;
  left: -28px;
}

.qp-card--03 .qp-card-accent {
  top: -34px;
  left: -24px;
}

.qp-card--04 .qp-card-accent {
  bottom: -38px;
  right: -26px;
}

.qp-card:hover .qp-card-accent,
.qp-card:focus-within .qp-card-accent {
  opacity: 1.2;
  transform: scale(1.08);
}

.qp-card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.qp-card-text {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: none;
  font-size: clamp(0.92rem, 1.05vw, 0.98rem);
  font-weight: 300;
  line-height: 1.68;
  color: rgba(7, 19, 31, 0.68);
}

.qp-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.qp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quality-precision-header.qp-reveal {
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.qp-card.qp-reveal {
  transition:
    opacity 0.7s var(--ease),
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.qp-card--01.qp-reveal { transition-delay: 0.06s; }
.qp-card--02.qp-reveal { transition-delay: 0.14s; }
.qp-card--03.qp-reveal { transition-delay: 0.22s; }
.qp-card--04.qp-reveal { transition-delay: 0.3s; }

.qp-card.qp-reveal.is-visible:hover,
.qp-card.qp-reveal.is-visible:focus-within {
  transform: translateY(-7px);
}

/* ============================================================
   CUSTOMER REVIEWS SECTION
   ============================================================ */
.customer-reviews {
  background: var(--site-bg);
  color: var(--navy);
  padding: 96px 0;
}

.customer-reviews-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(24px, 5vw, 64px);
}

.customer-reviews-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.customer-reviews-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
}

.customer-reviews-intro {
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.customer-reviews-demo-note {
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: rgba(7, 19, 31, 0.45);
}

.customer-reviews-layout,
.reviews-showcase {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.reviews-star {
  width: 20px;
  height: 20px;
  color: rgba(7, 19, 31, 0.2);
}

.reviews-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.reviews-stars--filled .reviews-star {
  color: #f4b400;
}

.reviews-stars--filled .reviews-star.is-filled {
  fill: #f4b400;
  stroke: #f4b400;
}

.reviews-stars--card.reviews-stars--filled .reviews-star,
.reviews-stars--card .reviews-star.is-filled {
  width: 18px;
  height: 18px;
  color: #f4b400;
  opacity: 1;
  fill: #f4b400;
  stroke: #f4b400;
}

.reviews-stars--card .reviews-star {
  width: 18px;
  height: 18px;
  color: #f4b400;
  opacity: 0.45;
}

.reviews-stars--sm .reviews-star {
  width: 18px;
  height: 18px;
}

.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}

.reviews-slider {
  flex: 1 1 auto;
  min-width: 0;
  padding: 8px 0;
}

.reviews-slider-viewport {
  overflow: hidden;
}

.reviews-slider-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}

.reviews-slider-nav {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 -6px;
  border: 1px solid rgba(7, 19, 31, 0.08);
  border-radius: 50%;
  background: #ffffff;
  color: rgba(7, 19, 31, 0.55);
  box-shadow: 0 6px 18px rgba(7, 19, 31, 0.08);
  transition:
    transform 0.28s var(--ease),
    color 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    opacity 0.28s var(--ease);
}

.reviews-slider-nav svg {
  width: 22px;
  height: 22px;
}

.reviews-slider-nav:hover:not(:disabled),
.reviews-slider-nav:focus-visible:not(:disabled) {
  transform: scale(1.06);
  color: var(--product-btn);
  border-color: rgba(42, 168, 154, 0.28);
  box-shadow: 0 8px 22px rgba(7, 19, 31, 0.12);
}

.reviews-slider-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.reviews-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 0 0 auto;
  min-height: 280px;
  padding: 22px 22px 24px;
  background: #ffffff;
  border: 1px solid rgba(7, 19, 31, 0.08);
  border-radius: 18px;
  box-shadow: 0 6px 22px rgba(7, 19, 31, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.reviews-card:hover {
  transform: translateY(-3px);
  border-color: rgba(42, 168, 154, 0.18);
  box-shadow: 0 12px 32px rgba(7, 19, 31, 0.1);
}

.reviews-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(7, 19, 31, 0.08);
}

.reviews-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--product-btn);
}

.reviews-card:nth-child(1) .reviews-avatar { background: #104470; }
.reviews-card:nth-child(2) .reviews-avatar { background: #2aa89a; }
.reviews-card:nth-child(3) .reviews-avatar { background: #1093bb; }
.reviews-card:nth-child(4) .reviews-avatar { background: #1d6b8a; }
.reviews-card:nth-child(5) .reviews-avatar { background: #238b7a; }

.reviews-avatar-initial {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
}

.reviews-card-meta {
  min-width: 0;
  flex: 1;
}

.reviews-card-name {
  margin-bottom: 3px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
}

.reviews-card-date {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(7, 19, 31, 0.48);
}

.reviews-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.reviews-rating-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(7, 19, 31, 0.55);
}

.reviews-card-text {
  flex: 1 1 auto;
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(7, 19, 31, 0.78);
}

.reviews-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reviews-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  background: var(--site-bg);
  color: var(--navy);
  padding: 96px 0;
}

.faq-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(24px, 5vw, 64px);
}

.faq-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.faq-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
}

.faq-intro {
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(7, 19, 31, 0.08);
  box-shadow: 0 8px 28px rgba(7, 19, 31, 0.05);
  overflow: hidden;
  transition:
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.faq-item--01 { border-radius: 28px 28px 28px 12px; }
.faq-item--02 { border-radius: 16px 32px 16px 32px; }
.faq-item--03 { border-radius: 32px 16px 32px 16px; }
.faq-item--04 { border-radius: 24px 24px 12px 24px; }
.faq-item--05 { border-radius: 16px 28px 28px 16px; }
.faq-item--06 { border-radius: 28px 16px 16px 28px; }
.faq-item--07 { border-radius: 24px 24px 24px 12px; }

.faq-item.is-open {
  border-color: rgba(42, 168, 154, 0.28);
  box-shadow: 0 14px 36px rgba(7, 19, 31, 0.08);
}

.faq-accent {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--teal), var(--product-accent));
  opacity: 0;
  transform: scaleY(0.35);
  transform-origin: center top;
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.faq-item.is-open .faq-accent {
  opacity: 1;
  transform: scaleY(1);
}

.faq-question-heading {
  margin: 0;
  font: inherit;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: clamp(22px, 2.8vw, 28px) clamp(22px, 3vw, 32px);
  padding-left: clamp(26px, 3.2vw, 36px);
  border: none;
  background: transparent;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}

.faq-trigger:hover,
.faq-trigger:focus-visible {
  color: var(--product-btn);
}

.faq-question-text {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  font-weight: 600;
  line-height: 1.45;
}

.faq-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(16, 68, 112, 0.06);
  color: var(--product-btn);
  box-shadow: inset 0 0 0 1px rgba(7, 19, 31, 0.06);
  transition:
    transform 0.35s var(--ease),
    background-color 0.35s var(--ease),
    color 0.35s var(--ease);
}

.faq-item.is-open .faq-toggle {
  background: rgba(42, 168, 154, 0.14);
  color: var(--teal-dark);
}

.faq-icon {
  position: absolute;
  width: 18px;
  height: 18px;
  transition:
    opacity 0.3s var(--ease),
    transform 0.35s var(--ease);
}

.faq-icon--minus {
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
}

.faq-item.is-open .faq-icon--plus {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}

.faq-item.is-open .faq-icon--minus {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
}

.faq-answer {
  padding: 0 clamp(22px, 3vw, 32px) clamp(24px, 3vw, 30px);
  padding-left: clamp(26px, 3.2vw, 36px);
  font-size: clamp(0.94rem, 1.05vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.faq-answer-link {
  color: var(--product-btn);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.faq-answer-link:hover,
.faq-answer-link:focus-visible {
  color: var(--product-accent);
}

.faq-answer-strong {
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
  color: var(--navy);
}

.faq-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.faq-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item.faq-reveal:nth-child(1) { transition-delay: 0.04s; }
.faq-item.faq-reveal:nth-child(2) { transition-delay: 0.08s; }
.faq-item.faq-reveal:nth-child(3) { transition-delay: 0.12s; }
.faq-item.faq-reveal:nth-child(4) { transition-delay: 0.16s; }
.faq-item.faq-reveal:nth-child(5) { transition-delay: 0.2s; }
.faq-item.faq-reveal:nth-child(6) { transition-delay: 0.24s; }
.faq-item.faq-reveal:nth-child(7) { transition-delay: 0.28s; }
.faq-item.faq-reveal:nth-child(8) { transition-delay: 0.32s; }
.faq-item.faq-reveal:nth-child(9) { transition-delay: 0.36s; }
.faq-item.faq-reveal:nth-child(10) { transition-delay: 0.4s; }

.category-page .category-faq {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

/* ============================================================
   CONTACT US SECTION
   ============================================================ */
.contact-us {
  position: relative;
  overflow: hidden;
  background: #104470;
  color: #ffffff;
  padding: clamp(64px, 8vw, 120px) 0;
}

.contact-us-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(24px, 5vw, 64px);
}

.contact-us-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: stretch;
  max-width: min(1280px, 100%);
  margin: 0 auto;
}

/* Left — image */
.contact-us__media {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 100%;
  border-radius: 28px 28px 28px 12px;
  line-height: 0;
}

.contact-us__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 19, 31, 0.05),
    rgba(7, 19, 31, 0.18)
  );
  pointer-events: none;
}

.contact-us__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

/* Right — content */
.contact-us__content {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}

.contact-us__header {
  max-width: 36rem;
}

.contact-us__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-us__heading-line {
  display: block;
}

.contact-us__intro {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

/* Contact detail items */
.contact-us__details {
  display: flex;
  flex-direction: column;
}

.contact-us__item {
  display: grid;
  grid-template-columns: 22px auto minmax(0, 1fr);
  align-items: center;
  gap: 10px 14px;
  padding: clamp(16px, 2vw, 20px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-us__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-us__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #7fd4c8;
  grid-column: 1;
  grid-row: 1;
}

.contact-us__label {
  flex-shrink: 0;
  margin: 0;
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

.contact-us__values {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  min-width: 0;
  grid-column: 3;
  grid-row: 1;
}

.contact-us__values--phones {
  flex-wrap: wrap;
}

.contact-us__sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.1rem;
  line-height: 1;
}

.contact-us__link {
  font-family: var(--font-ui);
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s var(--ease);
  word-break: break-word;
}

.contact-us__link:hover,
.contact-us__link:focus-visible {
  color: var(--teal-soft);
}

.contact-us__link:focus-visible {
  outline: 2px solid var(--teal-soft);
  outline-offset: 3px;
  border-radius: 2px;
}

.contact-us__link--address {
  max-width: 22rem;
}

/* Scroll reveal */
.contact-us-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.contact-us-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-us__header.contact-us-reveal {
  transition-delay: 0.08s;
}

.contact-us__details .contact-us__item.contact-us-reveal:nth-child(1) {
  transition-delay: 0.14s;
}

.contact-us__details .contact-us__item.contact-us-reveal:nth-child(2) {
  transition-delay: 0.22s;
}

.contact-us__details .contact-us__item.contact-us-reveal:nth-child(3) {
  transition-delay: 0.3s;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #C3D9DF;
  color: var(--navy);
  padding: clamp(72px, 9vw, 104px) 0 clamp(28px, 4vw, 36px);
}

.site-footer-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(24px, 5vw, 64px);
}

.site-footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(40px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 80px);
}

.site-footer-brand {
  flex: 0 1 420px;
  max-width: 420px;
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  text-decoration: none;
}

.site-footer-logo-image {
  width: clamp(52px, 5vw, 64px);
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.site-footer-logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.site-footer-tagline {
  max-width: 34ch;
  margin-bottom: 28px;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.68);
}

.site-footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: rgba(7, 19, 31, 0.72);
  text-decoration: none;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.site-footer-social-link svg {
  width: 100%;
  height: 100%;
}

.site-footer-social-link:hover,
.site-footer-social-link:focus-visible {
  color: var(--product-btn);
  transform: translateY(-1px);
}

.site-footer-columns {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  max-width: 760px;
}

.site-footer-heading {
  margin-bottom: 22px;
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(7, 19, 31, 0.88);
}

.site-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer-link {
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(7, 19, 31, 0.62);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.site-footer-link:hover,
.site-footer-link:focus-visible {
  color: var(--product-btn);
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
  text-align: center;
}

.site-footer-copy {
  font-size: 0.84rem;
  font-weight: 400;
  color: rgba(7, 19, 31, 0.48);
  margin: 0;
}

.site-footer-bottom-right,
.site-footer-legal {
  display: contents;
}

.site-footer-credit {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 400;
  color: rgba(7, 19, 31, 0.48);
}

.site-footer-credit-link {
  color: rgba(7, 19, 31, 0.62);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.site-footer-credit-link:hover,
.site-footer-credit-link:focus-visible {
  color: var(--product-btn);
}

.site-footer-legal {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.site-footer-legal-link {
  font-size: 0.84rem;
  font-weight: 400;
  color: rgba(7, 19, 31, 0.62);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.site-footer-legal-link:hover,
.site-footer-legal-link:focus-visible {
  color: var(--product-btn);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .products-mega-menu {
    display: none;
  }

  .btn-header {
    display: none;
  }

  .header-catalog {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  :root {
    --container: min(1180px, calc(100% - 36px));
  }

  .logo-image {
    width: clamp(70px, 9vw, 86px);
    min-width: 70px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .product-card-title {
    font-size: 1.85rem;
  }

  .popular-products {
    padding: 72px 0;
  }

  .popular-products-header {
    margin-bottom: 40px;
  }

  .popular-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .product-modal-grid {
    grid-template-columns: 1fr;
  }

  .product-modal-media {
    padding: 24px;
  }

  .product-modal-content {
    padding: 28px 24px 32px;
  }

  .about {
    padding: 72px 0;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-media {
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .about-content {
    max-width: none;
  }

  .why-choose {
    padding: 72px 0;
  }

  .why-choose-canvas {
    min-height: 720px;
    padding: 36px 24px 48px;
    justify-content: space-between;
    gap: 32px;
  }

  .why-choose-intro {
    flex-basis: min(380px, 44vw);
    padding-left: clamp(16px, 4vw, 48px);
  }

  .why-choose-showcase {
    max-width: min(440px, 58vw);
    margin-right: clamp(16px, 4vw, 48px);
  }

  .why-choose-heading {
    font-size: clamp(1.85rem, 4.2vw, 2.8rem);
  }

  .why-choose-card {
    width: min(440px, 58vw);
    min-height: 640px;
  }

  .industries {
    padding: 72px 0;
  }

  .industries-header {
    margin-bottom: 40px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .industries-item,
  .industries-item--01,
  .industries-item--02,
  .industries-item--03,
  .industries-item--04,
  .industries-item--05 {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
    justify-content: flex-start;
  }

  .industries-item--01,
  .industries-item--05 {
    grid-column: 1 / -1;
  }

  .why-hbcare {
    padding: 72px 0;
  }

  .why-hbcare-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-hbcare-intro {
    max-width: none;
  }

  .quality-precision {
    padding: 72px 0 32px;
  }

  .quality-precision-header {
    margin-bottom: 40px;
  }

  .quality-precision-flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: min(520px, 100%);
    min-height: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }

  .quality-precision-connectors {
    display: none;
  }

  .qp-card--01,
  .qp-card--02,
  .qp-card--03,
  .qp-card--04 {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
    max-width: none;
    width: 100%;
  }

  .product-video-showcase {
    padding: 56px 0;
  }

  #how-we-work + .why-hbcare {
    padding-top: 40px;
  }

  .why-hbcare + .product-video-showcase {
    padding-top: 56px;
  }

  .customer-reviews {
    padding: 72px 0;
  }

  .customer-reviews-header {
    margin-bottom: 40px;
  }

  .reviews-slider-nav {
    width: 42px;
    height: 42px;
    margin: 0 -4px;
  }

  .faq {
    padding: 72px 0;
  }

  .faq-header {
    margin-bottom: 40px;
  }

  .site-footer-main {
    flex-direction: column;
    gap: 48px;
  }

  .site-footer-brand {
    max-width: none;
  }

  .site-footer-columns {
    max-width: none;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer-col:last-child {
    grid-column: 1 / -1;
  }

  .contact-us {
    padding: 80px 0;
  }

  .contact-us-layout {
    gap: clamp(36px, 5vw, 64px);
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 64px;
    --container: min(1180px, calc(100% - 32px));
  }

  .site-header {
    padding: 10px 0;
  }

  .logo-image {
    width: clamp(64px, 17vw, 78px);
    min-width: 64px;
  }

  .hero-content {
    padding-bottom: 56px;
  }

  .hero-heading {
    font-size: clamp(2.15rem, 9vw, 3.1rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .products {
    padding: 64px 0 72px;
  }

  .products-header {
    margin-bottom: 32px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-card-title {
    font-size: 1.65rem;
  }

  .popular-products {
    padding: 64px 0;
  }

  .popular-products-header {
    margin-bottom: 32px;
  }

  .popular-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .popular-products-footer {
    margin-top: 36px;
  }

  .popular-products-cta {
    width: 100%;
    max-width: 360px;
  }

  .popular-product-footer {
    padding: 16px 12px 14px;
  }

  .product-modal {
    padding: 16px;
  }

  .product-modal-content {
    padding: 24px 20px 28px;
  }

  .product-modal-cta {
    width: 100%;
  }

  .about {
    padding: 64px 0;
  }

  .about-inner {
    gap: 32px;
  }

  .about-media {
    aspect-ratio: 16 / 11;
    border-radius: 20px;
  }

  .about-heading {
    font-size: clamp(1.85rem, 7vw, 2.4rem);
  }

  .about-cta {
    width: 100%;
  }

  .why-choose {
    padding: 64px 0;
  }

  .why-choose-canvas {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 0;
    gap: 28px;
  }

  .why-choose-intro {
    flex: none;
    padding-left: 0;
  }

  .why-choose-heading {
    margin-bottom: 16px;
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .why-choose-description {
    max-width: none;
  }

  .why-choose-description:last-of-type {
    margin-bottom: 24px;
  }

  .why-choose-cta {
    width: 100%;
  }

  .why-choose-showcase {
    margin: 0;
    max-width: none;
    width: 100%;
    justify-content: flex-end;
  }

  .why-choose-card {
    width: min(480px, 100%);
    min-height: clamp(580px, 78vh, 720px);
    max-height: none;
    margin: 0;
    margin-left: auto;
    border-radius: 28px;
  }

  .why-choose-controls {
    margin-bottom: 0;
  }

  .why-choose-chip {
    padding: 0 10px;
    font-size: 0.62rem;
  }

  .why-choose-body {
    min-height: 136px;
  }

  .why-choose-copy {
    min-height: 112px;
  }

  .industries {
    padding: 64px 0;
  }

  .industries-header {
    margin-bottom: 32px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .industries-item,
  .industries-item--01,
  .industries-item--02,
  .industries-item--03,
  .industries-item--04,
  .industries-item--05 {
    grid-column: auto;
    min-height: auto;
  }

  .industries-item--01,
  .industries-item--05 {
    grid-column: auto;
  }

  .industries-item--01 .industries-item-inner {
    justify-content: flex-start;
    margin-top: 0;
  }

  .industries-item-text,
  .industries-item--05 .industries-item-text {
    max-width: none;
  }

  .why-hbcare {
    padding: 64px 0;
  }

  .why-hbcare-layout {
    gap: 32px;
  }

  .why-hbcare-heading {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .why-hbcare-description {
    margin-bottom: 24px;
  }

  .why-hbcare-cta {
    width: 100%;
  }

  .why-hbcare-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-hbcare-feature {
    min-height: auto;
  }

  .quality-precision {
    padding: 56px 0 24px;
  }

  .quality-precision-header {
    margin-bottom: 28px;
  }

  .quality-precision-flow {
    gap: 16px;
    max-width: min(360px, 100%);
  }

  .product-video-showcase {
    padding: 40px 0;
  }

  #how-we-work + .why-hbcare {
    padding-top: 32px;
  }

  .why-hbcare + .product-video-showcase {
    padding-top: 40px;
  }

  .why-hbcare {
    padding: 56px 0;
  }

  .qp-card-number {
    align-self: flex-start;
  }

  .customer-reviews {
    padding: 64px 0;
  }

  .customer-reviews-heading {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .reviews-slider-nav {
    width: 38px;
    height: 38px;
    margin: 0 -2px;
  }

  .reviews-slider-nav svg {
    width: 18px;
    height: 18px;
  }

  .reviews-card {
    min-height: 250px;
    padding: 18px 18px 20px;
  }

  .faq {
    padding: 64px 0;
  }

  .faq-heading {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .faq-trigger {
    gap: 14px;
    padding: 20px 18px 20px 22px;
  }

  .faq-toggle {
    width: 40px;
    height: 40px;
  }

  .faq-answer {
    padding: 0 18px 22px 22px;
  }

  .site-footer-main {
    gap: 36px;
    padding-bottom: 48px;
  }

  .site-footer-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer-col:last-child {
    grid-column: auto;
  }

  .site-footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .contact-us {
    padding: clamp(60px, 12vw, 72px) 0;
  }

  .contact-us-layout {
    grid-template-columns: 1fr;
    gap: clamp(32px, 6vw, 48px);
    align-items: start;
  }

  .contact-us__media {
    display: block;
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 24px 24px 24px 10px;
  }

  .contact-us__media .contact-us__image {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }

  .contact-us__heading {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .contact-us__item {
    grid-template-columns: 22px 1fr;
    align-items: start;
    row-gap: 8px;
  }

  .contact-us__label {
    grid-column: 2;
    grid-row: 1;
  }

  .contact-us__values {
    grid-column: 2;
    grid-row: 2;
  }

  .contact-us__icon {
    grid-row: 1 / span 2;
    align-self: start;
    margin-top: 2px;
  }

  .contact-us__values--phones {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .contact-us__sep {
    display: none;
  }

  .contact-us__link--address {
    max-width: none;
  }
}

@media (max-width: 400px) {
  .logo-image {
    width: clamp(58px, 21vw, 72px);
    min-width: 58px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card-title {
    font-size: 1.5rem;
  }

  .popular-products-grid {
    grid-template-columns: 1fr;
  }

  .page-products .pp-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.page-products {
  background: var(--site-bg);
  overflow-x: hidden;
}

.page-products .customer-reviews {
  border-top: 1px solid rgba(7, 19, 31, 0.06);
}

.page-products .contact-us {
  border-top: none;
}

/* PRODUCT HERO */
.product-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background-color: var(--navy-deep);
  background-image: url("assets/images/surgical.webp");
  background-size: cover;
  background-position: center;
}

.product-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.product-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(5, 13, 22, 0.45) 0%,
    rgba(7, 19, 31, 0.65) 100%
  );
  pointer-events: none;
}

.product-hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 5vw, 64px);
  text-align: center;
}

.product-hero__inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}


.product-hero__heading {
  margin-bottom: clamp(18px, 3vw, 28px);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
}

.product-hero__text {
  max-width: 650px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  font-family: var(--font-ui);
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* Hero entrance animations */
.product-hero__anim {
  opacity: 0;
  transform: translateY(20px);
}

.product-hero.is-ready .product-hero__anim {
  animation: productHeroFadeIn 0.85s var(--ease) forwards;
}

.product-hero.is-ready .product-hero__heading {
  animation-delay: 0.12s;
}

.product-hero.is-ready .product-hero__text {
  animation-delay: 0.28s;
}

.product-hero.is-ready .product-hero__actions {
  animation-delay: 0.44s;
}

@keyframes productHeroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .product-hero__heading {
    font-size: clamp(3rem, 8vw, 5rem);
  }
}

@media (max-width: 640px) {
  .product-hero {
    min-height: 100svh;
  }

  .product-hero__video {
    object-position: center 30%;
  }

  .product-hero__heading {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .product-hero__text {
    max-width: 36ch;
  }

  .product-hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .product-hero__actions .btn {
    width: 100%;
  }
}

/* PRODUCT CATEGORIES SECTION */
.product-categories {
  padding: clamp(72px, 9vw, 96px) 0;
  background: var(--site-bg);
  border-top: 1px solid rgba(7, 19, 31, 0.06);
}

.product-categories__inner {
  width: 100%;
  padding: 0 clamp(16px, 2.5vw, 32px);
}

.product-categories__header {
  max-width: min(920px, 100%);
  margin: 0 auto clamp(40px, 5vw, 52px);
  text-align: center;
}

.product-categories__eyebrow {
  margin-bottom: 16px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(7, 19, 31, 0.48);
}

.product-categories__heading {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.product-categories__intro {
  max-width: 620px;
  margin: 0 auto;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.4vw, 1.06rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(7, 19, 31, 0.68);
}

.product-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
  width: 100%;
}

.product-category-card {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.product-category-card.is-active .product-category-card__media {
  box-shadow: 0 0 0 2px var(--product-btn);
}

.product-category-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
  background: #eef3f5;
  box-shadow: 0 4px 16px rgba(7, 19, 31, 0.06);
  transition: box-shadow 0.3s var(--ease);
}

.product-category-card:hover .product-category-card__media,
.product-category-card:focus-visible .product-category-card__media {
  box-shadow: 0 10px 28px rgba(7, 19, 31, 0.1);
}

.product-category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease);
}

.product-category-card:hover .product-category-card__image,
.product-category-card:focus-visible .product-category-card__image {
  transform: scale(1.03);
}

.product-category-card__arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  opacity: 0;
  transform: translate(4px, -4px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(7, 19, 31, 0.12);
  pointer-events: none;
}

.product-category-card__arrow svg {
  width: 16px;
  height: 16px;
}

.product-category-card:hover .product-category-card__arrow,
.product-category-card:focus-visible .product-category-card__arrow,
.product-category-card.is-active .product-category-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.product-category-card__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 28px 16px 14px;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
  text-align: left;
  background: linear-gradient(
    180deg,
    rgba(7, 19, 31, 0) 0%,
    rgba(7, 19, 31, 0.55) 55%,
    rgba(7, 19, 31, 0.78) 100%
  );
  pointer-events: none;
  transition: color 0.25s var(--ease);
}

.product-category-card:hover .product-category-card__title,
.product-category-card:focus-visible .product-category-card__title {
  color: var(--teal-soft);
}

/* Category scroll reveal */
.pc-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.pc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .product-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-categories__grid {
    grid-template-columns: 1fr;
  }
}

/* PRODUCT SECTIONS — SHARED */
.pp-catalog {
  padding: clamp(72px, 9vw, 96px) 0;
  border-top: 1px solid rgba(7, 19, 31, 0.06);
  background: var(--site-bg);
}

.pp-catalog-inner {
  width: 100%;
  padding: 0 clamp(24px, 5vw, 64px);
}

.pp-section-header {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 48px);
}

.pp-section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pp-section-heading {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.pp-section-intro {
  font-size: clamp(1rem, 1.4vw, 1.06rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(7, 19, 31, 0.68);
}

/* PRODUCT SEARCH & FILTERS */
.pp-controls {
  max-width: 100%;
  margin: 0 0 clamp(28px, 4vw, 40px);
}

.pp-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pp-filter-panel {
  margin-bottom: 20px;
}

@media (min-width: 981px) {
  .pp-filter-panel {
    display: block;
  }
}

.pp-filter-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  padding: 0;
  border: 1px solid rgba(7, 19, 31, 0.1);
  border-radius: 50%;
  background: var(--white);
  color: rgba(7, 19, 31, 0.65);
  box-shadow: 0 2px 8px rgba(7, 19, 31, 0.04);
  cursor: pointer;
  transition:
    background-color 0.22s var(--ease),
    border-color 0.22s var(--ease),
    color 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}

.pp-filter-toggle svg {
  width: 18px;
  height: 18px;
}

.pp-filter-toggle:hover,
.pp-filter-toggle:focus-visible {
  border-color: rgba(16, 68, 112, 0.22);
  color: var(--navy);
}

.pp-filter-toggle.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(7, 19, 31, 0.14);
}

.pp-filter-btn {
  padding: 7px 14px;
  border: 1px solid rgba(7, 19, 31, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(7, 19, 31, 0.72);
  cursor: pointer;
  transition:
    background-color 0.22s var(--ease),
    border-color 0.22s var(--ease),
    color 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}

.pp-filter-btn:hover,
.pp-filter-btn:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(16, 68, 112, 0.22);
  color: var(--navy);
}

.pp-filter-btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(7, 19, 31, 0.14);
}

.pp-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pp-search-wrap {
  position: relative;
  flex: 0 1 320px;
  width: min(100%, 320px);
  max-width: 320px;
  min-width: 0;
}

.pp-search-label,
.pp-sort-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pp-search-icon {
  display: none;
}

.pp-search-input {
  width: 100%;
  min-height: 40px;
  padding: 0 42px 0 16px;
  border: 1px solid rgba(7, 19, 31, 0.1);
  border-radius: 999px;
  background: var(--white);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(7, 19, 31, 0.04);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.pp-search-input::placeholder {
  color: rgba(7, 19, 31, 0.38);
}

.pp-search-input:focus {
  outline: none;
  border-color: rgba(16, 68, 112, 0.35);
  box-shadow: 0 0 0 3px rgba(16, 68, 112, 0.08);
}

.pp-search-submit {
  position: absolute;
  right: 6px;
  bottom: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(7, 19, 31, 0.06);
  color: rgba(7, 19, 31, 0.5);
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.pp-search-submit svg {
  width: 14px;
  height: 14px;
}

.pp-search-submit:hover,
.pp-search-submit:focus-visible {
  background: rgba(16, 68, 112, 0.12);
  color: var(--product-btn);
}

.pp-sort-wrap {
  flex: 0 0 auto;
  width: 128px;
}

.pp-sort-select {
  width: 100%;
  min-height: 40px;
  padding: 0 30px 0 14px;
  border: 1px solid rgba(7, 19, 31, 0.1);
  border-radius: 999px;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' fill='none' stroke='%2307131f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  appearance: none;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(7, 19, 31, 0.04);
  cursor: pointer;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.pp-sort-select:focus {
  outline: none;
  border-color: rgba(16, 68, 112, 0.35);
  box-shadow: 0 0 0 3px rgba(16, 68, 112, 0.08);
}

.pp-results-count {
  margin-bottom: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(7, 19, 31, 0.45);
}

/* FILTER & SORT MODAL (mobile / tablet) */
.pp-filter-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.pp-filter-modal[hidden] {
  display: none;
}

.pp-filter-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 31, 0.55);
  backdrop-filter: blur(3px);
}

.pp-filter-modal-dialog {
  position: relative;
  width: 100%;
  max-height: min(85dvh, 560px);
  overflow: auto;
  border-radius: 22px 22px 0 0;
  background: var(--white);
  box-shadow: 0 -8px 40px rgba(7, 19, 31, 0.18);
  animation: ppFilterModalIn 0.32s var(--ease);
}

@keyframes ppFilterModalIn {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pp-filter-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 12px;
  border-bottom: 1px solid rgba(7, 19, 31, 0.08);
}

.pp-filter-modal-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}

.pp-filter-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(7, 19, 31, 0.06);
  color: var(--navy);
  cursor: pointer;
  transition: background-color 0.2s var(--ease);
}

.pp-filter-modal-close svg {
  width: 16px;
  height: 16px;
}

.pp-filter-modal-close:hover,
.pp-filter-modal-close:focus-visible {
  background: rgba(7, 19, 31, 0.1);
}

.pp-filter-modal-body {
  padding: 20px;
}

.pp-filter-modal-label {
  margin: 0 0 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(7, 19, 31, 0.42);
}

.pp-filter-bar--modal {
  justify-content: flex-start;
  margin-bottom: 24px;
}

.pp-sort-wrap--modal {
  width: 100%;
  margin-bottom: 24px;
}

.pp-filter-modal-apply {
  width: 100%;
  min-height: 46px;
}

@media (min-width: 981px) {
  .pp-filter-modal {
    display: none !important;
  }
}

/* PRODUCT GRID */
.pp-product-grid-section {
  scroll-margin-top: calc(var(--header-height) + 16px);
  margin-top: 28px;
}

#product-categories {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.pp-product-grid {
  width: 100%;
}

/* Product catalog grid — 5 columns on desktop */
.page-products .pp-product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

/* Products page cards — image fills card area above footer */
.page-products .popular-product-card-inner {
  display: flex;
  flex-direction: column;
}

.page-products .popular-product-image {
  position: relative;
  inset: auto;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  height: auto;
  object-fit: contain;
  padding: 0;
  background: #F6F6F6;
}

.page-products .popular-product-footer {
  position: relative;
  flex-shrink: 0;
  left: auto;
  right: auto;
  bottom: auto;
}

/* Product cards on products page reuse .popular-product-* styles from homepage */

/* EMPTY STATE */
.pp-empty-state {
  padding: clamp(48px, 8vw, 72px) 24px;
  text-align: center;
}

.pp-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  color: rgba(7, 19, 31, 0.35);
}

.pp-empty-icon svg {
  width: 24px;
  height: 24px;
}

.pp-empty-title {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
}

.pp-empty-text {
  font-size: 0.94rem;
  font-weight: 300;
  color: rgba(7, 19, 31, 0.58);
}

/* PRODUCT MODAL */
.pp-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pp-modal[hidden] {
  display: none;
}

.pp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 22, 0.72);
  backdrop-filter: blur(8px);
}

.pp-modal-dialog {
  position: relative;
  width: min(1150px, 100%);
  max-height: 90vh;
  max-height: 90dvh;
  overflow: auto;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(7, 19, 31, 0.24);
  animation: ppModalIn 0.4s var(--ease);
}

@keyframes ppModalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pp-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(7, 19, 31, 0.06);
  color: var(--navy);
  cursor: pointer;
  transition: background-color 0.2s var(--ease);
}

.pp-modal-close:hover,
.pp-modal-close:focus-visible {
  background: rgba(7, 19, 31, 0.1);
}

.pp-modal-close svg {
  width: 18px;
  height: 18px;
}

.pp-modal-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.pp-modal-media {
  background: #f6f6f6;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-modal-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  object-position: center;
  background: #f6f6f6;
}

.pp-modal-body {
  padding: clamp(28px, 4vw, 40px);
}

.pp-modal-category {
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--product-accent);
}

.pp-modal-title {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

.pp-modal-sku {
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(7, 19, 31, 0.42);
}

.pp-modal-description {
  margin-bottom: 20px;
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.68);
}

.pp-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.pp-modal-tag {
  padding: 6px 12px;
  border-radius: var(--radius);
  background: rgba(195, 217, 223, 0.45);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(7, 19, 31, 0.62);
}

.pp-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.pp-modal-details {
  margin-top: 8px;
}

.pp-modal-details__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pp-modal-details__list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(7, 19, 31, 0.08);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: rgba(7, 19, 31, 0.62);
}

.pp-modal-details__list li strong {
  color: var(--navy);
  font-weight: 600;
}

/* PRODUCT REVEAL */
.pp-reveal,
.pp-reveal-static {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.pp-reveal.is-visible,
.pp-reveal-static.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* PRODUCT RESPONSIVE — grid uses .popular-products-grid breakpoints */
@media (max-width: 1280px) {
  .page-products .pp-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .page-products .pp-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .page-products .pp-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .pp-filter-panel {
    display: none !important;
  }

  .pp-sort-wrap--desktop {
    display: none;
  }

  .pp-toolbar {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: stretch;
    gap: 10px;
    margin-bottom: 10px;
  }

  .pp-search-wrap {
    flex: 1;
    width: auto;
    max-width: none;
    min-width: 0;
  }

  .pp-filter-toggle {
    display: inline-flex;
    align-self: center;
    margin-top: 0;
  }

  .pp-modal-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-products .pp-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .pp-controls {
    max-width: 100%;
  }

  .pp-modal {
    padding: 12px;
    align-items: flex-end;
  }

  .pp-modal-dialog {
    max-height: calc(100dvh - 24px);
    border-radius: 20px 20px 0 0;
  }

  .pp-modal-actions {
    flex-direction: column;
  }

  .pp-modal-actions .btn {
    width: 100%;
  }
}

/* ============================================================
   CATEGORY PRODUCT PAGES
   ============================================================ */
.category-page {
  background: var(--site-bg);
  overflow-x: hidden;
}

.category-page .contact-us {
  border-top: none;
}

/* ========================================
   CATEGORY HERO
   ======================================== */
.category-hero {
  --hero-image-position: center center;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(620px, 85vh, 850px);
  padding: clamp(64px, 8vw, 96px) 0;
  overflow: hidden;
  background-color: var(--navy-deep);
  background-image: var(--hero-image);
  background-size: cover;
  background-position: var(--hero-image-position);
  background-repeat: no-repeat;
}

.category-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(5, 13, 22, 0.9) 0%,
      rgba(5, 13, 22, 0.78) 38%,
      rgba(5, 13, 22, 0.42) 62%,
      rgba(5, 13, 22, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 13, 22, 0.25) 0%,
      rgba(5, 13, 22, 0.05) 45%,
      rgba(5, 13, 22, 0.35) 100%
    );
}

.category-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  min-height: inherit;
  padding-inline: clamp(24px, 3vw, 48px);
}

.category-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 1100px);
  margin-inline: auto;
  text-align: center;
}

.category-hero__title {
  margin: 0 0 20px;
  max-width: 1100px;
  margin-inline: auto;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 5.5vw, 6.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.category-hero__description {
  margin: 0 0 32px;
  max-width: 780px;
  margin-inline: auto;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 300;
  line-height: 1.7;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}

.category-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.category-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 28px;
  transition:
    background-color 0.28s var(--ease),
    border-color 0.28s var(--ease),
    color 0.28s var(--ease),
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.category-hero__cta span {
  display: inline-block;
  transition: transform 0.28s var(--ease);
}

.category-hero__cta:hover,
.category-hero__cta:focus-visible {
  transform: translateY(-2px);
}

.category-hero__cta.btn-primary:hover span,
.category-hero__cta.btn-primary:focus-visible span {
  transform: translateY(2px);
}

.category-hero__cta.btn-outline:hover span,
.category-hero__cta.btn-outline:focus-visible span {
  transform: translateX(2px);
}

.category-hero__animate {
  opacity: 0;
  transform: translateY(35px);
  animation: categoryHeroSlideUp 0.85s var(--ease) forwards;
}

.category-hero__title.category-hero__animate {
  animation-delay: 0.1s;
}

.category-hero__description.category-hero__animate {
  animation-delay: 0.22s;
}

.category-hero__actions.category-hero__animate {
  animation-delay: 0.38s;
}

@keyframes categoryHeroSlideUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-page #category-products {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.category-products {
  padding: clamp(24px, 4vw, 48px) 0 clamp(56px, 7vw, 88px);
}

.category-products__inner {
  width: min(100% - clamp(48px, 6vw, 80px), var(--container-max));
  margin: 0 auto;
  padding-inline: clamp(12px, 2vw, 24px);
}

.category-products__header {
  margin-bottom: clamp(20px, 3vw, 28px);
  text-align: center;
}

.category-products__heading {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 600;
  color: var(--navy);
}

.category-products__count {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(7, 19, 31, 0.55);
}

.category-products__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(24px, 3vw, 32px);
  padding-bottom: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-products__controls {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.category-products__toolbar {
  display: none;
}

@media (max-width: 980px) {
  .category-products__filters--desktop {
    display: none !important;
  }

  .category-products__toolbar {
    display: flex;
    align-items: center;
    justify-content: stretch;
    gap: 10px;
    margin-bottom: 0;
  }

  .category-products__toolbar .pp-search-wrap {
    flex: 1;
    width: auto;
    max-width: none;
    min-width: 0;
  }

  .category-products__toolbar .pp-filter-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }
}

.category-products__filters::-webkit-scrollbar {
  display: none;
}

.category-products__filter {
  flex-shrink: 0;
  padding: 10px 18px;
  border: 1px solid rgba(7, 19, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(7, 19, 31, 0.72);
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.category-products__filter:hover,
.category-products__filter:focus-visible {
  border-color: rgba(16, 68, 112, 0.28);
  color: var(--navy);
}

.category-products__filter.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* ========================================
   PRODUCT CARDS
   ======================================== */
.product-card {
  min-width: 0;
}

.product-card__inner {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 20px;
  background: #f6f6f6;
  box-shadow: 0 6px 20px rgba(7, 19, 31, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.product-card__inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(to top, rgba(5, 13, 22, 0.92), rgba(5, 13, 22, 0));
  pointer-events: none;
}

.product-card:hover .product-card__inner,
.product-card:focus-within .product-card__inner {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(7, 19, 31, 0.12);
}

.product-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-card__cover-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  text-decoration: none;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card__actions {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.product-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(7, 19, 31, 0.1);
  opacity: 0;
  transform: translateX(16px);
  pointer-events: none;
  transition:
    opacity 0.32s var(--ease),
    transform 0.32s var(--ease),
    background-color 0.25s var(--ease),
    color 0.25s var(--ease);
}

.product-card__action svg {
  width: 18px;
  height: 18px;
}

.product-card__action:hover,
.product-card__action:focus-visible {
  background: #fff;
  color: var(--product-accent);
}

.product-card__action--whatsapp:hover,
.product-card__action--whatsapp:focus-visible {
  color: #25d366;
}

@media (hover: hover) {
  .product-card:hover .product-card__actions,
  .product-card:focus-within .product-card__actions {
    pointer-events: auto;
  }

  .product-card__action {
    opacity: 0;
    transform: translateX(16px);
  }

  .product-card:hover .product-card__action,
  .product-card:focus-within .product-card__action {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .product-card__action:nth-child(1) { transition-delay: 0s; }
  .product-card__action:nth-child(2) { transition-delay: 0.05s; }
  .product-card__action:nth-child(3) { transition-delay: 0.1s; }
}

@media (hover: none) {
  .product-card__actions {
    display: none;
  }
}

.product-card__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 24px;
  pointer-events: none;
}

.product-card__name {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}

.category-products__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
}

@media (max-width: 640px) {
  .product-card__action {
    width: 44px;
    height: 44px;
  }
}

.category-empty-state {
  padding: clamp(48px, 8vw, 72px) 24px;
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(7, 19, 31, 0.08);
}

.category-empty-state__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--product-accent);
}

.category-empty-state__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--navy);
}

.category-empty-state__text {
  margin: 0 auto 24px;
  max-width: 34rem;
  font-family: var(--font-ui);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(7, 19, 31, 0.62);
}

/* ========================================
   DOWNLOAD CATALOG SECTION
======================================== */

.download-catalog {
  padding: clamp(48px, 7vw, 88px) clamp(24px, 5vw, 64px);
  background: var(--site-bg);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.download-catalog__inner {
  width: min(100%, var(--container-max));
  margin: 0 auto;
}

.download-catalog__card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(36px, 5vw, 64px);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--product-btn), var(--navy));
  color: var(--white);
  overflow: visible;
  position: relative;
  box-shadow: 0 24px 64px rgba(7, 19, 31, 0.18);
}

.download-catalog__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.download-catalog__title {
  margin: 0 0 clamp(16px, 2.5vw, 22px);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
}

.download-catalog__text {
  margin: 0 0 clamp(24px, 3vw, 32px);
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.05vw, 1.125rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.download-catalog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.download-catalog__dropdown {
  position: relative;
  display: inline-flex;
  align-items: stretch;
}

.download-catalog__menu {
  left: 0;
  right: auto;
  z-index: 20;
  min-width: 260px;
  transform: translateX(0) translateY(8px);
}

.download-catalog__dropdown.header-item--dropdown:hover .download-catalog__menu,
.download-catalog__dropdown.header-item--dropdown:focus-within .download-catalog__menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.download-catalog__dropdown.header-item--dropdown.is-open .download-catalog__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) translateY(0);
}

.download-catalog__chevron {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}

.download-catalog__dropdown.header-item--dropdown.is-open .download-catalog__chevron {
  transform: rotate(180deg);
}

.download-catalog__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.download-catalog__button:hover,
.download-catalog__button:focus-visible {
  transform: translateY(-3px);
}

.download-catalog__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 280px;
}

.download-catalog__decor {
  position: absolute;
  pointer-events: none;
}

.download-catalog__decor--glow {
  top: 50%;
  left: 50%;
  width: min(100%, 360px);
  height: min(100%, 360px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 168, 154, 0.22) 0%, rgba(42, 168, 154, 0) 70%);
  z-index: 0;
}

.download-catalog__image {
  display: block;
  width: min(100%, 460px);
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 18px 36px rgba(7, 19, 31, 0.22));
}

.download-catalog__reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.download-catalog.is-visible .download-catalog__reveal {
  opacity: 1;
  transform: translateY(0);
}

.download-catalog__reveal--visual {
  opacity: 0;
  transform: translateX(40px) translateY(20px);
}

.download-catalog.is-visible .download-catalog__reveal--visual {
  opacity: 1;
  transform: translate(0, 0);
}

.download-catalog__title.download-catalog__reveal {
  transition-delay: 0ms;
}

.download-catalog__text.download-catalog__reveal {
  transition-delay: 80ms;
}

.download-catalog__actions.download-catalog__reveal {
  transition-delay: 160ms;
}

.download-catalog__reveal--visual {
  transition-delay: 240ms;
}

@media (max-width: 980px) {
  .download-catalog__card {
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
    text-align: center;
  }

  .download-catalog__content {
    max-width: none;
  }

  .download-catalog__actions {
    justify-content: center;
  }

  .download-catalog__visual {
    min-height: 220px;
  }

  .download-catalog__image {
    width: min(100%, 380px);
  }
}

@media (max-width: 640px) {
  .download-catalog {
    padding: clamp(40px, 8vw, 64px) 20px;
  }

  .download-catalog__card {
    display: flex;
    flex-direction: column;
    padding: 28px 22px;
    border-radius: 22px;
  }

  .download-catalog__visual {
    order: 1;
    width: 100%;
    min-height: 0;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .download-catalog__content {
    order: 2;
    width: 100%;
    text-align: center;
  }

  .download-catalog__title {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .download-catalog__button {
    width: 100%;
    justify-content: center;
  }

  .download-catalog__image {
    display: block;
    width: min(82%, 360px);
    height: auto;
    margin: 0 auto;
    object-fit: contain;
  }

  .download-catalog__decor--glow {
    width: min(82%, 300px);
    height: min(82%, 300px);
  }

  .download-catalog__reveal--visual {
    transform: translateY(30px);
  }

  .download-catalog.is-visible .download-catalog__reveal--visual {
    transform: translateY(0);
  }

  .download-catalog__button:hover,
  .download-catalog__button:focus-visible {
    transform: none;
  }
}

/* ========================================
   CATALOG PAGE SECTIONS
======================================== */

.catalog-download {
  padding: clamp(72px, 9vw, 110px) clamp(24px, 5vw, 64px);
  background: var(--site-bg);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.catalog-download__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.85fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  width: min(100%, var(--container-max));
  margin: 0 auto;
}

.catalog-download__title {
  margin: 0 0 clamp(24px, 3vw, 32px);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--navy);
}

.catalog-download__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 32px);
}

.catalog-download__button-outline {
  color: var(--navy);
  border-color: rgba(7, 19, 31, 0.18);
}

.catalog-download__button-outline:hover,
.catalog-download__button-outline:focus-visible {
  color: var(--navy);
  border-color: rgba(7, 19, 31, 0.32);
  background: rgba(255, 255, 255, 0.55);
}

.catalog-download__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.catalog-download__text {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.05vw, 1.125rem);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(7, 19, 31, 0.72);
}

.catalog-download__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  box-shadow: none;
}

.catalog-download__image {
  display: block;
  width: min(100%, 460px);
  height: auto;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.catalog-video {
  padding: clamp(72px, 9vw, 110px) clamp(24px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.42);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.catalog-video__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  width: min(100%, var(--container-max));
  margin: 0 auto;
}

.catalog-video__title {
  margin: 0 0 clamp(20px, 3vw, 28px);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--navy);
}

.catalog-video__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.catalog-video__text {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.05vw, 1.125rem);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(7, 19, 31, 0.72);
}

.catalog-video__media {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.catalog-video__frame {
  width: min(100%, 640px);
  height: clamp(320px, 38vw, 420px);
  border-radius: 24px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 24px 56px rgba(7, 19, 31, 0.18);
}

.catalog-video__player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.catalog-popular-products__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalog-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.catalog-download.is-visible .catalog-reveal,
.catalog-video.is-visible .catalog-reveal {
  opacity: 1;
  transform: translateY(0);
}

.catalog-reveal--visual {
  transition-delay: 0.12s;
}

@media (max-width: 980px) {
  .catalog-download__inner,
  .catalog-video__inner {
    grid-template-columns: 1fr;
  }

  .catalog-popular-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-video__frame {
    width: min(92%, 500px);
    height: clamp(300px, 56vw, 380px);
    margin: 0 auto;
  }

  .catalog-video__media {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .catalog-download__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .catalog-popular-products__grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   ABOUT CATEGORY SECTION
======================================== */

.about-category {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 5vw, 64px);
  background: var(--site-bg);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.about-category__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.75fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  width: min(100%, var(--container-max));
  margin: 0 auto;
}

.about-category__content {
  max-width: 650px;
}

.about-category__title {
  margin: 0 0 clamp(20px, 3vw, 28px);
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--navy);
}

.about-category__text-wrap {
  display: flex;
  flex-direction: column;
}

.about-category__text {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.05vw, 1.125rem);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(7, 19, 31, 0.78);
}

.about-category__text + .about-category__text {
  margin-top: 1.25rem;
}

.about-category__actions {
  margin-top: clamp(24px, 3vw, 36px);
}

.about-category__media {
  position: relative;
  align-self: center;
}

.about-category__accent {
  position: absolute;
  top: 20px;
  right: -16px;
  bottom: -20px;
  left: 20px;
  border: 2px solid var(--teal);
  border-radius: 28px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.about-category__image-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  height: clamp(420px, 38vw, 560px);
  margin-left: auto;
}

.about-category__image {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(7, 19, 31, 0.06);
}

.about-category__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease);
}

.about-category__image:hover img {
  transform: scale(1.04);
}

.about-category__reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.about-category.is-visible .about-category__reveal {
  opacity: 1;
  transform: translateY(0);
}

.about-category__title.about-category__reveal {
  transition-delay: 0ms;
}

.about-category__text-wrap .about-category__text:nth-child(1) {
  transition-delay: 100ms;
}

.about-category__text-wrap .about-category__text:nth-child(2) {
  transition-delay: 200ms;
}

.about-category__text-wrap .about-category__text:nth-child(3) {
  transition-delay: 300ms;
}

.about-category__actions.about-category__reveal {
  transition-delay: 400ms;
}

.about-category__reveal--image {
  transition-delay: 300ms;
}

@media (max-width: 980px) {
  .about-category__inner {
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
  }

  .about-category__content {
    max-width: none;
  }

  .about-category__image-wrapper {
    max-width: 480px;
    height: clamp(380px, 48vw, 480px);
    margin-left: 0;
    margin-right: auto;
  }

  .about-category__accent {
    top: 16px;
    right: -12px;
    bottom: -16px;
    left: 16px;
  }
}

@media (max-width: 640px) {
  .about-category {
    padding: clamp(64px, 12vw, 96px) 20px;
  }

  .about-category__title {
    font-size: clamp(2.25rem, 9vw, 2.75rem);
  }

  .about-category__image-wrapper {
    max-width: none;
    height: clamp(320px, 62vw, 420px);
  }

  .about-category__image:hover img {
    transform: none;
  }
}

/* ========================================
   WHY CHOOSE CATEGORY SECTION
======================================== */

.why-choose-category {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 64px);
  background: #104470;
  scroll-margin-top: calc(var(--header-height) + 24px);
  color: var(--white);
}

.why-choose-category__inner {
  width: min(100%, var(--container-max));
  margin: 0 auto;
}

.why-choose-category__header {
  max-width: min(100%, 1040px);
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}

.why-choose-category__title {
  margin: 0 0 clamp(16px, 2.5vw, 24px);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
}

.why-choose-category__intro {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.05vw, 1.125rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.why-choose-category__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 32px);
  margin-bottom: clamp(36px, 5vw, 56px);
}

.why-choose-category__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  transition: transform 0.75s var(--ease), background-color 0.75s var(--ease),
    border-color 0.75s var(--ease);
}

.why-choose-category__card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(42, 168, 154, 0.45);
}

.why-choose-category__number {
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--teal-soft);
}

.why-choose-category__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.75s var(--ease), background-color 0.75s var(--ease);
}

.why-choose-category__icon svg {
  width: 26px;
  height: 26px;
}

.why-choose-category__card:hover .why-choose-category__icon {
  color: var(--teal-soft);
  background: rgba(42, 168, 154, 0.14);
}

.why-choose-category__card-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

.why-choose-category__card-text {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.why-choose-category__actions {
  text-align: center;
}

.why-choose-category__reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.why-choose-category.is-visible .why-choose-category__reveal {
  opacity: 1;
  transform: translateY(0);
}

.why-choose-category__title.why-choose-category__reveal {
  transition-delay: 0ms;
}

.why-choose-category__intro.why-choose-category__reveal {
  transition-delay: 100ms;
}

.why-choose-category__grid .why-choose-category__card:nth-child(1) {
  transition-delay: 220ms;
}

.why-choose-category__grid .why-choose-category__card:nth-child(2) {
  transition-delay: 340ms;
}

.why-choose-category__grid .why-choose-category__card:nth-child(3) {
  transition-delay: 460ms;
}

.why-choose-category__actions.why-choose-category__reveal {
  transition-delay: 580ms;
}

@media (max-width: 980px) {
  .why-choose-category__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-choose-category__grid .why-choose-category__card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 520px;
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .why-choose-category {
    padding: clamp(64px, 12vw, 96px) 20px;
  }

  .why-choose-category__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-choose-category__grid .why-choose-category__card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }

  .why-choose-category__card {
    padding: 28px 24px;
  }

  .why-choose-category__card:hover {
    transform: none;
  }
}

/* ========================================
   CATEGORY HOW WE WORK SECTION
======================================== */

.category-process {
  padding: clamp(80px, 10vw, 140px) clamp(16px, 3.5vw, 40px);
  background: #C3D9DF;
  color: var(--navy);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.category-process__inner {
  width: min(100%, var(--container-max));
  margin: 0 auto;
}

.category-process__header {
  max-width: 960px;
  margin: 0 auto clamp(48px, 7vw, 72px);
  padding-inline: clamp(0px, 1.5vw, 12px);
  text-align: center;
}

.category-process__title {
  margin: 0 0 clamp(16px, 2.5vw, 24px);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--navy);
}

.category-process__intro {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.05vw, 1.125rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.category-process__timeline {
  position: relative;
}

.category-process__line {
  position: absolute;
  top: 74px;
  left: 10%;
  right: 10%;
  height: 3px;
  z-index: 0;
  pointer-events: none;
}

.category-process__line-track,
.category-process__line-draw {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 999px;
}

.category-process__line-track {
  width: 100%;
  background: rgba(42, 168, 154, 0.18);
}

.category-process__line-draw {
  width: 0;
  background: var(--teal);
  transition: width 2s var(--ease);
}

.category-process.is-visible .category-process__line-draw {
  width: 100%;
}

.category-process__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 32px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-align: center;
  transition: transform 0.75s var(--ease);
}

.category-process__step:hover {
  transform: translateY(-4px);
}

.category-process__number {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
  color: rgba(7, 19, 31, 0.08);
}

.category-process__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #C3D9DF;
  border: 2px solid var(--teal);
  box-shadow: 0 0 0 6px #C3D9DF, 0 8px 24px rgba(7, 19, 31, 0.08);
  color: var(--teal-dark);
  transition: color 0.75s var(--ease), box-shadow 0.75s var(--ease), border-color 0.75s var(--ease);
}

.category-process__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-process__icon svg {
  width: 24px;
  height: 24px;
}

.category-process__step:hover .category-process__marker {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 0 0 6px #C3D9DF, 0 0 22px rgba(42, 168, 154, 0.28);
}

.category-process__step-title {
  margin: 0 0 12px;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy);
  transition: color 0.75s var(--ease);
}

.category-process__step:hover .category-process__step-title {
  color: var(--teal-dark);
}

.category-process__step-text {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(7, 19, 31, 0.68);
}

.category-process__reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.category-process.is-visible .category-process__reveal {
  opacity: 1;
  transform: translateY(0);
}

.category-process__title.category-process__reveal {
  transition-delay: 0ms;
}

.category-process__intro.category-process__reveal {
  transition-delay: 100ms;
}

.category-process__line.category-process__reveal {
  transition-delay: 180ms;
}

.category-process__steps > li:nth-child(1) .category-process__step {
  transition-delay: 260ms;
}

.category-process__steps > li:nth-child(2) .category-process__step {
  transition-delay: 380ms;
}

.category-process__steps > li:nth-child(3) .category-process__step {
  transition-delay: 500ms;
}

.category-process__steps > li:nth-child(4) .category-process__step {
  transition-delay: 620ms;
}

@media (max-width: 980px) {
  .category-process__line {
    display: none;
  }

  .category-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 36px);
  }
}

@media (max-width: 640px) {
  .category-process {
    padding: clamp(64px, 12vw, 96px) 20px;
  }

  .category-process__title {
    font-size: clamp(2.1rem, 9vw, 2.75rem);
  }

  .category-process__steps {
    grid-template-columns: 1fr;
    gap: 36px;
    position: relative;
  }

  .category-process__steps::before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
      to bottom,
      rgba(127, 212, 200, 0.15),
      rgba(42, 168, 154, 0.45),
      rgba(127, 212, 200, 0.15)
    );
    z-index: 0;
  }

  .category-process__steps > li {
    position: relative;
    z-index: 1;
  }

  .category-process__step:hover {
    transform: none;
  }
}

.category-page .category-reviews {
  scroll-margin-top: calc(var(--header-height) + 24px);
  background: #C3D9DF;
}

.category-benefits {
  padding: clamp(48px, 7vw, 80px) 0;
  background: rgba(16, 68, 112, 0.04);
}

.category-benefits__inner {
  width: min(100% - 40px, var(--container-max));
  margin: 0 auto;
  max-width: 720px;
  text-align: center;
}

.category-benefits__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--product-accent);
}

.category-benefits__heading {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
}

.category-benefits__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.category-benefits__list li {
  position: relative;
  padding-left: 1.4rem;
  font-family: var(--font-ui);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(7, 19, 31, 0.68);
}

.category-benefits__list li + li {
  margin-top: 12px;
}

.category-benefits__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--product-accent);
  font-weight: 700;
}

.category-inquiry {
  padding: clamp(48px, 7vw, 80px) 0;
}

.category-inquiry__inner {
  width: min(100% - 40px, var(--container-max));
  margin: 0 auto;
  padding: clamp(32px, 5vw, 48px);
  border-radius: 24px;
  text-align: center;
  background: var(--navy);
  color: #fff;
}

.category-inquiry__heading {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.15;
}

.category-inquiry__text {
  margin: 0 auto 24px;
  max-width: 34rem;
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.category-nav {
  padding: 0 0 clamp(48px, 7vw, 72px);
}

.category-nav__inner {
  width: min(100% - 40px, var(--container-max));
  margin: 0 auto;
}

.category-nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.category-nav__link {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.category-nav__link:hover,
.category-nav__link:focus-visible {
  color: var(--product-accent);
}

.category-nav__link--all {
  font-weight: 600;
}

.category-other__heading {
  margin: 0 0 20px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  color: rgba(7, 19, 31, 0.48);
}

.category-other__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.category-other-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(7, 19, 31, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.category-other-card:hover,
.category-other-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(7, 19, 31, 0.1);
}

.category-other-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.category-other-card__title {
  display: block;
  padding: 10px 12px;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy);
}

.cp-reveal,
.cp-reveal-static {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.cp-reveal.is-visible,
.cp-reveal-static.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1280px) {
  .category-products__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .category-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .category-hero__inner {
    padding-inline: 32px;
  }

  .category-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .category-other__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .category-hero {
    min-height: 620px;
    padding: 140px 0 80px;
  }

  .category-hero__inner {
    padding-inline: 20px;
  }

  .category-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5, 13, 22, 0.88) 0%,
        rgba(5, 13, 22, 0.72) 42%,
        rgba(5, 13, 22, 0.55) 100%
      ),
      linear-gradient(
        90deg,
        rgba(5, 13, 22, 0.82) 0%,
        rgba(5, 13, 22, 0.62) 100%
      );
  }

  .category-hero__actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .category-hero__cta {
    justify-content: center;
    width: min(100%, 340px);
  }

  .category-products__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-nav__links {
    flex-direction: column;
  }

  .category-other__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-inquiry__inner .btn {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .category-other__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--teal-soft);
  outline-offset: 3px;
}

.product-card__name-link,
.popular-product-name-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.product-card__name-link:hover,
.product-card__name-link:focus-visible,
.popular-product-name-link:hover,
.popular-product-name-link:focus-visible {
  color: var(--product-btn);
}

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.product-page {
  background: var(--site-bg);
}

.product-detail {
  padding: clamp(32px, 5vw, 48px) 0 clamp(56px, 8vw, 88px);
}

.product-detail__inner {
  width: var(--container);
  margin: 0 auto;
}

.product-breadcrumb {
  margin-bottom: clamp(24px, 4vw, 36px);
}

.product-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  color: rgba(7, 19, 31, 0.62);
}

.product-breadcrumb__list li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.product-breadcrumb__list li + li::before {
  content: "/";
  color: rgba(7, 19, 31, 0.28);
}

.product-breadcrumb__list a {
  color: rgba(7, 19, 31, 0.72);
  transition: color 0.2s var(--ease);
}

.product-breadcrumb__list a:hover,
.product-breadcrumb__list a:focus-visible {
  color: var(--product-btn);
}

.product-breadcrumb__list li[aria-current="page"] {
  color: var(--navy);
  font-weight: 500;
}

.product-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.product-detail__gallery {
  opacity: 1;
  transform: none;
}

.product-detail__image-wrap {
  background: #f6f6f6;
  border: 1px solid rgba(7, 19, 31, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(7, 19, 31, 0.08);
}

.product-detail__image {
  display: block;
  width: 100%;
  min-height: clamp(320px, 42vw, 520px);
  object-fit: contain;
  object-position: center;
  background: #f6f6f6;
}

.product-detail__category {
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--product-accent);
}

.product-detail__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.product-detail__sku {
  margin: 0 0 18px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(7, 19, 31, 0.56);
}

.product-detail__description {
  margin: 0 0 22px;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.product-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.product-detail__tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(16, 68, 112, 0.08);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--product-btn);
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.product-detail__actions .btn-primary {
  color: #fff;
}

.product-detail__actions .btn-primary:hover,
.product-detail__actions .btn-primary:focus-visible {
  color: #fff;
}

.product-detail__actions .btn-outline {
  color: var(--navy);
  border-color: rgba(7, 19, 31, 0.24);
}

.product-detail__actions .btn-outline:hover,
.product-detail__actions .btn-outline:focus-visible {
  color: var(--navy);
  background: rgba(7, 19, 31, 0.05);
  border-color: rgba(7, 19, 31, 0.38);
}

.product-detail__trust {
  margin-bottom: 28px;
}

.product-detail__trust-badges {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 16px 8px;
  list-style: none;
  border-radius: 16px;
  background: #0d3150;
  overflow-x: auto;
  scrollbar-width: thin;
}

.product-detail__trust-badge {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 6px 14px;
}

.product-detail__trust-badge + .product-detail__trust-badge {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.product-detail__trust-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.product-detail__trust-icon svg {
  width: 22px;
  height: 22px;
}

.product-detail__trust-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.product-detail__trust-line {
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}

@media (max-width: 720px) {
  .product-detail__trust-badges {
    min-width: 100%;
  }

  .product-detail__trust-badge {
    flex: 0 0 auto;
    min-width: 132px;
  }
}

.product-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(7, 19, 31, 0.08);
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(7, 19, 31, 0.68);
}

.product-detail__meta p {
  margin: 0;
}

.product-detail__meta p + p {
  padding-left: 20px;
  border-left: 1px solid rgba(7, 19, 31, 0.12);
}

.product-detail__meta a {
  color: var(--product-btn);
}

.product-use-cases {
  padding: clamp(48px, 7vw, 72px) 0;
  background: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(7, 19, 31, 0.06);
}

.product-use-cases__inner {
  width: var(--container);
  margin: 0 auto;
}

.product-use-cases__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(20px, 3vw, 28px);
  align-items: stretch;
}

.product-use-cases__content {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 42px) clamp(28px, 4vw, 40px);
  background: #d4dde5;
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(7, 19, 31, 0.08);
}

.product-use-cases__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--teal);
  color: #fff;
}

.product-use-cases__icon svg {
  width: 24px;
  height: 24px;
}

.product-use-cases__heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

.product-use-cases__accent {
  display: block;
  width: 72px;
  height: 4px;
  margin: 14px 0 18px;
  border-radius: 999px;
  background: var(--teal);
}

.product-use-cases__intro {
  margin: 0 0 clamp(22px, 3vw, 28px);
  padding-bottom: clamp(22px, 3vw, 28px);
  border-bottom: 1px solid rgba(7, 19, 31, 0.12);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(7, 19, 31, 0.72);
}

.product-use-cases__list {
  display: grid;
  gap: clamp(16px, 2.5vw, 22px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-use-cases__item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.product-use-cases__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  flex-shrink: 0;
}

.product-use-cases__check svg {
  width: 16px;
  height: 16px;
}

.product-use-cases__item-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.78);
}

.product-use-cases__media {
  min-height: 100%;
}

.product-use-cases__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: clamp(360px, 42vw, 520px);
  padding: clamp(4px, 0.6vw, 8px);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(160deg, #8d99a6 0%, #758391 100%);
  box-shadow: 0 18px 48px rgba(7, 19, 31, 0.12);
}

.product-use-cases__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 28px rgba(7, 19, 31, 0.28));
}

.product-related {
  padding: clamp(48px, 7vw, 72px) 0 clamp(72px, 9vw, 96px);
  background: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(7, 19, 31, 0.06);
}

.product-related__inner {
  width: var(--container);
  margin: 0 auto;
}

.product-related__header {
  max-width: 720px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  text-align: center;
}

.product-related__heading {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
}

.product-related__intro {
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(7, 19, 31, 0.68);
}

.product-related__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-page-section + .product-page-section {
  border-top: 1px solid rgba(7, 19, 31, 0.06);
}

/* Product page: ensure section content is visible once JS marks parent */
.product-page .download-catalog.is-visible .download-catalog__reveal,
.product-page .why-choose-category.is-visible .why-choose-category__reveal {
  opacity: 1;
  transform: none;
}

.product-page .reviews-reveal.is-visible,
.product-page .faq-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.product-page .why-choose-category__actions {
  justify-content: center;
}

.product-detail-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.product-detail-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .product-detail__layout {
    grid-template-columns: 1fr;
  }

  .product-use-cases__layout {
    grid-template-columns: 1fr;
  }

  .product-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-detail__actions .btn {
    width: 100%;
  }

  .product-related__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .products-mega-menu,
  .products-mega-menu__card {
    transition: none;
  }

  .about-reveal {
    opacity: 1;
    transform: none;
  }

  .industries-reveal {
    opacity: 1;
    transform: none;
  }

  .industries-item:hover .industries-item-bg,
  .industries-item:focus-within .industries-item-bg {
    transform: none;
  }

  .why-hbcare-reveal {
    opacity: 1;
    transform: none;
  }

  .why-hbcare-feature:hover,
  .why-hbcare-feature:focus-within {
    transform: none;
  }

  .qp-reveal {
    opacity: 1;
    transform: none;
  }

  .pvs-reveal--left,
  .pvs-reveal--right,
  .pvs-reveal--header,
  .pvs-reveal--card {
    opacity: 1;
    transform: none;
  }

  .product-video-showcase__video {
    transition: none;
  }

  .qp-card.qp-reveal.is-visible:hover,
  .qp-card.qp-reveal.is-visible:focus-within {
    transform: none;
  }

  .reviews-reveal {
    opacity: 1;
    transform: none;
  }

  .faq-reveal {
    opacity: 1;
    transform: none;
  }

  .faq-panel {
    transition: none;
  }

  .faq-item.is-open .faq-icon--plus,
  .faq-item.is-open .faq-icon--minus,
  .faq-icon--minus {
    transition: none;
  }

  .contact-us-reveal {
    opacity: 1;
    transform: none;
  }

  .product-detail-reveal {
    opacity: 1;
    transform: none;
  }

  .pp-reveal,
  .pp-reveal-static {
    opacity: 1;
    transform: none;
  }

  .popular-product-card-inner:hover,
  .popular-product-card-inner:focus-within,
  .popular-product-card-inner:hover .popular-product-image,
  .popular-product-card-inner:focus-within .popular-product-image {
    transform: none;
  }

  .pp-modal-dialog {
    animation: none;
  }

  .product-hero__anim {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .pc-reveal {
    opacity: 1;
    transform: none;
  }

  .cp-reveal,
  .cp-reveal-static {
    opacity: 1;
    transform: none;
  }

  .about-category__reveal {
    opacity: 1;
    transform: none;
  }

  .about-category__image img,
  .about-category__image:hover img {
    transform: none;
  }

  .why-choose-category__reveal {
    opacity: 1;
    transform: none;
  }

  .why-choose-category__card,
  .why-choose-category__card:hover {
    transform: none;
  }

  .category-process__reveal {
    opacity: 1;
    transform: none;
  }

  .category-process__line-draw {
    width: 100%;
  }

  .category-process__step,
  .category-process__step:hover {
    transform: none;
  }

  .download-catalog__reveal,
  .download-catalog__reveal--visual {
    opacity: 1;
    transform: none;
  }

  .download-catalog__button:hover,
  .download-catalog__button:focus-visible {
    transform: none;
  }

  .category-hero__animate {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .product-card:hover .product-card__inner,
  .product-card:focus-within .product-card__inner,
  .product-card:hover .product-card__image img,
  .product-card:focus-within .product-card__image img {
    transform: none;
  }

  .pp-modal-dialog {
    animation: none;
  }

  .category-other-card:hover,
  .category-other-card:focus-visible {
    transform: none;
  }

  .product-category-card:hover,
  .product-category-card:focus-visible,
  .product-category-card:hover .product-category-card__image,
  .product-category-card:focus-visible .product-category-card__image {
    transform: none;
  }

  .product-category-card:hover .product-category-card__arrow,
  .product-category-card:focus-visible .product-category-card__arrow {
    opacity: 1;
    transform: none;
  }

  .reviews-slider-track {
    transition: none;
  }

  .why-choose-slide:not(.is-active),
  .why-choose-stat:not(.is-active),
  .why-choose-headline:not(.is-active),
  .why-choose-support:not(.is-active) {
    opacity: 0;
    visibility: hidden;
    transform: none;
    filter: none;
  }

  .why-choose-slide.is-active,
  .why-choose-stat.is-active,
  .why-choose-headline.is-active,
  .why-choose-support.is-active {
    opacity: 1;
    visibility: visible;
    transform: none;
    filter: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   ABOUT PAGE
======================================== */
.page-about {
  background: var(--site-bg);
  overflow-x: hidden;
}

.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;
}

/* ABOUT HERO */
.about-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  padding: clamp(64px, 8vw, 96px) clamp(16px, 3vw, 32px);
  overflow: hidden;
  background-color: var(--navy-deep);
}

.about-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 13, 22, 0.55) 0%, rgba(5, 13, 22, 0.72) 55%, rgba(5, 13, 22, 0.82) 100%),
    radial-gradient(circle at center, rgba(5, 13, 22, 0.2) 0%, rgba(5, 13, 22, 0.65) 100%);
}

.about-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: min(100%, 920px);
  margin: 0 auto;
}

.about-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-hero__heading {
  margin: 0 0 20px;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
}

.about-hero__text {
  margin: 0 0 32px;
  max-width: 62ch;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.about-hero__actions .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.about-hero__actions .btn-outline:hover,
.about-hero__actions .btn-outline:focus-visible {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.about-hero__anim {
  opacity: 0;
  transform: translateY(35px);
}

.about-hero.is-ready .about-hero__anim {
  animation: aboutHeroFadeIn 0.85s var(--ease) forwards;
}

.about-hero.is-ready .about-hero__heading {
  animation-delay: 0.1s;
}

.about-hero.is-ready .about-hero__text {
  animation-delay: 0.24s;
}

.about-hero.is-ready .about-hero__actions {
  animation-delay: 0.38s;
}

@keyframes aboutHeroFadeIn {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* OUR STORY */
.our-story {
  padding: clamp(72px, 9vw, 104px) 0;
  background: var(--site-bg);
}

.our-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  width: 100%;
  padding: 0 clamp(24px, 5vw, 64px);
}

.our-story__heading {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.our-story__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.our-story__text p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.our-story__media {
  position: relative;
  min-height: clamp(320px, 42vw, 520px);
  border-radius: 24px 24px 24px 10px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(7, 19, 31, 0.12);
}

.our-story__image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.our-story__media-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 19, 31, 0.08) 0%, rgba(7, 19, 31, 0.22) 100%);
}

/* WHO WE ARE */
.who-we-are {
  padding: clamp(80px, 10vw, 112px) 0;
  background: var(--white);
  border-top: 1px solid rgba(7, 19, 31, 0.06);
}

.who-we-are__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  padding: 0 clamp(24px, 5vw, 64px);
}

.who-we-are__heading {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.who-we-are__description {
  margin: 24px 0 0;
  max-width: 52ch;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.who-we-are__features {
  display: grid;
  gap: clamp(16px, 2vw, 20px);
}

.who-we-are__feature {
  padding: clamp(24px, 3vw, 32px);
  background: var(--site-bg);
  border: 1px solid rgba(7, 19, 31, 0.08);
  border-radius: 20px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.who-we-are__feature:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 68, 112, 0.18);
  box-shadow: 0 12px 32px rgba(7, 19, 31, 0.08);
}

.who-we-are__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--teal-dark);
}

.who-we-are__feature-icon svg {
  width: 100%;
  height: 100%;
}

.who-we-are__feature-title {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

.who-we-are__feature-text {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(0.98rem, 1.1vw, 1.04rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(7, 19, 31, 0.68);
}

/* MISSION & VISION */
.mission-vision {
  padding: clamp(72px, 9vw, 104px) 0;
  background: var(--site-bg);
}

.mission-vision__inner {
  padding: 0 clamp(24px, 5vw, 64px);
}

.mission-vision__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
}

.mission-vision__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  padding: clamp(32px, 4vw, 44px);
  border-radius: 28px;
  overflow: hidden;
}

.mission-vision__card--mission {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(7, 19, 31, 0.18);
}

.mission-vision__card--vision {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(7, 19, 31, 0.08);
  box-shadow: 0 12px 32px rgba(7, 19, 31, 0.06);
}

.mission-vision__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  color: var(--teal-soft);
}

.mission-vision__card--vision .mission-vision__icon {
  color: var(--teal-dark);
}

.mission-vision__icon svg {
  width: 100%;
  height: 100%;
}

.mission-vision__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.mission-vision__text {
  margin: 0;
  max-width: 48ch;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.15vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
}

.mission-vision__card--mission .mission-vision__text {
  color: rgba(255, 255, 255, 0.86);
}

.mission-vision__card--vision .mission-vision__text {
  color: rgba(7, 19, 31, 0.72);
}

/* WHAT WE PROVIDE */
.what-we-provide {
  padding: clamp(72px, 9vw, 104px) 0;
  background: var(--white);
  border-top: 1px solid rgba(7, 19, 31, 0.06);
}

.what-we-provide__inner {
  padding: 0 clamp(24px, 5vw, 64px);
}

.what-we-provide__header {
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  text-align: center;
}

.what-we-provide__heading {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.what-we-provide__intro {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.what-we-provide__grid {
  max-width: none;
}

/* WHY CHOOSE HB CARE */
.why-hbcare-about {
  padding: clamp(80px, 10vw, 112px) 0;
  background: var(--navy-deep);
  color: var(--white);
}

.why-hbcare-about__inner {
  padding: 0 clamp(24px, 5vw, 64px);
}

.why-hbcare-about__header {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  text-align: center;
}

.why-hbcare-about__heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.why-hbcare-about__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.why-hbcare-about__item {
  padding: clamp(28px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.why-hbcare-about__item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.why-hbcare-about__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

.why-hbcare-about__text {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(0.98rem, 1.1vw, 1.04rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

/* QUALITY COMMITMENT */
.quality-commitment {
  padding: clamp(72px, 9vw, 104px) 0;
  background: var(--site-bg);
}

.quality-commitment__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  padding: 0 clamp(24px, 5vw, 64px);
}

.quality-commitment__heading {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.quality-commitment__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.quality-commitment__text p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.quality-commitment__description {
  margin: 0 0 28px;
  max-width: 52ch;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.quality-commitment__cta {
  min-width: 180px;
}

.quality-commitment__visual {
  position: relative;
}

.quality-commitment__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px 24px 24px 10px;
  box-shadow: 0 20px 48px rgba(7, 19, 31, 0.12);
}

.quality-commitment__visual-accent {
  position: absolute;
  right: -12px;
  bottom: -12px;
  z-index: -1;
  width: 72%;
  height: 72%;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(16, 68, 112, 0.14), rgba(195, 217, 223, 0.5));
}

/* INDUSTRIES SUPPORT */
.industries-support .industries-header {
  margin-bottom: clamp(40px, 5vw, 56px);
}

.page-about .contact-us {
  border-top: 1px solid rgba(7, 19, 31, 0.06);
}

/* ABOUT PAGE REVEALS */
.ap-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.ap-reveal--image {
  transform: translateX(30px);
}

.ap-reveal--card {
  transform: translateY(25px);
}

.ap-reveal.is-visible {
  opacity: 1;
  transform: translate(0);
}

.what-we-provide__grid .product-card:nth-child(1).ap-reveal--card { transition-delay: 0.04s; }
.what-we-provide__grid .product-card:nth-child(2).ap-reveal--card { transition-delay: 0.08s; }
.what-we-provide__grid .product-card:nth-child(3).ap-reveal--card { transition-delay: 0.12s; }
.what-we-provide__grid .product-card:nth-child(4).ap-reveal--card { transition-delay: 0.16s; }
.what-we-provide__grid .product-card:nth-child(5).ap-reveal--card { transition-delay: 0.2s; }
.what-we-provide__grid .product-card:nth-child(6).ap-reveal--card { transition-delay: 0.24s; }

.why-hbcare-about__item:nth-child(1).ap-reveal--card { transition-delay: 0.06s; }
.why-hbcare-about__item:nth-child(2).ap-reveal--card { transition-delay: 0.12s; }
.why-hbcare-about__item:nth-child(3).ap-reveal--card { transition-delay: 0.18s; }
.why-hbcare-about__item:nth-child(4).ap-reveal--card { transition-delay: 0.24s; }

.mission-vision__card:nth-child(1).ap-reveal--card { transition-delay: 0.08s; }
.mission-vision__card:nth-child(2).ap-reveal--card { transition-delay: 0.16s; }

/* ABOUT PAGE RESPONSIVE */
@media (max-width: 980px) {
  .our-story__inner,
  .who-we-are__inner,
  .quality-commitment__inner,
  .mission-vision__grid,
  .why-hbcare-about__grid {
    grid-template-columns: 1fr;
  }

  .who-we-are__heading {
    max-width: none;
  }

  .ap-reveal--image {
    transform: translateY(30px);
  }
}

@media (max-width: 640px) {
  .about-hero__heading {
    font-size: clamp(2rem, 10vw, 2.8rem);
    max-width: none;
  }

  .about-hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .about-hero__actions .btn {
    width: 100%;
  }

  .our-story__media {
    min-height: 280px;
  }

  .who-we-are__heading {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }
}

@media (max-width: 400px) {
  .why-hbcare-about__grid {
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero__anim {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .ap-reveal,
  .ap-reveal--image,
  .ap-reveal--card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========================================
   CONTACT PAGE
======================================== */
.page-contact {
  background: var(--site-bg);
  overflow-x: hidden;
}

/* CONTACT HERO */
.contact-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  padding: clamp(64px, 8vw, 96px) clamp(16px, 3vw, 32px);
  overflow: hidden;
  background-color: var(--navy-deep);
}

.contact-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 13, 22, 0.55) 0%, rgba(5, 13, 22, 0.72) 55%, rgba(5, 13, 22, 0.82) 100%),
    radial-gradient(circle at center, rgba(5, 13, 22, 0.2) 0%, rgba(5, 13, 22, 0.65) 100%);
}

.contact-hero__decor {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.35;
}

.contact-hero__decor--one {
  top: 12%;
  right: 8%;
  width: clamp(120px, 18vw, 220px);
  height: clamp(120px, 18vw, 220px);
  border: 1px solid rgba(42, 168, 154, 0.35);
  background: radial-gradient(circle, rgba(42, 168, 154, 0.12) 0%, transparent 70%);
}

.contact-hero__decor--two {
  bottom: 10%;
  left: 6%;
  width: clamp(90px, 14vw, 160px);
  height: clamp(90px, 14vw, 160px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.contact-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: min(100%, 900px);
  margin: 0 auto;
}

.contact-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-hero__heading {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
}

.contact-hero__text {
  margin: 0 0 32px;
  max-width: 62ch;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.contact-hero__actions .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.contact-hero__actions .btn-outline:hover,
.contact-hero__actions .btn-outline:focus-visible {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.contact-hero__anim {
  opacity: 0;
  transform: translateY(35px);
}

.contact-hero.is-ready .contact-hero__anim {
  animation: contactHeroFadeIn 0.85s var(--ease) forwards;
}

.contact-hero.is-ready .contact-hero__heading { animation-delay: 0.1s; }
.contact-hero.is-ready .contact-hero__text { animation-delay: 0.24s; }
.contact-hero.is-ready .contact-hero__actions { animation-delay: 0.38s; }

@keyframes contactHeroFadeIn {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CONTACT MAIN (DETAILS + FORM) */
.contact-main {
  padding: clamp(72px, 9vw, 104px) 0;
  background: var(--site-bg);
}

.contact-main__inner {
  padding: 0 clamp(24px, 5vw, 64px);
}

.contact-main__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.15fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.contact-main__details-header {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.contact-main__details-heading {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.contact-main__details-intro {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.contact-main__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 1.8vw, 18px);
}

.contact-info__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: clamp(24px, 3vw, 32px);
  background: var(--white);
  border: 1px solid rgba(7, 19, 31, 0.08);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(7, 19, 31, 0.05);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.contact-info__card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 68, 112, 0.16);
  box-shadow: 0 14px 32px rgba(7, 19, 31, 0.08);
}

.contact-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--teal-dark);
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info__title {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

.contact-info__values {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info__link {
  font-family: var(--font-ui);
  font-size: clamp(0.98rem, 1.1vw, 1.04rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(7, 19, 31, 0.78);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.contact-info__link:hover,
.contact-info__link:focus-visible {
  color: var(--product-btn);
}

.contact-info__address,
.contact-info__text {
  margin: 0;
  font-style: normal;
  font-family: var(--font-ui);
  font-size: clamp(0.98rem, 1.1vw, 1.04rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(7, 19, 31, 0.72);
}

/* CONTACT FORM */
.contact-main__form-card {
  padding: clamp(28px, 3.5vw, 40px);
  background: var(--white);
  border: 1px solid rgba(7, 19, 31, 0.08);
  border-radius: 24px 24px 24px 10px;
  box-shadow: 0 16px 40px rgba(7, 19, 31, 0.08);
}

.contact-form-section__heading {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.contact-form-section__intro {
  margin: 0 0 28px;
  max-width: 56ch;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 20px);
  margin-bottom: clamp(16px, 2vw, 20px);
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__field--full {
  margin-bottom: clamp(16px, 2vw, 20px);
}

.contact-form__label {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}

.contact-form__required {
  color: var(--teal-dark);
}

.contact-form__input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  background: var(--site-bg);
  border: 1px solid rgba(7, 19, 31, 0.12);
  border-radius: 14px;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
}

.contact-form__input:focus-visible {
  outline: none;
  border-color: rgba(42, 168, 154, 0.55);
  box-shadow: 0 0 0 3px rgba(42, 168, 154, 0.16);
  background: var(--white);
}

.contact-form__input.is-invalid {
  border-color: rgba(180, 48, 48, 0.55);
  box-shadow: 0 0 0 3px rgba(180, 48, 48, 0.1);
}

.contact-form__select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(7, 19, 31, 0.55) 50%),
    linear-gradient(135deg, rgba(7, 19, 31, 0.55) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% + 2px),
    calc(100% - 12px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.contact-form__textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form__error {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: #b43030;
}

.contact-form__actions {
  margin-top: 8px;
}

.contact-form__submit {
  min-width: 200px;
}

.contact-form__success {
  margin-top: 20px;
  padding: 16px 18px;
  background: rgba(42, 168, 154, 0.1);
  border: 1px solid rgba(42, 168, 154, 0.24);
  border-radius: 14px;
}

.contact-form__success p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--navy);
}

/* CONTACT LOCATION */
.contact-location {
  padding: clamp(72px, 9vw, 104px) 0;
  background: var(--site-bg);
}

.contact-location__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 4vw, 48px);
  align-items: center;
  padding: 0 clamp(24px, 5vw, 64px);
}

.contact-location__heading {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.contact-location__intro {
  margin: 0 0 24px;
  max-width: 48ch;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.contact-location__address {
  margin: 0 0 24px;
  font-style: normal;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--navy);
}

.contact-location__map-frame {
  overflow: hidden;
  min-height: clamp(280px, 36vw, 420px);
  border: 1px solid rgba(7, 19, 31, 0.1);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(7, 19, 31, 0.06);
}

.contact-location__map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 36vw, 420px);
  border: 0;
}

.contact-faq {
  border-top: 1px solid rgba(7, 19, 31, 0.06);
}

/* CONTACT PAGE REVEALS */
.cp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.cp-reveal--image {
  transform: translateX(30px);
}

.cp-reveal--card {
  transform: translateY(25px);
}

.cp-reveal.is-visible {
  opacity: 1;
  transform: translate(0);
}

.contact-main__cards .contact-info__card:nth-child(1).cp-reveal--card { transition-delay: 0.04s; }
.contact-main__cards .contact-info__card:nth-child(2).cp-reveal--card { transition-delay: 0.08s; }
.contact-main__cards .contact-info__card:nth-child(3).cp-reveal--card { transition-delay: 0.12s; }

/* CONTACT PAGE RESPONSIVE */
@media (max-width: 980px) {
  .contact-main__layout,
  .contact-location__inner {
    grid-template-columns: 1fr;
  }

  .cp-reveal--image {
    transform: translateY(30px);
  }
}

@media (max-width: 640px) {
  .contact-hero__heading {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .contact-hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .contact-hero__actions .btn {
    width: 100%;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero__anim {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .cp-reveal,
  .cp-reveal--image,
  .cp-reveal--card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.hbc-whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body, "Outfit", sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hbc-whatsapp-float:hover,
.hbc-whatsapp-float:focus-visible {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
}

.hbc-whatsapp-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.hbc-whatsapp-float__text {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hbc-whatsapp-float {
    left: 16px;
    bottom: 16px;
    min-height: 52px;
    padding: 0 14px 0 12px;
    font-size: 0.9rem;
  }

  .hbc-whatsapp-float__icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hbc-whatsapp-float {
    transition: none;
  }
}

/* ABOUT TEAM */
.about-team {
  padding: clamp(80px, 10vw, 112px) 0;
  background: var(--white);
  border-top: 1px solid rgba(7, 19, 31, 0.06);
}

.about-team__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  padding: 0 clamp(24px, 5vw, 64px);
}

.about-team__heading {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.about-team__description {
  margin: 0 0 18px;
  max-width: 52ch;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

.about-team__description:last-child {
  margin-bottom: 0;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.about-team__card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 22px;
  overflow: hidden;
  background: var(--site-bg);
  box-shadow: 0 16px 40px rgba(7, 19, 31, 0.1);
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.about-team__card:hover,
.about-team__card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(7, 19, 31, 0.14);
  outline: none;
}

.about-team__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.about-team__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s var(--ease);
}

.about-team__card:hover .about-team__image,
.about-team__card:focus-visible .about-team__image {
  transform: scale(1.04);
}

.about-team__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 19, 31, 0) 42%, rgba(7, 19, 31, 0.82) 100%);
  pointer-events: none;
}

.about-team__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 18px 18px;
}

.about-team__name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}

.about-team__role {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.about-team__grid .about-team__card:nth-child(1).ap-reveal--card { transition-delay: 0.08s; }
.about-team__grid .about-team__card:nth-child(2).ap-reveal--card { transition-delay: 0.16s; }

.team-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.team-modal[hidden] {
  display: none;
}

body.team-modal-open {
  overflow: hidden;
}

.team-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 22, 0.72);
  backdrop-filter: blur(6px);
}

.team-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 28px 64px rgba(7, 19, 31, 0.24);
}

.team-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 19, 31, 0.08);
  color: var(--navy);
  cursor: pointer;
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.team-modal__close svg {
  width: 18px;
  height: 18px;
}

.team-modal__close:hover,
.team-modal__close:focus-visible {
  background: var(--white);
  transform: scale(1.04);
  outline: none;
}

.team-modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 420px;
}

.team-modal__media {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 100%;
  background: linear-gradient(180deg, #f7f9fa 0%, #eef3f5 100%);
}

.team-modal__image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
}

.team-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(28px, 4vw, 40px);
}

.team-modal__role {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal, #104470);
}

.team-modal__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.team-modal__text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.team-modal__text p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(7, 19, 31, 0.72);
}

@media (max-width: 960px) {
  .about-team__inner {
    grid-template-columns: 1fr;
  }

  .about-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-modal__grid {
    grid-template-columns: 1fr;
  }

  .team-modal__image {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .about-team__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .team-modal {
    padding: 16px;
  }

  .team-modal__content {
    padding: 24px 20px 28px;
  }
}
