:root {
  --celery-green: #22c55e;
  --celery-green-dark: #16a34a;
  --celery-green-light: #4ade80;
  --celery-navy: #002147;
  --celery-navy-dark: #00152e;
  --celery-navy-mid: #0a2d5c;
  --celery-blue: #2563eb;
  --celery-gray-50: #f8fafc;
  --celery-gray-100: #f1f5f9;
  --celery-gray-200: #e2e8f0;
  --celery-gray-400: #94a3b8;
  --celery-gray-500: #64748b;
  --celery-gray-600: #475569;
  --celery-text: #1e293b;
  --celery-text-light: #64748b;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset, 72px);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--celery-text);
  background: #fff;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  padding-top: var(--header-offset, 72px);
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* Dot grid pattern */
.hero-dot-grid {
  background-image: radial-gradient(circle, #cbd5e1 1.2px, transparent 1.2px);
  background-size: 18px 18px;
}

/* Hero wave decoration */
.hero-wave {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 70%;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 1024px) {
  .hero-wave {
    width: 75%;
    height: 55%;
    bottom: 80px;
  }
}

/* Category floating bar — overlaps hero banner + about section */
.category-float {
  position: relative;
  z-index: 30;
  isolation: isolate;
}

.category-bar {
  position: relative;
  z-index: 30;
  background: #ffffff;
  border: 1px solid #eef2f7;
  box-shadow:
    0 16px 40px rgba(0, 33, 71, 0.12),
    0 4px 12px rgba(0, 33, 71, 0.05);
}

.about-section {
  position: relative;
  z-index: 0;
}

.category-row {
  width: 100%;
}

.category-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  padding: 10px 4px 12px;
  text-align: center;
  border-bottom: none;
  border-right: 1px solid #eef2f7;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease;
  transition-delay: calc(var(--i, 0) * 70ms);
}

.category-item:last-child,
.category-item-last {
  border-bottom: none;
  border-right: none;
}

.category-bar.is-visible .category-item {
  opacity: 1;
  transform: translateY(0);
}

.category-item:hover {
  background: #f8fafc;
}

.category-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 3px;
  background: var(--celery-green);
  border-radius: 2px 2px 0 0;
}

.category-thumb {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.category-item:hover .category-thumb {
  transform: scale(1.06);
}

.category-gear {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
}

.category-gear svg {
  width: 22px;
  height: 22px;
}

.category-label {
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  color: #1e293b;
  transition: color 0.25s ease;
}

.category-item:hover .category-label {
  color: var(--celery-green-dark);
}

@media (min-width: 640px) {
  .category-item {
    flex-direction: row;
    text-align: left;
    gap: 10px;
    padding: 16px 10px;
  }

  .category-item.active::after {
    width: 48px;
  }

  .category-thumb,
  .category-gear {
    width: 44px;
    height: 44px;
  }

  .category-gear svg {
    width: 28px;
    height: 28px;
  }

  .category-label {
    font-size: 12px;
    line-height: 1.25;
  }
}

@media (min-width: 768px) {
  .category-item {
    padding: 18px 12px;
    justify-content: center;
  }

  .category-thumb,
  .category-gear {
    width: 52px;
    height: 52px;
  }

  .category-label {
    font-size: 13px;
  }

  .category-item.active::after {
    width: 56px;
  }
}

@media (min-width: 1024px) {
  .category-item {
    padding: 20px 16px;
    gap: 14px;
  }

  .category-thumb,
  .category-gear {
    width: 56px;
    height: 56px;
  }

  .category-gear svg {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .category-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .category-item:hover .category-thumb {
    transform: none;
  }
}


/* Product card — equal-height professional tiles */
.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 33, 71, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 33, 71, 0.04), 0 8px 20px rgba(0, 33, 71, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.product-card:hover {
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 4px 12px rgba(0, 33, 71, 0.06), 0 16px 32px rgba(0, 33, 71, 0.08);
  transform: translateY(-3px);
}

.product-card-media {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid rgba(0, 33, 71, 0.06);
  overflow: hidden;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

/* Off-center product photos — show full subject, no crop */
.product-card-media img[src*="surgical-apron"] {
  object-fit: contain;
  object-position: center;
}

.product-card:hover .product-card-media img {
  transform: scale(1.04);
}

/* Framed media cards — fill frame, never crop subject */
.img-frame {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
}

.img-frame--cover-safe {
  object-fit: cover;
  object-position: center;
}

.product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.1rem 1.15rem;
}

.product-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--celery-navy);
  line-height: 1.35;
  margin: 0 0 0.45rem;
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-body p {
  font-size: 12px;
  line-height: 1.55;
  color: #6b7280;
  margin: 0 0 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}

.product-card-body a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--celery-green);
  transition: gap 0.2s ease, color 0.2s ease;
}

.product-card-body a:hover {
  gap: 0.5rem;
  color: var(--celery-green-dark);
}

/* Product cards slider (homepage + related products) */
.product-slider {
  position: relative;
}

.product-slider-stage {
  position: relative;
  padding: 0 0.25rem;
}

.product-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.product-slider-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  align-items: stretch;
}

.product-slide {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
}

.product-slide .product-card {
  width: 100%;
}

.product-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid rgba(0, 33, 71, 0.1);
  color: var(--celery-navy);
  box-shadow: 0 4px 16px rgba(0, 33, 71, 0.1);
}

.product-slider-nav:hover {
  background: var(--celery-green);
  border-color: var(--celery-green);
  color: #fff;
}

.product-slider-nav--prev {
  left: 0.25rem;
}

.product-slider-nav--next {
  right: 0.25rem;
}

.product-slider-controls {
  display: none;
}

.product-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .product-slide {
    flex: 0 0 calc((100% - 1.25rem) / 2);
  }

  .product-slider-nav--prev {
    left: -0.5rem;
  }

  .product-slider-nav--next {
    right: -0.5rem;
  }

  .product-card-media {
    aspect-ratio: 1 / 1;
  }
}

@media (min-width: 1024px) {
  .product-slide {
    flex: 0 0 calc((100% - 3.75rem) / 4);
  }

  .product-slider-nav--prev {
    left: -0.85rem;
  }

  .product-slider-nav--next {
    right: -0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-slider-track,
  .product-card,
  .product-card-media img {
    transition: none;
  }

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

/* Why choose card */
.why-card {
  border: 1px solid var(--celery-gray-200);
  transition: border-color 0.2s ease;
}

.why-card:hover {
  border-color: var(--celery-green);
}

/* Testimonials section — international multi-card */
.testimonials-section {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34, 197, 94, 0.06), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.testimonials-regions {
  gap: 0.5rem;
}

.t-region-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--celery-navy);
  background: #fff;
  border: 1px solid rgba(0, 33, 71, 0.08);
  box-shadow: 0 1px 2px rgba(0, 33, 71, 0.04);
}

.testimonial-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-slide {
  box-sizing: border-box;
  flex: 0 0 100%;
  min-width: 0;
}

@media (min-width: 640px) {
  .testimonial-slide {
    flex-basis: calc((100% - 1.25rem) / 2);
  }
}

@media (min-width: 1024px) {
  .testimonial-slide {
    flex-basis: calc((100% - 2.5rem) / 3);
  }
}

.t-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.4rem 1.45rem;
  background: #fff;
  border: 1px solid rgba(0, 33, 71, 0.08);
  border-radius: 18px;
  box-shadow:
    0 1px 2px rgba(0, 33, 71, 0.04),
    0 12px 28px rgba(0, 33, 71, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.t-card:hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow:
    0 2px 8px rgba(0, 33, 71, 0.05),
    0 18px 36px rgba(0, 33, 71, 0.09);
  transform: translateY(-4px);
}

.t-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.t-country {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--celery-green-dark);
  background: #ecfdf5;
  border: 1px solid rgba(34, 197, 94, 0.2);
  white-space: nowrap;
}

.t-stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}

.t-quote {
  flex: 1;
  margin: 0 0 1.25rem;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid #eef2f6;
  margin-top: auto;
}

.t-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 33, 71, 0.08), 0 4px 12px rgba(0, 33, 71, 0.1);
}

.t-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--celery-navy);
  line-height: 1.25;
}

.t-role {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

.t-org {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 1px;
}

/* Legacy testimonial card hooks (kept for reduced-motion safety) */
.testimonial-card {
  border: 1px solid var(--celery-gray-200);
  box-shadow: 0 4px 20px rgba(0, 33, 71, 0.05);
}

.testimonial-img-wrap {
  overflow: hidden;
}

.testimonial-img {
  transition: transform 0.6s ease;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--celery-gray-200);
  background: #fff;
  color: var(--celery-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 33, 71, 0.05);
}

.slider-btn:hover {
  background: var(--celery-green);
  border-color: var(--celery-green);
  color: #fff;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.2s;
}

.slider-dot.is-active {
  background: var(--celery-green);
  width: 22px;
  border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track,
  .t-card {
    transition: none;
  }

  .t-card:hover {
    transform: none;
  }
}

/* Process section */
.process-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ecfdf5;
  color: var(--celery-green-dark);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.process-step:hover {
  background: #fff;
  border-color: var(--celery-gray-200);
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.reveal-left {
  transform: translateX(-36px);
}

.reveal.reveal-right {
  transform: translateX(36px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.reveal-left,
  .reveal.reveal-right,
  .testimonial-img,
  .testimonial-card,
  .testimonial-track,
  .t-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* CTA banner overlay */
.cta-banner {
  background: linear-gradient(135deg, rgba(0, 33, 71, 0.94) 0%, rgba(10, 45, 92, 0.92) 100%);
}

/* Stats banner */
.stats-banner {
  background: var(--celery-navy);
}

.stat-plus {
  color: var(--celery-green);
}

/* Play button overlay */
.play-btn {
  backdrop-filter: blur(4px);
}

/* Footer — deep navy */
.footer-bg {
  background: var(--celery-navy);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-divider {
  opacity: 1;
}

/* Footer top row — 3 columns (mobile + desktop) */
.footer-bg .footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.7fr) minmax(0, 1fr);
  column-gap: 0.75rem;
  row-gap: 1rem;
  align-items: start;
}

.footer-bg .footer-top > .min-w-0:last-child {
  max-width: none;
}

@media (min-width: 640px) {
  .footer-bg .footer-top {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr) minmax(0, 1fr);
    column-gap: clamp(2.5rem, 5vw, 5rem);
    row-gap: 2rem;
  }

  .footer-bg .footer-top > .min-w-0:first-child {
    padding-right: 0.5rem;
  }

  .footer-bg .footer-top > .min-w-0:nth-child(2) {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .footer-bg .footer-top > .min-w-0:last-child {
    padding-left: 0.5rem;
    max-width: 22rem;
  }
}

@media (min-width: 1024px) {
  .footer-bg .footer-top {
    column-gap: clamp(3rem, 6vw, 6rem);
  }
}

@media (max-width: 639px) {
  .footer-bg .footer-top {
    column-gap: 0.625rem;
  }

  .footer-bg .footer-top .footer-logo {
    height: 2.75rem;
    margin-bottom: 0.625rem;
  }

  .footer-bg .footer-top .footer-heading {
    font-size: 10px;
    margin-bottom: 0.625rem;
  }

  .footer-bg .footer-top .footer-list {
    gap: 0.375rem;
  }

  .footer-bg .footer-top .footer-list.space-y-2 > :not([hidden]) ~ :not([hidden]),
  .footer-bg .footer-top .footer-list.space-y-3 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.375rem;
  }

  .footer-bg .footer-top .footer-social {
    margin-top: 0.625rem;
    gap: 0.375rem;
  }

  .footer-bg .footer-top .footer-social .social-icon {
    width: 1.375rem;
    height: 1.375rem;
  }

  .footer-bg .footer-top .footer-social .social-icon svg {
    width: 0.625rem;
    height: 0.625rem;
  }

  .footer-bg .footer-top .newsletter-input {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 9px;
  }

  .footer-bg .footer-top button[type="submit"] {
    width: 1.375rem;
    height: 1.375rem;
  }

  .footer-bg .footer-top button[type="submit"] svg {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.footer-product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-product-list li {
  min-width: 0;
}

@media (min-width: 1024px) {
  .footer-top {
    align-items: start;
  }
}

/* Social icons */
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.social-icon:hover {
  opacity: 0.85;
}

/* Footer — keep 4 columns on mobile */
.footer-heading {
  font-size: 11px;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .footer-heading {
    font-size: 16px;
  }
}

@media (max-width: 639px) {
  .footer-social .social-icon {
    width: 26px;
    height: 26px;
  }

  .footer-chevron {
    display: none;
  }
}

/* Newsletter input */
.newsletter-input:focus {
  outline: none;
  border-color: var(--celery-green);
}

/* Floating header bar (index) */
.site-header-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  background: #fff;
}

.site-topbar {
  background: #fff;
}

.site-header {
  padding: 0;
  background: #fff;
  width: 100%;
}

.site-header-inner {
  width: 100%;
}

.site-header-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 72px;
  padding: 0.5rem 1rem;
  background: #fff;
  border-bottom: 1px solid rgba(0, 33, 71, 0.06);
  box-shadow:
    0 1px 2px rgba(0, 33, 71, 0.04),
    0 8px 24px rgba(0, 33, 71, 0.07);
}

.site-header-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 42%;
  right: 10%;
  height: 3px;
  background: var(--celery-green);
  border-radius: 0 0 3px 3px;
  pointer-events: none;
}

.site-header-logo img {
  display: block;
}

.site-header-nav {
  flex: 1;
  justify-content: center;
  gap: 1.25rem;
}

.nav-icon-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  min-width: 4.5rem;
  padding: 0.4rem 0.65rem 0.5rem;
  color: #1f2937;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  border-radius: 10px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-icon-btn {
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  cursor: pointer;
  font: inherit;
}

.nav-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.nav-icon-link:hover {
  color: var(--celery-green);
  background: rgba(34, 197, 94, 0.06);
}

.nav-icon-link.is-active {
  color: var(--celery-green);
  border-bottom-color: var(--celery-green);
}

.header-quote-btn {
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.4rem 0.45rem 0.85rem;
  background: var(--celery-green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.28);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.header-quote-btn:hover {
  background: var(--celery-green-dark);
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.32);
}

.header-quote-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: #fff;
  color: var(--celery-green);
}

/* Mobile two-bar header */
@media (max-width: 1023px) {
  .site-header {
    background: #fff;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .site-header-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 100%;
  }

  .site-header-top {
    min-height: 64px;
    padding: 0.6rem 0.85rem;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 33, 71, 0.06);
    box-shadow:
      0 1px 2px rgba(0, 33, 71, 0.04),
      0 6px 18px rgba(0, 33, 71, 0.05);
  }

  .site-header-logo {
    min-width: 0;
    flex-shrink: 1;
  }

  .site-header-logo img {
    height: 3rem;
    max-width: 100%;
  }

  .site-header-actions {
    flex-shrink: 0;
    gap: 0.25rem;
  }

  .site-header-actions .header-quote-btn {
    display: none !important;
  }

  .site-header-top::before {
    left: 38%;
    right: 8%;
  }

  .mobile-nav-strip {
    display: none;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 0;
    border: 0;
    border-top: 1px solid rgba(0, 33, 71, 0.06);
    border-bottom: 1px solid rgba(0, 33, 71, 0.06);
    box-shadow: 0 8px 18px rgba(0, 33, 71, 0.05);
  }

  .mobile-nav-strip.is-open {
    display: flex;
  }

  .mobile-nav-strip-scroll {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .mobile-nav-strip-scroll::-webkit-scrollbar {
    display: none;
  }

  .site-header.is-mobile-nav-open .mobile-toggle-icon--open {
    display: none;
  }

  .site-header.is-mobile-nav-open .mobile-toggle-icon--close {
    display: block;
  }

  .mobile-nav-item {
    flex: 1 0 auto;
    min-width: 4.25rem;
    width: auto;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.55rem 0.45rem 0.6rem;
    color: #1f2937;
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    border: 0;
    border-right: 1px solid rgba(0, 33, 71, 0.08);
    border-bottom: 2px solid transparent;
    background: transparent;
    white-space: nowrap;
  }

  .mobile-nav-item .nav-icon {
    width: 1.15rem;
    height: 1.15rem;
  }

  .mobile-nav-strip-scroll > :last-child,
  .mobile-nav-strip-scroll > .mobile-nav-dropdown:last-child .mobile-nav-item {
    border-right: 0;
  }

  .mobile-nav-dropdown {
    flex: 1 0 auto;
    display: flex;
    position: relative;
    min-width: 4.25rem;
  }

  .mobile-nav-dropdown > .mobile-nav-item {
    width: 100%;
  }

  .mobile-nav-submenu-slot {
    width: 100%;
    border-top: 1px solid rgba(0, 33, 71, 0.08);
    background: #fff;
  }

  .mobile-nav-submenu-slot[hidden] {
    display: none !important;
  }

  .mobile-nav-submenu-slot .dropdown-menu--mobile-panel {
    display: block !important;
    position: static;
    transform: none;
    left: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
    max-height: min(46vh, 16rem);
    overflow-y: auto;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: inset 0 1px 0 rgba(0, 33, 71, 0.04);
    padding: 0.35rem 0.5rem 0.5rem;
    z-index: 1;
  }

  .mobile-nav-submenu-slot .dropdown-menu--mobile-panel::before {
    display: none;
  }

  .mobile-nav-submenu-slot .dropdown-menu--mobile-panel a {
    padding: 0.65rem 0.75rem;
    font-size: 0.82rem;
    border-radius: 10px;
  }

  .mobile-nav-item.is-active,
  .mobile-nav-dropdown.open > .mobile-nav-item {
    color: var(--celery-green);
  }

  .mobile-nav-item.is-active {
    border-bottom-color: var(--celery-green);
  }

  .mobile-nav-quote-bar {
    padding: 0.65rem 0.85rem 0.75rem;
    border-top: 1px solid rgba(0, 33, 71, 0.08);
    background: #fff;
  }

  .mobile-nav-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.65rem 1rem;
    background: var(--celery-green);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.28);
    transition: background 0.2s ease, box-shadow 0.2s ease;
  }

  .mobile-nav-quote-btn:hover {
    background: var(--celery-green-dark);
    color: #fff;
  }

  .mobile-nav-quote-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: #fff;
    color: var(--celery-green);
  }

  .dropdown-menu--mobile {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(15.5rem, calc(100vw - 1.75rem));
    min-width: 0;
    max-height: min(50vh, 18rem);
    overflow-y: auto;
    z-index: 70;
    margin: 0;
  }

  .dropdown-menu--mobile.dropdown-menu--sm {
    width: min(11.5rem, calc(100vw - 1.75rem));
  }

  section.relative.overflow-x-hidden,
  .section-padding,
  .footer-bg,
  .cta-banner {
    max-width: 100%;
    overflow-x: clip;
  }

  .reveal-right .absolute.-inset-4 {
    inset: -0.35rem;
  }

  .whatsapp-float::before {
    animation: none;
    opacity: 0;
  }

  .product-slider-stage {
    overflow: hidden;
    max-width: 100%;
  }

  .product-slider-nav--prev,
  .product-slider-nav--next {
    left: 0.15rem;
    right: auto;
  }

  .product-slider-nav--next {
    left: auto;
    right: 0.15rem;
  }
}

@media (min-width: 640px) {
  .header-quote-btn {
    font-size: 0.875rem;
    padding: 0.55rem 0.55rem 0.55rem 1.1rem;
    gap: 0.55rem;
  }

  .header-quote-arrow {
    width: 1.7rem;
    height: 1.7rem;
  }
}

@media (min-width: 1024px) {
  .site-header-shell {
    box-shadow:
      0 1px 2px rgba(0, 33, 71, 0.04),
      0 8px 24px rgba(0, 33, 71, 0.06);
  }

  .site-header-shell.is-scrolled {
    box-shadow:
      0 2px 8px rgba(0, 33, 71, 0.06),
      0 12px 28px rgba(0, 33, 71, 0.12);
  }

  .site-topbar {
    position: static;
    z-index: auto;
  }

  .site-header {
    position: static;
    top: auto;
    z-index: auto;
    background: #fff;
    padding: 0;
  }

  .site-header-top {
    min-height: 76px;
    padding: 0.55rem 1.5rem;
    border-radius: 0;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    box-shadow: none;
    border-bottom: 0;
  }

  .site-header-nav {
    overflow: visible;
  }

  .nav-dropdown {
    position: relative;
  }

  #products-dropdown {
    position: static;
  }
}

/* Nav dropdown — opened via click (JS) */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 13.5rem;
  max-width: 16rem;
  padding: 0.35rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow:
    0 2px 6px rgba(0, 33, 71, 0.05),
    0 12px 28px rgba(0, 33, 71, 0.12);
  z-index: 40;
  overflow: hidden;
}

.dropdown-menu[hidden] {
  display: none !important;
}

.nav-dropdown.open > .dropdown-menu,
.nav-dropdown.open > .dropdown-menu[hidden] {
  display: block !important;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--celery-green), #4ade80 55%, transparent);
  pointer-events: none;
}

.dropdown-menu--sm {
  min-width: 10.5rem;
  max-width: 12rem;
}

.dropdown-menu--drawer {
  position: static;
  transform: none;
  left: auto;
  top: auto;
  width: 100%;
  min-width: 0;
  max-width: none;
  margin-top: 0.55rem;
  max-height: none;
}

.mobile-drawer-dropdown > button {
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 33, 71, 0.08);
  background: #fff;
}

.mobile-drawer-link {
  display: block;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 33, 71, 0.08);
  background: #fff;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.65rem;
  margin-top: 0.05rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.3;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.dropdown-menu a .dropdown-item-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  color: var(--celery-green);
}

.dropdown-menu a:first-child {
  margin-top: 0.25rem;
}

.dropdown-menu a:hover {
  background: rgba(34, 197, 94, 0.1);
  color: var(--celery-green-dark);
}

.nav-dropdown.open .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown.open > .nav-icon-btn {
  color: var(--celery-green);
}

/* Products mega menu — desktop */
@media (min-width: 1024px) {
  .nav-dropdown.open > .dropdown-menu--mega,
  .nav-dropdown.open > .dropdown-menu--mega[hidden] {
    display: block !important;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-offset, 116px);
    transform: none;
    min-width: 0;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    max-height: calc(100vh - var(--header-offset, 116px));
    overflow-y: auto;
    z-index: 49;
    box-shadow:
      0 10px 15px rgba(0, 33, 71, 0.04),
      0 24px 48px rgba(0, 33, 71, 0.12);
  }

  .dropdown-mega-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.35rem 1.5rem 1.1rem;
  }

  .dropdown-mega-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
  }

  .dropdown-mega-heading {
    margin: 0 0 0.65rem;
    padding-bottom: 0.45rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--celery-navy);
    border-bottom: 1px solid rgba(0, 33, 71, 0.08);
  }

  .dropdown-menu--mega .dropdown-mega-col a {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 0.42rem 0.55rem;
    margin-top: 0.1rem;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
    color: #334155;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
  }

  .dropdown-menu--mega .dropdown-mega-col a::before {
    content: "";
    width: 0.35rem;
    height: 0.35rem;
    margin-top: 0.42rem;
    border-radius: 999px;
    background: var(--celery-green);
    opacity: 0.45;
    flex-shrink: 0;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .dropdown-menu--mega .dropdown-mega-col a:hover {
    background: rgba(34, 197, 94, 0.08);
    color: var(--celery-green-dark);
    padding-left: 0.7rem;
  }

  .dropdown-menu--mega .dropdown-mega-col a:hover::before {
    opacity: 1;
    transform: scale(1.15);
  }

  .dropdown-menu--mega .dropdown-mega-col a.is-current {
    background: rgba(34, 197, 94, 0.12);
    color: var(--celery-green-dark);
    font-weight: 700;
  }

  .dropdown-mega-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(0, 33, 71, 0.08);
  }

  .dropdown-mega-viewall {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--celery-green-dark);
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.08);
    transition: background 0.15s ease, color 0.15s ease;
  }

  .dropdown-mega-viewall::after {
    content: "→";
    transition: transform 0.15s ease;
  }

  .dropdown-mega-viewall:hover {
    background: rgba(34, 197, 94, 0.14);
    color: var(--celery-navy);
  }

  .dropdown-mega-viewall:hover::after {
    transform: translateX(2px);
  }

  #network-dropdown .dropdown-menu {
    min-width: 11.5rem;
    padding: 0.45rem;
  }

  #network-dropdown .dropdown-menu a {
    padding: 0.55rem 0.75rem;
    font-size: 0.82rem;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .dropdown-mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }
}

@media (min-width: 1280px) {
  .site-header-nav {
    gap: 1.75rem;
  }

  .nav-icon-link {
    min-width: 5rem;
    font-size: 0.84rem;
    padding: 0.45rem 0.75rem 0.55rem;
  }

  .nav-icon {
    width: 1.35rem;
    height: 1.35rem;
  }
}

@media (min-width: 1536px) {
  .site-header-nav {
    gap: 2.25rem;
  }
}

/* Mobile menu */
.mobile-menu {
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu .mobile-panel {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu.open .mobile-panel {
  transform: translateX(0);
}

.mobile-menu .mobile-backdrop {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.open .mobile-backdrop {
  opacity: 1;
}

/* Mobile products accordion */
.mobile-products-menu {
  display: none;
}

.mobile-products.open .mobile-products-menu {
  display: block;
}

.mobile-products.open [id$="-chevron"] {
  transform: rotate(180deg);
}

.mobile-products.open > button {
  color: var(--celery-green);
  border-color: rgba(34, 197, 94, 0.35);
}

/* Certification logos */
.cert-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
}

/* Client logos */
.client-logo-img {
  height: 70px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.9;
}

/* Client logo rail + auto slider */
.client-logo-rail {
  position: relative;
  padding: 1.35rem 0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(0, 33, 71, 0.025) 0%, rgba(34, 197, 94, 0.04) 100%);
  border: 1px solid rgba(0, 33, 71, 0.06);
  overflow: hidden;
}

.client-logo-rail::before,
.client-logo-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.client-logo-rail::before {
  left: 0;
  background: linear-gradient(90deg, #f7faf8 0%, rgba(247, 250, 248, 0) 100%);
}

.client-logo-rail::after {
  right: 0;
  background: linear-gradient(270deg, #f7faf8 0%, rgba(247, 250, 248, 0) 100%);
}

.client-logo-slider {
  position: relative;
  overflow: hidden;
}

.client-logo-track {
  display: flex;
  width: max-content;
  animation: client-logo-scroll 40s linear infinite;
  will-change: transform;
}

.client-logo-rail:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
}

.client-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  width: 220px;
  padding: 1rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(0, 33, 71, 0.08);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(0, 33, 71, 0.04),
    0 8px 24px rgba(0, 33, 71, 0.04);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.client-logo-item:hover {
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow:
    0 2px 6px rgba(0, 33, 71, 0.05),
    0 14px 28px rgba(0, 33, 71, 0.08);
  transform: translateY(-3px);
}

.client-logo-item img {
  max-height: 58px;
  max-width: 168px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.72);
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.client-logo-item:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.03);
}

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

@media (prefers-reduced-motion: reduce) {
  .client-logo-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 1rem;
  }

  .client-logo-group[aria-hidden="true"] {
    display: none;
  }

  .client-logo-group {
    padding-right: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .client-logo-item img {
    filter: none;
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .client-logo-rail {
    padding: 1rem 0;
    border-radius: 14px;
  }

  .client-logo-rail::before,
  .client-logo-rail::after {
    width: 40px;
  }

  .client-logo-item {
    width: 168px;
    height: 82px;
    padding: 0.75rem 1rem;
    border-radius: 12px;
  }

  .client-logo-item img {
    max-height: 46px;
    max-width: 130px;
  }

  .client-logo-group {
    gap: 0.9rem;
    padding-right: 0.9rem;
  }

  .client-logo-track {
    animation-duration: 28s;
  }
}

/* Button styles */
.btn-primary {
  background: var(--celery-green);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--celery-green-dark);
}

.btn-outline {
  border: 2px solid var(--celery-green);
  color: var(--celery-green);
  background: #fff;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--celery-green);
  color: #fff;
}

/* Shared section eyebrow badge (both homepage + product pages) */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--celery-green-dark);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 999px;
}

.section-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--celery-green);
  flex-shrink: 0;
}

.section-badge-on-dark {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(74, 222, 128, 0.35);
}

/* Product page — distinct section surfaces */
.section-bg-white {
  background: #ffffff;
}

.section-bg-mist {
  background: #eef2f7;
}

.section-bg-mint {
  background: linear-gradient(180deg, #f3faf5 0%, #eaf7ef 100%);
}

.section-bg-slate {
  background: linear-gradient(180deg, #f7f9fc 0%, #e8eef5 100%);
}

.section-bg-ice {
  background: #f5f9fc;
}

.section-bg-navy {
  background: linear-gradient(145deg, #002147 0%, #0a2d5c 55%, #09335f 100%);
  color: #fff;
}

.section-divider {
  border-top: 1px solid rgba(0, 33, 71, 0.06);
}

/* About page */
.about-hero {
  min-height: 420px;
}

.about-hero-overlay {
  background: linear-gradient(105deg, rgba(0, 21, 46, 0.92) 0%, rgba(0, 33, 71, 0.78) 48%, rgba(0, 33, 71, 0.55) 100%);
}

.about-gallery img {
  transition: transform 0.45s ease, box-shadow 0.35s ease;
}

.about-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 33, 71, 0.15);
}

.about-timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 1.75rem;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  background: linear-gradient(180deg, var(--celery-green), rgba(0, 33, 71, 0.12));
}

.timeline-item {
  position: relative;
  padding: 0 0 2rem 1.25rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.75rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--celery-green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.timeline-year {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--celery-green-dark);
  margin-bottom: 0.35rem;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--celery-navy);
  background: linear-gradient(145deg, #e8f8ee, #dbeafe);
  border: 2px solid rgba(34, 197, 94, 0.25);
}

.team-card,
.value-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-card:hover,
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 33, 71, 0.08);
  border-color: rgba(34, 197, 94, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .about-gallery img:hover,
  .team-card:hover,
  .value-card:hover {
    transform: none;
  }
}

/* Section spacing */
.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/* Product landing — specs table */
.spec-table {
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table th {
  width: 38%;
  font-weight: 600;
  color: var(--celery-navy);
  background: #f8fafc;
}

.spec-table td {
  color: #64748b;
}

/* Product landing — FAQ accordion */
.faq-summary::-webkit-details-marker {
  display: none;
}

.contact-map-frame {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 1rem;
  filter: grayscale(0.15);
}

@media (min-width: 768px) {
  .contact-map-frame {
    height: 420px;
  }
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 55;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-float 2.4s ease-in-out infinite;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #25d366;
  z-index: -1;
  animation: wa-pulse 2s ease-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
  color: #fff;
  animation: none;
}

.whatsapp-float:hover::before {
  animation: none;
  opacity: 0;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float,
  .whatsapp-float::before {
    animation: none;
  }
}

.contact-quick-action {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-quick-action:hover {
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 8px 24px rgba(0, 33, 71, 0.06);
  transform: translateY(-2px);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--celery-green);
}

.faq-item {
  transition: box-shadow 0.25s ease;
}

.product-feature {
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.product-feature:hover {
  transform: translateY(-2px);
}

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

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

@media (max-width: 1023px) {
  .domestic-page,
  .international-page,
  .max-w-site,
  .max-w-dom,
  .max-w-intl,
  .intl-shell {
    max-width: 100%;
  }

  .footer-grid {
    min-width: 0;
  }
}
