/* Biotechblend — Premium enterprise styles */

:root {
  --teal: #0a3d40;
  --teal-mid: #145458;
  --teal-deep: #062628;
  --teal-soft: #e7f1f1;
  --orange: #f17a28;
  --orange-deep: #d96518;
  --ink: #1a2a2b;
  --muted: #5c6d6e;
  --line: rgba(10, 61, 64, 0.1);
  --paper: #f3f7f7;
  --white: #ffffff;
  --font-display: 'Manrope', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --header-h: 80px;
  --header-h-scrolled: 80px;
  --nav-max: 1380px;
  --container: 1320px;
  --space: 8px;
  --section-y: 80px;
  --card-gap: 32px;
  --container-gap: 48px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 24px;
  --radius-sm: 18px;
  --shadow: 0 18px 48px rgba(6, 38, 40, 0.08);
  --shadow-hover: 0 28px 64px rgba(6, 38, 40, 0.14);
  --shadow-glow: 0 16px 40px rgba(241, 122, 40, 0.16);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(231, 241, 241, 0.9), transparent 55%),
    linear-gradient(180deg, #f7fbfb 0%, #ffffff 28%, #f5f9f9 100%);
  min-height: 100vh;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(6, 38, 40, 0.28);
}

img,
video,
iframe {
  max-width: 100%;
}

img,
video {
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

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

ul {
  list-style: none;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  color: var(--teal-deep);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.65rem);
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
}

h3 {
  font-size: 1.22rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.lead {
  color: var(--muted);
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 40rem;
}

.section {
  position: relative;
  padding: clamp(3.25rem, 7vw, var(--section-y)) 0;
}

.section--soft {
  background:
    radial-gradient(ellipse 70% 55% at 15% 0%, rgba(241, 122, 40, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(20, 84, 88, 0.08), transparent 50%),
    linear-gradient(180deg, #f5f9f9 0%, #eef4f4 50%, #f7fbfb 100%);
}

.section-head {
  max-width: 42rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
}

.section-head--center .lead {
  margin-inline: auto;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}

.text-link:hover {
  color: var(--orange);
  gap: 0.7rem;
}

.center-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.75rem;
}

.fine-print {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 1rem 0 1.5rem;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 1rem 1.75rem;
  border-radius: 18px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    background 0.35s var(--ease),
    color 0.25s var(--ease),
    border-color 0.35s var(--ease);
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.65s var(--ease);
  pointer-events: none;
  z-index: -1;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease);
}

.btn:hover .btn__arrow {
  transform: translateX(5px);
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  box-shadow:
    0 12px 32px rgba(217, 101, 24, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--primary:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow:
    0 18px 42px rgba(217, 101, 24, 0.4),
    0 0 0 1px rgba(241, 122, 40, 0.2);
}

.btn--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.btn--ghost-dark {
  color: var(--teal);
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(10, 61, 64, 0.14);
  backdrop-filter: blur(10px);
}

.btn--ghost-dark:hover {
  color: var(--teal-deep);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(6, 38, 40, 0.1);
}

.cta-band .btn--ghost,
.hero-slider .btn--ghost {
  color: var(--white);
}

.section .btn--ghost,
.form-panel .btn--ghost {
  color: var(--teal);
  background: rgba(10, 61, 64, 0.04);
  border-color: rgba(10, 61, 64, 0.12);
}

.section .btn--ghost:hover,
.form-panel .btn--ghost:hover {
  color: var(--teal-deep);
  background: rgba(10, 61, 64, 0.08);
}

.btn--whatsapp {
  width: 100%;
  margin-top: 1.25rem;
  color: var(--white);
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 10px 24px rgba(18, 140, 126, 0.28);
}

.btn--whatsapp:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.7rem 1.15rem;
  font-size: 0.88rem;
  border-radius: 12px;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid rgba(10, 61, 64, 0.08);
  box-shadow: 0 10px 40px rgba(6, 38, 40, 0.06);
  overflow: visible;
  transition: box-shadow 0.4s var(--nav-ease);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95) 20%, rgba(241, 122, 40, 0.35) 50%, rgba(255, 255, 255, 0.95) 80%, transparent);
  pointer-events: none;
  z-index: 2;
}

.site-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4) 48%, transparent);
  pointer-events: none;
  z-index: 1;
  animation: navSheen 8s var(--nav-ease) infinite;
}

@keyframes navSheen {
  0%, 72% { transform: translateX(0); opacity: 0; }
  78% { opacity: 0.5; }
  92%, 100% { transform: translateX(350%); opacity: 0; }
}

.site-header:hover {
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(6, 38, 40, 0.08);
}

.site-header.is-scrolled {
  height: var(--header-h);
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(6, 38, 40, 0.06);
}

.header-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  width: min(100% - 2.5rem, var(--nav-max));
  height: 100%;
  margin-inline: auto;
  padding: 0 clamp(0.25rem, 1vw, 0.5rem);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--teal);
  flex-shrink: 0;
  z-index: 4;
  max-width: min(100%, 420px);
}

.logo:hover {
  color: var(--teal);
}

.logo:focus-visible,
.nav-menu a:focus-visible,
.nav-cta:focus-visible,
.nav-toggle:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.site-header .logo img {
  width: auto;
  height: 100px;
  max-width: 140px;
  display: block;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  border-radius: 8px;
  transition: transform 0.45s var(--nav-ease);
}

.site-header .logo:hover img {
  transform: scale(1.03);
}

.site-header .logo__text {
  margin-left: 12px;
}

.logo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
  gap: 0.02rem;
  min-width: 0;
}

.logo__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0.08em;
  color: var(--orange);
  white-space: nowrap;
}

.logo__sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
}

.logo__slogan {
  margin-top: 0.14rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--muted);
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-left: auto;
}

.nav-menu .nav-cta {
  margin-left: 4px;
}

.nav-menu a:not(.nav-cta) {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.2px;
  color: var(--teal);
  position: relative;
  padding: 0.4rem 0.55rem;
  border-radius: 12px;
  transition: color 0.35s var(--nav-ease), transform 0.35s var(--nav-ease), background 0.35s var(--nav-ease), box-shadow 0.35s var(--nav-ease);
}

.nav-menu a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.35rem;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
  transform: translateX(-50%);
  transition: width 0.4s var(--nav-ease);
}

.nav-menu a:not(.nav-cta):hover {
  color: var(--teal-deep);
  background: rgba(10, 61, 64, 0.045);
  transform: translateY(-2px);
}

.nav-menu a:not(.nav-cta):hover::after,
.nav-menu a:not(.nav-cta).is-active::after {
  width: calc(100% - 1.6rem);
}

.nav-menu a:not(.nav-cta).is-active {
  color: var(--teal-deep);
  background: rgba(10, 61, 64, 0.055);
  box-shadow: 0 6px 18px rgba(6, 38, 40, 0.06);
}

@keyframes navItemIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (min-width: 1181px) {
  body:not(.nav-open) .nav-menu a:not(.nav-cta) {
    animation: navItemIn 0.55s var(--ease) both;
  }

  body:not(.nav-open) .nav-menu a:nth-child(1) { animation-delay: 0ms; }
  body:not(.nav-open) .nav-menu a:nth-child(2) { animation-delay: 60ms; }
  body:not(.nav-open) .nav-menu a:nth-child(3) { animation-delay: 120ms; }
  body:not(.nav-open) .nav-menu a:nth-child(4) { animation-delay: 180ms; }
  body:not(.nav-open) .nav-menu a:nth-child(5) { animation-delay: 220ms; }

  body:not(.nav-open) .nav-cta {
    animation: navItemIn 0.55s var(--ease) both;
    animation-delay: 260ms;
  }
}

.nav-cta {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  padding: 11px 22px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 22px rgba(217, 101, 24, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  overflow: hidden;
  transition: transform 0.35s var(--nav-ease), box-shadow 0.35s var(--nav-ease);
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 42%);
  pointer-events: none;
}

.nav-cta__arrow {
  display: inline-block;
  transition: transform 0.35s var(--nav-ease);
}

.nav-cta:hover {
  color: var(--white);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 36px rgba(217, 101, 24, 0.4);
}

.nav-cta:hover .nav-cta__arrow {
  transform: translateX(4px);
}

.nav-cta:active {
  transform: translateY(-1px) scale(0.98);
}

.nav-cta.is-active {
  box-shadow: 0 10px 28px rgba(217, 101, 24, 0.34), inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(10, 61, 64, 0.12);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 4;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  background: var(--teal);
  margin-inline: auto;
  border-radius: 2px;
  transition: transform 0.35s var(--nav-ease), opacity 0.25s var(--nav-ease), background 0.25s var(--nav-ease);
}

.nav-toggle[aria-expanded='true'] span {
  background: var(--orange);
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero carousel — matches About hero cinematic design */
.hero-slider {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #062628;
  color: var(--white);
}

.hero-slider__track {
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 0;
  overflow: hidden;
  padding: 0;
  display: grid;
  align-items: center;
  box-sizing: border-box;
  transition: opacity 0.9s var(--ease), visibility 0.9s var(--ease);
}

.hero-slide.is-active {
  position: relative;
  height: auto;
  min-height: min(86vh, 800px);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow: visible;
  z-index: 1;
  padding:
    clamp(4.75rem, 8vw, 6.25rem)
    clamp(1.75rem, 5vw, 3.5rem)
    clamp(6.75rem, 10vw, 8.5rem);
}

.hero-slide__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #062628;
  pointer-events: none;
}

.hero-slide__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.06);
  opacity: 1;
  filter: none;
  transition: transform 8s linear;
  pointer-events: none;
  will-change: transform;
}

.hero-slide.is-active .hero-slide__img {
  transform: scale(1);
  opacity: 1;
}

.hero-slide__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(4, 28, 30, 0.94) 0%, rgba(6, 38, 40, 0.82) 38%, rgba(6, 38, 40, 0.45) 68%, rgba(6, 38, 40, 0.28) 100%),
    linear-gradient(0deg, rgba(4, 28, 30, 0.5) 0%, transparent 46%);
  pointer-events: none;
}

.hero-slide__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: heroOrb 14s ease-in-out infinite;
  pointer-events: none;
}

.hero-slide__orb--a {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  top: -16%;
  right: 8%;
  background: rgba(20, 84, 88, 0.5);
}

.hero-slide__orb--b {
  width: min(36vw, 300px);
  height: min(36vw, 300px);
  bottom: -12%;
  left: 10%;
  background: rgba(241, 122, 40, 0.22);
  animation-delay: -6s;
}

@keyframes heroOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -16px) scale(1.06); }
}

.hero-slide__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, var(--container-gap));
  align-items: center;
  width: min(100%, var(--container));
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 0;
}

.hero-slide__layout.container {
  width: min(100%, var(--container));
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 34rem;
  margin: 0;
  padding: 0;
  text-align: left;
  justify-self: start;
  box-sizing: border-box;
}

.hero-slide__content.container {
  margin: 0;
  width: 100%;
}

.hero-slide__eyebrow,
.hero-slide__brand,
.hero-slide__title,
.hero-slide__copy {
  text-align: left;
}

.hero-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease) 0.15s, transform 0.7s var(--ease) 0.15s;
}

.hero-slide__brand {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 0.75rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease) 0.22s, transform 0.75s var(--ease) 0.22s;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.hero-slide__brand span {
  color: var(--orange);
}

.hero-slide__brand--sm {
  font-size: clamp(1.7rem, 3.8vw, 2.5rem);
  margin-bottom: 0.65rem;
}

.hero-slide__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.96);
  margin: 0 0 1rem;
  max-width: none;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease) 0.32s, transform 0.75s var(--ease) 0.32s;
}

.hero-slide__copy {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 34rem;
  margin: 0 0 0.35rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease) 0.4s, transform 0.75s var(--ease) 0.4s;
}

.hero-slide .btn-group {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2rem;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease) 0.48s, transform 0.75s var(--ease) 0.48s;
}

.hero-slide.is-active .hero-slide__eyebrow,
.hero-slide.is-active .hero-slide__brand,
.hero-slide.is-active .hero-slide__title,
.hero-slide.is-active .hero-slide__copy,
.hero-slide.is-active .btn-group,
.hero-slide.is-active .hero-slide__stage {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide__stage {
  position: relative;
  min-height: 420px;
  width: 100%;
  max-width: 440px;
  justify-self: end;
  display: grid;
  place-items: center;
  padding: 40px 44px 48px;
  margin: 0;
  box-sizing: border-box;
  overflow: visible;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease) 0.35s, transform 0.85s var(--ease) 0.35s;
}

.hero-slide__frame {
  width: min(100%, 380px);
  aspect-ratio: 1;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-slide__frame-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  padding: 6%;
  box-sizing: border-box;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}

.hero-slide.is-active .hero-slide__frame-img {
  transform: scale(1);
}

.hero-float {
  position: absolute;
  z-index: 2;
  min-width: 156px;
  max-width: calc(100% - 24px);
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  animation: heroFloat 7s ease-in-out infinite;
  text-align: left;
}

.hero-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  white-space: nowrap;
}

.hero-float span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.hero-float--top {
  top: 10%;
  left: 8%;
  animation-delay: 0s;
}

.hero-float--mid {
  top: 42%;
  right: 8%;
  animation-delay: -2.4s;
}

.hero-float--bot {
  bottom: 10%;
  left: 14%;
  animation-delay: -4.2s;
}

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

.hero-slider__controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: clamp(1.5rem, 3.5vw, 2.25rem);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-slider__btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(6, 38, 40, 0.35);
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.hero-slider__btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.05);
}

.hero-slider__btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.hero-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.35rem;
}

.hero-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), width 0.35s var(--ease);
}

.hero-slider__dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--orange);
}

.hero-slider__dot:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.hero-slider__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 3;
  overflow: hidden;
}

.hero-slider__progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), #ffb07a);
  transform-origin: left center;
}

.hero-slider__progress-bar.is-running {
  animation: heroProgress 6s linear forwards;
}

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

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 4.75rem) 0 clamp(3rem, 6vw, 4rem);
  background:
    radial-gradient(ellipse 55% 70% at 85% 20%, rgba(241, 122, 40, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(20, 84, 88, 0.35), transparent 50%),
    linear-gradient(145deg, #062628 0%, #0a3d40 48%, #145458 100%);
  color: var(--white);
}

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

.page-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.55;
  animation: pageHeroOrb 14s ease-in-out infinite;
}

.page-hero__orb--a {
  width: min(42vw, 380px);
  height: min(42vw, 380px);
  top: -18%;
  right: 8%;
  background: rgba(241, 122, 40, 0.35);
}

.page-hero__orb--b {
  width: min(36vw, 320px);
  height: min(36vw, 320px);
  bottom: -22%;
  left: 6%;
  background: rgba(20, 84, 88, 0.55);
  animation-delay: -5s;
}

.page-hero__mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.22;
  mask-image: radial-gradient(ellipse at 40% 40%, black 20%, transparent 70%);
}

@keyframes pageHeroOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.06); }
}

.page-hero h1,
.page-hero .lead {
  color: rgba(255, 255, 255, 0.95);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.72);
  max-width: 38rem;
}

.page-hero .eyebrow {
  color: rgba(241, 122, 40, 0.95);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}

.page-hero--photo {
  background: #062628;
}

.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.page-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 38, 40, 0.9) 0%, rgba(10, 61, 64, 0.78) 42%, rgba(6, 38, 40, 0.58) 100%);
}

.page-hero--photo .page-hero__orb--a {
  opacity: 0.35;
}

.page-hero--photo .page-hero__orb--b {
  opacity: 0.28;
}

.page-hero--photo .page-hero__mesh {
  opacity: 0.12;
}

/* About page hero — premium single image */
.about-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(64vh, 560px);
  display: grid;
  align-items: center;
  justify-items: start;
  padding: clamp(3.5rem, 8vw, 5rem) 0 clamp(3rem, 7vw, 4.5rem);
  background: #062628;
  color: var(--white);
}

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

.about-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.08);
  will-change: transform;
  transition: transform 0.2s linear;
  animation: aboutHeroZoom 20s var(--ease) forwards;
}

@keyframes aboutHeroZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1.02); }
}

.about-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(4, 28, 30, 0.94) 0%, rgba(6, 38, 40, 0.8) 32%, rgba(6, 38, 40, 0.42) 62%, rgba(6, 38, 40, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 28, 30, 0.55) 0%, transparent 50%);
}

.about-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  mix-blend-mode: soft-light;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  pointer-events: none;
}

.about-hero__ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.about-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: aboutOrbFloat 12s ease-in-out infinite;
}

.about-hero__orb--teal {
  width: min(50vw, 460px);
  height: min(50vw, 460px);
  top: -20%;
  right: -10%;
  background: rgba(20, 84, 88, 0.45);
}

.about-hero__orb--orange {
  width: min(34vw, 280px);
  height: min(34vw, 280px);
  bottom: -18%;
  left: 8%;
  background: rgba(241, 122, 40, 0.2);
  animation-delay: -5s;
}

.about-hero__beam {
  position: absolute;
  top: -20%;
  left: 18%;
  width: 2px;
  height: 140%;
  background: linear-gradient(180deg, transparent, rgba(241, 122, 40, 0.35), transparent);
  transform: rotate(18deg);
  opacity: 0.55;
  animation: aboutBeamPulse 5.5s ease-in-out infinite;
}

@keyframes aboutOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(14px, -18px) scale(1.06); }
}

@keyframes aboutBeamPulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.65; }
}

.about-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  max-width: 38rem;
  margin-left: max(1.25rem, calc((100vw - min(100vw, var(--container))) / 2));
  margin-right: auto;
  text-align: left;
  justify-self: start;
}

.about-hero__inner.container {
  margin-left: max(1.25rem, calc((100vw - min(100vw, var(--container))) / 2));
  margin-right: auto;
}

.about-hero__brand,
.about-hero__eyebrow,
.about-hero h1,
.about-hero__lead {
  text-align: left;
}

.about-hero__anim {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease),
    filter 0.85s var(--ease);
  transition-delay: calc(var(--i, 0) * 95ms + 180ms);
}

.about-hero.is-ready .about-hero__anim {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.about-hero__brand {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1.2;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.about-hero__brand span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.72em;
}

.about-hero__eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  border-left: 3px solid var(--orange);
  padding-left: 0.85rem;
}

.about-hero h1 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2.05rem, 4.4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.about-hero__lead {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.85rem;
  margin-top: 2rem;
}

.about-hero__actions .btn {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.about-hero__actions .btn:hover {
  transform: translateY(-3px);
}

.about-hero__actions .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.about-hero__actions .btn--ghost:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

/* About page — premium atmosphere + motion */
.about-page {
  overflow-x: clip;
}

.about-page .section-head {
  margin-bottom: 2.75rem;
}

.about-page .section {
  position: relative;
  isolation: isolate;
  padding-block: clamp(4rem, 8vw, 5.75rem);
}

.about-section-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 0% 30%, rgba(241, 122, 40, 0.08), transparent 55%),
    radial-gradient(ellipse 45% 55% at 100% 70%, rgba(20, 84, 88, 0.1), transparent 50%);
}

.about-section-glow--soft {
  background:
    radial-gradient(ellipse 55% 70% at 12% 15%, rgba(241, 122, 40, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 85%, rgba(10, 61, 64, 0.12), transparent 52%);
}

.about-page .section > .container,
.about-page .about-intro__grid,
.about-page .about-story-band__inner {
  position: relative;
  z-index: 1;
}

.about-page .section-head--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-inline: auto;
  max-width: 38rem;
}

.about-page .section-head--center h2,
.about-page .section-head--center .lead,
.about-page .section-head--center .eyebrow {
  text-align: center;
  width: 100%;
}

.about-page .section-head--center .lead {
  margin-top: 0.85rem;
  margin-inline: auto;
  max-width: 32rem;
  font-size: 1.02rem;
  line-height: 1.65;
}

.about-page .section-head--center .eyebrow {
  position: relative;
  padding-bottom: 0.7rem;
  margin-bottom: 0.9rem;
}

.about-page .section-head--center .eyebrow::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 40px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(241, 122, 40, 0.15));
  transform: translateX(-50%) scaleX(0.4);
  opacity: 0.5;
  transition: transform 0.7s var(--ease), opacity 0.5s var(--ease);
}

.about-page .section-head--center.reveal.is-visible .eyebrow::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

.about-page .about-card p,
.about-page .about-point p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.about-page .about-card h3,
.about-page .about-point h3 {
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-intro__copy {
  text-align: left;
}

.about-intro__copy h2 {
  margin: 0;
  max-width: 16ch;
  line-height: 1.15;
  background: linear-gradient(120deg, var(--teal-deep) 20%, var(--teal-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-intro__copy .lead {
  margin-top: 1rem;
  max-width: 36rem;
  text-align: left;
}

.about-intro__copy p:not(.lead):not(.eyebrow) {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 36rem;
  text-align: left;
}

.about-intro__aside {
  display: grid;
  gap: 1.15rem;
  perspective: 900px;
}

.about-aside-card,
.about-point,
.about-card,
.about-stat {
  transform-style: preserve-3d;
  will-change: transform;
}

.about-aside-card {
  position: relative;
  padding: 1.75rem 1.55rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 61, 64, 0.08);
  box-shadow: 0 16px 40px rgba(6, 38, 40, 0.08);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.35s var(--ease);
}

.about-aside-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.55) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}

.about-aside-card:hover::before {
  transform: translateX(120%);
}

.about-aside-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), rgba(20, 84, 88, 0.5));
  transform: scaleY(0.35);
  opacity: 0.55;
  transition: transform 0.45s var(--ease), opacity 0.35s var(--ease);
}

.about-aside-card:hover {
  box-shadow: 0 28px 55px rgba(6, 38, 40, 0.14);
  border-color: rgba(241, 122, 40, 0.3);
}

.about-aside-card:hover::after {
  transform: scaleY(1);
  opacity: 1;
}

.about-aside-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 0.4rem;
  padding-left: 0.65rem;
  transition: color 0.3s var(--ease), transform 0.35s var(--ease);
}

.about-aside-card span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  padding-left: 0.65rem;
}

.about-aside-card--accent {
  background: linear-gradient(145deg, rgba(241, 122, 40, 0.14), rgba(231, 241, 241, 0.96));
  border-color: rgba(241, 122, 40, 0.24);
}

.about-aside-card--accent strong {
  color: var(--orange);
  font-size: 2.25rem;
  line-height: 1;
}

.about-aside-card:hover strong {
  color: var(--teal-deep);
  transform: translateX(2px);
}

.about-aside-card--accent:hover strong {
  color: var(--orange-deep);
}

.about-story-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.about-story-band__inner {
  position: relative;
  z-index: 1;
}

.about-story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
  align-items: stretch;
}

.about-point {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 100%;
  padding: 1.9rem 1.55rem 1.7rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 40px rgba(6, 38, 40, 0.08);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.about-point::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(241, 122, 40, 0.5), transparent 42%, rgba(20, 84, 88, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.about-point::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  right: -40px;
  top: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 122, 40, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  pointer-events: none;
}

.about-point:hover {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 56px rgba(6, 38, 40, 0.13);
  border-color: rgba(241, 122, 40, 0.28);
}

.about-point:hover::before,
.about-point:hover::after {
  opacity: 1;
}

.about-point:hover::after {
  transform: scale(1.15);
}

.about-point__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.55rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: rgba(241, 122, 40, 0.1);
  border: 1px solid rgba(241, 122, 40, 0.2);
  transition: transform 0.4s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}

.about-point:hover .about-point__num {
  transform: translateX(3px) scale(1.05);
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.about-point h3 {
  margin: 0 0 0.6rem;
  font-size: 1.12rem;
  transition: color 0.3s var(--ease);
}

.about-point:hover h3 {
  color: var(--teal-deep);
}

.about-point p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.about-page .mv-grid,
.about-page .values-grid,
.about-page .infra-grid,
.about-page .quality-grid {
  align-items: stretch;
}

.about-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  text-align: left;
  padding: 1.95rem 1.6rem 1.75rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 40px rgba(6, 38, 40, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.about-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(241, 122, 40, 0.08));
  transform: scaleX(0.22);
  transform-origin: left center;
  transition: transform 0.5s var(--ease);
}

.about-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, rgba(241, 122, 40, 0.45), transparent 40%, rgba(20, 84, 88, 0.18));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.about-card:hover {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 28px 56px rgba(6, 38, 40, 0.13), 0 10px 22px rgba(241, 122, 40, 0.07);
  border-color: rgba(241, 122, 40, 0.28);
}

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

.about-card:hover::after {
  opacity: 1;
}

.about-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.12rem;
  line-height: 1.3;
  transition: color 0.3s var(--ease), transform 0.35s var(--ease);
}

.about-card:hover h3 {
  color: var(--teal-deep);
  transform: translateX(2px);
}

.about-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.about-card .eyebrow {
  margin-bottom: 0.7rem;
}

.about-card--step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--orange);
  background: rgba(241, 122, 40, 0.1);
  border: 1px solid rgba(241, 122, 40, 0.18);
  transition: transform 0.4s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.about-card--step:hover .step-num {
  transform: translateX(4px) scale(1.05);
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.about-stats {
  position: relative;
  overflow: hidden;
}

.about-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 55% at 20% 40%, rgba(241, 122, 40, 0.08), transparent 60%),
    radial-gradient(ellipse 40% 55% at 80% 60%, rgba(20, 84, 88, 0.1), transparent 58%);
}

.about-stats .container {
  position: relative;
  z-index: 1;
}

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

.about-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 158px;
  height: 100%;
  padding: 1.85rem 1.1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 40px rgba(6, 38, 40, 0.08);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.35s var(--ease);
}

.about-stat::before {
  content: '';
  position: absolute;
  inset: auto 16% 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease);
}

.about-stat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(241, 122, 40, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.about-stat:hover {
  box-shadow: 0 26px 52px rgba(6, 38, 40, 0.13);
  border-color: rgba(241, 122, 40, 0.3);
}

.about-stat:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.about-stat:hover::after {
  opacity: 1;
}

.about-stat strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--orange);
  transition: transform 0.4s var(--ease);
}

.about-stat:hover strong {
  transform: scale(1.08);
}

.about-stat > span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1.35;
  max-width: 12ch;
}

.about-page .why-us .section-head,
.about-page .industries .section-head {
  margin-bottom: 2rem;
}

.about-page .reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.97);
  filter: blur(4px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease),
    filter 0.85s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.about-page .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.about-page .cta-band .container {
  position: relative;
  overflow: hidden;
}

.about-page .cta-band .container::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 122, 40, 0.22), transparent 70%);
  animation: aboutOrbFloat 10s ease-in-out infinite;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .about-hero__img,
  .about-hero__orb,
  .about-hero__beam,
  .about-page .cta-band .container::before {
    animation: none !important;
  }

  .about-hero__anim,
  .about-page .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .about-aside-card,
  .about-point,
  .about-card,
  .about-stat {
    transform: none !important;
  }
}

/* Cards & grids */
.glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  padding: 2rem 1.85rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(241, 122, 40, 0.15));
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: transform 0.45s var(--ease);
}

.glass-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-hover), var(--shadow-glow);
  border-color: rgba(241, 122, 40, 0.28);
}

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

.testimonial-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--card-gap);
}

.testimonial-quote {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.04rem;
}

.testimonial-quote::before {
  content: '“';
  color: rgba(241, 122, 40, 0.8);
  font-family: var(--font-display);
  font-weight: 800;
  margin-right: 0.35rem;
}

.testimonial-byline {
  margin-top: 1.35rem;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-byline strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 800;
}

.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.stat-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

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

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat-card span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.why-us {
  position: relative;
  isolation: isolate;
  padding: clamp(3.25rem, 7vw, var(--section-y)) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(20, 84, 88, 0.08), transparent 55%),
    linear-gradient(180deg, #f7fbfb 0%, #eef5f5 45%, #f8fbfb 100%);
}

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

.why-us__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.why-us__orb--teal {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  top: -12%;
  right: -6%;
  background: rgba(20, 84, 88, 0.18);
}

.why-us__orb--orange {
  width: min(34vw, 320px);
  height: min(34vw, 320px);
  bottom: 5%;
  left: -4%;
  background: rgba(241, 122, 40, 0.12);
}

.why-us__mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10, 61, 64, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 15%, transparent 70%);
  opacity: 0.7;
}

.why-us__inner {
  position: relative;
  z-index: 1;
}

.why-us__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  margin-bottom: 56px;
}

.why-us__head-copy {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.why-us__head-copy .eyebrow {
  margin-bottom: 14px;
}

.why-us__head-copy h2 {
  margin: 0;
  color: var(--teal-deep);
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  letter-spacing: -0.025em;
}

.why-us__head-copy .lead {
  margin-top: 14px;
  margin-inline: auto;
  max-width: 36rem;
  text-align: center;
}

.why-us__cta {
  margin-bottom: 0;
  white-space: nowrap;
}

.why-us__actions {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.why-promise__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2rem;
}

.why-promise__card {
  padding: 1.5rem 1.4rem 1.6rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid rgba(10, 61, 64, 0.08);
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.35s var(--ease);
}

.why-promise__card:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 122, 40, 0.28);
  box-shadow: var(--shadow-hover);
}

.why-promise__card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  padding: 0 10px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--orange);
  background: rgba(241, 122, 40, 0.1);
  border: 1px solid rgba(241, 122, 40, 0.18);
}

.why-promise__card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  color: var(--teal-deep);
}

.why-promise__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.why-steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: why-step;
}

.why-steps li {
  position: relative;
  padding: 1.6rem 1.5rem 1.7rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid rgba(10, 61, 64, 0.08);
  box-shadow: var(--shadow);
  counter-increment: why-step;
}

.why-steps li::before {
  content: counter(why-step, decimal-leading-zero);
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.why-steps strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.12rem;
  color: var(--teal-deep);
}

.why-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.why-us--page {
  margin-top: 0;
}

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

.why-grid .reason,
.card-grid .reason,
.reason {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100%;
  padding: 2rem 1.75rem 1.9rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 40px rgba(6, 38, 40, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.4s var(--ease),
    background 0.4s var(--ease);
}

.why-grid .reason--featured {
  display: flex;
  flex-direction: column;
  padding: 2.25rem 1.9rem;
  background:
    linear-gradient(145deg, rgba(6, 38, 40, 0.96) 0%, rgba(10, 61, 64, 0.94) 55%, rgba(20, 84, 88, 0.92) 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 28px 64px rgba(6, 38, 40, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.why-grid .reason--featured h3 {
  color: #ffffff;
  font-size: 1.2rem;
}

.why-grid .reason--featured p {
  color: rgba(255, 255, 255, 0.72);
}

.why-grid .reason--featured .reason__accent {
  background: linear-gradient(90deg, var(--orange), rgba(241, 122, 40, 0.2));
}

.why-grid .reason--featured .reason__index {
  color: rgba(255, 255, 255, 0.08);
}

.why-grid .reason--featured .reason__icon {
  color: var(--orange);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(241, 122, 40, 0.35);
  box-shadow: none;
  width: 56px;
  height: 56px;
  border-radius: 16px;
}

.why-grid .reason--featured .reason__icon svg {
  width: 24px;
  height: 24px;
}

.why-grid .reason--featured:hover {
  transform: translateY(-8px);
  background:
    linear-gradient(145deg, rgba(6, 38, 40, 0.98) 0%, rgba(10, 61, 64, 0.96) 55%, rgba(20, 84, 88, 0.94) 100%);
  border-color: rgba(241, 122, 40, 0.35);
  box-shadow:
    0 32px 72px rgba(6, 38, 40, 0.28),
    0 0 0 1px rgba(241, 122, 40, 0.15);
}

.reason::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, rgba(241, 122, 40, 0.55), transparent 42%, rgba(20, 84, 88, 0.2));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 1;
}

.reason:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(241, 122, 40, 0.28);
  box-shadow:
    0 26px 52px rgba(6, 38, 40, 0.12),
    0 8px 18px rgba(241, 122, 40, 0.08);
}

.reason:hover::before {
  opacity: 1;
}

.reason__index {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(10, 61, 64, 0.06);
  pointer-events: none;
  transition: color 0.35s var(--ease);
}

.reason:hover .reason__index {
  color: rgba(241, 122, 40, 0.12);
}

.reason__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 1.35rem;
}

.reason__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(231, 241, 241, 0.88));
  border: 1px solid rgba(241, 122, 40, 0.2);
  box-shadow: 0 10px 22px rgba(6, 38, 40, 0.07);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.35s var(--ease);
}

.reason__icon svg {
  width: 22px;
  height: 22px;
}

.reason:hover .reason__icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(145deg, #fff7f0, #e7f1f1);
  box-shadow: 0 14px 28px rgba(241, 122, 40, 0.18);
}

.reason h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.7rem;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--teal-deep);
  transition: color 0.3s var(--ease);
}

.reason:hover h3 {
  color: var(--teal-deep);
}

.reason p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  flex: 1;
}

.reason__accent {
  position: relative;
  z-index: 1;
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 1.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(241, 122, 40, 0.15));
  transform: scaleX(0.55);
  transform-origin: left center;
  transition: transform 0.4s var(--ease), width 0.4s var(--ease);
}

.reason:hover .reason__accent {
  transform: scaleX(1);
  width: 64px;
}

.industries {
  position: relative;
  isolation: isolate;
  padding: clamp(3.25rem, 7vw, var(--section-y)) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 45% at 0% 30%, rgba(20, 84, 88, 0.1), transparent 55%),
    linear-gradient(180deg, #f1f7f7 0%, #e8f1f1 50%, #f7fbfb 100%);
}

.industries__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 45% at 12% 20%, rgba(20, 84, 88, 0.12), transparent 58%),
    radial-gradient(ellipse 44% 40% at 90% 75%, rgba(241, 122, 40, 0.1), transparent 55%);
}

.industries__inner {
  position: relative;
  z-index: 1;
}

.industries .section-head {
  margin-bottom: 2rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: var(--card-gap);
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

.industry-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
  padding: 1.6rem 2.5rem 1.55rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(6, 38, 40, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.4s var(--ease),
    background 0.4s var(--ease);
}

.industry-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(20, 84, 88, 0.45), transparent 42%, rgba(241, 122, 40, 0.4));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.industry-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), rgba(20, 84, 88, 0.55));
  transform: scaleY(0.35);
  opacity: 0.55;
  transition: transform 0.4s var(--ease), opacity 0.35s var(--ease);
}

.industry-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(20, 84, 88, 0.2);
  box-shadow:
    0 22px 44px rgba(6, 38, 40, 0.12),
    0 8px 16px rgba(241, 122, 40, 0.07);
}

.industry-item:hover::before {
  opacity: 1;
}

.industry-item:hover::after {
  transform: scaleY(1);
  opacity: 1;
}

.industry-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(220, 236, 236, 0.95));
  border: 1px solid rgba(20, 84, 88, 0.14);
  box-shadow: 0 8px 16px rgba(6, 38, 40, 0.06);
  transition: transform 0.4s var(--ease), color 0.35s var(--ease), box-shadow 0.4s var(--ease);
}

.industry-item__icon svg {
  width: 22px;
  height: 22px;
}

.industry-item:hover .industry-item__icon {
  transform: scale(1.08);
  color: var(--orange);
  box-shadow: 0 12px 22px rgba(241, 122, 40, 0.14);
}

.industry-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.industry-item__body strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--teal);
  transition: color 0.3s var(--ease);
}

.industry-item:hover .industry-item__body strong {
  color: var(--teal-deep);
}

.industry-item__body span {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);
}

.industry-item__arrow {
  position: absolute;
  right: 1.15rem;
  top: 50%;
  font-size: 1.05rem;
  color: var(--orange);
  opacity: 0;
  transform: translate(4px, -50%);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
}

.industry-item:hover .industry-item__arrow {
  opacity: 1;
  transform: translate(0, -50%);
}

/* Why Biotechnology — Speaker insight (Sachin Gavad) */
.bio-insight {
  position: relative;
  isolation: isolate;
  padding: clamp(2.5rem, 5.5vw, 3.75rem) 0;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(ellipse 55% 48% at 12% 18%, rgba(241, 122, 40, 0.12), transparent 58%),
    radial-gradient(ellipse 48% 42% at 88% 82%, rgba(255, 176, 122, 0.16), transparent 55%),
    linear-gradient(180deg, #fffaf6 0%, #ffffff 42%, #fff7f1 100%);
}

.bio-insight__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bio-insight__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  animation: bioInsightFloat 12s ease-in-out infinite;
}

.bio-insight__orb--warm {
  width: min(48vw, 460px);
  height: min(48vw, 460px);
  left: -10%;
  top: -18%;
  opacity: 0.7;
  background: radial-gradient(circle, rgba(241, 122, 40, 0.28), transparent 70%);
}

.bio-insight__orb--soft {
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  right: -8%;
  bottom: -16%;
  opacity: 0.55;
  background: radial-gradient(circle, rgba(255, 176, 122, 0.35), transparent 72%);
  animation-delay: -4.5s;
}

.bio-insight__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(241, 122, 40, 0.18);
  animation: bioInsightSpin 28s linear infinite;
}

.bio-insight__ring--a {
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  right: -12%;
  top: 8%;
  opacity: 0.55;
}

.bio-insight__ring--b {
  width: min(36vw, 340px);
  height: min(36vw, 340px);
  left: 4%;
  bottom: 6%;
  opacity: 0.4;
  animation-direction: reverse;
  animation-duration: 36s;
}

.bio-insight__beam {
  position: absolute;
  inset: -20% -10%;
  background:
    linear-gradient(115deg, transparent 35%, rgba(241, 122, 40, 0.08) 48%, transparent 62%);
  animation: bioInsightBeam 10s ease-in-out infinite;
}

@keyframes bioInsightFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -22px) scale(1.08); }
}

@keyframes bioInsightSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bioInsightBeam {
  0%, 100% { opacity: 0.45; transform: translateX(-4%) rotate(-4deg); }
  50% { opacity: 0.9; transform: translateX(4%) rotate(-2deg); }
}

@keyframes bioInsightPulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.45); opacity: 0; }
}

@keyframes bioInsightMark {
  from { opacity: 0; transform: translateY(12px) scale(0.85); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.bio-insight__inner {
  position: relative;
  z-index: 1;
}

.bio-insight .bio-insight__layout {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 2.5rem;
  width: 100%;
}

.bio-insight .bio-insight__layout > * {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.bio-insight__speaker {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border-radius: calc(var(--radius) + 6px);
  background: #fff;
  border: 1px solid rgba(10, 61, 64, 0.08);
  box-shadow: 0 28px 64px rgba(6, 38, 40, 0.08);
}

.bio-insight__speaker::before {
  content: none;
}

.bio-insight__speaker-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
}

.bio-insight__aside {
  display: flex;
  flex-direction: column;
  flex: 0 0 34%;
  width: 34%;
  max-width: 34%;
  padding: 1.9rem 1.7rem 1.5rem;
  color: #fff;
  background:
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(241, 122, 40, 0.22), transparent 55%),
    linear-gradient(165deg, #0a3d40 0%, #062628 100%);
}

.bio-insight__aside .eyebrow {
  margin: 0;
  color: rgba(255, 176, 112, 0.95);
  letter-spacing: 0.16em;
}

.bio-insight__aside h2 {
  color: #fff;
  margin: 0.85rem 0 0;
  max-width: 12ch;
  font-size: clamp(1.7rem, 2.6vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.bio-insight__aside-copy {
  margin: 0.85rem 0 0;
  max-width: 22ch;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.bio-insight__main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  padding: 1.75rem 1.85rem 1.55rem;
  background: #fff;
}

.bio-insight__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bio-insight__tags li {
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(10, 61, 64, 0.06);
  border: 1px solid rgba(10, 61, 64, 0.1);
}

.bio-insight__quote {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.9rem;
  align-items: start;
  margin: 1.15rem 0 0;
  padding: 0;
  border-top: none;
}

.bio-insight__quote::before {
  content: none;
}

.bio-insight__mark {
  position: static;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background: linear-gradient(145deg, var(--orange) 0%, var(--orange-deep) 100%);
  box-shadow: 0 10px 22px rgba(241, 122, 40, 0.26);
  opacity: 1;
}

.bio-insight__speaker.reveal.is-visible .bio-insight__mark {
  animation: bioInsightMark 0.8s var(--ease) 0.15s forwards;
}

.bio-insight__pull {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0.1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.06rem, 1.5vw, 1.2rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--teal-deep);
  letter-spacing: -0.015em;
}

.bio-insight__support {
  margin: 1rem 0 0;
  max-width: 42rem;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.62;
  color: var(--muted);
}

.bio-insight__close {
  margin: 1.15rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--teal-deep);
  background: rgba(10, 61, 64, 0.045);
  border-left: 3px solid var(--orange);
}

.bio-insight__byline {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  padding: 0.85rem 0 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: none;
}

.bio-insight__byline:hover {
  transform: none;
  box-shadow: none;
}

.bio-insight__avatar {
  position: relative;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
}

.bio-insight__avatar-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  animation: none;
  pointer-events: none;
}

.bio-insight__avatar-core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--teal-deep);
  background: #fff;
  box-shadow: none;
}

.bio-insight__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.bio-insight__name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
}

.bio-insight__title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
}

.bio-insight__importance {
  display: flex;
  flex-direction: column;
}

.bio-insight__importance-label {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.bio-insight .bio-insight__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
}

.bio-insight__points > li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.45rem 1.4rem 1.5rem;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(10, 61, 64, 0.08);
  box-shadow: 0 16px 40px rgba(6, 38, 40, 0.06);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.35s var(--ease);
}

.bio-insight__points > li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  opacity: 0.85;
}

.bio-insight__points > li:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 122, 40, 0.22);
  box-shadow: 0 22px 48px rgba(6, 38, 40, 0.1);
}

.bio-insight__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  margin-bottom: 0.95rem;
}

.bio-insight__num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--orange-deep);
  background: rgba(241, 122, 40, 0.12);
  border: 1px solid rgba(241, 122, 40, 0.18);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.bio-insight__icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 12px;
  color: var(--teal);
  background: rgba(10, 61, 64, 0.06);
}

.bio-insight__icon svg {
  display: block;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
}

.bio-insight__points > li:hover .bio-insight__num {
  color: #fff;
  background: linear-gradient(145deg, var(--orange), var(--orange-deep));
  border-color: transparent;
}

.bio-insight__points > li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--teal-deep);
  margin: 0 0 0.55rem;
}

.bio-insight__points > li p {
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--muted);
}

.bio-insight__points > li p:last-child {
  margin-bottom: 0;
}

.bio-insight__sub {
  margin: 0.15rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.bio-insight__sub li {
  position: relative;
  display: block;
  padding: 0.45rem 0.7rem 0.45rem 1.05rem;
  margin: 0;
  border-radius: 10px;
  background: rgba(10, 61, 64, 0.04);
  border: none;
  box-shadow: none;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--ink);
}

.bio-insight__sub li::before {
  content: '';
  position: absolute;
  left: 0.45rem;
  top: 0.85rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.bio-insight__sub li:hover {
  transform: none;
  background: rgba(10, 61, 64, 0.04);
  border: none;
  box-shadow: none;
}

.catalogue {
  position: relative;
  isolation: isolate;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 48% 42% at 90% 10%, rgba(241, 122, 40, 0.08), transparent 55%),
    linear-gradient(180deg, #f4f8f8 0%, #eaf2f2 48%, #f7fbfb 100%);
}

.catalogue__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 45% at 12% 20%, rgba(20, 84, 88, 0.1), transparent 60%),
    radial-gradient(ellipse 45% 40% at 88% 75%, rgba(241, 122, 40, 0.1), transparent 55%);
}

.catalogue__inner {
  position: relative;
  z-index: 1;
}

.catalogue .section-head {
  margin-bottom: 1.75rem;
}

.catalogue .center-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2.25rem;
  text-align: center;
  gap: 0.85rem;
}

.product-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.15rem, 2vw, 1.75rem);
}

.product-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--teal);
  box-shadow: 0 18px 44px rgba(6, 38, 40, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.4s var(--ease),
    background 0.4s var(--ease);
}

.product-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(241, 122, 40, 0.45), transparent 42%, rgba(20, 84, 88, 0.2));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 2;
}

.product-tile:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(241, 122, 40, 0.28);
  box-shadow:
    0 24px 48px rgba(6, 38, 40, 0.12),
    0 8px 20px rgba(241, 122, 40, 0.1);
  color: var(--teal);
}

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

.product-tile:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.product-tile__media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 0.65rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(241, 122, 40, 0.1), transparent 55%),
    linear-gradient(165deg, #f8fcfc 0%, #e7f1f1 100%);
}

.product-tile__glow {
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 122, 40, 0.18), transparent 70%);
  filter: blur(18px);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.product-tile:hover .product-tile__glow {
  opacity: 1;
  transform: scale(1);
}

.product-tile__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 20px rgba(6, 38, 40, 0.14));
  transition: transform 0.5s var(--ease), filter 0.45s var(--ease);
}

.product-tile:hover .product-tile__media img {
  transform: scale(1.04);
  filter: drop-shadow(0 18px 26px rgba(6, 38, 40, 0.18));
}

.product-tile__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.45rem 1.5rem 1.6rem;
  border-top: 1px solid rgba(10, 61, 64, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.75));
}

.product-tile__meta {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.product-tile__body h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.2;
  transition: color 0.3s var(--ease);
}

.product-tile:hover .product-tile__body h3 {
  color: var(--teal-deep);
}

.product-tile .product-catalogue {
  margin: 0.15rem 0 0;
}

.product-tile__tagline {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1 1 10rem;
  min-width: 0;
  text-align: center;
}

.product-tile__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem 0.85rem;
  width: 100%;
  margin-top: 0.35rem;
}

.product-tile__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0;
  flex: 0 0 auto;
  padding: 0.62rem 1.05rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep, #d9651a) 100%);
  box-shadow: 0 8px 18px rgba(241, 122, 40, 0.28);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), gap 0.3s var(--ease);
}

.product-tile__cta span {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.product-tile:hover .product-tile__cta {
  color: #fff;
  gap: 0.55rem;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(241, 122, 40, 0.36);
}

.product-tile:hover .product-tile__cta span {
  transform: translateX(3px);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(241, 122, 40, 0.28);
}

.product-card__media {
  display: block;
  background: linear-gradient(160deg, #f7fbfb, #e7f1f1);
  text-decoration: none;
}

.product-card__frame {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 0.75rem;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 18px rgba(6, 38, 40, 0.12));
}

.product-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  padding: 1.35rem 1.45rem 1.55rem;
  border-top: 1px solid rgba(10, 61, 64, 0.08);
}

.product-card__meta {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.product-catalogue {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.product-catalogue span {
  display: inline-block;
  margin-right: 0.3rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-card__tagline {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted);
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1 1 10rem;
  min-width: 0;
  text-align: center;
}

.product-card__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem 0.85rem;
  width: 100%;
  margin-top: 0.2rem;
}

.product-card__title {
  margin: 0;
  font-size: 1.15rem;
}

.product-card__title a {
  color: inherit;
  text-decoration: none;
}

.product-card__title a:hover {
  color: var(--orange);
}

.product-card__details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0;
  flex: 0 0 auto;
  padding: 0.62rem 1.05rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep, #d9651a) 100%);
  box-shadow: 0 8px 18px rgba(241, 122, 40, 0.28);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), gap 0.3s var(--ease), color 0.2s var(--ease);
}

.product-card__details span {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.product-card__details:hover {
  color: #fff;
  gap: 0.55rem;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(241, 122, 40, 0.36);
}

.product-card__details:hover span {
  transform: translateX(3px);
}

.product-card__desc {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 0.85rem;
}

.product-card__features {
  margin-bottom: 0.85rem;
}

.product-card__features li {
  position: relative;
  padding-left: 1rem;
  color: var(--teal-mid);
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.product-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.product-card__caps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.cap-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
}

.catalogue-toolbar {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.search-field input {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.search-field input:focus {
  outline: none;
  border-color: rgba(241, 122, 40, 0.55);
  box-shadow: 0 0 0 4px rgba(241, 122, 40, 0.12);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1.05rem;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.filter-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 122, 40, 0.35);
}

.filter-btn.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border-color: transparent;
}

.product-count {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

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

.material {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.material:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.material__code {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.55rem;
}

.material p {
  color: var(--muted);
  margin-top: 0.45rem;
  font-size: 0.98rem;
}

.steps {
  display: grid;
  gap: 0.85rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
}

.step__num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
}

.step p {
  color: var(--muted);
  font-size: 0.98rem;
}

.mv-grid,
.values-grid,
.infra-grid,
.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

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

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.65rem;
}

.prose-block {
  max-width: 46rem;
}

.prose-block p {
  color: var(--muted);
  margin-top: 1rem;
}

/* Contact */
main > .section:has(.contact-layout) {
  background:
    radial-gradient(ellipse 55% 50% at 0% 20%, rgba(241, 122, 40, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 80%, rgba(20, 84, 88, 0.07), transparent 50%),
    linear-gradient(180deg, #f7fbfb 0%, #ffffff 45%, #f4f8f8 100%);
}

main > .section:has(.faq-list) {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(20, 84, 88, 0.06), transparent 55%),
    #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--container-gap);
  align-items: start;
}

.info-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.info-card {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.35s var(--ease);
}

.info-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), rgba(241, 122, 40, 0.2));
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(241, 122, 40, 0.25);
}

.info-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--teal-deep);
}

.info-card a,
.info-card p {
  display: block;
  color: var(--muted);
  font-size: 0.98rem;
  margin-top: 0.25rem;
}

.info-card a:hover {
  color: var(--orange);
}

.form-panel {
  padding: 2.25rem;
  border-radius: var(--radius);
}

.form-panel h3 {
  margin-bottom: 0.45rem;
  color: var(--teal-deep);
}

.form-intro {
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-size: 0.98rem;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal);
}

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 0.95rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(10, 61, 64, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(241, 122, 40, 0.55);
  box-shadow: 0 0 0 4px rgba(241, 122, 40, 0.12);
}

.form-status {
  font-size: 0.92rem;
  min-height: 1.2em;
}

.form-status--ok {
  color: #1b7a4a;
}

.form-status--error {
  color: #b42318;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-hover);
  min-height: 360px;
}

.map-frame iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
  margin-inline: auto;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal-deep);
  transition: color 0.25s var(--ease);
}

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

.faq-item summary::after {
  content: '+';
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(241, 122, 40, 0.12);
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.faq-item[open] summary {
  color: var(--orange);
}

.faq-item[open] summary::after {
  content: '–';
  background: var(--orange);
  color: #fff;
}

.faq-item p {
  padding: 0 1.5rem 1.45rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.35);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.whatsapp-fab:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(18, 140, 126, 0.42);
}

/* CTA band */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 4.75rem) 0;
  background:
    radial-gradient(ellipse at top right, rgba(241, 122, 40, 0.28), transparent 45%),
    radial-gradient(ellipse at 10% 30%, rgba(20, 84, 88, 0.3), transparent 55%),
    linear-gradient(145deg, #062628, #0a3d40 55%, #145458);
  color: var(--white);
  text-align: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: -30%;
  background:
    linear-gradient(115deg, rgba(241, 122, 40, 0.28), transparent 55%),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.14), transparent 50%);
  transform: rotate(-6deg);
  z-index: 0;
  pointer-events: none;
  animation: ctaGlow 12s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { opacity: 0.85; transform: rotate(-6deg) scale(1); }
  50% { opacity: 1; transform: rotate(-4deg) scale(1.03); }
}

.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.cta-band .container {
  position: relative;
  z-index: 1;
  padding: 3.75rem 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.95rem, 3.4vw, 2.65rem);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.76);
  margin: 0.85rem auto 0;
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-band .btn-group {
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* About Biotechblend — luxury enterprise split */
.about-story {
  --as-1: 8px;
  --as-2: 16px;
  --as-3: 24px;
  --as-4: 28px;
  --as-5: 32px;
  --as-6: 40px;
  --as-7: 56px;
  --as-8: 80px;
  --as-max: 1320px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 0% 20%, rgba(241, 122, 40, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 50% at 100% 80%, rgba(20, 84, 88, 0.08), transparent 50%),
    linear-gradient(180deg, #f8fbfb 0%, #eef5f5 48%, #f7fbfb 100%);
}

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

.about-story__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.about-story__orb--teal {
  width: min(48vw, 480px);
  height: min(48vw, 480px);
  top: -12%;
  left: -8%;
  background: rgba(20, 84, 88, 0.22);
}

.about-story__orb--orange {
  width: min(38vw, 380px);
  height: min(38vw, 380px);
  right: -6%;
  bottom: 8%;
  background: rgba(241, 122, 40, 0.16);
}

.about-story__mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10, 61, 64, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse at 40% 40%, black 20%, transparent 72%);
  opacity: 0.55;
}

.about-story__cursor-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 122, 40, 0.14), transparent 70%);
  transform: translate(-50%, -50%);
  left: 70%;
  top: 40%;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  will-change: left, top;
}

.about-story.is-glowing .about-story__cursor-glow {
  opacity: 1;
}

.site-cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 122, 40, 0.12), transparent 70%);
  transform: translate(-50%, -50%);
  left: -999px;
  top: -999px;
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  transition: opacity 0.25s var(--ease);
  will-change: left, top;
  mix-blend-mode: multiply;
}

.site-cursor-glow.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .site-cursor-glow {
    display: none;
  }
}

.about-story__shell {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--as-max));
  margin: 0 auto;
  padding: var(--as-8) 0;
}

.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: var(--as-7);
  align-items: stretch;
}

.about-story__media {
  position: relative;
  min-width: 0;
  align-self: stretch;
}

.about-story__figure {
  position: relative;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--teal-soft);
  box-shadow:
    0 32px 72px rgba(6, 38, 40, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.5);
}

.about-story__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease);
}

.about-story__media.reveal.is-visible .about-story__photo,
.about-story__media.is-visible .about-story__photo {
  transform: scale(1);
}

.about-story__photo-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(6, 38, 40, 0.28) 100%),
    linear-gradient(90deg, rgba(6, 38, 40, 0.08), transparent 40%);
  pointer-events: none;
}

.about-float {
  position: absolute;
  z-index: 2;
  min-width: 148px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 40px rgba(6, 38, 40, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: left;
  animation: aboutCardFloat 7s ease-in-out infinite;
}

.about-float strong {
  display: block;
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.1;
  color: var(--orange);
}

.about-float span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--teal-deep);
}

.about-float--a {
  top: 10%;
  left: -12px;
  animation-delay: 0s;
}

.about-float--b {
  top: 42%;
  right: -10px;
  animation-delay: -2.2s;
}

.about-float--c {
  bottom: 12%;
  left: 10%;
  animation-delay: -4s;
}

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

.about-story__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  min-width: 0;
  width: 100%;
  padding-top: 8px;
}

.about-story__eyebrow {
  margin: 0 0 16px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1;
  text-align: left;
}

.about-story__heading {
  margin: 0;
  max-width: 34rem;
  width: 100%;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--teal-deep);
  text-align: left;
}

.about-story__heading span {
  display: block;
}

.about-story__heading span:last-child {
  color: var(--teal);
}

.about-story__copy {
  margin: 24px 0 0;
  max-width: 36rem;
  width: 100%;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  text-align: left;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 40px 0 0;
  padding: 0;
  width: 100%;
  list-style: none;
}

.about-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(6, 38, 40, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  text-align: left;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}

.about-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(241, 122, 40, 0.15));
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: transform 0.4s var(--ease);
}

.about-feature:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(241, 122, 40, 0.28);
  box-shadow:
    0 22px 48px rgba(6, 38, 40, 0.1),
    0 8px 18px rgba(241, 122, 40, 0.08);
}

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

.about-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--orange);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(231, 241, 241, 0.9));
  border: 1px solid rgba(241, 122, 40, 0.18);
  box-shadow: 0 8px 18px rgba(6, 38, 40, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.about-feature__icon svg {
  width: 20px;
  height: 20px;
}

.about-feature:hover .about-feature__icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 24px rgba(241, 122, 40, 0.16);
}

.about-feature__text {
  min-width: 0;
  width: 100%;
}

.about-feature__text h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--teal-deep);
}

.about-feature__text p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.about-story__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 40px 0 0;
  width: 100%;
}

.about-story__actions .btn {
  min-height: 48px;
  padding: 0.95rem 1.6rem;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: var(--as-7);
  padding: 12px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 52px rgba(6, 38, 40, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  align-items: stretch;
}

.about-metric {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 124px;
  padding: 28px 16px;
  text-align: center;
  border-radius: 20px;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}

.about-metric:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(10, 61, 64, 0.14), transparent);
}

.about-metric:hover {
  background: rgba(231, 241, 241, 0.55);
  transform: translateY(-2px);
}

.about-metric strong {
  display: block;
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.45rem);
  line-height: 1;
  color: var(--orange);
}

.about-metric > span {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--teal-deep);
}

@media (prefers-reduced-motion: reduce) {
  .about-float,
  .about-story__cursor-glow,
  .about-story__photo {
    animation: none !important;
    transition: none !important;
  }
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 60% at 90% 0%, rgba(241, 122, 40, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 50% at 10% 100%, rgba(20, 84, 88, 0.35), transparent 55%),
    var(--teal-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 5rem 0 1.75rem;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 72%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--container-gap);
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-brand,
.footer-col {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.footer-brand .logo {
  margin-bottom: 0.9rem;
  max-width: none;
  gap: 0.85rem;
}

.footer-brand .logo img {
  width: auto;
  height: 52px;
  max-width: 64px;
  filter: none;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.footer-brand .logo__brand {
  color: #ffb070;
}

.footer-brand .logo__sub {
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand .logo__slogan {
  display: none;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--orange);
  margin: 0.35rem 0 0.75rem;
}

.footer-brand p {
  font-size: 0.94rem;
  line-height: 1.7;
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.footer-brand p:not(.footer-tagline) {
  font-weight: 500;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}

.social-links a:hover {
  border-color: rgba(241, 122, 40, 0.55);
  background: rgba(241, 122, 40, 0.12);
  color: #ffc08f;
  transform: translateY(-2px);
}

.footer-col h4 {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  padding-bottom: 0.65rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(241, 122, 40, 0.2));
}

.footer-col {
  padding-left: 1.35rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-col:first-of-type {
  border-left: none;
  padding-left: 0;
}

.footer-col a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
  margin-bottom: 0.7rem;
  padding: 0.15rem 0 0.15rem 0;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-col a[href*="maps.google"] {
  align-items: flex-start;
  text-align: left;
  max-width: 18rem;
}

.footer-col a::before {
  content: none;
}

.footer-col a::after {
  content: '→';
  color: rgba(241, 122, 40, 0.95);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  font-weight: 900;
  flex-shrink: 0;
}

.footer-col a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-col a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.footer-col a:focus-visible {
  outline: 2px solid rgba(241, 122, 40, 0.7);
  outline-offset: 3px;
  border-radius: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  color: rgba(241, 122, 40, 0.85);
  font-weight: 700;
}

.footer-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal-deep);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  box-shadow: 0 18px 40px rgba(6, 38, 40, 0.12);
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}

.footer-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer-top:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(4px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease),
    filter 0.85s var(--ease);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .site-header::after,
  .reveal,
  .nav-menu a,
  .nav-cta,
  .btn,
  .product-card,
  .product-tile,
  .glass-card,
  .hero-slide,
  .hero-slide__img,
  .hero-slider__progress-bar,
  .hero-slide__orb,
  .hero-float,
  .page-hero__orb,
  .cta-band::before,
  .bio-insight__orb,
  .bio-insight__ring,
  .bio-insight__beam,
  .bio-insight__avatar-ring {
    animation: none !important;
  }
  .reveal,
  .nav-menu a,
  .nav-cta,
  .btn,
  .product-card,
  .product-tile,
  .glass-card,
  .hero-slide,
  .hero-slide__img,
  .hero-slider__progress-bar {
    transition-duration: 0.01ms !important;
  }

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

  .bio-insight__mark {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .bio-insight__quote::before {
    transform: scaleY(1) !important;
  }

  .bio-insight__points > li:hover,
  .bio-insight__points > li:hover .bio-insight__num,
  .bio-insight__byline:hover {
    transform: none;
  }
}
