/* ==========================================================================
   SALIX Water Solutions — Stylesheet v6 · "Fluid Industrial Atlas"
   Premium B2B · Editorial · Soft like water · No blur · No glow
   --------------------------------------------------------------------------
   Table of contents
     1.  Design tokens                       · :root
     2.  Global resets & typography
     3.  Top bar                             · .topbar
     4.  Pill navigation                     · .pill-nav
     5.  Buttons                             · .btn-primary .btn-ghost .btn-pill
     6.  Hero                                · .hero · .hero-industries
     7.  Section base                        · .section · .section-eyebrow
     8.  Manifesto                           · .manifesto
     9.  Bento capabilities                  · .bento-grid · .bento-cell
     10. Water cycle visualization           · .cycle-viz · .cycle-step
     11. Trust strip                         · .trust-strip
     12. Industries grid                     · .industry-tile
     13. Catalog · families + product cards  · .vertical-tabs · .product-card
     14. Services timeline                   · .service-step
     15. Stats (typographic)                 · .stat-line
     16. CTA banner                          · .cta-banner
     17. Contact                             · .contact-card · .brevo-wrapper
     18. Footer                              · .site-footer
     19. Back-to-top                         · .back-to-top
     20. Motion reveals                      · [data-motion]
     21. Responsive breakpoints
     22. Reduced motion preference
   ========================================================================== */


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {

  /* Brand palette */
  --ocean-deep: #0a1f3a;
  --ocean:      #133355;
  --ocean-mid:  #1e5aa8;
  --azure:      #2563eb;
  --aqua:       #06b6d4;
  --aqua-bright:#22d3ee;
  --aqua-light: #a5f3fc;
  --aqua-pale:  #cffafe;
  --mist:       #e0f2fe;
  --cloud:      #f0f9ff;
  --snow:       #f8fafc;
  --white:      #ffffff;

  /* Text */
  --ink:        #08111f;
  --graphite:   #1e293b;
  --slate:      #475569;
  --silver:     #94a3b8;
  --pearl:      #cbd5e1;

  /* Surfaces */
  --rule:       #e2e8f0;
  --rule-soft:  #eef2f6;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Manrope', sans-serif;

  /* Type scale */
  --fs-base:     1.0625rem;
  --fs-lead:     1.15rem;
  --fs-display:  clamp(2.8rem, 6vw, 5.4rem);
  --fs-h1:       clamp(2.2rem, 4.6vw, 4rem);
  --fs-h2:       clamp(1.7rem, 2.8vw, 2.6rem);
  --fs-h3:       clamp(1.3rem, 2vw, 1.7rem);
  --fs-card-title: 1.15rem;

  /* Shadows · whisper-soft */
  --shadow-1: 0 1px 2px rgba(8, 17, 31, 0.04);
  --shadow-2: 0 8px 24px rgba(8, 17, 31, 0.06);
  --shadow-3: 0 20px 50px rgba(8, 17, 31, 0.08);

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  28px;
  --space-lg:  44px;
  --space-xl:  72px;
  --space-2xl: 110px;

  /* Motion & shape */
  --transition: 0.55s cubic-bezier(0.32, 0.72, 0, 1);
  --radius:    16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --navbar-h:  72px;
  --topbar-h:  40px;
}


/* ============================================================
   2. GLOBAL RESETS & TYPOGRAPHY
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--navbar-h) + 24px);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-base);
  line-height: 1.75;
  color: var(--graphite);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 0;
}

p { margin-top: 0; }

a {
  color: var(--azure);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

::selection { background: var(--aqua); color: var(--white); }


/* ============================================================
   3. TOP BAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1031;
  background: var(--ocean-deep);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  padding: 9px 0;
  min-height: var(--topbar-h);
  letter-spacing: 0.01em;
}

.topbar a       { color: rgba(255, 255, 255, 0.85); }
.topbar a:hover { color: var(--aqua-bright); }

.topbar-info i  { margin-right: 6px; color: var(--aqua-bright); }
.topbar-sep     { margin: 0 12px; opacity: 0.3; }


/* ============================================================
   4. PILL NAVIGATION
   Floating compact pill at top · white background
   ============================================================ */
.pill-nav-wrap {
  position: fixed;
  top: calc(var(--topbar-h) + 16px);
  left: 0; right: 0;
  z-index: 1030;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
  transition: top var(--transition);
}

.pill-nav-wrap.scrolled { top: 16px; }

.pill-nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 7px 10px 7px 18px;
  box-shadow: var(--shadow-2);
  max-width: 100%;
}

.pill-nav .brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.pill-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0 8px 0 22px;
}

.pill-nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--graphite);
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: all var(--transition);
}

.pill-nav-link:hover,
.pill-nav-link.active {
  color: var(--ocean-deep);
  background: var(--cloud);
}

.pill-nav-cta {
  background: var(--ocean-deep);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all var(--transition);
}

.pill-nav-cta:hover {
  background: var(--aqua);
  color: var(--white);
  transform: translateY(-1px);
}

.pill-nav-lang {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--slate);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition);
}

.pill-nav-lang:hover {
  background: var(--cloud);
  color: var(--ocean-deep);
}

.pill-nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--graphite);
  font-size: 1.4rem;
  padding: 6px 10px;
}

.pill-nav-mobile {
  display: none;
}


/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn-primary,
.btn-pill {
  background: var(--ocean-deep);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 16px 30px;
  border-radius: 999px;
  border: 2px solid var(--ocean-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary:hover,
.btn-pill:hover {
  background: var(--aqua);
  border-color: var(--aqua);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-ghost:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ocean-deep);
}

.btn-light {
  background: var(--white);
  color: var(--ocean-deep);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--aqua-bright);
  border-color: var(--aqua-bright);
  color: var(--ocean-deep);
}


/* ============================================================
   6. HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: calc(var(--navbar-h) + var(--topbar-h));
  background: var(--ocean-deep);
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  background: var(--ocean-deep);
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0.55) 0%, rgba(8, 17, 31, 0.7) 100%),
    linear-gradient(90deg, rgba(8, 17, 31, 0.45) 0%, rgba(8, 17, 31, 0.15) 100%);
}

/* Giant stencil watermark · video shows through letters */
.hero-watermark {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-watermark img {
  width: min(94%, 1500px);
  opacity: 0.38;
  transform: translateY(-6%);
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 80px 0 240px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--aqua-light);
  padding: 8px 18px;
  border: 1px solid rgba(165, 243, 252, 0.32);
  border-radius: 999px;
  margin-bottom: 36px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-display);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--aqua-bright);
}

.hero-slogan {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Industries strip floating at hero bottom */
.hero-industries {
  position: absolute;
  left: 0; right: 0;
  bottom: 90px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  flex-wrap: wrap;
}

.hero-industry-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 14px;
  min-width: 110px;
  background: rgba(8, 17, 31, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition);
}

.hero-industry-pill i {
  font-size: 1.5rem;
  color: var(--aqua-light);
  transition: color var(--transition);
}

.hero-industry-pill span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

.hero-industry-pill:hover {
  background: rgba(6, 182, 212, 0.55);
  border-color: var(--aqua-bright);
  transform: translateY(-4px);
  color: var(--white);
}

.hero-industry-pill:hover i {
  color: var(--white);
}

/* Hero bottom wave divider */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%;
  z-index: 6;
  line-height: 0;
  pointer-events: none;
}

.hero-wave svg { width: 100%; height: 80px; display: block; }


/* ============================================================
   7. SECTION BASE
   ============================================================ */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section-light { background: var(--white); }
.section-cloud { background: var(--cloud); }
.section-dark  { background: var(--ocean-deep); color: var(--white); }

.section-header {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 18px;
}

.section-eyebrow i {
  font-size: 0.9rem;
  margin-right: 4px;
  opacity: 0.7;
}

.section-eyebrow.light { color: var(--aqua-bright); }

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-h2);
  color: var(--ocean-deep);
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.section-title em {
  font-style: normal;
  color: var(--aqua);
}

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

.section-lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-lead);
  color: var(--slate);
  line-height: 1.85;
  max-width: 720px;
  margin: 0 auto;
}


/* ============================================================
   8. MANIFESTO
   Single full-width typographic statement
   ============================================================ */
.section-manifesto {
  padding: 120px 0;
  background: var(--white);
  text-align: center;
}

.manifesto-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 36px;
}

.manifesto-statement {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  color: var(--ocean-deep);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0 auto;
  max-width: 1100px;
}

.manifesto-statement em {
  font-style: normal;
  font-weight: 700;
  color: var(--aqua);
}


/* ============================================================
   9. BENTO CAPABILITIES GRID
   Asymmetric 4-column grid · 6 cells with varied sizes
   ============================================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: var(--space-md);
}

.bento-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  overflow: hidden;
  min-height: 220px;
}

.bento-cell:hover {
  transform: translateY(-4px);
  border-color: var(--ocean-mid);
  box-shadow: var(--shadow-2);
}

/* Feature: 2 cols × 2 rows */
.bento-cell--xl {
  grid-column: span 2;
  grid-row: span 2;
  padding: 40px 36px;
  background: var(--ocean-deep);
  border-color: var(--ocean-deep);
  color: var(--white);
  min-height: 460px;
  position: relative;
}

.bento-cell--xl::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=1000&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 0;
  transition: opacity var(--transition);
}

.bento-cell--xl > * { position: relative; z-index: 1; }

.bento-cell--xl:hover {
  border-color: var(--aqua);
}

.bento-cell--xl:hover::after { opacity: 0.32; }

/* Wide: 2 cols × 1 row */
.bento-cell--wide { grid-column: span 2; }

/* Dark variant */
.bento-cell--dark {
  background: var(--ocean-deep);
  border-color: var(--ocean-deep);
  color: var(--white);
}

.bento-cell--dark:hover { border-color: var(--aqua-bright); }

/* Accent variant */
.bento-cell--accent {
  background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--aqua) 100%);
  border-color: transparent;
  color: var(--white);
}

/* Bento internals */
.bento-cell-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.bento-cell-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--aqua);
  opacity: 0.8;
}

.bento-cell--xl .bento-cell-num,
.bento-cell--dark .bento-cell-num,
.bento-cell--accent .bento-cell-num { color: var(--aqua-bright); opacity: 1; }

.bento-cell-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cloud);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--ocean-mid);
  transition: all var(--transition);
}

.bento-cell--xl .bento-cell-icon,
.bento-cell--dark .bento-cell-icon,
.bento-cell--accent .bento-cell-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--aqua-bright);
}

.bento-cell:hover .bento-cell-icon {
  background: var(--ocean-deep);
  color: var(--aqua-bright);
}

.bento-cell--xl:hover .bento-cell-icon,
.bento-cell--dark:hover .bento-cell-icon,
.bento-cell--accent:hover .bento-cell-icon {
  background: var(--white);
  color: var(--ocean-deep);
}

.bento-cell h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.bento-cell--xl h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 600;
}

.bento-cell p {
  font-size: 0.96rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.7;
}

.bento-cell--xl p,
.bento-cell--dark p,
.bento-cell--accent p {
  color: rgba(255, 255, 255, 0.78);
}

.bento-cell--xl p {
  font-size: 1.05rem;
  max-width: 460px;
}

.bento-cell-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--aqua);
  transition: gap var(--transition);
}

.bento-cell--xl .bento-cell-arrow,
.bento-cell--dark .bento-cell-arrow,
.bento-cell--accent .bento-cell-arrow {
  color: var(--aqua-bright);
}

.bento-cell:hover .bento-cell-arrow { gap: 12px; }


/* ============================================================
   10. WATER CYCLE VISUALIZATION
   Horizontal 5-step process flow
   ============================================================ */
.cycle-viz {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 56px;
}

.cycle-line {
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--aqua) 0 10px,
    transparent 10px 20px
  );
  z-index: 0;
  opacity: 0.6;
}

.cycle-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cycle-step-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  background: var(--white);
  border: 2px solid var(--aqua);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--ocean-mid);
  transition: all var(--transition);
}

.cycle-step:hover .cycle-step-icon {
  background: var(--aqua);
  color: var(--white);
  transform: scale(1.05);
}

.cycle-step-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--aqua);
  margin-bottom: 8px;
}

.cycle-step h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ocean-deep);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.cycle-step p {
  font-size: 0.9rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.65;
}


/* ============================================================
   11. TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--white);
  padding: 56px 0;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

.trust-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0;
  line-height: 1.6;
}

.trust-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.trust-marquee-track {
  display: inline-flex;
  gap: 64px;
  white-space: nowrap;
  padding-right: 64px;
  animation: marquee 28s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.18em;
  color: var(--silver);
  white-space: nowrap;
  transition: color var(--transition);
}

.trust-brand:hover { color: var(--ocean-mid); }


/* ============================================================
   12. INDUSTRIES GRID
   ============================================================ */
.industries-grid { margin-top: var(--space-md); }

.industry-tile {
  position: relative;
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-1);
  transition: all var(--transition);
  display: block;
  text-decoration: none;
}

.industry-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-3);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 58, 0.3) 0%, rgba(10, 31, 58, 0.92) 100%);
  transition: background var(--transition);
}

.industry-tile:hover .industry-overlay {
  background: linear-gradient(180deg, rgba(30, 90, 168, 0.3) 0%, rgba(6, 182, 212, 0.88) 100%);
}

.industry-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px 24px;
  color: var(--white);
}

.industry-content i {
  font-size: 2.2rem;
  color: var(--aqua-bright);
  margin-bottom: 16px;
  transition: color var(--transition);
}

.industry-tile:hover .industry-content i { color: var(--white); }

.industry-content h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* ---------- Sector card (image + content with description) ---------- */
.sector-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

.sector-card:hover {
  transform: translateY(-4px);
  border-color: var(--ocean-mid);
  box-shadow: var(--shadow-2);
}

.sector-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.sector-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 58, 0.1) 0%, rgba(10, 31, 58, 0.55) 100%);
}

.sector-card-icon {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--ocean-mid);
}

.sector-card-body {
  padding: 24px 22px;
  flex-grow: 1;
}

.sector-card h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ocean-deep);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}

.sector-card p {
  font-size: 0.93rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.65;
}

/* ---------- Commitment card (used in About) ---------- */
.commitment-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  height: 100%;
  transition: all var(--transition);
}

.commitment-card:hover {
  transform: translateY(-3px);
  border-color: var(--ocean-mid);
  box-shadow: var(--shadow-1);
}

.commitment-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: var(--radius-sm);
  background: var(--cloud);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--ocean-mid);
  transition: all var(--transition);
}

.commitment-card:hover .commitment-icon {
  background: var(--ocean-deep);
  color: var(--aqua-bright);
}

.commitment-card h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ocean-deep);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.commitment-card p {
  font-size: 0.88rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.6;
}


/* ============================================================
   13. CATALOG · vertical tabs + product cards
   ============================================================ */
.products-shell { align-items: stretch; }

.products-sidebar {
  background: var(--snow);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px 22px;
  height: 100%;
}

.sidebar-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.vertical-tabs { display: flex; flex-direction: column; gap: 8px; }

.vt-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 16px;
  cursor: pointer;
  color: var(--graphite);
  transition: all var(--transition);
  font-family: var(--font-body);
}

.vt-btn:hover {
  background: var(--white);
  border-color: var(--rule);
}

.vt-btn.active {
  background: var(--ocean-deep);
  border-color: var(--ocean-deep);
  color: var(--white);
}

.vt-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--aqua);
  opacity: 0.8;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.vt-btn.active .vt-num { color: var(--aqua-bright); opacity: 1; }

.vt-body { display: flex; flex-direction: column; gap: 4px; flex-grow: 1; }

.vt-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.005em;
}

.vt-title i { font-size: 1rem; color: var(--aqua); }

.vt-btn.active .vt-title i { color: var(--aqua-bright); }

.vt-desc {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.55;
}

.vt-btn.active .vt-desc { color: rgba(255, 255, 255, 0.72); }

.vt-arrow {
  font-size: 1.05rem;
  color: var(--silver);
  flex-shrink: 0;
  transition: all var(--transition);
}

.vt-btn:hover .vt-arrow  { color: var(--ocean-deep); transform: translateX(2px); }
.vt-btn.active .vt-arrow { color: var(--aqua-bright); transform: translateX(4px); }

/* Family banner inside each tab pane */
.family-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 200px;
  margin-bottom: 8px;
}

.family-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(10, 31, 58, 0.92) 0%,
    rgba(30, 90, 168, 0.74) 55%,
    rgba(6, 182, 212, 0.5) 100%
  );
}

.family-banner-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 32px;
  height: 100%;
  color: var(--white);
}

.family-banner-num {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3.6rem;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px var(--aqua-bright);
  letter-spacing: -0.04em;
}

.family-banner-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--aqua-light);
  margin-bottom: 6px;
}

.family-banner h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.family-banner p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
  max-width: 520px;
}

/* Product cards inside tab content */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  height: 100%;
  overflow: hidden;
  transition: all var(--transition);
}

.product-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--aqua);
  transition: width var(--transition);
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--ocean-mid);
  box-shadow: var(--shadow-1);
}

.product-card:hover::after { width: 100%; }

.product-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-xs);
  background: var(--cloud);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.product-icon i {
  font-size: 1.5rem;
  color: var(--ocean-mid);
  transition: color var(--transition);
}

.product-card:hover .product-icon   { background: var(--ocean-deep); }
.product-card:hover .product-icon i { color: var(--aqua-bright); }

.product-card h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-card-title);
  color: var(--ocean-deep);
  margin: 0;
  line-height: 1.3;
}

.product-card p {
  font-size: 0.92rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.6;
}


/* ============================================================
   14. SERVICES TIMELINE
   ============================================================ */
.services-timeline { margin-top: var(--space-md); }

.service-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 38px 28px 30px;
  height: 100%;
  overflow: hidden;
  transition: all var(--transition);
}

.service-step::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 3px;
  background: var(--aqua);
  transition: width var(--transition);
}

.service-step:hover {
  transform: translateY(-4px);
  border-color: var(--ocean-mid);
  box-shadow: var(--shadow-2);
}

.service-step:hover::after { width: 100%; }

.step-num {
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--aqua);
  letter-spacing: -0.02em;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--ocean-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--aqua-bright);
  margin-bottom: 22px;
  transition: background var(--transition);
}

.service-step:hover .service-icon {
  background: var(--aqua);
  color: var(--white);
}

.service-step h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ocean-deep);
  margin-bottom: 14px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.service-step p {
  font-size: 0.92rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.7;
}


/* ============================================================
   15. STATS · typographic, no card backgrounds
   ============================================================ */
.section-stats {
  padding: 88px 0;
  background: var(--ocean-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.section-stats::before,
.section-stats::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 60%;
  background: linear-gradient(180deg, transparent, var(--aqua-bright), transparent);
  top: 20%;
  opacity: 0.4;
}

.section-stats::before { left: 18%; }
.section-stats::after  { right: 18%; }

.stat-card { padding: 16px 8px; position: relative; z-index: 1; }

.stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--aqua-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


/* ============================================================
   16. CTA BANNER
   ============================================================ */
.section-cta {
  padding: 72px 0;
  background: var(--white);
}

.cta-banner {
  position: relative;
  background: var(--ocean-deep);
  border-radius: var(--radius);
  padding: 56px 52px;
  color: var(--white);
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--aqua);
}

.cta-banner .section-eyebrow {
  color: var(--aqua-bright);
  margin-bottom: 18px;
}

.cta-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.cta-text {
  font-size: 1.04rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.7;
}


/* ============================================================
   17. CONTACT
   ============================================================ */
.contact-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  height: 100%;
  transition: all var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--ocean-mid);
  box-shadow: var(--shadow-2);
}

.contact-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border-radius: var(--radius-sm);
  background: var(--ocean-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--aqua-bright);
  transition: background var(--transition);
}

.contact-card:hover .contact-icon { background: var(--aqua); color: var(--white); }

.contact-card h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--slate);
  margin-bottom: 14px;
}

.contact-card p {
  font-size: 1.02rem;
  color: var(--graphite);
  margin: 0;
  font-weight: 500;
  line-height: 1.7;
}

.contact-card a       { color: var(--graphite); font-weight: 500; }
.contact-card a:hover { color: var(--aqua); }

/* Brevo wrapper */
.brevo-wrapper {
  position: relative;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: var(--shadow-2);
  overflow: hidden;
}

.brevo-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--aqua);
}

.brevo-header { margin-bottom: 28px; }

.brevo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: var(--cloud);
  margin-bottom: 18px;
}

.brevo-icon i { font-size: 1.6rem; color: var(--ocean-mid); }

.brevo-header h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--ocean-deep);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.brevo-header p {
  color: var(--slate);
  font-size: 1rem;
  margin: 0;
  line-height: 1.7;
}

#brevo-form-container { min-height: 120px; }

.brevo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--snow);
  border: 2px dashed var(--rule);
  border-radius: var(--radius-sm);
  padding: 44px 16px;
  text-align: center;
  color: var(--slate);
  font-size: 0.92rem;
}

.brevo-placeholder i { font-size: 1.7rem; color: var(--aqua); }

/* ---------- Contact form (FormSubmit-compatible) ---------- */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--ocean-deep);
}

.contact-form-header { margin-bottom: 28px; }

.contact-form-header h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ocean-deep);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.contact-form-header p {
  color: var(--slate);
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.7;
}

.contact-form label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: all var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--silver);
  font-style: italic;
}


/* ============================================================
   18. FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: var(--ocean-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 96px 0 28px;
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer-wave {
  position: absolute;
  top: -1px; left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.footer-wave svg { width: 100%; height: 60px; display: block; }

.footer-brand { display: flex; align-items: center; }

.footer-brand img {
  height: 56px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-desc {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
}

.footer-socials { display: flex; gap: 10px; margin-top: 24px; }

.footer-socials a {
  width: 40px; height: 40px;
  border-radius: var(--radius-xs);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--aqua);
  border-color: var(--aqua);
  color: var(--white);
}

.footer-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua-bright);
  margin-bottom: 22px;
}

.footer-links, .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, .footer-contact li { margin-bottom: 12px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--aqua-bright);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact i {
  color: var(--aqua-bright);
  margin-top: 6px;
  flex-shrink: 0;
}

.footer-divider { border-color: rgba(255, 255, 255, 0.08); margin: 40px 0 20px; }

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.footer-copy i { color: var(--aqua-bright); margin-right: 4px; }


/* ============================================================
   19. BACK-TO-TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1020;
  width: 46px; height: 46px;
  background: var(--ocean-deep);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--aqua);
  color: var(--white);
  transform: translateY(-3px);
}


/* ============================================================
   20. MOTION REVEALS
   ============================================================ */
[data-motion] {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.9s cubic-bezier(0.32, 0.72, 0, 1),
              transform 0.9s cubic-bezier(0.32, 0.72, 0, 1);
}

[data-motion="fade-up"]    { transform: translateY(36px); }
[data-motion="fade-down"]  { transform: translateY(-28px); }
[data-motion="fade-right"] { transform: translateX(-36px); }
[data-motion="fade-left"]  { transform: translateX(36px); }
[data-motion="zoom-in"]    { transform: scale(0.94); }

[data-motion].in-view {
  opacity: 1;
  transform: none;
}


/* ============================================================
   21. RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1199.98px) {
  :root { --space-2xl: 88px; }

  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .bento-cell--xl { grid-column: span 3; grid-row: auto; min-height: 320px; }
  .bento-cell--wide { grid-column: span 3; }

  .cycle-viz { grid-template-columns: repeat(5, 1fr); gap: 16px; }
}

@media (max-width: 991.98px) {
  :root { --space-2xl: 72px; }

  .topbar { display: none; }

  .pill-nav-wrap { top: 16px; padding: 0 12px; }

  .pill-nav { padding: 6px 8px 6px 14px; }
  .pill-nav .brand-logo { height: 36px; }

  /* On mobile, replace inline links with toggle + dropdown */
  .pill-nav-links,
  .pill-nav-cta { display: none; }

  .pill-nav-toggle { display: inline-flex; align-items: center; }

  .pill-nav-mobile {
    position: fixed;
    top: 80px;
    left: 12px; right: 12px;
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow-3);
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .pill-nav-mobile.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
    display: block;
  }

  .pill-nav-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .pill-nav-mobile a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    color: var(--graphite);
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition);
  }

  .pill-nav-mobile a:hover { background: var(--cloud); color: var(--ocean-deep); }

  .pill-nav-mobile a.cta { background: var(--ocean-deep); color: var(--white); justify-content: center; margin-top: 8px; }

  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-cell--xl { grid-column: span 2; min-height: 300px; }
  .bento-cell--wide { grid-column: span 2; }

  .cycle-viz { grid-template-columns: repeat(3, 1fr); gap: 32px; row-gap: 40px; }
  .cycle-line { display: none; }

  .cta-banner { padding: 44px 32px; text-align: center; }
  .cta-banner .text-lg-end { text-align: center !important; }

  .products-sidebar { margin-bottom: 28px; }

  .hero-content { padding: 60px 0 220px; }
  .hero-industries { bottom: 60px; }
}

@media (max-width: 767.98px) {
  :root {
    --space-2xl: 60px;
    --fs-base: 1rem;
  }

  .hero { min-height: 600px; }
  .hero-content { padding: 40px 0 200px; }
  .hero-watermark img { opacity: 0.3; transform: translateY(-4%); }

  .hero-industries {
    bottom: 32px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 12px;
    scrollbar-width: none;
  }
  .hero-industries::-webkit-scrollbar { display: none; }
  .hero-industry-pill {
    flex-shrink: 0;
    min-width: 96px;
    padding: 12px;
  }
  .hero-industry-pill i { font-size: 1.3rem; }
  .hero-industry-pill span { font-size: 0.64rem; }

  .btn-primary, .btn-pill, .btn-ghost { padding: 13px 22px; font-size: 0.85rem; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-cell { grid-column: span 1; min-height: 200px; }
  .bento-cell--xl { grid-column: span 1; min-height: 260px; padding: 32px 26px; }
  .bento-cell--wide { grid-column: span 1; }

  .cycle-viz { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .industry-tile { height: 240px; }

  .family-banner-meta { padding: 24px 22px; gap: 18px; }
  .family-banner-num { font-size: 2.6rem; }
  .family-banner h4 { font-size: 1.15rem; }

  .product-card { padding: 24px 20px; }

  .service-step { padding: 30px 22px 24px; }
  .step-num { font-size: 1.5rem; top: 18px; right: 22px; }

  .section-stats { padding: 60px 0; }
  .stat-num { font-size: 2.4rem; }
  .stat-label { font-size: 0.75rem; }

  .trust-strip { padding: 36px 0; }
  .trust-label { text-align: center; }
  .trust-brand { font-size: 0.9rem; }

  .brevo-wrapper { padding: 32px 22px; }
  .brevo-header h4 { font-size: 1.3rem; }

  .cta-banner { padding: 36px 24px; }

  .vt-btn { padding: 14px; gap: 12px; }
  .vt-num { font-size: 1.15rem; }
  .vt-title { font-size: 0.95rem; }
  .vt-desc { font-size: 0.78rem; }
  .vt-arrow { display: none; }

  .manifesto-statement { line-height: 1.4; }
  .section-manifesto { padding: 72px 0; }
}

@media (max-width: 575.98px) {
  .pill-nav { padding: 5px 6px 5px 12px; }
  .pill-nav .brand-logo { height: 32px; }

  .back-to-top {
    width: 42px; height: 42px;
    bottom: 20px; right: 20px;
  }
}


/* ============================================================
   22. REDUCED MOTION PREFERENCE
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  [data-motion] {
    opacity: 1;
    transform: none;
  }
}
