/* ============================================================
   MedEquip Pro — Design System & Global Styles
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary palette */
  --primary-900: #0a1628;
  --primary-800: #0f2140;
  --primary-700: #152d55;
  --primary-600: #1b3a6b;
  --primary-500: #2563eb;
  --primary-400: #3b82f6;
  --primary-300: #60a5fa;
  --primary-200: #93c5fd;
  --primary-100: #dbeafe;
  --primary-50: #eff6ff;

  /* Accent — teal (matching Mediview brand) */
  --accent-600: #0891b2;
  --accent-500: #0d9488;
  --accent-400: #14b8a6;
  --accent-300: #5eead4;
  --accent-200: #99f6e4;
  --accent-100: #ccfbf1;

  /* Brand orange */
  --brand-orange: #f47920;
  --brand-orange-light: #f9a25e;

  /* Success / Trust — green */
  --success-500: #10b981;
  --success-400: #34d399;

  /* Neutral */
  --neutral-950: #0a0a0a;
  --neutral-900: #171717;
  --neutral-800: #262626;
  --neutral-700: #404040;
  --neutral-600: #525252;
  --neutral-500: #737373;
  --neutral-400: #a3a3a3;
  --neutral-300: #d4d4d4;
  --neutral-200: #e5e5e5;
  --neutral-100: #f5f5f5;
  --neutral-50: #fafafa;
  --white: #ffffff;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-700) 50%, var(--primary-600) 100%);
  --gradient-accent: linear-gradient(135deg, var(--brand-orange) 0%, var(--accent-500) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  --gradient-glow: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(244,121,32,0.08), transparent 40%);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 40px rgba(244,121,32,0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Sizing */
  --container-max: 1280px;
  --container-wide: 1440px;
  --header-h: 96px;
  --header-logo-height: 58px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  color: var(--neutral-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: 720px;
}

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

.section {
  padding: 100px 0;
}

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

.section--light {
  background: var(--neutral-50);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-500);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--primary-900);
  margin-bottom: 20px;
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--neutral-500);
  max-width: 600px;
  line-height: 1.8;
}

.section--dark .section-subtitle {
  color: var(--neutral-400);
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--duration-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn--primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(244,121,32,0.3);
}

.btn--primary::after {
  background: rgba(255,255,255,0.1);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,121,32,0.4);
}

.btn--outline {
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.btn--outline::after {
  background: rgba(255,255,255,0.05);
}

.btn--outline:hover {
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

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

.btn--dark:hover {
  background: var(--primary-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  color: var(--primary-500);
  padding: 14px 20px;
}

.btn--ghost:hover {
  background: var(--primary-50);
}

.btn--sm {
  font-size: 0.875rem;
  padding: 10px 24px;
}

.btn--lg {
  font-size: 1rem;
  padding: 18px 40px;
}

.btn svg,
.btn .btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-out);
}

.btn:hover svg,
.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* ---------- Header / Navbar ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  transition: all var(--duration-normal) var(--ease-out);
  overflow: visible;
}

.header--transparent {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  flex-shrink: 0;
  max-width: min(300px, 38vw);
}

.logo-tagline {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.03em;
  max-width: 100%;
  background: linear-gradient(
    110deg,
    #fb923c 0%,
    var(--brand-orange) 18%,
    var(--brand-orange-light) 38%,
    var(--accent-400) 58%,
    var(--primary-400) 78%,
    var(--accent-300) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.header .logo-img {
  height: var(--header-logo-height);
  width: auto;
  max-height: calc(var(--header-h) - 28px);
  object-fit: contain;
  mix-blend-mode: normal;
}

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

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--neutral-900);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  transition: all var(--duration-fast);
  position: relative;
}

.nav-link:hover,
.nav-link--active {
  color: var(--neutral-950);
  background: rgba(0, 0, 0, 0.06);
}

.nav-link--active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-orange);
}

/* Nav: Products dropdown (desktop) */
.nav {
  overflow: visible;
}

.nav-dropdown {
  position: relative;
  overflow: visible;
}

.nav-dropdown__trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
}

.nav-dropdown__chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.75;
  transition: transform var(--duration-fast) var(--ease-out);
}

.nav-dropdown:hover .nav-dropdown__chevron,
.nav-dropdown:focus-within .nav-dropdown__chevron {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 232px;
  padding: 6px;
  overflow: visible;
  background: rgba(12, 26, 48, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    visibility var(--duration-fast);
  z-index: 1002;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__item {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-sm);
  transition: background var(--duration-fast), color var(--duration-fast);
  white-space: nowrap;
}

.nav-dropdown__item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* Nested: Radiology Equipment → MRI, CT, X-Ray, Injectors */
.nav-dropdown__sub {
  position: relative;
}

.nav-dropdown__sub-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-align: left;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  transition: background var(--duration-fast), color var(--duration-fast);
  white-space: nowrap;
}

.nav-dropdown__sub-trigger:hover,
.nav-dropdown__sub-trigger:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
}

.nav-dropdown__sub-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.75;
  transition: transform var(--duration-fast) var(--ease-out);
}

.nav-dropdown__sub:hover .nav-dropdown__sub-chevron,
.nav-dropdown__sub:focus-within .nav-dropdown__sub-chevron,
.nav-dropdown__sub.is-open .nav-dropdown__sub-chevron {
  transform: translateX(2px);
}

.nav-dropdown__submenu {
  position: absolute;
  left: calc(100% + 4px);
  top: 0;
  min-width: 228px;
  padding: 6px;
  margin: 0;
  list-style: none;
  background: rgba(12, 26, 48, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-6px);
  transition:
    opacity var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    visibility var(--duration-fast);
  z-index: 1003;
}

.nav-dropdown__sub:hover .nav-dropdown__submenu,
.nav-dropdown__sub:focus-within .nav-dropdown__submenu,
.nav-dropdown__sub.is-open .nav-dropdown__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.nav-dropdown__submenu-link {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-sm);
  transition: background var(--duration-fast), color var(--duration-fast);
  white-space: nowrap;
}

.nav-dropdown__submenu-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.nav-dropdown__trigger.nav-link--active::after {
  left: calc(50% - 7px);
}

/* Mobile nav: product category sublinks */
.mobile-nav__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-500);
  padding: 20px 0 8px;
  margin-top: 4px;
}

.mobile-nav__sublink {
  display: block;
  font-family: var(--font-sans);
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: var(--neutral-800) !important;
  padding: 10px 0 10px 12px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-left: 2px solid rgba(13, 148, 136, 0.45);
  margin-left: 4px;
}

.mobile-nav__sublink:hover {
  color: var(--brand-orange) !important;
}

.mobile-nav__sublink--nested {
  padding-left: 28px !important;
  font-size: 0.9375rem !important;
  border-left-color: rgba(13, 148, 136, 0.2) !important;
}

/* Mobile: Radiology accordion */
.mobile-nav__accordion {
  margin-left: 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav__accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0 10px 12px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--neutral-800);
  text-align: left;
  border: none;
  border-left: 2px solid rgba(13, 148, 136, 0.45);
  background: transparent;
  cursor: pointer;
}

.mobile-nav__accordion-trigger:hover {
  color: var(--brand-orange);
}

.mobile-nav__accordion-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform var(--duration-fast) var(--ease-out);
}

.mobile-nav__accordion-trigger[aria-expanded="true"] .mobile-nav__accordion-chevron {
  transform: rotate(180deg);
}

.mobile-nav__accordion-panel {
  padding-bottom: 4px;
}

.mobile-nav__accordion-panel[hidden] {
  display: none;
}

.nav-cta {
  margin-left: 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
}

/* ---------- Mobile Nav ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  padding: 120px 32px 40px;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all var(--duration-normal) var(--ease-out);
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-900);
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: color var(--duration-fast);
}

.mobile-nav a:hover {
  color: var(--brand-orange);
}

/* ---------- Site mast accent (inner pages — echoes home top-slider light) ---------- */
.site-mast-accent {
  display: block;
  width: 100%;
  margin-top: var(--header-h);
  height: clamp(44px, 7vw, 68px);
  position: relative;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(248, 250, 252, 0.98) 0%,
      rgba(255, 255, 255, 0.96) 48%,
      rgba(253, 224, 200, 0.55) 82%,
      rgba(244, 121, 32, 0.28) 100%
    ),
    radial-gradient(ellipse 70% 140% at 92% -10%, rgba(244, 121, 32, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 55% 100% at 18% 100%, rgba(13, 148, 136, 0.14) 0%, transparent 52%),
    linear-gradient(180deg, #f8fafc 0%, var(--white) 100%);
  border-bottom: 1px solid rgba(15, 33, 64, 0.06);
  box-shadow: 0 10px 36px -18px rgba(244, 121, 32, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  .site-mast-accent {
    box-shadow: none;
  }
}

/* ---------- Home top slider (index — below navbar) ---------- */
.home-top-slider {
  margin-top: var(--header-h);
  position: relative;
  z-index: 1;
  background: var(--primary-900);
}

.home-top-slider__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: min(340px, 44vh);
  max-height: min(480px, 52vh);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.12),
    0 12px 32px -8px rgba(15, 23, 42, 0.28);
}

.home-top-slider__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.home-top-slider__progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-500), #22d3ee);
  border-radius: 0 2px 2px 0;
  transition: width 0.08s linear;
}

.home-top-slider__progress-fill.is-animating {
  animation: homeTopSliderProgress var(--home-top-slider-autoplay, 5.5s) linear forwards;
}

@keyframes homeTopSliderProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.home-top-slider__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

.home-top-slider__slide {
  position: relative;
  flex: 0 0 auto;
  min-height: min(340px, 44vh);
  max-height: min(480px, 52vh);
  overflow: hidden;
}

.home-top-slider__slide img {
  width: 100%;
  height: 100%;
  min-height: min(340px, 44vh);
  max-height: min(480px, 52vh);
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.home-top-slider__slide.is-active img {
  transform: scale(1);
}

.home-top-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 20, 38, 0.92) 0%,
    rgba(10, 22, 40, 0.55) 42%,
    rgba(15, 30, 50, 0.18) 100%
  );
  pointer-events: none;
}

.home-top-slider__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(13, 148, 136, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.home-top-slider__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  padding: clamp(1.35rem, 4.5vw, 2.75rem) clamp(1rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: min(720px, 92vw);
  z-index: 2;
}

.home-top-slider__content-inner {
  padding: clamp(1rem, 3vw, 1.35rem) clamp(1.1rem, 3vw, 1.5rem);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.home-top-slider__kicker {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #5eead4;
  margin-bottom: 0.5rem;
}

.home-top-slider__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.4);
}

.home-top-slider__text {
  font-size: clamp(0.8125rem, 1.55vw, 0.9375rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  margin: 0 0 1.1rem;
  max-width: 34rem;
}

.home-top-slider__content .btn {
  box-shadow: 0 4px 22px rgba(13, 148, 136, 0.35);
  transition: transform var(--duration-fast), box-shadow var(--duration-fast);
}

.home-top-slider__content .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(13, 148, 136, 0.4);
}

.home-top-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 18, 35, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--duration-fast),
    border-color var(--duration-fast),
    transform var(--duration-fast),
    box-shadow var(--duration-fast);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.home-top-slider__arrow:hover:not(:disabled) {
  background: rgba(244, 121, 32, 0.42);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-50%) scale(1.05);
}

.home-top-slider__arrow:focus-visible {
  outline: 2px solid var(--accent-400);
  outline-offset: 3px;
}

.home-top-slider__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.home-top-slider__arrow svg {
  width: 22px;
  height: 22px;
}

.home-top-slider__arrow--prev {
  left: clamp(0.65rem, 2.2vw, 1.5rem);
}

.home-top-slider__arrow--next {
  right: clamp(0.65rem, 2.2vw, 1.5rem);
}

.home-top-slider__dots {
  position: absolute;
  bottom: clamp(1rem, 2.5vw, 1.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  background: rgba(8, 18, 35, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-top-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.35s ease, background 0.25s ease, transform 0.25s ease;
}

.home-top-slider__dot:hover {
  background: rgba(255, 255, 255, 0.65);
}

.home-top-slider__dot.active {
  width: 24px;
  background: linear-gradient(90deg, var(--accent-500), #2dd4bf);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .home-top-slider__track {
    transition-duration: 0.01ms;
  }

  .home-top-slider__slide img {
    transform: none;
    transition: none;
  }

  .home-top-slider__progress-fill.is-animating {
    animation: none;
    width: 100%;
    opacity: 0.35;
  }
}

@media (max-width: 768px) {
  .home-top-slider__viewport {
    min-height: 260px;
    max-height: 380px;
    border-radius: 0;
    box-shadow: none;
  }

  .home-top-slider__slide {
    min-height: 260px;
    max-height: 380px;
  }

  .home-top-slider__slide img {
    min-height: 260px;
    max-height: 380px;
  }

  .home-top-slider__content-inner {
    padding: 0.75rem 0.9rem;
    background: rgba(0, 0, 0, 0.2);
  }

  .home-top-slider__arrow {
    width: 40px;
    height: 40px;
  }

  .home-top-slider__dots {
    bottom: 0.65rem;
    padding: 6px 10px;
  }

  .home-top-slider__text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ---------- News ---------- */
.section--news {
  padding: clamp(72px, 10vw, 120px) 0;
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(37, 99, 235, 0.06), transparent 55%),
    radial-gradient(700px 380px at 92% 20%, rgba(244, 121, 32, 0.05), transparent 50%),
    linear-gradient(180deg, var(--neutral-50) 0%, var(--white) 42%, var(--neutral-100) 100%);
}

.news-list {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: clamp(1rem, 3vw, 1.75rem);
}

.news-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-out), border-color var(--duration-fast) ease;
}

.news-card:not(.news-card--with-media):hover {
  border-color: rgba(244, 121, 32, 0.28);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.news-card--with-media {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.news-card--with-media::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0.92;
  z-index: 1;
}

.news-card--with-media:hover {
  border-color: rgba(244, 121, 32, 0.22);
  box-shadow: 0 20px 50px rgba(15, 33, 64, 0.12);
}

.news-card__media-col {
  position: relative;
  min-height: 0;
  background: var(--neutral-100);
}

.news-card__media-col--full {
  width: 100%;
}

.news-card__figure {
  margin: 0;
  overflow: hidden;
  background: var(--neutral-200);
}

.news-card__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: transform var(--duration-slow) var(--ease-out);
}

.news-card--split .news-card__figure {
  height: 100%;
  min-height: 300px;
}

.news-card--split .news-card__figure img {
  height: 100%;
  max-height: none;
  min-height: 320px;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .news-card--with-media:hover .news-card__figure img,
  .news-card--with-media:hover .news-gallery__item img {
    transform: scale(1.03);
  }
}

.news-card__body {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-bottom: 0.65rem;
}

.news-card__kicker {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-orange);
}

.news-card__meta .news-card__date {
  margin-bottom: 0;
}

.news-card__date {
  display: inline;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--neutral-500);
  letter-spacing: 0.02em;
}

.news-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary-900);
  margin: 0 0 1rem;
  line-height: 1.28;
  max-width: 38ch;
}

.news-card__prose {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--neutral-600);
}

.news-card__prose p {
  margin: 0 0 1rem;
}

.news-card__prose p:last-child {
  margin-bottom: 0;
}

.section--news .news-card__prose ul {
  margin: 0 0 1.1rem;
  padding-left: 1.15rem;
  list-style: disc;
}

.section--news .news-card__prose li {
  margin-bottom: 0.45rem;
  padding-left: 0.2rem;
}

.news-card__prose strong {
  color: var(--neutral-800);
  font-weight: 600;
}

/* Split layout: image + copy side by side */
.news-card--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: 0;
}

.news-card--split .news-card__media-col {
  align-self: stretch;
}

.news-card--split .news-card__figure {
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  height: 100%;
}

.news-card--split-reverse .news-card__media-col {
  order: 2;
}

.news-card--split-reverse .news-card__figure {
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

.news-card--split .news-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Team story: bento gallery */
.news-card--gallery-feature .news-card__media-col--full {
  padding: clamp(10px, 1.5vw, 14px);
  padding-bottom: 0;
  background: linear-gradient(165deg, var(--neutral-100) 0%, var(--white) 45%, var(--neutral-50) 100%);
}

.news-gallery {
  display: grid;
  gap: 8px;
  margin: 0;
}

.news-gallery--bento {
  grid-template-columns: 1.2fr 0.88fr;
  grid-template-rows: 1fr 1fr;
  min-height: 280px;
  border-radius: calc(var(--radius-xl) - 6px);
  overflow: hidden;
}

.news-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--neutral-200);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.news-gallery__item--lead {
  grid-row: 1 / -1;
  border-radius: var(--radius-md);
  aspect-ratio: auto;
  min-height: 100%;
}

.news-gallery--bento .news-gallery__item:not(.news-gallery__item--lead) {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.news-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--duration-slow) var(--ease-out);
}

.news-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  margin-top: 1.35rem;
  align-items: center;
}

.news-card__btn {
  flex-shrink: 0;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-600);
  text-decoration: none;
  transition: color var(--duration-fast) ease, gap var(--duration-fast) ease;
}

.news-card__link:hover {
  color: var(--brand-orange);
  gap: 0.5rem;
}

.news-card__link--inline {
  font-weight: 500;
  color: var(--neutral-600);
}

.news-card__link--inline:hover {
  color: var(--primary-700);
}

.news-card__excerpt {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--neutral-600);
  margin: 0 0 1.1rem;
}

@media (max-width: 960px) {
  .news-card--split,
  .news-card--split-reverse {
    grid-template-columns: 1fr;
  }

  .news-card--split .news-card__media-col,
  .news-card--split-reverse .news-card__media-col {
    order: 0;
  }

  .news-card--split .news-card__body,
  .news-card--split-reverse .news-card__body {
    order: 1;
  }

  .news-card--split .news-card__figure,
  .news-card--split-reverse .news-card__figure {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    min-height: 240px;
  }

  .news-card--split .news-card__figure img,
  .news-card--split-reverse .news-card__figure img {
    min-height: 260px;
  }

  .news-gallery--bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .news-gallery__item--lead {
    grid-row: 1 / 2;
    grid-column: 1 / -1;
    max-height: 280px;
  }

  .news-gallery--bento .news-gallery__item:not(.news-gallery__item--lead) {
    aspect-ratio: 1;
    max-height: 200px;
  }
}

@media (max-width: 768px) {
  .news-card:not(.news-card--with-media) {
    padding: 1.1rem 1rem;
  }

  .news-card__body {
    padding: 1.2rem 1.1rem;
  }

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

  .news-gallery__item--lead {
    max-height: 320px;
  }

  .news-gallery--bento .news-gallery__item:not(.news-gallery__item--lead) {
    aspect-ratio: 16 / 10;
    max-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-card--with-media:hover .news-card__figure img,
  .news-card--with-media:hover .news-gallery__item img {
    transform: none;
  }

  .news-card:not(.news-card--with-media):hover {
    transform: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(6,182,212,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(37,99,235,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: var(--header-h);
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: 6px 16px 6px 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent-300);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success-400);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52,211,153,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary-800);
  margin-left: -10px;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.trust-text strong {
  color: var(--white);
  font-weight: 600;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}

.hero-card-inner {
  text-align: center;
  padding: 40px;
}

.hero-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gradient-accent);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(244,121,32,0.25);
}

.hero-card-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.hero-card-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* Floating elements */
.hero-float {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}

.hero-float--1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.hero-float--2 {
  bottom: 15%;
  left: -5%;
  animation-delay: -2s;
}

.hero-float--3 {
  bottom: 5%;
  right: 5%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-float-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.hero-float-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.hero-float-sub {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  position: relative;
  z-index: 10;
  margin-top: -50px;
  padding-bottom: 20px;
}

.stats-bar .container {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 40px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat {
  text-align: center;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--neutral-200);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.stat-number .accent {
  color: var(--accent-500);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--neutral-500);
  font-weight: 500;
  margin-top: 4px;
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.feature-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--duration-normal) var(--ease-out);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--duration-normal) var(--ease-out);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-accent);
  box-shadow: 0 8px 24px rgba(244,121,32,0.25);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-500);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--duration-normal);
}

.feature-card:hover .feature-icon svg {
  stroke: var(--white);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 12px;
}

.feature-text {
  font-size: 0.9375rem;
  color: var(--neutral-500);
  line-height: 1.7;
}

/* ---------- Products Preview ---------- */
.products-preview {
  background: var(--neutral-50);
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
  position: relative;
  box-shadow: var(--shadow-card);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  z-index: 2;
  pointer-events: none;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 33, 64, 0.12);
  border-color: rgba(244, 121, 32, 0.22);
}

.product-card:focus-within {
  outline: none;
  box-shadow: 0 0 0 3px var(--white), 0 0 0 6px rgba(244, 121, 32, 0.4);
}

.product-image {
  aspect-ratio: 4/3;
  background: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-normal) var(--ease-out);
}

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

/* Laboratory catalog: show full equipment without heavy cropping */
.product-card--lab .product-image--lab img {
  object-fit: contain;
  padding: 12px 14px;
  box-sizing: border-box;
}

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

.product-image svg {
  width: 64px;
  height: 64px;
  stroke: var(--neutral-400);
  fill: none;
  stroke-width: 1;
  transition: all var(--duration-normal) var(--ease-out);
}

.product-card:hover .product-image svg {
  stroke: var(--accent-500);
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gradient-accent);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.product-body {
  padding: 24px;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-500);
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 8px;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.product-desc {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-500);
  transition: gap var(--duration-normal) var(--ease-out);
}

.product-link:hover {
  gap: 10px;
}

.product-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ---------- Why Choose Us / Value Props ---------- */
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.value-image {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.value-image svg {
  width: 120px;
  height: 120px;
  stroke: var(--accent-400);
  fill: none;
  stroke-width: 0.8;
  opacity: 0.6;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.value-item {
  display: flex;
  gap: 20px;
}

.value-item-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: rgba(6,182,212,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-400);
  fill: none;
  stroke-width: 1.5;
}

.value-item-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 6px;
}

.value-item-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ---------- ANKE Distributor Showcase ---------- */
.anke-distributor-card {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 48px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--neutral-100);
  background: var(--white);
  text-decoration: none;
  text-align: left;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.anke-distributor-card:hover {
  border-color: var(--accent-400);
  box-shadow: 0 16px 48px rgba(13,148,136,0.1);
  transform: translateY(-4px);
}

.anke-logo-wrap {
  flex-shrink: 0;
  width: 140px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--neutral-100);
  padding-right: 40px;
}

.anke-logo {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

.anke-distributor-info {
  flex: 1;
}

.anke-distributor-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--gradient-accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.anke-distributor-desc {
  font-size: 0.9rem;
  color: var(--neutral-600);
  line-height: 1.65;
  margin-bottom: 16px;
}

.anke-distributor-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-500);
  transition: color 0.2s;
}

.anke-distributor-card:hover .anke-distributor-cta {
  color: var(--primary-700);
}

@media (max-width: 640px) {
  .anke-distributor-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 28px;
    gap: 24px;
  }
  .anke-logo-wrap {
    border-right: none;
    border-bottom: 1px solid var(--neutral-100);
    padding-right: 0;
    padding-bottom: 24px;
    width: 120px;
  }
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--duration-normal) var(--ease-out);
}

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

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: #fbbf24;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
}

.testimonial-name {
  font-weight: 600;
  color: var(--primary-900);
  font-size: 0.9375rem;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--neutral-500);
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(6,182,212,0.1), transparent 50%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--neutral-950);
  color: var(--neutral-400);
  padding: 2rem 0 0;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: start;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 0.5rem;
}

.footer .logo-img {
  height: 36px;
}

.footer-brand-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
  color: var(--neutral-400);
  font-style: italic;
  font-weight: 400;
}

.footer-brand-text .footer-brand-highlight,
.footer-brand-text .footer-brand-accent,
.footer-brand-text .footer-brand-rest,
.footer-brand-text .footer-brand-place {
  color: var(--neutral-400);
  font-weight: 400;
  font-style: italic;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--neutral-400);
  background-clip: unset;
}

.footer-brand-text strong,
.footer-brand-text b {
  font-weight: 400;
}

/* Reusable gradient for headings (e.g. About page) */
.section-title--gradient {
  background: linear-gradient(
    115deg,
    #ea580c 0%,
    var(--brand-orange) 18%,
    var(--accent-500) 45%,
    var(--primary-500) 72%,
    var(--accent-400) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links.footer-links--three-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0.75rem;
  row-gap: 0.45rem;
}

@media (max-width: 640px) {
  .footer-links.footer-links--three-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 400px) {
  .footer-links.footer-links--three-col {
    grid-template-columns: 1fr;
  }
}

.footer-links a {
  font-size: 0.9375rem;
  line-height: 1.35;
  color: var(--neutral-500);
  font-style: italic;
  transition: color var(--duration-fast);
}

.footer-links a:hover {
  color: var(--accent-400);
}

/* PACS page (HTML content, no PDF) */
.pacs-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.pacs-intro-visual {
  border-radius: var(--radius-xl);
  background: var(--neutral-50);
  border: 1px solid var(--neutral-100);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pacs-intro-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

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

.pacs-feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
}

.pacs-feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--white);
  margin: 0 0 10px;
}

.pacs-feature-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .pacs-intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pacs-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .pacs-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: var(--neutral-600);
  flex-shrink: 0;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast);
}

.footer-socials a:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--accent-500);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: var(--neutral-500);
  transition: fill var(--duration-fast);
}

.footer-socials a:hover svg {
  fill: var(--accent-400);
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  background: var(--gradient-hero);
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(6,182,212,0.06), transparent 60%);
  pointer-events: none;
}

.page-header .hero-grid {
  position: absolute;
  inset: 0;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header .section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.page-header .section-subtitle {
  color: rgba(255,255,255,0.6);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.4);
  transition: color var(--duration-fast);
}

.breadcrumb a:hover {
  color: var(--accent-400);
}

.breadcrumb .sep {
  opacity: 0.3;
}

/* Gallery page hero */
.page-header--gallery {
  padding-bottom: clamp(120px, 18vw, 160px);
}

/* About page hero (matches gallery treatment) */
.page-header--about {
  padding-bottom: clamp(120px, 18vw, 160px);
}

.page-header-kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin: 0 0 10px;
}

.page-header__title-treatment.section-title {
  margin-bottom: 18px;
}

.page-header__lead.section-subtitle {
  max-width: 560px;
  line-height: 1.75;
}

.page-header--detail.page-header--catalog {
  padding-bottom: clamp(72px, 11vw, 100px);
}

.page-header__lead--detail {
  margin-top: 6px;
  margin-bottom: 0;
  max-width: 520px;
}

.section--detail-hero {
  padding-top: clamp(36px, 5vw, 52px) !important;
  padding-bottom: clamp(48px, 7vw, 72px) !important;
}

.page-detail .pd-gallery-viewport {
  border: 1px solid var(--neutral-200);
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.08),
    0 14px 36px -12px rgba(15, 33, 64, 0.12),
    var(--shadow-lg);
}

.page-detail .pd-main-image {
  border-radius: 0;
  box-shadow: none;
  border: none;
  overflow: hidden;
}

.page-detail .pd-info {
  padding-top: 4px;
}

/* ---------- Products Page ---------- */
.page-header--catalog {
  padding-bottom: clamp(110px, 16vw, 155px);
}

.section--catalog {
  padding-top: clamp(40px, 5vw, 56px);
  background:
    radial-gradient(880px 360px at 8% -8%, rgba(37, 99, 235, 0.05), transparent 55%),
    radial-gradient(640px 300px at 92% 12%, rgba(244, 121, 32, 0.04), transparent 48%),
    linear-gradient(180deg, var(--neutral-50) 0%, var(--white) 42%, var(--neutral-100) 100%);
}

.products-toolbar {
  margin-top: clamp(-40px, -5.5vw, -32px);
  margin-bottom: clamp(28px, 4vw, 44px);
  position: relative;
  z-index: 4;
}

.products-toolbar__inner {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(16px, 2.5vw, 22px) clamp(18px, 3vw, 26px);
  border: 1px solid var(--neutral-200);
  box-shadow:
    0 4px 6px -1px rgba(15, 33, 64, 0.06),
    0 18px 40px -14px rgba(15, 33, 64, 0.11);
  position: sticky;
  top: calc(var(--header-h) - 4px);
}

.products-toolbar__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-500);
  margin: 0 0 14px;
  text-align: center;
}

.page-products .products-filter {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .products-toolbar__inner {
    position: relative;
    top: auto;
    padding: 14px 16px;
  }

  .products-toolbar {
    margin-top: -18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card:hover {
    transform: none;
  }

  .product-card:hover .product-image img {
    transform: none;
  }
}

.products-filter {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.products-filter__radiology {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
  background: linear-gradient(180deg, var(--neutral-50) 0%, var(--white) 100%);
  max-width: 100%;
}

.products-filter__radiology-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neutral-600);
  width: 100%;
  text-align: center;
}

.products-filter__radiology-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

@media (min-width: 960px) {
  .products-filter__radiology {
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
  }

  .products-filter__radiology-label {
    width: auto;
    text-align: left;
    margin-right: 4px;
  }

  .products-filter__radiology-label::after {
    content: ':';
    margin-left: 2px;
    margin-right: 4px;
    font-weight: 700;
    color: var(--neutral-400);
  }
}

.filter-btn {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--neutral-200);
  color: var(--neutral-600);
  background: var(--white);
  transition: all var(--duration-fast);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--primary-500);
  color: var(--primary-500);
}

.filter-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--white), 0 0 0 6px rgba(37, 99, 235, 0.45);
}

.filter-btn.active {
  background: var(--gradient-accent);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 8px 22px rgba(244, 121, 32, 0.28);
}

.products-full-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 32px);
}

/* Contrast media section intro (full-width row in product grid) */
.products-section-intro {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.products-section-intro-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(37, 99, 235, 0.06) 100%);
  border: 1px solid rgba(13, 148, 136, 0.2);
  box-shadow: var(--shadow-card);
}

.products-section-intro-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--accent-500), var(--primary-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.products-section-intro-icon svg {
  width: 28px;
  height: 28px;
}

.products-section-intro-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.products-section-intro-text {
  font-size: 0.98rem;
  color: var(--neutral-600);
  line-height: 1.75;
  max-width: 820px;
  margin: 0;
}

@media (max-width: 640px) {
  .products-section-intro-inner {
    flex-direction: column;
    padding: 22px 20px;
  }
}

/* Contrast: schematic “video” (SVG loop) */
.contrast-pathway-block {
  grid-column: 1 / -1;
  margin-bottom: 16px;
}

.contrast-pathway-head {
  margin-bottom: 16px;
}

.contrast-pathway-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.contrast-pathway-sub {
  font-size: 0.9rem;
  color: var(--neutral-600);
  margin: 0;
  max-width: 720px;
  line-height: 1.6;
}

.contrast-pathway-screen {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 520 / 340;
  max-height: min(420px, 52vw);
  margin: 0 auto;
}

.contrast-pathway-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contrast-flow-line {
  stroke-dasharray: 18 14;
  stroke-dashoffset: 0;
}

.contrast-flow-line--iv {
  animation: contrastFlowIv 16s linear infinite;
}

.contrast-flow-line--oral {
  stroke-dasharray: 14 12;
  animation: contrastFlowOral 20s linear infinite;
  opacity: 0.95;
}

@keyframes contrastFlowIv {
  to {
    stroke-dashoffset: -400;
  }
}

@keyframes contrastFlowOral {
  to {
    stroke-dashoffset: -360;
  }
}

.contrast-pathway-foot {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  margin-top: 12px;
  margin-bottom: 0;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
  .contrast-flow-line--iv,
  .contrast-flow-line--oral {
    animation: none;
  }
}

/* ---------- About Page ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  font-size: 1.0625rem;
  color: var(--neutral-600);
  line-height: 1.9;
}

.about-text p + p {
  margin-top: 20px;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--neutral-200);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 40px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 40px);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient-accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.2);
  z-index: 2;
}

.timeline-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--accent-500);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.9375rem;
  color: var(--neutral-600);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.cert-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

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

.cert-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-50);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-500);
  fill: none;
  stroke-width: 1.5;
}

.cert-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--primary-900);
  margin-bottom: 4px;
}

.cert-desc {
  font-size: 0.8125rem;
  color: var(--neutral-500);
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--duration-normal) var(--ease-out);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-500);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-900);
  margin-bottom: 4px;
}

.contact-info-text {
  font-size: 0.9375rem;
  color: var(--neutral-500);
  line-height: 1.6;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-700);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--neutral-800);
  background: var(--neutral-50);
  transition: all var(--duration-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23737373' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6l3.5 4 3.5-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-submit {
  margin-top: 8px;
}

/* Honeypot for FormSubmit (leave empty — blocks naive bots) */
.contact-form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-error {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #b91c1c;
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-error[hidden] {
  display: none !important;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Product catalog grid: show cards immediately so thumbnails are never stuck at opacity 0
   (IntersectionObserver can lag on file:// or very tall pages; lab cards already force .visible). */
#productsGrid .product-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .products-full-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .value-grid { grid-template-columns: 1fr; gap: 40px; }
  .value-image { max-width: 400px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 60px auto 0; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .certifications-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 32px 40px; }
  .stat:nth-child(2)::after { display: none; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 100%; margin: 0; }
  .products-full-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 100%; margin: 0; gap: 24px; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; padding: 24px 28px; }
  .stat::after { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-header { padding: 130px 0 70px; }
  .certifications-grid { grid-template-columns: 1fr; max-width: 340px; margin: 50px auto 0; }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding: 0 0 0 40px;
    flex-direction: row;
    text-align: left;
  }
  .timeline::before { left: 8px; }
  .timeline-dot { left: 8px; }
  .contact-form { padding: 32px 24px; }
}

@media (max-width: 640px) {
  :root {
    --header-h: 72px;
    --header-logo-height: 52px;
  }
  .logo-tagline {
    display: none;
  }
  .header-brand {
    max-width: none;
  }
  .header .logo-img {
    max-height: calc(var(--header-h) - 16px);
  }
}

@media (max-width: 480px) {
  .stats-bar .container { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .btn--lg { padding: 14px 28px; font-size: 0.9375rem; }
  .products-grid,
  .products-full-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- Product Detail Page ---------- */
.pd-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Product gallery viewport + bottom progress (matches home top-slider bar) */
.pd-gallery-viewport {
  --pd-gallery-autoplay: 5500ms;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.08),
    0 14px 36px -12px rgba(15, 33, 64, 0.12);
}

.pd-gallery-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 4;
  background: rgba(15, 23, 42, 0.14);
  pointer-events: none;
}

.pd-gallery-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-500), #22d3ee);
  border-radius: 0 2px 2px 0;
  box-shadow:
    0 0 10px rgba(45, 212, 191, 0.75),
    0 0 18px rgba(13, 148, 136, 0.45);
  transition: width 0.08s linear;
}

.pd-gallery-progress-fill.is-animating {
  animation: pdGalleryProgress var(--pd-gallery-autoplay, 5.5s) linear forwards;
}

@keyframes pdGalleryProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.pd-gallery-viewport--paused .pd-gallery-progress-fill.is-animating {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .pd-gallery-progress-fill.is-animating {
    animation: none;
    width: 100%;
    opacity: 0.35;
  }
}

.pd-main-image {
  border-radius: 0;
  overflow: hidden;
  background: var(--neutral-100);
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: none;
}

.pd-main-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    rgba(8, 20, 38, 0.04) 0%,
    rgba(255, 255, 255, 0) 42%,
    rgba(253, 186, 116, 0.22) 78%,
    rgba(244, 121, 32, 0.14) 100%
  );
}

.pd-main-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(ellipse 65% 90% at 88% 12%, rgba(244, 121, 32, 0.18) 0%, transparent 52%);
}

.pd-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
  transition: transform var(--duration-normal) var(--ease-out);
}

.pd-main-image:hover img {
  transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .pd-main-image:hover img {
    transform: none;
  }
}

.pd-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.pd-thumb {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: all var(--duration-fast);
}

.pd-thumb:hover,
.pd-thumb.active {
  opacity: 1;
  border-color: var(--brand-orange);
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-info {
  padding-top: 10px;
}

.pd-badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.pd-category {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-500);
  margin-bottom: 10px;
}

.pd-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--primary-900);
  margin-bottom: 12px;
}

.pd-tagline {
  font-size: 1.0625rem;
  color: var(--neutral-500);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.pd-description {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.pd-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Features grid */
.pd-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pd-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.9375rem;
  color: var(--neutral-700);
  line-height: 1.5;
  transition: all var(--duration-normal) var(--ease-out);
}

.pd-feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pd-feature-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(244,121,32,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-feature-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--brand-orange);
}

/* Specs */
.pd-specs-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.pd-specs-table {
  margin-top: 32px;
}

.pd-spec-row {
  display: flex;
  border-bottom: 1px solid var(--neutral-200);
  padding: 16px 0;
}

.pd-spec-row:first-child {
  border-top: 1px solid var(--neutral-200);
}

.pd-spec-label {
  width: 40%;
  flex-shrink: 0;
  font-weight: 600;
  color: var(--primary-900);
  font-size: 0.9375rem;
}

.pd-spec-value {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

.pd-specs-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--neutral-100);
  position: sticky;
  top: 100px;
}

.pd-specs-image img {
  width: 100%;
  display: block;
}

/* Clinical images */
.pd-clinical {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pd-clinical-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: all var(--duration-normal) var(--ease-out);
}

.pd-clinical-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.pd-clinical-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.pd-clinical-label {
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
  text-align: center;
}

/* Product detail responsive */
@media (max-width: 1024px) {
  .pd-hero { grid-template-columns: 1fr; gap: 32px; }
  .pd-specs-grid { grid-template-columns: 1fr; gap: 40px; }
  .pd-specs-image { position: static; }
}

@media (max-width: 768px) {
  .pd-features { grid-template-columns: 1fr; }
  .pd-clinical { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pd-spec-row { flex-direction: column; gap: 4px; }
  .pd-spec-label { width: 100%; }
  .pd-thumb { width: 64px; height: 48px; }
}

/* =============== Product Slider =============== */
.product-slider {
  position: relative;
  overflow: hidden;
  padding: 0 0 20px;
}

.product-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 40px 10px;
  cursor: grab;
}

.product-slider-track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.product-slide {
  flex: 0 0 320px;
  min-width: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--neutral-100);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.product-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.product-slide .product-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--neutral-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-slide .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.4s;
}

.product-slide:hover .product-image img {
  transform: scale(1.05);
}

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

.product-slide .product-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-500);
  margin-bottom: 6px;
}

.product-slide .product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-slide .product-desc {
  font-size: 0.875rem;
  color: var(--neutral-500);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-slide .product-footer {
  border-top: 1px solid var(--neutral-100);
  padding-top: 14px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.slider-btn:hover {
  background: var(--primary-500);
  border-color: var(--primary-500);
}

.slider-btn:hover svg { stroke: white; }

.slider-btn svg {
  width: 22px;
  height: 22px;
  stroke: var(--neutral-700);
}

.slider-btn--prev { left: 12px; }
.slider-btn--next { right: 12px; }

.slider-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 0;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neutral-200);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.slider-dot.active {
  background: var(--primary-500);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .product-slide { flex: 0 0 280px; }
  .product-slider-track { gap: 16px; padding: 10px 20px; }
  .slider-btn { width: 40px; height: 40px; }
  .slider-btn--prev { left: 6px; }
  .slider-btn--next { right: 6px; }
}

@media (max-width: 480px) {
  .product-slide { flex: 0 0 260px; }
  .product-slide .product-image { height: 180px; }
}

/* =============== CEO / Team Card =============== */
.ceo-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 0 1px var(--neutral-100);
}

.ceo-card-left {
  background: var(--gradient-accent);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ceo-card-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15) 0%, transparent 60%);
}

.ceo-avatar-ring {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.1));
  position: relative;
  z-index: 1;
}

.ceo-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.02em;
}

.ceo-name-block {
  position: relative;
  z-index: 1;
}

.ceo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 4px;
}

.ceo-role {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.12);
  padding: 6px 16px;
  border-radius: 100px;
}

.ceo-experience {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  width: 100%;
  justify-content: center;
}

.ceo-exp-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.ceo-exp-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  text-align: left;
}

.ceo-card-right {
  padding: 48px 44px;
  background: var(--white);
}

.ceo-quote-icon {
  margin-bottom: 16px;
  opacity: 0.3;
}

.ceo-bio {
  color: var(--neutral-600);
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.ceo-bio strong {
  color: var(--primary-900);
  font-weight: 600;
}

.ceo-strengths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ceo-strength {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--neutral-50);
  border: 1px solid var(--neutral-100);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.ceo-strength:hover {
  border-color: var(--accent-300);
  box-shadow: 0 4px 16px rgba(13,148,136,0.08);
}

.ceo-strength-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.ceo-strength-icon svg {
  stroke: white;
}

.ceo-strength-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-900);
  margin-bottom: 4px;
}

.ceo-strength-text {
  font-size: 0.8rem;
  color: var(--neutral-500);
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .ceo-card { grid-template-columns: 1fr; }
  .ceo-card-left {
    padding: 40px 32px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .ceo-avatar-ring { width: 90px; height: 90px; }
  .ceo-avatar { font-size: 1.75rem; }
  .ceo-name-block { text-align: left; }
  .ceo-experience { width: auto; border-top: none; border-left: 1px solid rgba(255,255,255,0.15); padding-top: 0; padding-left: 20px; }
}

@media (max-width: 768px) {
  .ceo-card-left { flex-direction: column; }
  .ceo-card-right { padding: 32px 24px; }
  .ceo-strengths { grid-template-columns: 1fr; }
  .ceo-experience { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); padding-left: 0; padding-top: 20px; }
}

/* =============== About Image Mosaic =============== */
.about-image-mosaic {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 420px;
}

.about-image-mosaic .mosaic-large {
  grid-row: 1 / -1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-100);
}

.about-image-mosaic .mosaic-small {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-100);
}

.about-image-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.6s;
}

.about-image-mosaic .mosaic-large:hover img,
.about-image-mosaic .mosaic-small:hover img {
  transform: scale(1.06);
}

.mosaic-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.mosaic-overlay span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: white;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .about-image-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .about-image-mosaic .mosaic-large {
    grid-row: auto;
    grid-column: 1 / -1;
    height: 220px;
  }
  .about-image-mosaic .mosaic-small { height: 160px; }
}

/* =============== Achievement Cards =============== */
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

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

.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.achievement-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--neutral-50);
}

.achievement-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s;
}

.achievement-img--photo img {
  object-fit: cover;
  padding: 0;
}

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

.achievement-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 12px;
  border-radius: 100px;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.achievement-body {
  padding: 24px;
}

.achievement-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--neutral-900);
  margin-bottom: 4px;
}

.achievement-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.achievement-desc {
  font-size: 0.875rem;
  color: var(--neutral-500);
  line-height: 1.6;
}

/* =============== Portfolio Grid =============== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  text-decoration: none;
  display: block;
  background: var(--neutral-800);
}

.portfolio-card.portfolio-card--wide {
  grid-column: span 2;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.6s;
}

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

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.6) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background 0.3s;
}

.portfolio-card:hover .portfolio-overlay {
  background: linear-gradient(to top, rgba(10,22,40,0.98) 0%, rgba(10,22,40,0.7) 70%, transparent 100%);
}

.portfolio-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 6px;
}

.portfolio-overlay p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  max-width: 260px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
}

.portfolio-card:hover .portfolio-overlay p {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-card { height: 220px; }
}

@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.portfolio-card--wide { grid-column: auto; }
  .portfolio-card { height: 200px; }
  .portfolio-overlay p { opacity: 1; transform: translateY(0); }
}

/* =============== Services Grid =============== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-100);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--accent-300);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.08);
}

.service-icon-wrap svg { stroke: white; }

.service-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--neutral-100);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}

.service-card:hover .service-number {
  color: rgba(13,148,136,0.1);
}

.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--neutral-900);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--neutral-500);
  line-height: 1.6;
}

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

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

/* =============== Mission / Vision / Values =============== */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mvv-card {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.mvv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(6,182,212,0.08) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.mvv-card:hover {
  border-color: rgba(6,182,212,0.25);
  transform: translateY(-4px);
}

.mvv-card:hover::before { opacity: 1; }

.mvv-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(6,182,212,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--accent-400);
  position: relative;
  z-index: 1;
}

.mvv-icon svg { stroke: var(--accent-400); }

.mvv-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.mvv-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .mvv-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* =============== Gallery Page =============== */
.gallery-page-toolbar {
  padding: 0 0 8px;
  margin-top: clamp(-52px, -7vw, -40px);
  position: relative;
  z-index: 4;
}

.gallery-toolbar-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(16px, 3vw, 22px) clamp(18px, 3vw, 28px);
  border: 1px solid var(--neutral-200);
  box-shadow:
    0 4px 6px -1px rgba(15, 33, 64, 0.06),
    0 20px 40px -12px rgba(15, 33, 64, 0.12);
  position: sticky;
  top: calc(var(--header-h) - 4px);
}

.gallery-toolbar__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-500);
  margin: 0 0 12px;
  text-align: center;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0;
}

.gallery-filter {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--neutral-200);
  background: linear-gradient(180deg, var(--neutral-50) 0%, var(--white) 100%);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--neutral-600);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 1px 2px rgba(15, 33, 64, 0.04);
}

.gallery-filter:hover {
  border-color: rgba(20, 184, 166, 0.45);
  color: var(--accent-600);
  transform: translateY(-1px);
}

.gallery-filter.active {
  background: var(--gradient-accent);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(244, 121, 32, 0.25);
}

.page-gallery .gallery-project {
  scroll-margin-top: calc(var(--header-h) + 88px);
}

.page-gallery .project-story {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 3vw, 2rem);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.page-gallery .project-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-accent);
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.page-gallery .section--light .project-story {
  background: linear-gradient(165deg, var(--white) 0%, var(--neutral-50) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--neutral-100);
  border: 1px solid var(--neutral-200);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  box-shadow: 0 2px 8px rgba(15, 33, 64, 0.05);
}

.gallery-item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--white), 0 0 0 6px rgba(244, 121, 32, 0.55);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a1628' stroke-width='2'%3E%3Cpath d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  pointer-events: none;
  z-index: 2;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 33, 64, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px 20px;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.2) 55%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  z-index: 1;
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.gallery-caption p {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-gallery .project-highlights {
  margin-top: 44px;
  padding: 28px 24px 32px;
  background: linear-gradient(180deg, var(--neutral-50) 0%, var(--white) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-100);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
  border-top: none;
}

.page-gallery .section--light .project-highlights {
  background: var(--white);
  border-color: var(--neutral-200);
  box-shadow: var(--shadow-card);
}

.page-gallery .project-highlight {
  padding: 12px 8px;
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}

.page-gallery .project-highlight:hover {
  background: rgba(244, 121, 32, 0.06);
}

/* Placeholder state */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--neutral-300);
  text-align: center;
  padding: 20px;
}

.gallery-placeholder svg { stroke: var(--neutral-200); }

.gallery-placeholder p {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--neutral-400);
}

.gallery-placeholder span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--neutral-300);
  background: var(--neutral-100);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Gallery empty state */
.gallery-empty {
  text-align: center;
  padding: 80px 20px;
}

.gallery-empty h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--neutral-400);
  margin-top: 20px;
  margin-bottom: 8px;
}

.gallery-empty p {
  color: var(--neutral-400);
  font-size: 0.9rem;
}

/* Gallery item hide/show for filtering */
.gallery-item.hidden {
  display: none;
}

/* Instructions section */
.gallery-instructions {
  text-align: left;
  margin-top: 40px;
}

.instruction-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.instruction-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.instruction-step p {
  font-size: 0.925rem;
  color: var(--neutral-600);
  line-height: 1.6;
  padding-top: 4px;
}

.instruction-step code,
.instruction-code code,
.instruction-code pre {
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
}

.instruction-step code {
  background: var(--neutral-100);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--primary-700);
}

.instruction-code {
  background: var(--neutral-900);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 20px;
  overflow-x: auto;
}

.instruction-code pre {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  white-space: pre;
  margin: 0;
}

/* =============== Lightbox =============== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform: scale(0.92);
  transition: transform 0.35s;
}

.lightbox.active .lightbox-content img {
  transform: scale(1);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-top: 18px;
  text-align: center;
  max-width: 640px;
  padding: 0 16px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: background 0.2s;
  z-index: 10;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: background 0.2s;
  z-index: 10;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .page-gallery .project-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-toolbar-card {
    position: relative;
    top: auto;
    padding: 14px 16px;
  }

  .gallery-page-toolbar {
    margin-top: -28px;
  }

  .gallery-item::after {
    opacity: 0.88;
    transform: scale(0.96);
    width: 34px;
    height: 34px;
    background-size: 16px 16px;
  }

  .gallery-caption {
    transform: translateY(0);
    padding: 14px 16px 16px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.35) 100%);
  }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-filters { gap: 8px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
  .gallery-filter { padding: 8px 16px; font-size: 0.78rem; flex-shrink: 0; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item,
  .gallery-item img,
  .gallery-caption,
  .gallery-item::after {
    transition: none !important;
  }

  .gallery-item:hover {
    transform: none;
  }

  .gallery-item:hover img {
    transform: none;
  }
}

/* =============== Project Story (Gallery) =============== */
.project-story {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.project-story-header {
  margin-bottom: 28px;
}

.project-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.project-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--neutral-900);
  margin-bottom: 8px;
}

.section--light .project-title { color: var(--neutral-900); }

.project-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-500);
  letter-spacing: 0.01em;
}

.project-narrative {
  text-align: left;
}

.project-narrative p {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.project-narrative p:last-child { margin-bottom: 0; }

/* Gallery grid variants */
.gallery-grid--five {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  aspect-ratio: 3/4;
}

/* Project Highlights */
.project-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--neutral-100);
}

.section--light .project-highlights { border-color: var(--neutral-200); }

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

.project-highlight-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.project-highlight-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* ---------- About page (scoped layout & UX) ---------- */
.page-about {
  background:
    radial-gradient(900px 420px at 50% -5%, rgba(37, 99, 235, 0.045), transparent 55%),
    var(--neutral-50);
}

.section--about-intro {
  padding-top: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(32px, 4vw, 48px);
  background:
    radial-gradient(880px 360px at 8% 0%, rgba(37, 99, 235, 0.05), transparent 55%),
    radial-gradient(640px 300px at 92% 20%, rgba(244, 121, 32, 0.04), transparent 48%),
    linear-gradient(180deg, var(--neutral-50) 0%, var(--white) 72%);
}

.about-intro__copy {
  padding: clamp(26px, 3.5vw, 40px) clamp(22px, 3vw, 36px);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-200);
  box-shadow:
    0 4px 6px -1px rgba(15, 33, 64, 0.06),
    0 18px 40px -14px rgba(15, 33, 64, 0.09);
}

.about-intro__headline {
  margin-bottom: 18px;
  line-height: 1.15;
}

.stats-bar--about .container {
  border: 1px solid var(--neutral-100);
}

.section-subtitle--on-dark {
  color: rgba(255, 255, 255, 0.58);
}

.mvv-grid--section {
  margin-top: 48px;
}

.section--about-process {
  background:
    linear-gradient(180deg, var(--white) 0%, var(--neutral-50) 42%, var(--white) 100%);
}

.timeline--section {
  margin-top: 48px;
}

.page-about .timeline::before {
  background: linear-gradient(
    180deg,
    var(--neutral-200) 0%,
    rgba(6, 182, 212, 0.45) 50%,
    var(--neutral-200) 100%
  );
}

.achievement-grid--section,
.services-grid--section,
.portfolio-grid--section {
  margin-top: 48px;
}

.about-achievement-footnote {
  margin-top: 44px;
  padding: 18px 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--neutral-200);
  box-shadow: 0 8px 24px -12px rgba(15, 33, 64, 0.08);
}

.about-achievement-footnote p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

.section--about-services {
  background: var(--neutral-50);
  border-top: 1px solid var(--neutral-100);
  border-bottom: 1px solid var(--neutral-100);
}

.ceo-card--section {
  margin-top: 48px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.ceo-bio--emphasis {
  margin-bottom: 28px;
  color: var(--neutral-700);
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  .about-image-mosaic .mosaic-large:hover img,
  .about-image-mosaic .mosaic-small:hover img {
    transform: none;
  }
}

/* Smooth scroll anchor offset */
[id] { scroll-margin-top: 100px; }

@media (max-width: 1024px) {
  .gallery-grid--five { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .gallery-grid--five { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
  .project-highlights { gap: 24px; flex-wrap: wrap; }
  .project-highlight-num { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .gallery-grid--five { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: auto; }
}
