/**
 * Oxycron design tokens — extracted from oxyhealth.com CSS
 * Fonts per project spec: Poppins, Noto Sans TC, Amiri
 */
:root {
  /* OxyHealth exact colors */
  --oh-white: #ffffff;
  --oh-black: #000000;
  --oh-dark: #1a1b1f;
  --oh-navy: #132342;
  --oh-blue-deep: #061b3b;
  --oh-blue-section: #0d244e;
  --oh-blue-accent: #375086;
  --oh-gray-bg: #f4f4f4;
  --oh-gray-mid: #d7d7d7;
  --oh-gray-text: #32343a;
  --oh-gray-muted: #43464d;
  --oh-gray-light: #919191;
  --oh-border: #303030;
  --oh-nav-bg: #000000c2;
  --oh-dropdown-bg: #000000bf;
  --oh-text-muted: #d1d1d1;

  /* Layout — oxyhealth.com */
  --oh-container: 60rem;
  --oh-container-wide: 65rem;
  --oh-nav-height: 5rem;
  --oh-hero-height: 90svh;
  --oh-hero-max: 75rem;
  --oh-section-pad: 6rem;

  /* Typography */
  --oh-font-latin: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --oh-font-zh: 'Noto Sans TC', 'Poppins', sans-serif;
  --oh-font-ar: 'Amiri', 'Poppins', serif;

  /* Buttons — .learn_more_button */
  --oh-btn-radius: 11px;
  --oh-btn-border: 2px solid #fff;
  --oh-product-bar-radius: 12px;

  /* Gradients */
  --oh-gradient-diff: linear-gradient(#132342 25%, #000);
  --oh-gradient-steps: linear-gradient(#d7d7d7 31%, #fff 81%);
  --oh-gradient-nav: linear-gradient(#00000080, #00000080);

  /* Transitions — webflow default */
  --oh-ease: 0.3s ease;
  --oh-ease-nav: 0.4s ease;
}

html { scroll-behavior: smooth; overflow-x: clip; }
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--oh-font-latin);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--oh-gray-text);
  background: var(--oh-white);
  -webkit-font-smoothing: antialiased;
}
body.lang-zh-hant { font-family: var(--oh-font-zh); }
body.oxycron-rtl, body.lang-ar { font-family: var(--oh-font-ar); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: var(--oh-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section--black { background: var(--oh-black); color: var(--oh-white); }
.section--gray { background: var(--oh-gray-bg); }
.section--gradient { background-image: var(--oh-gradient-steps); padding-top: 30rem; }
.section--white { background: var(--oh-white); }

/* Header / Nav — .oxy_nav */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--oh-nav-height);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: var(--oh-nav-bg);
  background-image: var(--oh-gradient-nav);
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--oh-container);
  padding: 0 1.5rem;
}
.site-logo { height: 2.75rem; width: auto; display: block; }
.site-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.site-footer__logo { display: inline-block; margin-bottom: 0.75rem; }
.site-footer__logo-img { height: 2.25rem; width: auto; display: block; }
.primary-nav { display: flex; align-items: center; gap: 12px; }
.primary-nav a {
  color: var(--oh-white);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  transition: opacity var(--oh-ease);
}
.primary-nav a:hover, .primary-nav a.is-active { opacity: 1; }
.primary-nav a { opacity: 0.85; }

/* Products dropdown — OxyHealth nav */
.nav-dropdown { position: relative; }
.nav-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--oh-white);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: inherit;
  opacity: 0.85;
  transition: opacity var(--oh-ease);
}
.nav-dropdown__toggle:hover,
.nav-dropdown.is-open .nav-dropdown__toggle { opacity: 1; }
.nav-dropdown__caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--oh-ease);
}
.nav-dropdown.is-open .nav-dropdown__caret { transform: rotate(180deg); }
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: var(--oh-dropdown-bg);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--oh-ease);
  z-index: 120;
  text-align: left;
}
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown__menu a {
  display: block;
  color: var(--oh-white);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 18px;
  opacity: 0.9;
  transition: background var(--oh-ease), opacity var(--oh-ease);
}
.nav-dropdown__menu a:hover { background: rgba(255,255,255,.08); opacity: 1; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--oh-white);
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle svg { width: 24px; height: 24px; }

/* Language switcher */
.oxycron-lang-switcher { position: relative; margin-left: 8px; }
.oxycron-lang-toggle {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--oh-white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  cursor: pointer;
  font-family: inherit;
}
.oxycron-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  max-height: 320px;
  overflow-y: auto;
  background: var(--oh-white);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--oh-ease);
  z-index: 100;
}
.oxycron-lang-switcher.is-open .oxycron-lang-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.oxycron-lang-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  color: var(--oh-dark);
  font-size: 0.875rem;
  transition: background var(--oh-ease);
}
.oxycron-lang-menu a:hover { background: var(--oh-gray-bg); }
.oxycron-lang-menu .is-active a { font-weight: 600; color: var(--oh-navy); }

.site-footer__langs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  padding: 2rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2rem;
}
.site-footer__langs strong {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
.oxycron-lang-switcher--footer { margin-left: 0; }
.oxycron-lang-switcher--footer .oxycron-lang-menu {
  top: auto;
  bottom: calc(100% + 8px);
  transform: translateY(8px);
}
.oxycron-lang-switcher--footer.is-open .oxycron-lang-menu {
  transform: translateY(0);
}

/* Hero — .hero_section */
.hero {
  position: relative;
  height: var(--oh-hero-height);
  max-height: var(--oh-hero-max);
  overflow: hidden;
}
.hero__slides { position: relative; height: 100%; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: 50% 70%;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}
.hero__slide.is-active {
  opacity: 1;
  filter: brightness(1.12) contrast(1.02);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.04) 0%, rgba(0,0,0,.18) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 2;
  display: flex; justify-content: center;
  padding-top: 144px;
  height: 100%;
}
.hero__title {
  color: var(--oh-white);
  text-align: center;
  width: 43.7rem;
  max-width: 90%;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 2rem;
  animation: fadeUp 0.8s ease forwards;
}
.hero__products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  max-width: 52rem;
  margin: 0 auto;
}
.hero__products a {
  color: var(--oh-white);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
  transition: opacity var(--oh-ease);
}
.hero__products a:hover { opacity: 0.65; }

/* Product bar — .product_bar_wrap_desktop */
.chambers-heading {
  color: var(--oh-white);
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}
.product-bar {
  background: var(--oh-black);
  border: 1px solid var(--oh-white);
  border-radius: var(--oh-product-bar-radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 58rem;
  max-width: calc(100% - 3rem);
  margin-top: -29px;
  padding: 15px 11px;
  position: relative;
  z-index: 10;
  overflow-x: auto;
  scrollbar-width: none;
}
.product-bar::-webkit-scrollbar { display: none; }
.product-bar a {
  color: var(--oh-white);
  padding: 0 14px;
  font-size: 0.78rem;
  font-weight: 200;
  line-height: 1.7rem;
  white-space: nowrap;
  transition: opacity var(--oh-ease);
}
.product-bar a:hover { opacity: 0.7; }

/* Difference — .oxy_difference_wrap */
.difference {
  z-index: 2;
  text-align: center;
  background-image: var(--oh-gradient-diff);
  border-radius: 9px;
  max-width: var(--oh-container-wide);
  margin-top: 148px;
  padding: 2rem 3.8rem 2.7rem;
  position: relative;
}
.difference__title {
  color: var(--oh-white);
  margin: 3rem 0;
  font-size: 3.5rem;
  font-weight: 300;
}
.difference__text {
  color: var(--oh-white);
  font-size: 1.1rem;
  font-weight: 200;
  max-width: 50rem;
  margin: 0 auto 3rem;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}
.pillar__box {
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.pillar__title {
  color: var(--oh-white);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.pillar__text {
  color: var(--oh-white);
  font-size: 0.95rem;
  font-weight: 200;
  line-height: 1.6;
}

/* Carousel — full-bleed infinite slider */
.carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 4rem 0;
}
.carousel__wrap {
  position: relative;
  max-width: none;
  margin: 0;
  --carousel-pad: 4.5rem;
  padding: 0 var(--carousel-pad);
}
.carousel__viewport {
  overflow: hidden;
  --carousel-cols: 3;
  --carousel-gap: 16px;
  width: 100%;
}
.carousel__track {
  display: flex;
  gap: var(--carousel-gap);
  transition: transform 0.55s ease;
  will-change: transform;
}
.carousel__slide {
  flex: 0 0 calc((100vw - (var(--carousel-pad) * 2) - (var(--carousel-gap) * (var(--carousel-cols) - 1))) / var(--carousel-cols));
  min-width: 0;
  position: relative;
}
.carousel__slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
.carousel__slide > a:first-child { display: block; }
.carousel__btn {
  background: var(--oh-black);
  border-radius: 5px;
  color: var(--oh-text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  margin-top: -1.1rem;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: color var(--oh-ease), background var(--oh-ease);
  white-space: nowrap;
}
.carousel__btn:hover { color: var(--oh-white); background: var(--oh-navy); }
.carousel__arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: var(--oh-white);
  font-size: 1.85rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background var(--oh-ease), border-color var(--oh-ease);
}
.carousel__arrow:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); }
.carousel__prev { left: 1rem; }
.carousel__next { right: 1rem; }

/* Stats global band — thousands_in_use (OxyHealth) */
.stats-global {
  position: relative;
  width: 100%;
  padding: 5rem 1.5rem 6rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(55, 80, 134, 0.45) 0%, transparent 42%),
    radial-gradient(ellipse at center, #1a3a6e 0%, #061b3b 38%, #000 78%);
  overflow: hidden;
}
.stats-global::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 55%, rgba(255,255,255,.06) 0%, transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, transparent 35%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}
.stats-global__inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  color: var(--oh-white);
}
.stats-global__avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}
.stats-global__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,.85);
  margin-left: -14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.stats-global__avatar:first-child { margin-left: 0; }
.stats-global__badge {
  display: inline-block;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 14px;
  padding: 1.25rem 2.5rem;
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.stats-global__copy p {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0.95;
}
.stats-global__copy p:last-child { margin-bottom: 0; }

/* Finance */
.finance-box {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 52rem;
  margin: -100px auto 4rem;
  padding: 2rem;
  background: var(--oh-white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}
.finance-box__img { max-width: 280px; border-radius: 16px; }
.finance-box__title { font-size: 2.5rem; font-weight: 300; margin-bottom: 1rem; }
.finance-box__text { font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }

/* Buttons — .learn_more_button */
.btn-primary {
  z-index: 5;
  background-color: var(--oh-black);
  border: var(--oh-btn-border);
  border-radius: var(--oh-btn-radius);
  color: var(--oh-white);
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21rem;
  max-width: 100%;
  cursor: pointer;
  transition: all var(--oh-ease);
  font-family: inherit;
}
.btn-primary:hover {
  background: var(--oh-white);
  color: var(--oh-black);
}

/* Steps */
.steps { padding: 4rem 1.5rem 6rem; }
.steps__title { font-size: 2.5rem; font-weight: 300; margin-bottom: 0.5rem; }
.steps__sub { font-size: 1.5rem; font-weight: 600; margin-bottom: 3rem; }
.steps__grid { max-width: 52rem; margin: 0 auto; }
.step-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 2.5rem;
  align-items: start;
}
.step-item__label { font-weight: 600; letter-spacing: 0.1em; padding-top: 0.5rem; }
.step-item__num {
  width: 48px; height: 48px;
  border: 2px solid var(--oh-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}
.step-item__title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.step-item__text { font-size: 0.95rem; line-height: 1.6; }

/* Lifestyle circle gallery — 5 columns desktop */
.lifestyle-hero {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--oh-white);
}
.lifestyle-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(6,27,59,.72));
}
.lifestyle-hero__content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding: 4rem 1.5rem;
}
.lifestyle-hero__content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin: 0 0 1rem;
}
.lifestyle-hero__content p { line-height: 1.7; margin: 0; opacity: .95; }

.spotlight { background: var(--oh-black); }
.spotlight__img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.lifestyle-circle {
  padding: 3.5rem 0 4rem;
  background: var(--oh-white);
}
.lifestyle-circle__wrap {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 3rem;
}
.lifestyle-circle__viewport { overflow: hidden; }
.lifestyle-circle__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s ease;
}
.lifestyle-circle__item {
  flex: 0 0 calc((100% - 5rem) / 5);
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 10px 32px rgba(0,0,0,.12);
}
.lifestyle-circle__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lifestyle-circle__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: var(--oh-white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
}
.lifestyle-circle__prev { left: 0.5rem; }
.lifestyle-circle__next { right: 0.5rem; }

.page-hero-shell {
  position: relative;
  height: min(72vh, 560px);
  margin-top: var(--oh-nav-height);
}
.page-hero {
  position: relative;
  min-height: min(72vh, 560px);
  background-size: cover;
  background-position: center;
}
.page-hero--scroll {
  position: fixed;
  top: var(--oh-nav-height);
  left: 0;
  right: 0;
  height: min(72vh, 560px);
  z-index: 1;
  will-change: transform, opacity;
  transition: opacity 0.05s linear;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(6,27,59,.72));
}
.page-hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  max-width: var(--oh-container-wide);
  margin: 0 auto;
  left: 0;
  right: 0;
}
.page-hero__content h1 {
  color: var(--oh-white);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  margin: 0;
  max-width: 52rem;
}
.page-hero__subtitle {
  color: rgba(255,255,255,.92);
  max-width: 52rem;
  margin: 1rem 0 0;
  line-height: 1.7;
  font-size: 1.05rem;
}
.inner-page-content {
  position: relative;
  z-index: 2;
  background: var(--oh-white);
}
body.has-page-hero .site-footer {
  position: relative;
  z-index: 2;
}

.oxycron-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--oh-dark);
  color: var(--oh-white);
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -8px 32px rgba(0,0,0,.25);
}
.oxycron-cookie[hidden] { display: none !important; }
.oxycron-cookie p { margin: 0; max-width: 52rem; line-height: 1.5; font-size: 0.92rem; }
.oxycron-cookie__actions { display: flex; gap: 0.75rem; }
.oxycron-cookie__btn {
  border: none;
  padding: 0.65rem 1.25rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.oxycron-cookie__btn--accept { background: var(--oh-white); color: var(--oh-black); }
.oxycron-cookie__btn--decline { background: transparent; color: var(--oh-white); border: 1px solid rgba(255,255,255,.35); }

.product-specs table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
}
.product-specs th,
.product-specs td {
  text-align: left;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e4e4e4;
}
.product-specs th { width: 40%; color: #666; font-weight: 500; }
.product-features ul,
.product-use-cases ul { padding-left: 1.25rem; line-height: 1.8; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.blog-card {
  border: 1px solid #e4e4e4;
  border-radius: 9px;
  overflow: hidden;
  background: var(--oh-white);
}
.blog-card__thumb img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-card__body { padding: 1.25rem 1.5rem 1.5rem; }
.blog-card__body h2 { font-size: 1.2rem; margin: 0 0 0.75rem; }
.blog-card__body h2 a { color: inherit; text-decoration: none; }
.blog-card__link { font-weight: 600; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }

.hbot-gallery__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.hbot-gallery__track img {
  flex: 0 0 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.legal-page__body { padding: 3rem 0 4rem; line-height: 1.75; }
.legal-page__body h2 { margin-top: 2rem; }

/* Lifestyle gallery — horizontal infinite marquee (legacy) */
.lifestyle-gallery {
  padding: 0;
  background: var(--oh-white);
  overflow: hidden;
}
.lifestyle-gallery__track {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lifestyle-gallery__row {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: lifestyleMarquee 48s linear infinite;
  padding: 0 14px 3rem;
}
.lifestyle-gallery__row:hover { animation-play-state: paused; }
.lifestyle-gallery__item {
  margin: 0;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.lifestyle-gallery__item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,.18);
}
.lifestyle-gallery__item img {
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.lifestyle-gallery__item:hover img { transform: scale(1.06); }
.lifestyle-gallery__item--tall img { width: 260px; height: 360px; }
.lifestyle-gallery__item--wide img { width: 420px; height: 300px; }
.lifestyle-gallery__item--medium img { width: 320px; height: 320px; }

@keyframes lifestyleMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Form — .general_lead_wrap */
.lead-form-section { padding: 5rem 1.5rem; background: var(--oh-white); text-align: left; }
.lead-form__header {
  max-width: 52rem;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem 3rem;
  align-items: start;
}
.lead-form__title {
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.05;
  font-weight: 600;
  margin: 0;
}
.lead-form__desc {
  max-width: none;
  margin: 0;
  line-height: 1.7;
  color: #43464d;
  padding-top: 0.35rem;
}
.lead-form {
  max-width: 52rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.lead-form input, .lead-form textarea, .lead-form select {
  width: 100%;
  border: 1px solid #e4e4e4;
  padding: 21px 20px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.4s;
}
.lead-form input:focus, .lead-form textarea:focus { border-color: #43464d; outline: none; }
.lead-form .full-width { grid-column: 1 / -1; }
.lead-form textarea { min-height: 120px; resize: vertical; }
.lead-form label { display: block; font-size: 14px; margin-bottom: 6px; font-weight: 500; }

/* Newsletter */
.newsletter {
  padding: 4rem 1.5rem;
  max-width: 52rem;
  margin: 0 auto;
}
.newsletter__title { font-size: 2.7rem; font-weight: 300; line-height: 3.1rem; margin: 26px 0 12px; }
.newsletter__form { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; justify-content: center; }
.newsletter__form input {
  flex: 1; min-width: 240px;
  border: 1px solid #e4e4e4;
  padding: 18px 20px;
  font-size: 14px;
}
.newsletter__form button {
  background: var(--oh-black);
  color: var(--oh-white);
  border: none;
  padding: 18px 30px;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--oh-ease);
}
.newsletter__form button:hover { background: var(--oh-dark); }

/* Phone CTA */
.phone-cta {
  text-align: center;
  font-size: 1.6rem;
  padding: 3rem 1.5rem;
  background: var(--oh-black);
  color: var(--oh-white);
}
.phone-cta a { text-decoration: underline; }

/* Footer — .footer_oxy */
.site-footer {
  background: var(--oh-black);
  color: var(--oh-white);
  padding-bottom: 68px;
}
.site-footer__phone { text-align: center; font-size: 1.6rem; padding: 6rem 1.5rem 2.4rem; }
.site-footer__social { display: flex; justify-content: center; gap: 20px; margin-top: 2.4rem; }
.site-footer__divider {
  border-top: 1px solid var(--oh-border);
  border-bottom: 1px solid var(--oh-border);
  margin: 31px auto;
  padding: 16px 0;
  max-width: var(--oh-container-wide);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr 1fr 1fr;
  gap: 2rem;
  max-width: var(--oh-container-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  font-size: 0.9rem;
  font-weight: 300;
  text-align: left;
}
.site-footer__grid strong { display: block; margin-bottom: 0.75rem; }
.site-footer__grid a { display: block; color: var(--oh-white); margin-bottom: 0.4rem; opacity: 0.85; transition: opacity var(--oh-ease); }
.site-footer__grid a:hover { opacity: 1; }
.site-footer__grid span { display: block; margin-bottom: 0.4rem; opacity: 0.85; }
.site-footer__copy {
  text-align: center;
  max-width: 41rem;
  margin: 0 auto 1rem;
  font-size: 0.8rem;
  font-weight: 300;
  padding: 0 1.5rem;
}
.site-footer__trademark {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.75;
  padding: 0 1.5rem;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform var(--oh-ease-nav);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  color: var(--oh-white);
  font-size: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mobile-nav__sub {
  padding-left: 1rem !important;
  font-size: 0.85rem !important;
  opacity: 0.85;
}
.mobile-nav__group { border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav__group > a:first-child { border-bottom: none; }
body.nav-open { overflow: hidden; }

/* Product archive cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-circle__item { flex: 0 0 calc((100% - 3.75rem) / 4); }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
  .lifestyle-circle__item { flex: 0 0 calc((100% - 2.5rem) / 3); }
}
.product-card {
  border: 1px solid #e4e4e4;
  border-radius: 9px;
  overflow: hidden;
  background: var(--oh-white);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.product-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.product-card__image { display: block; overflow: hidden; }
.product-card__thumb {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.product-card__body { padding: 1.35rem 1.5rem 1.5rem; }
.product-card__title {
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
  letter-spacing: 0.02em;
}
.product-card__title a { color: inherit; text-decoration: none; }
.product-card__meta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #666;
  margin: 0 0 0.75rem;
}
.product-card__excerpt {
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0 0 1rem;
  color: #333;
}
.product-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oh-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-single__hero { margin-bottom: 2rem; border-radius: 9px; overflow: hidden; }
.product-single__image { width: 100%; height: auto; display: block; }
.product-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: -0.5rem 0 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #666;
}

.entry-content .product-specs {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f7f7f7;
  border-radius: 9px;
}
.entry-content .product-specs h2,
.entry-content h2 {
  font-size: 1.25rem;
  margin: 0 0 1rem;
}
.entry-content .product-specs table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.entry-content .product-specs th,
.entry-content .product-specs td {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e4e4e4;
  text-align: left;
  font-weight: 400;
}
.entry-content .product-specs th {
  width: 40%;
  font-weight: 600;
}
.entry-content .product-use-cases,
.entry-content .product-features {
  line-height: 1.8;
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.about-page {
  padding: calc(var(--oh-nav-height) + 3rem) 1.5rem 4rem;
  max-width: 56rem;
}
.about-page__header { text-align: center; margin-bottom: 2rem; }
.about-page__header h1 { font-size: 3rem; font-weight: 300; }
.about-page__intro { line-height: 1.8; margin-bottom: 3rem; }
.about-team h2, .about-creds h2 { font-size: 1.75rem; margin-bottom: 1rem; text-align: center; }
.about-team__lead { text-align: center; max-width: 40rem; margin: 0 auto 2rem; color: #444; }
.about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.about-team__card {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid #e4e4e4;
  border-radius: 9px;
}
.about-team__avatar {
  width: 64px; height: 64px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--oh-navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 600;
}
.about-team__card h3 { margin: 0 0 0.35rem; font-size: 1.1rem; }
.about-team__card p { margin: 0; color: #666; font-size: 0.9rem; }
.about-creds__list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
  display: grid;
  gap: 0.75rem;
}
.about-creds__list li {
  padding: 1rem 1.25rem;
  background: #f7f7f7;
  border-radius: 9px;
  border-left: 4px solid var(--oh-navy);
}
.about-pillars { margin-top: 1rem; }

.contact-page { padding-top: calc(var(--oh-nav-height) + 3rem); }
.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 52rem;
  margin: 0 auto 2rem;
  text-align: left;
}
.contact-page__map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 9px;
}
.contact-page__map-title {
  font-size: 1rem;
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.form-notice {
  max-width: 52rem;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 9px;
}
.form-notice--success { background: #edf7ed; color: #1e4620; }
.form-notice--error { background: #fdecea; color: #611a15; }

.mobile-nav__lang {
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 0.5rem;
}

@media (max-width: 991px) {
  .about-team__grid { grid-template-columns: 1fr; }
  .contact-page__grid { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
  .primary-nav { display: none; }
  .menu-toggle { display: block; }
  .pillars { grid-template-columns: 1fr; }
  .product-bar { flex-wrap: nowrap; justify-content: flex-start; gap: 0.5rem; width: calc(100% - 2rem); }
  .finance-box { flex-direction: column; text-align: center; margin-top: -60px; }
  .lead-form { grid-template-columns: 1fr; }
  .lead-form__header { grid-template-columns: 1fr; gap: 1rem; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .section--gradient { padding-top: 12rem; }
  .difference { margin-top: 80px; padding: 2rem 1.5rem; }
  .difference__title { font-size: 2rem; }
  .step-item { grid-template-columns: 1fr; text-align: center; }
  .stats-global__avatar { width: 72px; height: 72px; margin-left: -10px; }
  .carousel__wrap { --carousel-pad: 2rem; }
  .carousel__viewport { --carousel-cols: 2; }
  .hero__products { gap: 0.5rem 0.75rem; }
  .hero__products a { font-size: 0.62rem; }
  .lifestyle-gallery__item--tall img { width: 220px; height: 300px; }
  .lifestyle-gallery__item--wide img { width: 320px; height: 230px; }
  .lifestyle-gallery__item--medium img { width: 260px; height: 260px; }
}

@media (max-width: 479px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 1.75rem; }
  .stats-global__badge { padding: 1rem 1.25rem; }
  .carousel__viewport { --carousel-cols: 1; }
}
