/* =========================================================
   INTEGRIA CARE — Premium Website
   Brand Identity Manual v1.0 · 2025
   ========================================================= */

/* ----------- DESIGN TOKENS ----------- */
:root {
  /* Brand Colors */
  --science-blue: #1A3A5C;
  --science-blue-dark: #0F2640;
  --science-blue-light: #2A5078;
  --precision-aqua: #1A9E9E;
  --precision-aqua-light: #2EBABA;
  --precision-aqua-dark: #137575;
  --origin-orange: #E8732A;
  --origin-orange-light: #F38C45;
  --origin-orange-dark: #C25E1F;

  /* Logo gradient colors */
  --petal-teal: #2C7A7B;
  --petal-blue: #2563A8;
  --petal-orange: #E8732A;
  --petal-red: #DC4A2C;

  /* Neutrals */
  --aqua-mist: #EBF4F4;
  --cloud-white: #F4F7FA;
  --steel-mist: #9AABB8;
  --slate-gray: #4A5568;
  --off-black: #1A1A1A;
  --pure-white: #FFFFFF;

  /* Semantic */
  --bg-primary: #FFFFFF;
  --bg-secondary: var(--cloud-white);
  --bg-tinted: var(--aqua-mist);
  --bg-dark: var(--science-blue);
  --bg-deep: var(--science-blue-dark);
  --text-primary: var(--off-black);
  --text-body: var(--slate-gray);
  --text-muted: var(--steel-mist);
  --text-inverse: var(--pure-white);
  --border-subtle: rgba(26, 58, 92, 0.08);
  --border-medium: rgba(26, 58, 92, 0.16);

  /* Typography */
  --font-display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing scale (8pt grid) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 58, 92, 0.06), 0 1px 3px rgba(26, 58, 92, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 58, 92, 0.08), 0 2px 6px rgba(26, 58, 92, 0.04);
  --shadow-lg: 0 18px 40px rgba(26, 58, 92, 0.12), 0 8px 16px rgba(26, 58, 92, 0.06);
  --shadow-xl: 0 32px 64px rgba(26, 58, 92, 0.18), 0 12px 24px rgba(26, 58, 92, 0.08);
  --shadow-glow-aqua: 0 0 60px rgba(26, 158, 158, 0.35);
  --shadow-glow-orange: 0 0 60px rgba(232, 115, 42, 0.35);

  /* Easing */
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snappy: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-power: cubic-bezier(0.7, 0, 0.3, 1);

  /* Layout */
  --container: 1280px;
  --container-narrow: 1080px;
  --header-h: 80px;
}

/* ----------- RESET ----------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: 0.005em;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ----------- TYPOGRAPHY ----------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--precision-aqua);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: currentColor;
  display: inline-block;
}

h1, h2, h3, h4, h5, .display {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
}
h1 { font-size: clamp(32px, 4.5vw, 48px); }
h2 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.15; }
h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; }
h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.005em; }

p { margin: 0 0 1em; }
p.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--text-body);
  max-width: 60ch;
}

.text-gradient {
  background: linear-gradient(135deg, var(--precision-aqua) 0%, var(--science-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-warm {
  background: linear-gradient(135deg, var(--origin-orange) 0%, var(--petal-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ----------- LAYOUT ----------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
section { position: relative; padding: clamp(64px, 10vw, 128px) 0; }
section.compact { padding: clamp(48px, 6vw, 80px) 0; }

/* ----------- HEADER / NAVIGATION ----------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow 0.4s var(--ease-smooth);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(26, 58, 92, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 5;
}
.brand-mark {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { line-height: 1; }
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.primary-nav a {
  position: relative;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text-body);
  border-radius: var(--r-sm);
  transition: color 0.25s var(--ease-smooth);
}
.primary-nav a:hover { color: var(--science-blue); }
.primary-nav a.active { color: var(--science-blue); }
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--precision-aqua), var(--origin-orange));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-snappy);
}
.primary-nav a:hover::after,
.primary-nav a.active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--science-blue);
  color: var(--text-inverse);
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 6px 16px rgba(26, 58, 92, 0.18);
}
.nav-cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--precision-aqua);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(26, 158, 158, 0.32);
}

/* Mobile burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  position: relative;
  z-index: 5;
}
.burger span {
  width: 22px; height: 2px;
  background: var(--science-blue);
  position: relative;
  transition: all 0.3s var(--ease-smooth);
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px; height: 2px;
  background: var(--science-blue);
  transition: all 0.3s var(--ease-smooth);
}
.burger span::before { top: -7px; }
.burger span::after  { top:  7px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { top: 0; transform: rotate(45deg); }
.burger.is-open span::after  { top: 0; transform: rotate(-45deg); }

/* ----------- BUTTONS ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--r-full);
  transition: all 0.35s var(--ease-smooth);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease-smooth); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--origin-orange);
  color: var(--text-inverse);
  box-shadow: 0 8px 20px rgba(232, 115, 42, 0.32);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--origin-orange-light), var(--petal-red));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s var(--ease-smooth);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(232, 115, 42, 0.45);
}
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  background: var(--science-blue);
  color: var(--text-inverse);
  box-shadow: 0 8px 20px rgba(26, 58, 92, 0.22);
}
.btn-secondary:hover {
  background: var(--precision-aqua);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(26, 158, 158, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--science-blue);
  border: 1.5px solid var(--border-medium);
}
.btn-ghost:hover {
  border-color: var(--precision-aqua);
  color: var(--precision-aqua);
  background: var(--aqua-mist);
}

.btn-light {
  background: rgba(255,255,255,0.12);
  color: var(--text-inverse);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
}
.btn-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.38);
  transform: translateY(-2px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--precision-aqua);
  transition: gap 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-smooth); }
.link-arrow:hover { gap: 14px; color: var(--science-blue); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ----------- HERO ----------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 120px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cloud-white) 0%, var(--pure-white) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-content .eyebrow { margin-bottom: var(--s-4); }
.hero-title {
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-5);
  font-weight: 700;
}
.hero-title .accent {
  display: inline-block;
  position: relative;
  background: linear-gradient(120deg, var(--precision-aqua) 0%, var(--science-blue) 60%, var(--origin-orange) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--text-body);
  max-width: 540px;
  margin-bottom: var(--s-7);
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-7);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5) var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border-subtle);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-body);
  font-size: 13.5px;
  font-weight: 500;
}
.trust-item svg { width: 18px; height: 18px; color: var(--precision-aqua); flex-shrink: 0; }

/* Hero visual / 3D petals */
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
}

/* Petals, hero-glow, and float-orbs removed for performance */

/* Grid backdrop */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 58, 92, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 58, 92, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

/* ----------- SECTION HEADERS ----------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-8);
}
.section-head .eyebrow { justify-content: center; margin-bottom: var(--s-4); }
.section-head h2 { margin-bottom: var(--s-4); }
.section-head p { font-size: 17px; color: var(--text-body); }
.section-head.left { text-align: left; margin-left: 0; }
.section-head.left .eyebrow { justify-content: flex-start; }

/* ----------- CARDS / SOLUTIONS ----------- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}
.solution-card {
  position: relative;
  padding: var(--s-7) var(--s-6);
  background: var(--pure-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  isolation: isolate;
}
.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--aqua-mist) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: -1;
}
.solution-card:hover,
.solution-card[data-anim].in-view:hover {
  transform: translateY(-6px) scale(1.012);
  border-color: var(--precision-aqua);
  box-shadow: 0 20px 40px -12px rgba(26, 58, 92, 0.18), 0 8px 16px -8px rgba(26, 158, 158, 0.15);
}
.solution-card:hover::before { opacity: 1; }
.solution-card.warm:hover { border-color: var(--origin-orange); }
.solution-card.warm::before {
  background: linear-gradient(135deg, rgba(232, 115, 42, 0.08) 0%, transparent 70%);
}

.card-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  margin-bottom: var(--s-5);
  background: linear-gradient(135deg, var(--aqua-mist), var(--cloud-white));
  position: relative;
  transition: transform 0.3s var(--ease-elastic);
}
.card-icon svg { width: 32px; height: 32px; color: var(--precision-aqua); }
.solution-card.warm .card-icon {
  background: linear-gradient(135deg, rgba(232, 115, 42, 0.12), rgba(232, 115, 42, 0.04));
}
.solution-card.warm .card-icon svg { color: var(--origin-orange); }
.solution-card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }

.solution-card h3 { margin-bottom: var(--s-3); }
.solution-card p { color: var(--text-body); margin-bottom: var(--s-5); }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--s-5);
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--aqua-mist);
  color: var(--precision-aqua-dark);
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.tag.warm {
  background: rgba(232, 115, 42, 0.1);
  color: var(--origin-orange-dark);
}
.tag.dot::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ----------- TECHNOLOGIES SECTION ----------- */
.tech-section {
  background: linear-gradient(180deg, var(--science-blue-dark) 0%, var(--science-blue) 100%);
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}
.tech-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(26,158,158,0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(232,115,42,0.12) 0%, transparent 45%);
  pointer-events: none;
}
.tech-section h2,
.tech-section h3 { color: var(--text-inverse); }
.tech-section .eyebrow { color: var(--precision-aqua-light); }
.tech-section p { color: rgba(255,255,255,0.78); }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
  position: relative;
  z-index: 2;
}
.tech-card {
  position: relative;
  padding: var(--s-7);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  isolation: isolate;
}
.tech-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,158,158,0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: -1;
}
.tech-card.warm::before {
  background: linear-gradient(135deg, rgba(232,115,42,0.18), transparent 60%);
}
.tech-card:hover,
.tech-card[data-anim].in-view:hover {
  transform: translateY(-6px) scale(1.012);
  border-color: rgba(26,158,158,0.5);
  box-shadow: var(--shadow-glow-aqua);
}
.tech-card.warm:hover,
.tech-card.warm[data-anim].in-view:hover {
  transform: translateY(-6px) scale(1.012);
  border-color: rgba(232,115,42,0.5);
  box-shadow: var(--shadow-glow-orange);
}
.tech-card:hover::before { opacity: 1; }

.tech-icon {
  width: 72px; height: 72px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--precision-aqua), var(--precision-aqua-dark));
  margin-bottom: var(--s-5);
  position: relative;
  transition: transform 0.6s var(--ease-elastic);
}
.tech-card:hover .tech-icon { transform: rotate(-8deg) scale(1.05); }
.tech-card.warm .tech-icon {
  background: linear-gradient(135deg, var(--origin-orange), var(--petal-red));
}
.tech-icon svg { width: 36px; height: 36px; color: white; }
.tech-card h3 { font-size: 28px; margin-bottom: var(--s-2); }
.tech-card .tech-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(26, 158, 158, 0.18);
  color: var(--precision-aqua-light);
  margin-bottom: var(--s-4);
}
.tech-card.warm .tech-tag {
  background: rgba(232, 115, 42, 0.18);
  color: var(--origin-orange-light);
}

.tech-features {
  display: grid;
  gap: 10px;
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.tech-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
}
.tech-features li svg {
  width: 18px; height: 18px;
  color: var(--precision-aqua-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.tech-card.warm .tech-features li svg { color: var(--origin-orange-light); }

/* ----------- TECH SECTION — 3 PILLARS (Featured · Science · Flexibility) ----------- */
/* Variante A — Cloud White: fondo claro sólido sobre sección dark */
.tech-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-7);
  padding-top: var(--s-7);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pillar-card {
  padding: var(--s-5);
  background: var(--cloud-white);          /* #F4F7FA */
  border: 1px solid var(--aqua-mist);      /* #EBF4F4 */
  border-radius: var(--r-lg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease,
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--precision-aqua);
  box-shadow: 0 18px 36px -12px rgba(26,58,92,0.25);
}
.pillar-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--science-blue);         /* #1A3A5C */
  color: #FFFFFF;
  margin-bottom: var(--s-4);
  transition: all 0.35s ease;
}
.pillar-card:hover .pillar-icon {
  background: var(--precision-aqua);
  transform: scale(1.05);
}
.pillar-icon svg {
  width: 22px;
  height: 22px;
}
.pillar-card h4 {
  color: var(--science-blue);              /* #1A3A5C */
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--s-3);
  line-height: 1.3;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
.pillar-card p {
  color: var(--slate-gray);                /* #4A5568 */
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: var(--s-3);
}
.pillar-card .link-arrow {
  color: var(--precision-aqua);            /* #1A9E9E */
  font-size: 14px;
  font-weight: 600;
}
.pillar-card .link-arrow:hover {
  color: var(--precision-aqua-dark);
}

/* ----------- INGREDIENTS / FEATURED ----------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.feature-card {
  padding: var(--s-6);
  background: var(--pure-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--precision-aqua), var(--science-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-snappy);
}
.feature-card:nth-child(2)::after {
  background: linear-gradient(90deg, var(--origin-orange), var(--petal-red));
}
.feature-card:nth-child(3)::after {
  background: linear-gradient(90deg, var(--precision-aqua), var(--origin-orange));
}
.feature-card:hover,
.feature-card[data-anim].in-view:hover {
  transform: translateY(-5px) scale(1.012);
  box-shadow: 0 20px 40px -12px rgba(26, 58, 92, 0.18), 0 8px 16px -8px rgba(26, 158, 158, 0.12);
  border-color: transparent;
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--steel-mist);
  letter-spacing: 0.1em;
  margin-bottom: var(--s-3);
}
.feature-card h4 {
  font-size: 19px;
  margin-bottom: var(--s-3);
  color: var(--text-primary);
}
.feature-card p { font-size: 15px; color: var(--text-body); }

/* ----------- METRICS / NUMBERS ----------- */
.metrics-band {
  background: var(--bg-tinted);
  padding: var(--s-7) 0;
  position: relative;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
.metric {
  text-align: center;
  padding: var(--s-4);
}
.metric .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1;
  background: linear-gradient(135deg, var(--science-blue), var(--precision-aqua));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-2);
}
.metric .label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--text-body);
  letter-spacing: 0.04em;
}

/* ----------- CERTIFICATIONS ----------- */
.cert-section {
  padding: 80px 0;
  background: var(--pure-white);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.cert-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-7);
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--cloud-white);
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--science-blue);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s var(--ease-smooth);
}
.cert-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--precision-aqua);
}
.cert-badge .seal {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--precision-aqua), var(--science-blue));
  color: white;
}
.cert-badge .seal svg { width: 16px; height: 16px; }

/* ----------- FINAL CTA ----------- */
.final-cta {
  position: relative;
  padding: var(--s-9) 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(232,115,42,0.18), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(26,158,158,0.18), transparent 40%),
    linear-gradient(135deg, var(--science-blue-dark), var(--science-blue));
  color: var(--text-inverse);
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 50%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 20%, transparent 70%);
}
.final-cta h2 { color: var(--text-inverse); margin-bottom: var(--s-4); }
.final-cta p { color: rgba(255,255,255,0.82); font-size: 18px; max-width: 560px; margin: 0 auto var(--s-6); }
.final-cta .ctas { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ----------- BRAND CLOSURE (manifiesto/quote dark section) ----------- */
.brand-closure {
  position: relative;
  padding: var(--s-9) 0;
  margin-top: var(--s-8);
  background:
    radial-gradient(circle at 75% 25%, rgba(26,158,158,0.22), transparent 45%),
    radial-gradient(circle at 25% 75%, rgba(232,115,42,0.16), transparent 45%),
    linear-gradient(135deg, var(--science-blue-dark), var(--science-blue));
  color: var(--text-inverse);
  overflow: hidden;
  text-align: center;
}
.brand-closure::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 50%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 20%, transparent 70%);
  pointer-events: none;
}
.brand-closure .container { position: relative; z-index: 1; }
.brand-closure-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-inverse);
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
/* Override del .text-gradient SOLO dentro del brand-closure
   para que se vea sobre fondo Science Blue oscuro:
   gradiente aqua-light → orange (sin el azul del medio que se mimetiza con el fondo). */
.brand-closure .brand-closure-quote .text-gradient {
  background: linear-gradient(120deg, var(--precision-aqua-light) 0%, var(--precision-aqua) 35%, var(--origin-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ----------- FOOTER ----------- */
.site-footer {
  background: var(--science-blue);
  color: rgba(255,255,255,0.78);
  padding: var(--s-9) 0 var(--s-5);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--precision-aqua) 0%, var(--precision-aqua-light) 50%, var(--origin-orange) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--s-7);
  margin-bottom: var(--s-7);
}
.footer-brand .brand { color: white; margin-bottom: var(--s-4); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14.5px; max-width: 320px; }
.footer-col h5 {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: var(--s-4);
  font-family: var(--font-display);
  font-weight: 600;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.62);
  font-size: 14.5px;
  transition: color 0.25s var(--ease-smooth), padding-left 0.25s var(--ease-smooth);
}
.footer-col a:hover { color: var(--precision-aqua-light); padding-left: 6px; }

.footer-contact .info-line {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}
.footer-contact .info-line svg {
  width: 16px; height: 16px;
  color: var(--precision-aqua-light);
  margin-top: 3px; flex-shrink: 0;
}

.social-row {
  display: flex; gap: 10px;
  margin-top: var(--s-4);
}
.social-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: all 0.3s var(--ease-smooth);
}
.social-btn:hover {
  background: var(--precision-aqua);
  border-color: var(--precision-aqua);
  color: white;
  transform: translateY(-2px);
}
.social-btn svg { width: 16px; height: 16px; }

.footer-bottom {
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .legal-links { display: flex; gap: var(--s-5); }
.footer-bottom .legal-links a:hover { color: white; }

/* ----------- ENTRY ANIMATIONS ----------- */
[data-anim] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
  will-change: opacity, transform;
}
[data-anim="fade-up"]    { transform: translateY(40px); }
[data-anim="fade-down"]  { transform: translateY(-40px); }
[data-anim="fade-left"]  { transform: translateX(-50px); }
[data-anim="fade-right"] { transform: translateX(50px); }
[data-anim="zoom-in"]    { transform: scale(0.94); }
[data-anim="rotate-in"]  { transform: rotate(-6deg) translateY(40px); }
[data-anim].in-view {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotate(0);
}
[data-delay="100"]  { transition-delay: 100ms; }
[data-delay="200"]  { transition-delay: 200ms; }
[data-delay="300"]  { transition-delay: 300ms; }
[data-delay="400"]  { transition-delay: 400ms; }
[data-delay="500"]  { transition-delay: 500ms; }
[data-delay="600"]  { transition-delay: 600ms; }
[data-delay="700"]  { transition-delay: 700ms; }
[data-delay="800"]  { transition-delay: 800ms; }

/* Hero entry */
.hero-content > * { opacity: 0; transform: translateY(30px); animation: hero-up 1s var(--ease-smooth) forwards; }
.hero-content > *:nth-child(1) { animation-delay: 0.10s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.40s; }
.hero-content > *:nth-child(4) { animation-delay: 0.55s; }
.hero-content > *:nth-child(5) { animation-delay: 0.70s; }
@keyframes hero-up {
  to { opacity: 1; transform: translateY(0); }
}
.hero-visual { opacity: 0; animation: hero-fade 1.4s var(--ease-smooth) 0.4s forwards; }
@keyframes hero-fade { to { opacity: 1; } }

/* ----------- SCROLL PROGRESS ----------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--precision-aqua), var(--origin-orange));
  z-index: 1100;
  width: 0%;
  transition: width 0.1s linear;
}

/* ----------- LOADING SCREEN ----------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--science-blue);
  z-index: 9999;
  display: grid; place-items: center;
  transition: opacity 0.7s var(--ease-smooth), visibility 0.7s var(--ease-smooth);
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-content {
  text-align: center;
  color: white;
}
.preloader-logo {
  width: 80px; height: 80px;
  margin: 0 auto var(--s-5);
  position: relative;
  animation: spin 2s linear infinite;
}
.preloader-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ----------- PAGE HEADER (interior pages) ----------- */
.page-hero {
  padding-top: calc(var(--header-h) + 100px);
  padding-bottom: 80px;
  background: linear-gradient(180deg, var(--cloud-white) 0%, var(--pure-white) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 58, 92, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 58, 92, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: var(--s-4);
}
.page-hero p.lead {
  margin: 0 auto;
  font-size: 19px;
  color: var(--text-body);
}
.page-hero.center { text-align: center; }
.page-hero.center .lead { margin: 0 auto; }
.page-hero.center .eyebrow { justify-content: center; }

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--s-4);
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 500;
}
.breadcrumb a { color: var(--precision-aqua); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--science-blue); }
.breadcrumb .sep { color: var(--steel-mist); }

/* ----------- DETAIL CARDS (Tech, Health) ----------- */
.detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: center;
  margin-bottom: var(--s-9);
}
.detail-block.reverse { direction: rtl; }
.detail-block.reverse > * { direction: ltr; }

.detail-visual {
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--aqua-mist), var(--cloud-white));
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.detail-visual.dark {
  background: linear-gradient(135deg, var(--science-blue-dark), var(--science-blue));
  color: white;
}
.detail-visual.warm {
  background: linear-gradient(135deg, rgba(232,115,42,0.12), rgba(232,115,42,0.04));
}

.detail-icon-large {
  width: 50%; height: 50%;
  max-width: 200px; max-height: 200px;
  display: grid; place-items: center;
}
.detail-icon-large svg { width: 100%; height: 100%; }

.detail-content .eyebrow { margin-bottom: var(--s-4); }
.detail-content h2 { margin-bottom: var(--s-4); }
.detail-content p { font-size: 16.5px; line-height: 1.7; margin-bottom: var(--s-5); }

.feature-list {
  display: grid;
  gap: var(--s-3);
  margin: var(--s-5) 0;
}
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--text-body);
}
.feature-list .check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--precision-aqua), var(--science-blue));
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list .check-icon svg { width: 12px; height: 12px; color: white; }
.feature-list.warm .check-icon {
  background: linear-gradient(135deg, var(--origin-orange), var(--petal-red));
}

/* ----------- FORMS / CONTACT ----------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-8);
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--science-blue-dark), var(--science-blue));
  color: white;
  padding: var(--s-7);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(26,158,158,0.25), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(232,115,42,0.18), transparent 50%);
}
.contact-info-card > * { position: relative; z-index: 1; }
.contact-info-card h3 { color: white; margin-bottom: var(--s-3); }
.contact-info-card .eyebrow { color: var(--precision-aqua-light); }
.contact-info-card p { color: rgba(255,255,255,0.78); margin-bottom: var(--s-6); }
.contact-info-card .info-block {
  padding: var(--s-3) 0;
  display: flex; gap: var(--s-3);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-info-card .info-block:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: var(--s-5); }
.contact-info-card .info-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: rgba(26,158,158,0.18);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-info-card .info-icon svg { width: 18px; height: 18px; color: var(--precision-aqua-light); }
.contact-info-card .info-text small {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-info-card .info-text strong {
  color: white;
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 15.5px;
}

.contact-form {
  background: var(--pure-white);
  padding: var(--s-7);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}
.contact-form h3 { margin-bottom: var(--s-5); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}
.form-group {
  position: relative;
  margin-bottom: var(--s-4);
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cloud-white);
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.25s var(--ease-smooth);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--precision-aqua);
  background: white;
  box-shadow: 0 0 0 4px rgba(26, 158, 158, 0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; margin-top: var(--s-3); }

/* ----- Asterisco rojo en campos requeridos ----- */
.form-group label .required {
  color: #dc3545;
  margin-left: 2px;
  font-weight: 600;
}

/* ----- Estado de error por campo ----- */
.form-group input.has-error,
.form-group select.has-error,
.form-group textarea.has-error {
  border-color: #dc3545;
  background: #fff8f8;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.10);
}

/* ----- Mensaje de error bajo el campo ----- */
.field-error {
  display: none;
  margin-top: 6px;
  font-size: 12.5px;
  color: #dc3545;
  line-height: 1.4;
  font-weight: 500;
}
.field-error.is-visible {
  display: block;
  animation: field-error-in 0.25s var(--ease-snappy);
}
@keyframes field-error-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-success {
  display: none;
  padding: var(--s-5);
  background: var(--aqua-mist);
  border-left: 4px solid var(--precision-aqua);
  border-radius: var(--r-md);
  margin-bottom: var(--s-4);
  color: var(--science-blue);
}
.form-success.active,
.form-success.is-visible { display: block !important; animation: slide-in 0.5s var(--ease-snappy); }

.form-error {
  display: none;
  padding: var(--s-5);
  background: #fdecea;
  border-left: 4px solid #dc3545;
  border-radius: var(--r-md);
  margin-bottom: var(--s-4);
  color: #842029;
  animation: slide-in 0.5s var(--ease-snappy);
}

@keyframes slide-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------- RESPONSIVE ----------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .detail-block { grid-template-columns: 1fr; gap: var(--s-5); }
  .detail-block.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--s-5); }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }

  .primary-nav,
  .nav-cta { display: none; }
  .burger { display: inline-flex; }

  .primary-nav.is-open {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-2);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important; /* viewport dinámico (iOS) */
    padding: calc(var(--header-h) + 24px) var(--s-5) var(--s-5) !important;
    background: var(--pure-white) !important;
    z-index: 999998 !important; /* arriba de Elementor pero debajo del header sticky 999999 */
    overflow-y: auto;
  }
  .primary-nav.is-open a:not(.mobile-cta) {
    padding: 18px 0;
    font-size: 22px;
    border-bottom: 1px solid var(--border-subtle);
    border-radius: 0;
  }
  .primary-nav.is-open a::after { display: none; }
  .primary-nav.is-open .mobile-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    margin-top: var(--s-5);
    background: var(--science-blue);
    color: var(--text-inverse);
    border-radius: var(--r-full);
    border-bottom: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    align-self: flex-start;
    box-shadow: 0 6px 16px rgba(26, 58, 92, 0.18);
    transition: all 0.3s var(--ease-smooth);
  }
  .primary-nav.is-open .mobile-cta:hover,
  .primary-nav.is-open .mobile-cta:active {
    background: var(--precision-aqua);
    box-shadow: 0 10px 24px rgba(26, 158, 158, 0.32);
  }
  .primary-nav.is-open .mobile-cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  /* Header sticky por encima del overlay para que el burger siga clickeable al cerrar */
  body .elementor-location-header,
  body .site-header {
    z-index: 999999 !important;
  }
  /* Burger por encima del overlay del menú */
  .burger {
    position: relative;
    z-index: 999999 !important;
  }

  .hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 80px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .hero-trust { gap: var(--s-3); }
  .trust-item { font-size: 12.5px; }

  .solutions-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .tech-pillars { grid-template-columns: 1fr; gap: var(--s-4); }
  .feature-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-3); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-5); }

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

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .cert-row { gap: var(--s-3); }
  .cert-badge { font-size: 13px; padding: 10px 16px; }
}

/* ----------- ACCESSIBILITY ----------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-anim] { opacity: 1 !important; transform: none !important; }
  .hero-content > * { opacity: 1; transform: none; animation: none; }
  .hero-visual { opacity: 1; animation: none; }
}

:focus-visible {
  outline: 3px solid var(--precision-aqua);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

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

/* Custom scrollbar */
@media (min-width: 1024px) {
  ::-webkit-scrollbar { width: 10px; height: 10px; }
  ::-webkit-scrollbar-track { background: var(--cloud-white); }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--science-blue), var(--precision-aqua));
    border-radius: 10px;
    border: 2px solid var(--cloud-white);
  }
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--precision-aqua), var(--origin-orange));
  }
}

/* ============== CARD IMAGES & MEDIA ============== */
.card-media {
  position: relative;
  width: calc(100% + var(--s-6) * 2);
  margin: calc(var(--s-7) * -1) calc(var(--s-6) * -1) var(--s-5);
  height: 220px;
  overflow: hidden;
  border-top-left-radius: var(--r-lg);
  border-top-right-radius: var(--r-lg);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.solution-card:hover .card-media img { transform: scale(1.04); }
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 58, 92, 0.45) 100%);
  pointer-events: none;
}
.solution-card.warm .card-media::after {
  background: linear-gradient(180deg, transparent 50%, rgba(232, 115, 42, 0.35) 100%);
}

.feature-card .feature-media {
  position: relative;
  width: calc(100% + var(--s-6) * 2);
  margin: calc(var(--s-6) * -1) calc(var(--s-6) * -1) var(--s-4);
  height: 180px;
  overflow: hidden;
  border-top-left-radius: var(--r-lg);
  border-top-right-radius: var(--r-lg);
}
.feature-card .feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
  filter: saturate(0.92);
}
.feature-card:hover .feature-media img { transform: scale(1.05); }

/* ============== HERO PHOTO LAYER ============== */
.hero-photo-frame {
  position: absolute;
  inset: 6%;
  z-index: 1;
  pointer-events: none;
}
.hero-photo-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 40px 80px -24px rgba(26, 58, 92, 0.4),
    0 0 0 8px rgba(255, 255, 255, 0.6),
    0 0 0 9px rgba(26, 158, 158, 0.18);
  background: var(--cloud-white);
}
.hero-photo-inner img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  z-index: 0;
}
/* Overlay tonal sutil — no oscurece, da unidad cromática */
.hero-photo-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 158, 158, 0.10) 0%, transparent 40%, rgba(232, 115, 42, 0.10) 100%);
  pointer-events: none;
  z-index: 1;
}
/* Vignette muy sutil en bordes */
.hero-photo-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 60%, rgba(26, 58, 92, 0.18) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Grid HUD estático sobre la foto (sin animación) */
.hero-photo-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  background-image:
    linear-gradient(rgba(46, 186, 186, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 186, 186, 0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 50% 50%, black 25%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 25%, transparent 65%);
  opacity: 0.35;
}


/* ============== Floating data tags ============== */
.hero-tag {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--science-blue);
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow:
    0 12px 28px -8px rgba(26, 58, 92, 0.32),
    0 0 0 1px rgba(26, 158, 158, 0.14);
  pointer-events: none;
  animation: hero-tag-float 6s ease-in-out infinite;
}
.hero-tag .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--precision-aqua);
  box-shadow: 0 0 0 3px rgba(26, 158, 158, 0.18);
  animation: hero-tag-pulse 1.8s ease-in-out infinite;
}
.hero-tag-1 {
  top: 8%;
  left: 0;
  animation-delay: 0s;
}
.hero-tag-2 {
  bottom: 10%;
  right: 0;
  animation-delay: -2s;
}
.hero-tag-2 .dot {
  background: var(--origin-orange);
  box-shadow: 0 0 0 3px rgba(232, 115, 42, 0.2);
}
.hero-tag-3 {
  top: 48%;
  right: -2%;
  animation-delay: -4s;
}
@keyframes hero-tag-float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -6px; }
}
@keyframes hero-tag-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.9); }
}

@media (max-width: 1024px) {
  .hero-photo-frame { inset: 4%; }
  .hero-tag-1 { top: 4%; left: 4%; }
  .hero-tag-2 { bottom: 6%; right: 4%; }
  .hero-tag-3 { display: none; }
}
@media (max-width: 600px) {
  .hero-tag { font-size: 11px; padding: 7px 12px; }
}

/* =========================================================
   ELEMENTOR THEME BUILDER OVERRIDES — versión definitiva
   El problema: Elementor pone width:1430px (o similar) como
   INLINE STYLE en .elementor-section cuando "stretch_section"
   está habilitado. Inline styles ganan al CSS externo, pero
   !important con selector específico SÍ los puede sobrescribir.

   También: Hello Elementor (theme padre) limita .site-header
   y .site-footer a max-width:1140px en pantallas grandes.
   Lo neutralizamos abajo con selectores más específicos.
   ========================================================= */

/* Anular el max-width: 1140px de Hello Elementor en nuestros header/footer */
@media (min-width: 1200px) {
  body .elementor-location-header .site-header,
  body .elementor-location-footer .site-footer,
  body .site-header,
  body .site-footer,
  body header.site-header,
  body footer.site-footer {
    max-width: none !important;
    width: 100% !important;
  }
}

/* HEADER — fuerza la sección de Elementor a 100vw alineada con el body */
body .elementor-location-header > .elementor,
body .elementor-location-header .elementor-section.elementor-section-stretched,
body .elementor-location-header .elementor-section,
body .elementor-location-header .elementor-top-section {
  width: 100% !important;
  max-width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  transform: none !important;
}
body .elementor-location-header .elementor-container,
body .elementor-location-header .elementor-column-gap-default > .elementor-column,
body .elementor-location-header .elementor-column,
body .elementor-location-header .elementor-widget-wrap,
body .elementor-location-header .elementor-widget,
body .elementor-location-header .elementor-widget-html {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* FOOTER — mismo tratamiento */
body .elementor-location-footer > .elementor,
body .elementor-location-footer .elementor-section.elementor-section-stretched,
body .elementor-location-footer .elementor-section,
body .elementor-location-footer .elementor-top-section {
  width: 100% !important;
  max-width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  transform: none !important;
}
body .elementor-location-footer .elementor-container,
body .elementor-location-footer .elementor-column-gap-default > .elementor-column,
body .elementor-location-footer .elementor-column,
body .elementor-location-footer .elementor-widget-wrap,
body .elementor-location-footer .elementor-widget,
body .elementor-location-footer .elementor-widget-html {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* El .container interno del HTML mantiene su comportamiento de box centrado */
body .elementor-location-header .site-header .container,
body .elementor-location-footer .site-footer .container {
  max-width: var(--container) !important;
  width: 100% !important;
  padding-left: var(--s-5) !important;
  padding-right: var(--s-5) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* =========================================================
   PAGE CONTENT (Home, Technologies, etc.)
   Cuando el contenido del sitio está dentro de un widget HTML
   de Elementor en una página, los <section> deben verse
   full-width pero el .container interno mantener 1200px máx.
   ========================================================= */

/* === MOTOR NUEVO DE ELEMENTOR — Containers (Flexbox / .e-con) === */
/* Elementor define --content-width en :root con 1140px por default.
   Lo neutralizamos para nuestros widgets HTML que tienen contenido full-width. */
body .e-con,
body .e-con > .e-con-inner,
body .e-con-full,
body .e-con-full > .e-con-inner {
  max-width: 100% !important;
  width: 100% !important;
  padding-inline-start: 0 !important;
  padding-inline-end: 0 !important;
}

/* === MOTOR VIEJO DE ELEMENTOR — Sections === */
/* Las secciones de Elementor que envuelven el widget HTML del contenido */
body .elementor-widget-html > .elementor-widget-container > section {
  width: 100% !important;
}

/* Si el widget HTML está en una columna de Elementor, aseguramos full width */
body .elementor:not(.elementor-location-header):not(.elementor-location-footer) .elementor-widget-html,
body .elementor:not(.elementor-location-header):not(.elementor-location-footer) .elementor-widget-html > .elementor-widget-container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Las secciones de páginas: fondo full-width, contenido en .container box */
body .elementor:not(.elementor-location-header):not(.elementor-location-footer) section {
  width: 100% !important;
  max-width: 100% !important;
}

/* Si Elementor envuelve el widget en su section/column con padding,
   asegurar que NO recorten el contenido (los <section> internos manejan sus propios paddings via main.css) */
body .elementor-section[data-element_type="section"]:has(.elementor-widget-html) {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body .elementor-section[data-element_type="section"]:has(.elementor-widget-html) .elementor-container {
  max-width: 100% !important;
  padding: 0 !important;
}
body .elementor-section[data-element_type="section"]:has(.elementor-widget-html) .elementor-column,
body .elementor-section[data-element_type="section"]:has(.elementor-widget-html) .elementor-widget-wrap {
  padding: 0 !important;
}

/* El .container del proyecto siempre con max-width 1200 cuando esté en frontend */
body main .container,
body article .container,
body .page .container,
body .post .container {
  max-width: var(--container) !important;
  width: 100% !important;
  padding-left: var(--s-5) !important;
  padding-right: var(--s-5) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Logo SVG: garantizar tamaño fijo dentro de Elementor */
.brand .brand-logo {
  display: block !important;
  height: 38px !important;
  width: auto !important;
  max-width: none !important;
}
.brand .brand-logo path,
.brand .brand-logo circle,
.brand .brand-logo g {
  visibility: visible !important;
}


/* ============================================================
   HUMAN HEALTH PAGE — DEDICATED STYLES
   Paleta cálida (Origin Orange) — Human Health usa tonos
   naranjas según decisión del proyecto.
   ============================================================ */

/* -- Variants reutilizables -- */
.eyebrow-warm,
.eyebrow.eyebrow-warm {
  color: var(--origin-orange);
}
.eyebrow-warm::before,
.eyebrow.eyebrow-warm::before {
  background: var(--origin-orange);
}

.btn-warm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--origin-orange);
  color: #fff;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 6px 18px rgba(232,115,42,0.30);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-warm svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-warm:hover {
  background: var(--origin-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(232,115,42,0.42);
}

.link-arrow-warm {
  color: var(--origin-orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.25s var(--ease-smooth);
}
.link-arrow-warm svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease-smooth); }
.link-arrow-warm:hover { color: var(--origin-orange-dark); }
.link-arrow-warm:hover svg { transform: translateX(4px); }

/* -- HERO SPLIT (texto + imagen) -- */
.page-hero.hero-split {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
  text-align: left;
  background: var(--cloud-white);
  position: relative;
  overflow: hidden;
}
.page-hero.hero-split.warm::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(232,115,42,0.10), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(243,140,69,0.07), transparent 50%);
  pointer-events: none;
}
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-7);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-split-content .breadcrumb { margin-bottom: var(--s-3); }
.hero-split-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-4);
  color: var(--off-black);
}
.hero-split-content .lead {
  font-size: clamp(16px, 1.3vw, 18.5px);
  color: var(--text-body);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: var(--s-5);
}
.hero-split-content .hero-ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}

.hero-split-visual {
  position: relative;
}
.hero-split-visual .hero-photo-frame {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 30px 60px -20px rgba(26,58,92,0.25);
  max-width: 520px;
  margin: 0 auto;
}
.hero-split-visual .hero-photo-frame.warm::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(232,115,42,0.18));
  border-radius: 50%;
  pointer-events: none;
}
.hero-split-visual .hero-photo-inner {
  width: 100%;
  height: 100%;
}
.hero-split-visual .hero-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* -- INTRO SECTION (clara, centrada) -- */
.intro-section {
  padding: var(--s-9) 0;
  background: #fff;
  text-align: center;
}
.section-head.center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.section-head.center h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  margin: var(--s-3) 0 var(--s-4);
  color: var(--off-black);
  letter-spacing: -0.02em;
}
.section-head.center p {
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.65;
}

/* -- SOLUTION DETAIL (Nutraceuticals / Cosmeceuticals) -- */
.solution-detail {
  padding: var(--s-9) 0;
  position: relative;
}
.solution-detail.warm {
  background: linear-gradient(180deg, #fff 0%, var(--cloud-white) 100%);
}
.solution-detail.warm.alt {
  background: linear-gradient(180deg, var(--cloud-white) 0%, #fff 100%);
}
.solution-detail-head {
  max-width: 760px;
  margin-bottom: var(--s-7);
}
.solution-detail-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.12;
  margin: var(--s-3) 0 var(--s-4);
  color: var(--off-black);
  letter-spacing: -0.02em;
}
.solution-detail-head p {
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.6;
  max-width: 620px;
}

/* -- PRODUCTS PLACEHOLDER (área reservada) -- */
.products-placeholder {
  margin-top: var(--s-5);
  padding: var(--s-8) var(--s-5);
  background: rgba(232,115,42,0.04);
  border: 2px dashed rgba(232,115,42,0.35);
  border-radius: var(--r-lg);
  display: grid;
  place-items: center;
}
.placeholder-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  color: var(--origin-orange-dark);
}
.placeholder-inner strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.placeholder-inner span {
  color: var(--steel-mist);
  font-size: 14px;
}

/* -- TECH FEATURE (QuanticSphere highlight con imagen de fondo + parallax) -- */
.tech-feature {
  padding: var(--s-9) 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* Parallax desktop: background-attachment: fixed
     En móvil iOS no funciona bien, lo desactivamos en media query */
  background-image: url('../img/quanticsphere.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
/* Overlay oscuro azul para legibilidad del texto */
.tech-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,38,64,0.82) 0%, rgba(26,58,92,0.72) 50%, rgba(15,38,64,0.85) 100%),
    radial-gradient(circle at 20% 30%, rgba(232,115,42,0.16), transparent 50%);
  z-index: 1;
  pointer-events: none;
}
/* Texto y contenido por encima del overlay */
.tech-feature > .container { position: relative; z-index: 2; }
.tech-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.tech-feature-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
  margin: var(--s-3) 0 var(--s-4);
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.30);
}
.tech-feature-content .eyebrow,
.tech-feature-content .eyebrow-warm {
  justify-content: center;
  display: inline-flex;
}
.tech-feature-content p {
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: var(--s-4);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 12px rgba(0,0,0,0.40);
}
.tech-feature-content .link-arrow-warm {
  color: var(--origin-orange-light);
  margin-top: var(--s-3);
  display: inline-flex;
  font-weight: 700;
}
.tech-feature-content .link-arrow-warm:hover { color: #fff; }

/* Ocultamos el orbe SVG anterior — ya no aplica con imagen de fondo */
.tech-feature .tech-feature-visual { display: none; }

/* -- CUSTOMIZATION SECTION (3 pilares) -- */
.customization-section {
  padding: var(--s-9) 0;
  background: #fff;
}
.customization-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-7);
}
.cpillar {
  padding: var(--s-6);
  background: var(--cloud-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              border-color 0.35s ease,
              box-shadow 0.4s cubic-bezier(0.22,1,0.36,1);
}
.cpillar:hover {
  transform: translateY(-4px);
  border-color: var(--origin-orange);
  box-shadow: 0 18px 36px -12px rgba(232,115,42,0.25);
}
.cpillar-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--origin-orange);
  line-height: 1;
  margin-bottom: var(--s-3);
  letter-spacing: -0.02em;
}
.cpillar h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--off-black);
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}
.cpillar p {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.6;
}

/* -- FINAL CTA WARM (variante naranja) -- */
.final-cta.warm {
  background:
    radial-gradient(circle at 75% 25%, rgba(232,115,42,0.20), transparent 45%),
    radial-gradient(circle at 25% 75%, rgba(243,140,69,0.12), transparent 45%),
    linear-gradient(135deg, var(--science-blue-dark), var(--science-blue));
}

/* ============================================================
   RESPONSIVE — Human Health
   ============================================================ */
@media (max-width: 1024px) {
  .hero-split-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .hero-split-visual .hero-photo-frame { max-width: 480px; margin: 0 auto; }
  .customization-pillars { grid-template-columns: repeat(2, 1fr); }
  /* Parallax fixed no funciona bien en iOS, usar scroll normal */
  .tech-feature {
    background-attachment: scroll;
    background-position: center center;
  }
}
@media (max-width: 640px) {
  .customization-pillars { grid-template-columns: 1fr; }
  .products-placeholder { padding: var(--s-6) var(--s-4); }
  .placeholder-inner strong { font-size: 16px; }
  .tech-feature { padding: var(--s-7) 0; }
}


/* ============================================================
   PRODUCT CAROUSEL — Slider con flechas, dots y autoplay
   Usado en Human Health (Cosmeceuticals + Nutraceuticals)
   Paleta: cálida (Origin Orange) por la vertical Human Health
   ============================================================ */

.ic-carousel {
  position: relative;
  margin-top: var(--s-5);
  /* padding lateral para dar aire a las flechas */
  padding: 0 60px;
}

.ic-carousel-viewport {
  overflow: hidden;
  position: relative;
}

.ic-carousel-track {
  display: flex;
  gap: var(--s-4);
  /* La transition la maneja el JS dinámicamente */
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* === CARDS === */
.ic-product-card {
  flex: 0 0 calc((100% - var(--s-4) * 2) / 3); /* 3 cards visibles desktop */
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.ic-product-card:hover {
  border-color: var(--origin-orange);
  box-shadow: 0 18px 36px -12px rgba(232,115,42,0.18);
}
.ic-product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--origin-orange), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.ic-product-card:hover::before { opacity: 1; }

.ic-card-category {
  display: inline-block;
  font-family: var(--font-mono, 'Roboto Mono', monospace);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--origin-orange-dark);
  border: 1px solid var(--origin-orange);
  padding: 4px 10px;
  margin-bottom: var(--s-3);
  border-radius: 3px;
  align-self: flex-start;
}
.ic-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  margin-bottom: var(--s-4);
  border-radius: var(--r-md);
  background: var(--cloud-white); /* fallback si la imagen no carga */
  filter: brightness(0.95) saturate(0.92);
  transition: filter 0.4s ease;
  display: block;
}
.ic-product-card:hover .ic-card-img {
  filter: brightness(1.02) saturate(1);
}
.ic-card-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--off-black);
  margin-bottom: var(--s-2);
  line-height: 1.2;
}
.ic-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: var(--s-3);
}
.ic-card-tag {
  font-family: var(--font-mono, monospace);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  border: 1px solid;
  font-weight: 600;
}
.ic-card-tag-cat {
  border-color: rgba(232,115,42,0.45);
  color: var(--origin-orange-dark);
  background: rgba(232,115,42,0.08);
}
.ic-card-tag-sys {
  border-color: rgba(26,58,92,0.30);
  color: var(--science-blue-light);
  background: rgba(26,58,92,0.05);
}
.ic-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-3) 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ic-card-features li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
}
.ic-card-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--origin-orange);
  font-weight: 700;
}

/* === EXPAND === */
.ic-card-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ic-card-expand.is-open {
  /* JS asigna max-height = scrollHeight */
}
.ic-card-expand-inner {
  padding-top: var(--s-3);
  margin-top: var(--s-2);
  border-top: 1px solid var(--border-subtle);
}
.ic-exp-desc {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: var(--s-4);
  border-left: 2px solid var(--origin-orange);
  padding-left: var(--s-3);
}
.ic-exp-section-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--science-blue);
  margin-bottom: var(--s-3);
}
.ic-dosage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: var(--s-3);
}
.ic-dosage-item {
  background: var(--cloud-white);
  border: 1px solid var(--border-subtle);
  padding: 12px;
  border-radius: var(--r-sm);
}
.ic-dosage-label {
  font-family: var(--font-mono, monospace);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-mist);
  margin-bottom: 4px;
}
.ic-dosage-value {
  font-size: 12.5px;
  color: var(--off-black);
  line-height: 1.55;
}
.ic-exp-presentation {
  background: rgba(232,115,42,0.08);
  border: 1px solid rgba(232,115,42,0.32);
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-family: var(--font-mono, monospace);
  font-size: 11.5px;
  color: var(--origin-orange-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ic-exp-presentation::before { content: "▣"; color: var(--origin-orange); }

/* === FOOTER (botones) === */
.ic-card-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: var(--s-3);
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
}
.ic-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid;
  border-radius: var(--r-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
.ic-card-btn-info {
  background: transparent;
  border-color: var(--origin-orange);
  color: var(--origin-orange-dark);
}
.ic-card-btn-info:hover,
.ic-card-btn-info[aria-expanded="true"] {
  background: var(--origin-orange);
  color: #fff;
}
.ic-card-btn-view {
  background: var(--science-blue);
  border-color: var(--science-blue);
  color: #fff;
}
.ic-card-btn-view:hover {
  background: var(--science-blue-dark);
  border-color: var(--science-blue-dark);
  transform: translateY(-1px);
}
.ic-arrow-down {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.ic-card-btn-info[aria-expanded="true"] .ic-arrow-down {
  transform: rotate(225deg) translate(-2px, -2px);
}

/* === ARROWS === */
.ic-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border-subtle);
  color: var(--science-blue);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 5;
  box-shadow: 0 8px 20px -6px rgba(26,58,92,0.18);
  transition: all 0.25s ease;
}
.ic-carousel-arrow:hover {
  background: var(--origin-orange);
  border-color: var(--origin-orange);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}
.ic-carousel-arrow svg {
  width: 18px;
  height: 18px;
}
.ic-carousel-prev { left: 0; }
.ic-carousel-next { right: 0; }

/* === DOTS === */
.ic-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--s-5);
}
.ic-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26,58,92,0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ic-carousel-dot:hover {
  background: rgba(232,115,42,0.45);
}
.ic-carousel-dot.is-active {
  background: var(--origin-orange);
  width: 28px;
  border-radius: 5px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .ic-product-card {
    flex: 0 0 calc((100% - var(--s-4)) / 2); /* 2 cards visibles */
  }
  .ic-carousel { padding: 0 50px; }
}
@media (max-width: 640px) {
  .ic-product-card {
    flex: 0 0 calc(100% - var(--s-5)); /* 1 card visible, casi pantalla completa */
  }
  .ic-dosage-grid { grid-template-columns: 1fr; }
  .ic-card-footer { grid-template-columns: 1fr; }
  .ic-carousel { padding: 0 40px; }
  .ic-carousel-arrow { width: 36px; height: 36px; }
  .ic-carousel-arrow svg { width: 14px; height: 14px; }
}


/* ============================================================
   ANIMAL HEALTH PAGE — DEDICATED STYLES
   Paleta fría/azul-aqua (Precision Aqua + Science Blue)
   Vertical Animal Health usa tonos aqua según decisión del proyecto.
   ============================================================ */

/* -- Variants reutilizables -- */
.eyebrow-cool,
.eyebrow.eyebrow-cool {
  color: var(--precision-aqua);
}
.eyebrow-cool::before,
.eyebrow.eyebrow-cool::before {
  background: var(--precision-aqua);
}

.text-gradient-cool {
  background: linear-gradient(135deg, var(--precision-aqua), var(--precision-aqua-dark));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.btn-cool {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--precision-aqua);
  color: #fff;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 6px 18px rgba(26,158,158,0.30);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-cool svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-cool:hover {
  background: var(--precision-aqua-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26,158,158,0.42);
}

.link-arrow-cool {
  color: var(--precision-aqua);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.25s var(--ease-smooth);
}
.link-arrow-cool svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease-smooth); }
.link-arrow-cool:hover { color: var(--precision-aqua-dark); }
.link-arrow-cool:hover svg { transform: translateX(4px); }

/* -- HERO COOL — tintes aqua en los gradients de fondo -- */
.page-hero.hero-split.cool::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(26,158,158,0.12), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(46,186,186,0.08), transparent 50%);
  pointer-events: none;
}
.hero-split-visual .hero-photo-frame.cool::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(26,158,158,0.18));
  border-radius: 50%;
  pointer-events: none;
}

/* -- SOLUTIONS GRID (3 application cards) -- */
.solutions-grid-section {
  padding: var(--s-9) 0;
  background: linear-gradient(180deg, #fff 0%, var(--cloud-white) 100%);
}
.application-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-7);
}
.application-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              border-color 0.35s ease,
              box-shadow 0.45s cubic-bezier(0.22,1,0.36,1);
  display: flex;
  flex-direction: column;
}
.application-card:hover {
  transform: translateY(-6px);
  border-color: var(--precision-aqua);
  box-shadow: 0 24px 48px -16px rgba(26,158,158,0.25);
}

/* -- Imagen cuadrada arriba -- */
.application-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: var(--cloud-white);
  /* el icono NO va dentro de aquí porque tiene overflow:hidden */
}
.application-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), filter 0.4s ease;
  filter: brightness(0.95) saturate(0.92);
}
.application-card:hover .application-image img {
  transform: scale(1.05);
  filter: brightness(1.02) saturate(1);
}

/* -- Icono circular flotando entre imagen y contenido (fuera de la imagen) -- */
.application-icon {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--precision-aqua);
  margin-top: -32px;       /* se "monta" sobre la imagen */
  margin-left: var(--s-5);
  z-index: 2;
  box-shadow: 0 8px 20px -4px rgba(26,58,92,0.20);
  transition: all 0.35s ease;
}
.application-icon svg {
  width: 28px;
  height: 28px;
}
.application-card:hover .application-icon {
  background: var(--precision-aqua);
  color: #fff;
  transform: scale(1.06);
}

/* -- Contenido textual debajo de la imagen -- */
.application-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--off-black);
  margin-bottom: var(--s-3);
  margin-top: var(--s-4);
  padding: 0 var(--s-5);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.application-card p {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: var(--s-4);
  padding: 0 var(--s-5);
  flex-grow: 1;
}
.application-card .link-arrow-cool {
  padding: 0 var(--s-5) var(--s-5);
  margin-top: auto;
}

/* -- TECH FEATURE COOL (VetraSphere) -- */
.tech-feature.tech-feature-cool {
  background-image: url('../img/vetrasphere.jpg');
  background-color: var(--science-blue-dark);
}
.tech-feature.tech-feature-cool::before {
  /* Overlay más fuerte porque la imagen es muy luminosa (dorada).
     Mantiene tinte azul-aqua para coherencia de la sección Animal Health. */
  background:
    linear-gradient(135deg, rgba(15,38,64,0.88) 0%, rgba(26,58,92,0.80) 50%, rgba(19,117,117,0.72) 100%),
    radial-gradient(circle at 75% 25%, rgba(46,186,186,0.20), transparent 50%);
}
.tech-feature-cool .tech-feature-content .link-arrow-cool {
  color: var(--precision-aqua-light);
  margin-top: var(--s-3);
  display: inline-flex;
  font-weight: 700;
}
.tech-feature-cool .tech-feature-content .link-arrow-cool:hover { color: #fff; }

/* -- CUSTOMIZATION COOL (3 pilares con números aqua) -- */
.customization-pillars-cool .cpillar:hover {
  border-color: var(--precision-aqua);
  box-shadow: 0 18px 36px -12px rgba(26,158,158,0.25);
}
.customization-pillars-cool .cpillar-num {
  color: var(--precision-aqua);
}

/* -- FINAL CTA COOL (variante azul/aqua) -- */
.final-cta.cool {
  background:
    radial-gradient(circle at 75% 25%, rgba(26,158,158,0.22), transparent 45%),
    radial-gradient(circle at 25% 75%, rgba(46,186,186,0.14), transparent 45%),
    linear-gradient(135deg, var(--science-blue-dark), var(--science-blue));
}

/* ============================================================
   RESPONSIVE — Animal Health
   ============================================================ */
@media (max-width: 1024px) {
  .application-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .application-grid { grid-template-columns: 1fr; }
  .application-card { padding: var(--s-5); }
  .application-icon { width: 56px; height: 56px; }
  .application-icon svg { width: 28px; height: 28px; }
}


/* ============================================================
   TECHNOLOGIES PAGE — DEDICATED STYLES
   Paleta MIXTA: QuanticSphere (warm/naranja) + VetraSphere (cool/aqua).
   ============================================================ */

/* -- Gradient mixto para títulos con ambos colores -- */
.text-gradient-mixed {
  background: linear-gradient(135deg, var(--origin-orange) 0%, var(--precision-aqua) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* -- PLATFORM INTRO (encabezado de "Two Platforms") -- */
.platform-intro {
  padding: var(--s-9) 0 var(--s-7) 0;
  background: var(--cloud-white);
}

/* -- PLATFORM DETAIL (QuanticSphere / VetraSphere) -- */
.platform-detail {
  position: relative;
  padding: var(--s-9) 0;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* Imagen de fondo con parallax desktop */
.platform-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Overlay según paleta */
.platform-detail.platform-warm::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,38,64,0.84) 0%, rgba(26,58,92,0.74) 50%, rgba(232,115,42,0.30) 100%),
    radial-gradient(circle at 20% 30%, rgba(232,115,42,0.18), transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.platform-detail.platform-cool::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,38,64,0.86) 0%, rgba(26,58,92,0.78) 50%, rgba(19,117,117,0.72) 100%),
    radial-gradient(circle at 80% 70%, rgba(46,186,186,0.20), transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.platform-detail > .container { position: relative; z-index: 2; }

.platform-grid {
  max-width: 680px;
  margin: 0;
  text-align: left;
  position: relative;
  z-index: 2;
}
/* Variante reverse: alinea el contenido a la derecha */
.platform-detail.platform-reverse .platform-grid {
  margin-left: auto;
  margin-right: 0;
}

.platform-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  margin: var(--s-3) 0 var(--s-3);
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.30);
}
.platform-subheadline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin-bottom: var(--s-4);
  letter-spacing: 0;
}
.platform-desc {
  color: rgba(255,255,255,0.88);
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: var(--s-5);
  text-shadow: 0 1px 12px rgba(0,0,0,0.40);
}

/* Bullets de plataforma */
.platform-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-5) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.platform-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: rgba(255,255,255,0.95);
  line-height: 1.5;
}
.platform-bullets li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.platform-bullets.bullets-warm li svg { color: var(--origin-orange-light); }
.platform-bullets.bullets-cool li svg { color: var(--precision-aqua-light); }

/* -- APPLICATIONS (grid 2 columnas) -- */
.applications-section {
  padding: var(--s-9) 0;
  background: #fff;
}
.apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  margin-top: var(--s-7);
}
.apps-column {
  padding: var(--s-6);
  border-radius: var(--r-lg);
  background: var(--cloud-white);
  border: 1px solid var(--border-subtle);
  transition: transform 0.4s var(--ease-smooth),
              border-color 0.35s ease,
              box-shadow 0.4s var(--ease-smooth);
  /* Flex column para alinear CTAs al fondo */
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: var(--s-5);
}
.apps-column.apps-warm:hover {
  transform: translateY(-4px);
  border-color: var(--origin-orange);
  box-shadow: 0 18px 36px -12px rgba(232,115,42,0.20);
}
.apps-column.apps-cool:hover {
  transform: translateY(-4px);
  border-color: var(--precision-aqua);
  box-shadow: 0 18px 36px -12px rgba(26,158,158,0.20);
}
.apps-header {
  margin-bottom: 0;
}
.apps-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: var(--s-3);
}
.apps-tag.tag-warm {
  background: rgba(232,115,42,0.10);
  color: var(--origin-orange-dark);
  border: 1px solid rgba(232,115,42,0.30);
}
.apps-tag.tag-cool {
  background: rgba(26,158,158,0.10);
  color: var(--precision-aqua-dark);
  border: 1px solid rgba(26,158,158,0.30);
}
.apps-header h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--off-black);
  letter-spacing: -0.01em;
}
.apps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.apps-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: var(--s-3);
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--off-black);
  transition: all 0.25s ease;
}
.apps-warm .apps-list li:hover {
  border-color: var(--origin-orange);
  transform: translateX(4px);
}
.apps-cool .apps-list li:hover {
  border-color: var(--precision-aqua);
  transform: translateX(4px);
}
.apps-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.apps-warm .apps-icon {
  background: rgba(232,115,42,0.12);
  color: var(--origin-orange-dark);
}
.apps-cool .apps-icon {
  background: rgba(26,158,158,0.12);
  color: var(--precision-aqua-dark);
}
.apps-icon svg {
  width: 22px;
  height: 22px;
}

/* -- PROCESS (4 pasos horizontales) -- */
.process-section {
  padding: var(--s-9) 0;
  background: var(--cloud-white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-7);
  position: relative;
}
/* Línea conectora horizontal sutil */
.process-grid::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle) 20%, var(--border-subtle) 80%, transparent);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--s-3);
}
.process-num {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--s-4);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border-subtle);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--science-blue);
  transition: all 0.35s ease;
  position: relative;
  z-index: 2;
}
.process-step:hover .process-num {
  background: var(--science-blue);
  color: #fff;
  border-color: var(--science-blue);
  transform: scale(1.08);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--off-black);
  margin-bottom: var(--s-3);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.process-step p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE — Technologies
   ============================================================ */
@media (max-width: 1024px) {
  .platform-detail .platform-bg {
    background-attachment: scroll;
  }
  .apps-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
  .process-grid::before { display: none; }
}
@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
  .apps-column { padding: var(--s-5); }
  .platform-detail { padding: var(--s-7) 0; }
}


/* ============================================================
   HERO FULL-BLEED (Technologies page)
   Imagen de fondo + overlay azul oscuro, texto centrado blanco
   ============================================================ */
.page-hero.hero-full-bleed {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 100px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.page-hero.hero-full-bleed .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}
.page-hero.hero-full-bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,38,64,0.85) 0%, rgba(26,58,92,0.78) 50%, rgba(15,38,64,0.85) 100%),
    radial-gradient(circle at 20% 30%, rgba(232,115,42,0.16), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(26,158,158,0.18), transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.page-hero.hero-full-bleed > .container {
  position: relative;
  z-index: 2;
}
.page-hero.hero-full-bleed .breadcrumb {
  justify-content: center;
  color: rgba(255,255,255,0.75);
}
.page-hero.hero-full-bleed .breadcrumb a {
  color: rgba(255,255,255,0.85);
}
.page-hero.hero-full-bleed .breadcrumb a:hover {
  color: #fff;
}
.page-hero.hero-full-bleed .breadcrumb .sep {
  color: rgba(255,255,255,0.45);
}
.page-hero.hero-full-bleed h1 {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.40);
  max-width: 900px;
  margin: 0 auto var(--s-4);
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.06;
}
.page-hero.hero-full-bleed .lead {
  color: rgba(255,255,255,0.92);
  max-width: 720px;
  margin: 0 auto;
  text-shadow: 0 1px 12px rgba(0,0,0,0.30);
  font-size: clamp(16px, 1.4vw, 19px);
}

/* Eyebrow visible sobre fondo oscuro */
.eyebrow-on-dark,
.eyebrow.eyebrow-on-dark {
  color: var(--precision-aqua-light);
}
.eyebrow-on-dark::before,
.eyebrow.eyebrow-on-dark::before {
  background: var(--precision-aqua-light);
}


/* ============================================================
   TECHNOLOGIES — ADDITIONS (Customization cards + Apps CTAs + Hero split sin variante)
   ============================================================ */

/* -- Hero split neutral (sin .warm ni .cool) -- */
.page-hero.hero-split:not(.warm):not(.cool)::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(232,115,42,0.08), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(26,158,158,0.10), transparent 50%);
  pointer-events: none;
}
.hero-split-visual .hero-photo-frame:not(.warm):not(.cool)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(26,58,92,0.18));
  border-radius: 50%;
  pointer-events: none;
}

/* -- CUSTOMIZATION — 3 cards con iconos -- */
.custom-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-7);
}
.custom-card {
  padding: var(--s-6);
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  position: relative;
  text-align: left;
  transition: transform 0.4s var(--ease-smooth),
              border-color 0.35s ease,
              box-shadow 0.4s var(--ease-smooth);
}
.custom-card:hover {
  transform: translateY(-4px);
  border-color: var(--science-blue);
  box-shadow: 0 18px 36px -12px rgba(26,58,92,0.18);
}
.custom-card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(26,58,92,0.10), rgba(26,158,158,0.06));
  color: var(--science-blue);
  margin-bottom: var(--s-4);
  transition: all 0.35s ease;
}
.custom-card-icon svg {
  width: 28px;
  height: 28px;
}
.custom-card:hover .custom-card-icon {
  background: linear-gradient(135deg, var(--science-blue), var(--precision-aqua));
  color: #fff;
  transform: scale(1.05);
}
.custom-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--off-black);
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.custom-card p {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.6;
}

/* -- APPS CTA (botones grandes al final de cada columna) -- */
.apps-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .custom-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .custom-cards-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   VETRASPHERE POULTRY PAGE — DEDICATED STYLES
   Paleta dark navy + teal. Todas las reglas con prefijo .vsp- + scope .vetrasphere-poultry-page
   ============================================================ */

.vetrasphere-poultry-page, .vetrasphere-aquaculture-page {
  --vsp-navy: #0d1b2e;
  --vsp-navy-mid: #112240;
  --vsp-navy-light: #1a3356;
  --vsp-teal: #00b4a0;
  --vsp-teal-light: #00d4bc;
  --vsp-teal-glow: rgba(0,180,160,0.3);
  --vsp-white: #f0f6ff;
  --vsp-white-dim: rgba(240,246,255,0.6);
  --vsp-white-faint: rgba(240,246,255,0.08);
  --vsp-border: rgba(0,180,160,0.2);

  background: var(--vsp-navy);
  color: var(--vsp-white);
  font-family: var(--font-body);
  position: relative;
  overflow-x: hidden;
  /* Romper el container de Elementor para fullbleed */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.vetrasphere-poultry-page::before, .vetrasphere-aquaculture-page::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(0,180,160,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 80%, rgba(0,100,160,0.06) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.012) 80px, rgba(255,255,255,0.012) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.012) 80px, rgba(255,255,255,0.012) 81px);
  pointer-events: none;
  z-index: 0;
}

.vetrasphere-poultry-page *, .vetrasphere-aquaculture-page *{ box-sizing: border-box; }

/* -- HERO -- */
.vetrasphere-poultry-page .vsp-hero, .vetrasphere-aquaculture-page .vsp-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 60px 80px;
  overflow: hidden;
}
.vetrasphere-poultry-page .vsp-hero-bg-img, .vetrasphere-aquaculture-page .vsp-hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) saturate(1);
  z-index: 0;
}
.vetrasphere-poultry-page .vsp-hero-bg-img {
  background-image: url('https://images.unsplash.com/photo-1518557984649-44e30e8cb4dd?w=1920&h=1080&fit=crop&auto=format');
}
.vetrasphere-aquaculture-page .vsp-hero-bg-img {
  background-image: url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&h=1080&fit=crop&auto=format');
}
.vetrasphere-poultry-page .vsp-hero-overlay, .vetrasphere-aquaculture-page .vsp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--vsp-navy) 45%, transparent 100%);
  z-index: 1;
}
.vetrasphere-poultry-page .vsp-hero-content, .vetrasphere-aquaculture-page .vsp-hero-content {
  position: relative; z-index: 2; max-width: 680px;
}
.vetrasphere-poultry-page .vsp-hero-eyebrow, .vetrasphere-aquaculture-page .vsp-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: #fff; margin-bottom: 28px;
  opacity: 0; animation: vsp-fadeUp 0.8s 0.2s forwards;
}
.vetrasphere-poultry-page .vsp-hero-eyebrow::before, .vetrasphere-aquaculture-page .vsp-hero-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--vsp-teal);
}
.vetrasphere-poultry-page .vsp-hero-title, .vetrasphere-aquaculture-page .vsp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 700; line-height: 0.95; letter-spacing: -2px;
  margin-bottom: 12px; color: var(--vsp-white);
  opacity: 0; animation: vsp-fadeUp 0.8s 0.4s forwards;
}
.vetrasphere-poultry-page .vsp-hero-subtitle, .vetrasphere-aquaculture-page .vsp-hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300; color: var(--vsp-white-dim);
  margin-bottom: 28px;
  opacity: 0; animation: vsp-fadeUp 0.8s 0.55s forwards;
}
.vetrasphere-poultry-page .vsp-hero-tagline, .vetrasphere-aquaculture-page .vsp-hero-tagline {
  font-size: 15px; font-weight: 300; line-height: 1.7;
  color: var(--vsp-white-dim); max-width: 480px;
  margin-bottom: 48px;
  opacity: 0; animation: vsp-fadeUp 0.8s 0.7s forwards;
}
.vetrasphere-poultry-page .vsp-hero-actions, .vetrasphere-aquaculture-page .vsp-hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: vsp-fadeUp 0.8s 0.85s forwards;
}
.vetrasphere-poultry-page .vsp-btn-primary, .vetrasphere-aquaculture-page .vsp-btn-primary {
  background: var(--vsp-teal); color: var(--vsp-navy);
  font-family: var(--font-body); font-weight: 700;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 36px; border: none; cursor: pointer;
  transition: all 0.3s; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.vetrasphere-poultry-page .vsp-btn-primary:hover, .vetrasphere-aquaculture-page .vsp-btn-primary:hover {
  background: var(--vsp-teal-light); transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--vsp-teal-glow);
}
.vetrasphere-poultry-page .vsp-btn-outline, .vetrasphere-aquaculture-page .vsp-btn-outline {
  background: transparent; color: var(--vsp-white);
  font-family: var(--font-body); font-weight: 500;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 36px; border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
  transition: all 0.3s;
}
.vetrasphere-poultry-page .vsp-btn-outline:hover, .vetrasphere-aquaculture-page .vsp-btn-outline:hover {
  border-color: var(--vsp-teal); color: var(--vsp-teal);
}
.vetrasphere-poultry-page .vsp-hero-stats, .vetrasphere-aquaculture-page .vsp-hero-stats {
  position: absolute; bottom: 60px; right: 60px; z-index: 2;
  display: flex; gap: 40px;
  opacity: 0; animation: vsp-fadeUp 0.8s 1s forwards;
}
.vetrasphere-poultry-page .vsp-stat, .vetrasphere-aquaculture-page .vsp-stat{ text-align: center; }
.vetrasphere-poultry-page .vsp-stat-num, .vetrasphere-aquaculture-page .vsp-stat-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700; color: var(--vsp-teal);
  line-height: 1;
}
.vetrasphere-poultry-page .vsp-stat-label, .vetrasphere-aquaculture-page .vsp-stat-label {
  font-size: 10px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--vsp-white-dim);
  margin-top: 4px;
}
.vetrasphere-poultry-page .vsp-scroll-hint, .vetrasphere-aquaculture-page .vsp-scroll-hint {
  position: absolute; bottom: 40px; left: 60px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: vsp-fadeUp 0.8s 1.2s forwards;
}
.vetrasphere-poultry-page .vsp-scroll-hint span, .vetrasphere-aquaculture-page .vsp-scroll-hint span {
  font-family: var(--font-display);
  font-size: 9px; letter-spacing: 3px; color: var(--vsp-white-dim);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.vetrasphere-poultry-page .vsp-scroll-line, .vetrasphere-aquaculture-page .vsp-scroll-line {
  width: 1px; height: 60px; background: linear-gradient(to bottom, var(--vsp-teal), transparent);
  animation: vsp-pulse-line 2s infinite;
}

.vetrasphere-poultry-page .vsp-products-section, .vetrasphere-aquaculture-page .vsp-products-section{ position: relative; z-index: 1; padding: 0; }

.vetrasphere-poultry-page .vsp-section-header, .vetrasphere-aquaculture-page .vsp-section-header{ text-align: center; padding: 100px 60px 60px; }
.vetrasphere-poultry-page .vsp-section-label, .vetrasphere-aquaculture-page .vsp-section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--vsp-teal); margin-bottom: 16px;
}
.vetrasphere-poultry-page .vsp-section-title, .vetrasphere-aquaculture-page .vsp-section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; letter-spacing: -1px;
  margin-bottom: 16px; color: var(--vsp-white);
}
.vetrasphere-poultry-page .vsp-section-title .vsp-accent, .vetrasphere-aquaculture-page .vsp-section-title .vsp-accent{ color: var(--vsp-teal); }
.vetrasphere-poultry-page .vsp-section-desc, .vetrasphere-aquaculture-page .vsp-section-desc {
  font-size: 15px; font-weight: 300; color: var(--vsp-white-dim);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* -- FILTERS -- */
.vetrasphere-poultry-page .vsp-filter-bar, .vetrasphere-aquaculture-page .vsp-filter-bar {
  position: relative; z-index: 2;
  background: #fff;
  border-top: 1px solid var(--vsp-border);
  border-bottom: 1px solid var(--vsp-border);
  padding: 28px 60px;
}
.vetrasphere-poultry-page .vsp-filter-bar-inner, .vetrasphere-aquaculture-page .vsp-filter-bar-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-start;
}
.vetrasphere-poultry-page .vsp-filter-group, .vetrasphere-aquaculture-page .vsp-filter-group {
  display: flex; flex-direction: column; gap: 10px; flex: 1; min-width: 220px;
}
.vetrasphere-poultry-page .vsp-filter-label, .vetrasphere-aquaculture-page .vsp-filter-label {
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--vsp-teal);
  display: flex; align-items: center; gap: 8px;
}
.vetrasphere-poultry-page .vsp-filter-label::before, .vetrasphere-aquaculture-page .vsp-filter-label::before {
  content: ''; display: inline-block; width: 18px; height: 1px; background: var(--vsp-teal);
}
.vetrasphere-poultry-page .vsp-filter-chips, .vetrasphere-aquaculture-page .vsp-filter-chips{ display: flex; flex-wrap: wrap; gap: 8px; }
.vetrasphere-poultry-page .vsp-filter-chip, .vetrasphere-aquaculture-page .vsp-filter-chip {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 400; letter-spacing: 0.3px;
  padding: 7px 16px; border-radius: 4px;
  border: 1px solid rgba(0,180,160,0.25);
  background: rgba(0,0,0,0.04); color: #000;
  cursor: pointer; transition: all 0.2s ease; user-select: none; white-space: nowrap;
}
.vetrasphere-poultry-page .vsp-filter-chip:hover, .vetrasphere-aquaculture-page .vsp-filter-chip:hover {
  border-color: var(--vsp-teal); background: rgba(0,180,160,0.1);
}
.vetrasphere-poultry-page .vsp-filter-chip.active, .vetrasphere-aquaculture-page .vsp-filter-chip.active {
  background: var(--vsp-teal); border-color: var(--vsp-teal); color: #000; font-weight: 700;
}
.vetrasphere-poultry-page .vsp-filter-count, .vetrasphere-aquaculture-page .vsp-filter-count {
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: 1px; color: #000;
  align-self: flex-end; padding-bottom: 2px; white-space: nowrap;
}
.vetrasphere-poultry-page .vsp-filter-count span, .vetrasphere-aquaculture-page .vsp-filter-count span{ color: var(--vsp-teal); font-weight: 700; }

/* -- GRID -- */
.vetrasphere-poultry-page .vsp-products-grid, .vetrasphere-aquaculture-page .vsp-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px;
  padding: 0 0 100px;
}
.vetrasphere-poultry-page .vsp-product-card, .vetrasphere-aquaculture-page .vsp-product-card {
  position: relative;
  background: var(--vsp-navy-mid);
  padding: 40px;
  overflow: hidden; cursor: default;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s ease;
}
.vetrasphere-poultry-page .vsp-product-card.visible, .vetrasphere-aquaculture-page .vsp-product-card.visible{ opacity: 1; transform: translateY(0); }
.vetrasphere-poultry-page .vsp-product-card:hover, .vetrasphere-aquaculture-page .vsp-product-card:hover {
  background: var(--vsp-navy-light); z-index: 2;
}
.vetrasphere-poultry-page .vsp-product-card::before, .vetrasphere-aquaculture-page .vsp-product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--vsp-teal), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.vetrasphere-poultry-page .vsp-product-card:hover::before, .vetrasphere-aquaculture-page .vsp-product-card:hover::before{ opacity: 1; }
.vetrasphere-poultry-page .vsp-card-category, .vetrasphere-aquaculture-page .vsp-card-category {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: #fff; border: 1px solid #fff;
  padding: 4px 10px; margin-bottom: 20px;
}
.vetrasphere-poultry-page .vsp-card-img, .vetrasphere-aquaculture-page .vsp-card-img {
  width: 100%; height: 200px; object-fit: cover;
  margin-bottom: 24px;
  filter: brightness(0.85) saturate(0.8);
  transition: filter 0.4s;
  display: block;
}
.vetrasphere-poultry-page .vsp-product-card:hover .vsp-card-img, .vetrasphere-aquaculture-page .vsp-product-card:hover .vsp-card-img{ filter: brightness(1) saturate(1); }
.vetrasphere-poultry-page .vsp-card-name, .vetrasphere-aquaculture-page .vsp-card-name {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  letter-spacing: -0.5px; margin-bottom: 12px;
  color: var(--vsp-white);
  transition: color 0.3s;
}
.vetrasphere-poultry-page .vsp-product-card:hover .vsp-card-name, .vetrasphere-aquaculture-page .vsp-product-card:hover .vsp-card-name{ color: var(--vsp-teal); }
.vetrasphere-poultry-page .vsp-card-features, .vetrasphere-aquaculture-page .vsp-card-features{ display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.vetrasphere-poultry-page .vsp-card-feature, .vetrasphere-aquaculture-page .vsp-card-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; color: var(--vsp-white-dim);
}
.vetrasphere-poultry-page .vsp-card-feature::before, .vetrasphere-aquaculture-page .vsp-card-feature::before {
  content: '\2192'; color: var(--vsp-teal);
  flex-shrink: 0; font-size: 11px; margin-top: 1px;
}

/* Tags */
.vetrasphere-poultry-page .vsp-card-tags,
.vetrasphere-aquaculture-page .vsp-card-tags{ display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.vetrasphere-poultry-page .vsp-card-tag, .vetrasphere-aquaculture-page .vsp-card-tag {
  font-family: var(--font-display);
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 9px; border-radius: 3px; border: 1px solid; line-height: 1.4;
}
.vetrasphere-poultry-page .vsp-card-tag-categoria, .vetrasphere-aquaculture-page .vsp-card-tag-categoria {
  border-color: rgba(0,180,160,0.45);
  color: var(--vsp-teal-light);
  background: rgba(0,180,160,0.08);
}
.vetrasphere-poultry-page .vsp-card-tag-sistema, .vetrasphere-aquaculture-page .vsp-card-tag-sistema {
  border-color: rgba(100,160,255,0.35);
  color: #7eb8ff;
  background: rgba(100,160,255,0.07);
}

/* Expandable */
.vetrasphere-poultry-page .vsp-card-expand, .vetrasphere-aquaculture-page .vsp-card-expand {
  max-height: 0; overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.vetrasphere-poultry-page .vsp-card-expand-inner, .vetrasphere-aquaculture-page .vsp-card-expand-inner {
  padding-top: 20px; margin-top: 8px;
  border-top: 1px solid var(--vsp-white-faint);
}
.vetrasphere-poultry-page .vsp-exp-desc, .vetrasphere-aquaculture-page .vsp-exp-desc {
  font-size: 14px; font-weight: 300; line-height: 1.8;
  color: var(--vsp-white-dim); margin-bottom: 24px;
  border-left: 2px solid var(--vsp-teal); padding-left: 16px;
}
.vetrasphere-poultry-page .vsp-modal-section, .vetrasphere-aquaculture-page .vsp-modal-section{ margin-bottom: 24px; }
.vetrasphere-poultry-page .vsp-modal-section-title, .vetrasphere-aquaculture-page .vsp-modal-section-title {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--vsp-teal);
  margin-bottom: 14px;
}
.vetrasphere-poultry-page .vsp-dosage-grid, .vetrasphere-aquaculture-page .vsp-dosage-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vetrasphere-poultry-page .vsp-dosage-item, .vetrasphere-aquaculture-page .vsp-dosage-item {
  background: var(--vsp-white-faint);
  border: 1px solid var(--vsp-border);
  padding: 16px;
}
.vetrasphere-poultry-page .vsp-dosage-label, .vetrasphere-aquaculture-page .vsp-dosage-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--vsp-teal); margin-bottom: 6px;
}
.vetrasphere-poultry-page .vsp-dosage-value, .vetrasphere-aquaculture-page .vsp-dosage-value {
  font-size: 13px; color: var(--vsp-white-dim); line-height: 1.6;
}
.vetrasphere-poultry-page .vsp-exp-presentation, .vetrasphere-aquaculture-page .vsp-exp-presentation {
  background: rgba(0,180,160,0.08);
  border: 1px solid var(--vsp-teal);
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 12px; color: var(--vsp-teal);
  display: flex; align-items: center; gap: 10px;
}
.vetrasphere-poultry-page .vsp-exp-presentation::before, .vetrasphere-aquaculture-page .vsp-exp-presentation::before{ content: '\25A3'; }

/* Footer */
.vetrasphere-poultry-page .vsp-card-footer, .vetrasphere-aquaculture-page .vsp-card-footer {
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 20px; border-top: 1px solid var(--vsp-white-faint);
}
.vetrasphere-poultry-page .vsp-card-footer-actions, .vetrasphere-aquaculture-page .vsp-card-footer-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: stretch;
}
.vetrasphere-poultry-page .vsp-card-btn, .vetrasphere-aquaculture-page .vsp-card-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; border: 1px solid var(--vsp-teal);
  color: var(--vsp-teal);
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 12px 16px;
  cursor: pointer; transition: all 0.3s; white-space: nowrap;
}
.vetrasphere-poultry-page .vsp-card-btn:hover, .vetrasphere-aquaculture-page .vsp-card-btn:hover {
  background: var(--vsp-teal); color: var(--vsp-navy); transform: translateX(2px);
}
.vetrasphere-poultry-page .vsp-card-btn.expanded, .vetrasphere-aquaculture-page .vsp-card-btn.expanded {
  background: rgba(0,180,160,0.12); color: var(--vsp-teal-light);
}
.vetrasphere-poultry-page .vsp-card-btn-arrow, .vetrasphere-aquaculture-page .vsp-card-btn-arrow {
  width: 14px; height: 1px; background: currentColor;
  position: relative; transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}
.vetrasphere-poultry-page .vsp-card-btn-arrow::after, .vetrasphere-aquaculture-page .vsp-card-btn-arrow::after {
  content: '';
  position: absolute; right: 0; top: -3px;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.vetrasphere-poultry-page .vsp-card-btn.expanded .vsp-card-btn-arrow, .vetrasphere-aquaculture-page .vsp-card-btn.expanded .vsp-card-btn-arrow{ transform: rotate(180deg); }
.vetrasphere-poultry-page .vsp-card-btn-ver, .vetrasphere-aquaculture-page .vsp-card-btn-ver {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--vsp-white);
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 12px 16px;
  cursor: pointer; transition: all 0.3s;
  text-decoration: none;
}
.vetrasphere-poultry-page .vsp-card-btn-ver:hover, .vetrasphere-aquaculture-page .vsp-card-btn-ver:hover {
  border-color: var(--vsp-teal); color: var(--vsp-teal); transform: translateY(-2px);
}
.vetrasphere-poultry-page .vsp-card-presentation, .vetrasphere-aquaculture-page .vsp-card-presentation {
  font-family: var(--font-display);
  font-size: 10px; color: var(--vsp-white-dim); letter-spacing: 1px;
}

/* Filter empty */
.vetrasphere-poultry-page .vsp-product-card.vsp-filtered-out,
.vetrasphere-aquaculture-page .vsp-product-card.vsp-filtered-out{ display: none; }
.vetrasphere-poultry-page .vsp-filter-empty, .vetrasphere-aquaculture-page .vsp-filter-empty {
  display: none; grid-column: 1 / -1;
  text-align: center; padding: 60px 24px;
  color: var(--vsp-white-dim);
  font-family: var(--font-display);
}
.vetrasphere-poultry-page .vsp-filter-empty.visible, .vetrasphere-aquaculture-page .vsp-filter-empty.visible{ display: block; }
.vetrasphere-poultry-page .vsp-filter-empty-icon, .vetrasphere-aquaculture-page .vsp-filter-empty-icon{ font-size: 36px; margin-bottom: 16px; opacity: 0.4; }
.vetrasphere-poultry-page .vsp-filter-empty-title, .vetrasphere-aquaculture-page .vsp-filter-empty-title {
  font-size: 20px; font-weight: 600;
  color: var(--vsp-white); margin-bottom: 8px;
}
.vetrasphere-poultry-page .vsp-filter-empty-sub, .vetrasphere-aquaculture-page .vsp-filter-empty-sub{ font-size: 14px; opacity: 0.6; }

/* Animations */
@keyframes vsp-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes vsp-pulse-line {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Responsive */
@media (max-width: 1024px) {
  .vetrasphere-poultry-page .vsp-hero, .vetrasphere-aquaculture-page .vsp-hero{ padding: 100px 40px 60px; }
  .vetrasphere-poultry-page .vsp-section-header, .vetrasphere-aquaculture-page .vsp-section-header{ padding: 80px 40px 50px; }
  .vetrasphere-poultry-page .vsp-filter-bar, .vetrasphere-aquaculture-page .vsp-filter-bar{ padding: 24px 40px; }
}
@media (max-width: 768px) {
  .vetrasphere-poultry-page .vsp-hero, .vetrasphere-aquaculture-page .vsp-hero{ padding: 100px 24px 60px; min-height: 90vh; }
  .vetrasphere-poultry-page .vsp-hero-stats, .vetrasphere-aquaculture-page .vsp-hero-stats{ right: 24px; bottom: 40px; gap: 24px; }
  .vetrasphere-poultry-page .vsp-stat-num, .vetrasphere-aquaculture-page .vsp-stat-num{ font-size: 26px; }
  .vetrasphere-poultry-page .vsp-scroll-hint, .vetrasphere-aquaculture-page .vsp-scroll-hint{ left: 24px; }
  .vetrasphere-poultry-page .vsp-products-grid, .vetrasphere-aquaculture-page .vsp-products-grid{ padding: 0 0 60px; grid-template-columns: 1fr; }
  .vetrasphere-poultry-page .vsp-section-header, .vetrasphere-aquaculture-page .vsp-section-header{ padding: 60px 24px 40px; }
  .vetrasphere-poultry-page .vsp-dosage-grid, .vetrasphere-aquaculture-page .vsp-dosage-grid{ grid-template-columns: 1fr; }
  .vetrasphere-poultry-page .vsp-card-footer-actions, .vetrasphere-aquaculture-page .vsp-card-footer-actions{ grid-template-columns: 1fr; }
  .vetrasphere-poultry-page .vsp-filter-bar, .vetrasphere-aquaculture-page .vsp-filter-bar{ padding: 20px 24px; }
  .vetrasphere-poultry-page .vsp-filter-bar-inner, .vetrasphere-aquaculture-page .vsp-filter-bar-inner{ gap: 18px; }
  .vetrasphere-poultry-page .vsp-filter-group, .vetrasphere-aquaculture-page .vsp-filter-group{ min-width: 100%; }
  .vetrasphere-poultry-page .vsp-filter-chip, .vetrasphere-aquaculture-page .vsp-filter-chip{ font-size: 12px; padding: 6px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .vetrasphere-poultry-page .vsp-product-card, .vetrasphere-aquaculture-page .vsp-product-card{ transition: none; }
  .vetrasphere-poultry-page .vsp-hero-eyebrow, .vetrasphere-aquaculture-page .vsp-hero-eyebrow, .vetrasphere-poultry-page .vsp-hero-title, .vetrasphere-aquaculture-page .vsp-hero-title, .vetrasphere-poultry-page .vsp-hero-subtitle, .vetrasphere-aquaculture-page .vsp-hero-subtitle, .vetrasphere-poultry-page .vsp-hero-tagline, .vetrasphere-aquaculture-page .vsp-hero-tagline, .vetrasphere-poultry-page .vsp-hero-actions, .vetrasphere-aquaculture-page .vsp-hero-actions, .vetrasphere-poultry-page .vsp-hero-stats, .vetrasphere-aquaculture-page .vsp-hero-stats, .vetrasphere-poultry-page .vsp-scroll-hint, .vetrasphere-aquaculture-page .vsp-scroll-hint{ animation: none !important; opacity: 1 !important; }
  .vetrasphere-poultry-page .vsp-scroll-line, .vetrasphere-aquaculture-page .vsp-scroll-line{ animation: none !important; }
}
/* ============================================================
   ADVANTAGES OF QUANTICSPHERE™ — Home tech-section block
   Inserted between .tech-pillars and .tech-grid
   All selectors prefixed with .qs- to avoid conflicts
   ============================================================ */

.qs-advantages {
  margin-top: var(--s-9);
  margin-bottom: var(--s-8);
  padding: var(--s-9) 0;
  background: rgba(255,255,255,0.025);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.qs-advantages::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(26,158,158,0.10) 0%, transparent 70%),
    radial-gradient(circle at 15% 15%, rgba(232,115,42,0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(26,158,158,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.qs-inner {
  position: relative;
  z-index: 1;
  padding: 0 var(--s-6);
  max-width: 1200px;
  margin: 0 auto;
}

/* ── HEADER ── */
.qs-header { text-align: center; margin-bottom: var(--s-7); }
.qs-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--precision-aqua-light);
  font-weight: 700; margin-bottom: var(--s-4);
}
.qs-eyebrow::before,
.qs-eyebrow::after {
  content: ''; width: 28px; height: 1px;
  background: var(--precision-aqua);
}
.qs-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800; letter-spacing: -1.2px;
  line-height: 1.15; color: var(--pure-white);
}
.qs-title-q {
  display: inline-flex; align-items: center; justify-content: center;
  width: clamp(46px, 5.5vw, 62px);
  height: clamp(46px, 5.5vw, 62px);
  margin: 0 8px;
  vertical-align: middle;
  position: relative;
}
.qs-title-q svg {
  width: 100%;
  height: 100%;
  display: block;
}
.qs-title em {
  font-style: normal;
  color: var(--precision-aqua-light);
}
.qs-title sup {
  font-size: 0.4em; font-weight: 600;
  vertical-align: super;
  color: rgba(255,255,255,0.5);
  margin-left: 4px;
}

/* ── INTRO ── */
.qs-intro {
  max-width: 720px;
  margin: 0 auto var(--s-9);
  background: rgba(232,115,42,0.08);
  border-left: 4px solid var(--origin-orange);
  padding: var(--s-5) var(--s-6);
  border-radius: 4px;
}
.qs-intro-label {
  display: block;
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--origin-orange-light);
  font-weight: 700; margin-bottom: 10px;
}
.qs-intro p {
  font-size: 15px; line-height: 1.75;
  color: rgba(255,255,255,0.85);
}
.qs-intro p strong {
  color: var(--pure-white);
  font-weight: 600;
}

/* ── HEX WRAPPER ── */
.qs-hex-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--s-7);
  align-items: center;
  margin-bottom: var(--s-9);
}
.qs-hex-col {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

/* ── ANIMATIONS ── */
@keyframes qsFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes qsHexGlow {
  0%, 100% { box-shadow: 0 24px 60px rgba(15,38,64,0.25), 0 0 0 0 rgba(26,158,158,0); }
  50%      { box-shadow: 0 24px 80px rgba(15,38,64,0.35), 0 0 0 18px rgba(26,158,158,0.08); }
}
@keyframes qsHexRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes qsQBreathe {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 8px 24px rgba(26,158,158,0.4)); }
  50%      { transform: scale(1.06); filter: drop-shadow(0 12px 36px rgba(26,158,158,0.6)); }
}
@keyframes qsDotPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.25); }
}
@keyframes qsLinePulse {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

.qs-card {
  opacity: 0;
  animation: qsFadeUp 0.7s ease-out forwards;
}
.qs-card[data-n="01"] { animation-delay: 0.10s; }
.qs-card[data-n="02"] { animation-delay: 0.25s; }
.qs-card[data-n="03"] { animation-delay: 0.40s; }
.qs-card[data-n="04"] { animation-delay: 0.15s; }
.qs-card[data-n="05"] { animation-delay: 0.30s; }
.qs-card[data-n="06"] { animation-delay: 0.45s; }

.qs-intro, .qs-outro {
  opacity: 0;
  animation: qsFadeUp 0.7s ease-out forwards;
}
.qs-intro { animation-delay: 0.05s; }
.qs-outro { animation-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  .qs-card, .qs-intro, .qs-outro {
    opacity: 1 !important;
    animation: none !important;
  }
  .qs-hex-shape, .qs-hex-q,
  .qs-hex-ring, .qs-hex-ring-2,
  .qs-hex-center::before, .qs-hex-center::after {
    animation: none !important;
  }
}

/* ── HEXAGON ── */
.qs-hex-center {
  position: relative;
  width: 300px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qs-hex-ring {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px dashed rgba(46,186,186,0.45);
  animation: qsHexRotate 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.qs-hex-ring-2 {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(243,140,69,0.25);
  animation: qsHexRotate 45s linear infinite reverse;
  pointer-events: none;
  z-index: 0;
}
.qs-hex-shape {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--science-blue-dark), var(--science-blue));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 24px 60px rgba(15,38,64,0.25);
  animation: qsHexGlow 4s ease-in-out infinite;
  z-index: 1;
}
.qs-hex-shape::before {
  content: '';
  position: absolute;
  inset: 6px;
  background: linear-gradient(135deg, var(--science-blue), var(--science-blue-light));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.qs-hex-inner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--s-6) var(--s-5);
  color: var(--pure-white);
}
.qs-hex-q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  margin-bottom: 14px;
  position: relative;
  filter: drop-shadow(0 8px 24px rgba(26,158,158,0.5));
  animation: qsQBreathe 3.5s ease-in-out infinite;
}
.qs-hex-q svg {
  width: 100%;
  height: 100%;
  display: block;
}
.qs-hex-label {
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--precision-aqua-light);
  font-weight: 700; margin-bottom: 8px;
}
.qs-hex-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  line-height: 1.2; margin-bottom: 10px;
  letter-spacing: -0.5px;
  color: var(--pure-white);
}
.qs-hex-name span {
  color: var(--origin-orange-light);
  font-size: 0.6em;
  vertical-align: super;
}
.qs-hex-desc {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
}
.qs-hex-center::before,
.qs-hex-center::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--precision-aqua), transparent);
  pointer-events: none;
  animation: qsLinePulse 2.4s ease-in-out infinite;
}
.qs-hex-center::before { left: -40px; }
.qs-hex-center::after { right: -40px; background: linear-gradient(270deg, var(--precision-aqua), transparent); }

/* ── CARDS — dark translucent ── */
.qs-card {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  padding: var(--s-5);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease,
              background 0.3s ease;
}
.qs-card:hover {
  transform: translateY(-4px) scale(1.015);
  background: rgba(255,255,255,0.06);
  border-color: rgba(46,186,186,0.45);
}
.qs-hex-col-right .qs-card {
  flex-direction: row-reverse;
  text-align: right;
}
.qs-hex-col-right .qs-card:hover .qs-card-num {
  transform: rotate(6deg) scale(1.1);
}
.qs-card-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--pure-white);
  border-radius: 8px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease;
}
.qs-card .qs-card-num { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease; }
.qs-card:hover .qs-card-num { transform: rotate(-6deg) scale(1.1); }

.qs-card[data-n="01"] .qs-card-num { background: var(--precision-aqua-dark); }
.qs-card[data-n="02"] .qs-card-num { background: var(--precision-aqua); }
.qs-card[data-n="03"] .qs-card-num { background: var(--precision-aqua-light); color: var(--science-blue-dark); }
.qs-card[data-n="04"] .qs-card-num { background: var(--origin-orange-dark); }
.qs-card[data-n="05"] .qs-card-num { background: var(--origin-orange); }
.qs-card[data-n="06"] .qs-card-num { background: var(--science-blue); }

.qs-card[data-n="01"]:hover { box-shadow: 0 18px 40px rgba(19,117,117,0.35), 0 0 0 1px rgba(19,117,117,0.5); }
.qs-card[data-n="02"]:hover { box-shadow: 0 18px 40px rgba(26,158,158,0.40), 0 0 0 1px rgba(26,158,158,0.55); border-color: rgba(26,158,158,0.55); }
.qs-card[data-n="03"]:hover { box-shadow: 0 18px 40px rgba(46,186,186,0.40), 0 0 0 1px rgba(46,186,186,0.55); border-color: rgba(46,186,186,0.55); }
.qs-card[data-n="04"]:hover { box-shadow: 0 18px 40px rgba(194,94,31,0.40), 0 0 0 1px rgba(194,94,31,0.55); border-color: rgba(194,94,31,0.55); }
.qs-card[data-n="05"]:hover { box-shadow: 0 18px 40px rgba(232,115,42,0.40), 0 0 0 1px rgba(232,115,42,0.55); border-color: rgba(232,115,42,0.55); }
.qs-card[data-n="06"]:hover { box-shadow: 0 18px 40px rgba(42,80,120,0.45), 0 0 0 1px rgba(42,80,120,0.6); border-color: rgba(42,80,120,0.65); }

.qs-card[data-n="01"]:hover .qs-card-num { box-shadow: 0 8px 20px rgba(19,117,117,0.5); }
.qs-card[data-n="02"]:hover .qs-card-num { box-shadow: 0 8px 20px rgba(26,158,158,0.55); }
.qs-card[data-n="03"]:hover .qs-card-num { box-shadow: 0 8px 20px rgba(46,186,186,0.55); }
.qs-card[data-n="04"]:hover .qs-card-num { box-shadow: 0 8px 20px rgba(194,94,31,0.55); }
.qs-card[data-n="05"]:hover .qs-card-num { box-shadow: 0 8px 20px rgba(232,115,42,0.55); }
.qs-card[data-n="06"]:hover .qs-card-num { box-shadow: 0 8px 20px rgba(42,80,120,0.6); }

.qs-card-content { flex: 1; }
.qs-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 6px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.qs-card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
}

/* ── OUTRO ── */
.qs-outro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: var(--s-6) var(--s-5);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(46,186,186,0.3);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.qs-outro::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(232,115,42,0.22) 0%, transparent 70%);
  border-radius: 50%;
}
.qs-outro::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(26,158,158,0.22) 0%, transparent 70%);
  border-radius: 50%;
}
.qs-outro-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--origin-orange-light);
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.qs-outro p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--pure-white);
  line-height: 1.4;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}
.qs-outro p .qs-pipe {
  color: var(--origin-orange);
  font-weight: 300;
  margin: 0 6px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .qs-hex-wrapper {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
  .qs-hex-center {
    order: -1;
    margin: 0 auto;
  }
  .qs-hex-center::before,
  .qs-hex-center::after { display: none; }
  .qs-hex-col-right .qs-card {
    flex-direction: row;
    text-align: left;
  }
  .qs-hex-col-right .qs-card:hover .qs-card-num {
    transform: rotate(-6deg) scale(1.1);
  }
}
@media (max-width: 640px) {
  .qs-advantages { padding: var(--s-7) 0; border-radius: 16px; }
  .qs-inner { padding: 0 var(--s-4); }
  .qs-hex-center { width: 250px; height: 280px; }
  .qs-hex-ring { width: 310px; height: 310px; }
  .qs-hex-ring-2 { width: 340px; height: 340px; }
  .qs-hex-q { width: 60px; height: 60px; }
  .qs-hex-name { font-size: 17px; }
  .qs-intro, .qs-outro { padding: var(--s-4) var(--s-5); }
  .qs-card { padding: var(--s-4); }
  .qs-card-num { width: 44px; height: 44px; font-size: 15px; }
}



/* ============================================================
   NUTRACEUTICAL PAGE — DEDICATED STYLES
   Paleta Integria Care (Science Blue + Origin Orange).
   Todas las reglas con prefijo .nutra- + scope .nutraceutical-page
   ============================================================ */

.nutraceutical-page {
  --nutra-border:       rgba(232,115,42,0.22);
  --nutra-shadow:       0 8px 40px rgba(15,38,64,0.18);
  --nutra-glow:         rgba(232,115,42,0.30);
}
.nutraceutical-page::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(232,115,42,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 80%, rgba(26,58,92,0.05) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(26,58,92,0.018) 80px, rgba(26,58,92,0.018) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(26,58,92,0.018) 80px, rgba(26,58,92,0.018) 81px);
  pointer-events: none;
  z-index: 0;
}
.nutraceutical-page * { box-sizing: border-box; }

/* HERO */
.nutraceutical-page .nutra-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 60px 80px; overflow: hidden;
}
.nutraceutical-page .nutra-hero-bg-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1584308666744-24d5c474f2ae?w=1920&h=1080&fit=crop&auto=format') center/cover;
  filter: brightness(0.4) saturate(0.9);
  z-index: 0;
}
.nutraceutical-page .nutra-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--science-blue) 42%, transparent 100%);
  z-index: 1;
}
.nutraceutical-page .nutra-hero-content { position: relative; z-index: 2; max-width: 680px; }
.nutraceutical-page .nutra-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--pure-white); margin-bottom: 28px;
  opacity: 0; animation: nutraFadeUp 0.8s 0.2s forwards;
}
.nutraceutical-page .nutra-hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--origin-orange); }
.nutraceutical-page .nutra-hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 700; line-height: 0.95; letter-spacing: -2px;
  color: var(--pure-white); margin-bottom: 12px;
  opacity: 0; animation: nutraFadeUp 0.8s 0.4s forwards;
}
.nutraceutical-page .nutra-hero-title .accent { color: var(--origin-orange); }
.nutraceutical-page .nutra-hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 300; color: rgba(244,247,250,0.65); margin-bottom: 28px;
  opacity: 0; animation: nutraFadeUp 0.8s 0.55s forwards;
}
.nutraceutical-page .nutra-hero-tagline {
  font-size: 15px; font-weight: 300; line-height: 1.7;
  color: rgba(244,247,250,0.65); max-width: 480px; margin-bottom: 48px;
  opacity: 0; animation: nutraFadeUp 0.8s 0.7s forwards;
}
.nutraceutical-page .nutra-hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: nutraFadeUp 0.8s 0.85s forwards;
}
.nutraceutical-page .nutra-btn-primary {
  background: var(--origin-orange); color: var(--pure-white);
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 36px; border: none; cursor: pointer; transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.nutraceutical-page .nutra-btn-primary:hover {
  background: var(--origin-orange-light) !important;
  color: var(--pure-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--nutra-glow);
}
.nutraceutical-page .nutra-btn-outline {
  background: transparent; color: var(--pure-white);
  font-family: var(--font-display); font-weight: 500;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 36px; border: 1px solid rgba(255,255,255,0.28); cursor: pointer; transition: all 0.3s;
}
.nutraceutical-page .nutra-btn-outline:hover {
  border-color: var(--origin-orange) !important;
  color: var(--origin-orange) !important;
  background: transparent !important;
}

.nutraceutical-page .nutra-hero-stats {
  position: absolute; bottom: 60px; right: 60px; z-index: 2;
  display: flex; gap: 40px;
  opacity: 0; animation: nutraFadeUp 0.8s 1s forwards;
}
.nutraceutical-page .nutra-stat { text-align: center; }
.nutraceutical-page .nutra-stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--origin-orange); line-height: 1; }
.nutraceutical-page .nutra-stat-label { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(244,247,250,0.65); margin-top: 4px; }

.nutraceutical-page .nutra-scroll-hint {
  position: absolute; bottom: 40px; left: 60px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: nutraFadeUp 0.8s 1.2s forwards;
}
.nutraceutical-page .nutra-scroll-hint span {
  font-family: var(--font-display);
  font-size: 9px; letter-spacing: 3px; color: rgba(244,247,250,0.65);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.nutraceutical-page .nutra-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--origin-orange), transparent);
  animation: nutraPulseLine 2s infinite;
}

.nutraceutical-page section { position: relative; z-index: 1; }

.nutraceutical-page .nutra-section-header { text-align: center; padding: 100px 60px 60px; }
.nutraceutical-page .nutra-section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--science-blue-light); margin-bottom: 16px;
}
.nutraceutical-page .nutra-section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; letter-spacing: -1px; margin-bottom: 16px; color: var(--science-blue);
}
.nutraceutical-page .nutra-section-title .nutra-accent { color: var(--origin-orange); }
.nutraceutical-page .nutra-section-desc { font-size: 15px; font-weight: 300; color: var(--slate-gray); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* GRID */
.nutraceutical-page .nutra-products-section { position: relative; z-index: 1; padding: 0; }
.nutraceutical-page .nutra-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px; padding: 0 0 100px;
}
.nutraceutical-page .nutra-product-card {
  position: relative; background: var(--pure-white); padding: 40px; overflow: hidden;
  cursor: default; opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s ease;
}
.nutraceutical-page .nutra-product-card.visible { opacity: 1; transform: translateY(0); }
.nutraceutical-page .nutra-product-card:hover { background: var(--aqua-mist); z-index: 2; }
.nutraceutical-page .nutra-product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--origin-orange), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.nutraceutical-page .nutra-product-card:hover::before { opacity: 1; }

.nutraceutical-page .nutra-card-category {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--science-blue); border: 1px solid var(--science-blue);
  padding: 4px 10px; margin-bottom: 20px;
}
.nutraceutical-page .nutra-card-img {
  width: 100% !important; height: 200px !important; object-fit: cover;
  margin-bottom: 24px;
  filter: brightness(0.88) saturate(0.85); transition: filter 0.4s;
}
.nutraceutical-page .nutra-product-card:hover .nutra-card-img { filter: brightness(1) saturate(1); }
.nutraceutical-page .nutra-card-name {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 12px;
  color: var(--science-blue); transition: color 0.3s;
}
.nutraceutical-page .nutra-product-card:hover .nutra-card-name { color: var(--origin-orange); }
.nutraceutical-page .nutra-card-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.nutraceutical-page .nutra-card-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: var(--slate-gray); }
.nutraceutical-page .nutra-card-feature::before { content: '→'; color: var(--origin-orange); flex-shrink: 0; font-size: 11px; margin-top: 1px; }

/* Expandible */
.nutraceutical-page .nutra-card-expand { max-height: 0; overflow: hidden; transition: max-height 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.nutraceutical-page .nutra-card-expand-inner { padding-top: 20px; margin-top: 8px; border-top: 1px solid rgba(26,58,92,0.12); }
.nutraceutical-page .nutra-exp-desc { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--slate-gray); margin-bottom: 24px; border-left: 2px solid var(--origin-orange); padding-left: 16px; }
.nutraceutical-page .nutra-modal-section { margin-bottom: 24px; }
.nutraceutical-page .nutra-modal-section-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--science-blue); margin-bottom: 14px; }
.nutraceutical-page .nutra-dosage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nutraceutical-page .nutra-dosage-item { background: rgba(26,58,92,0.04); border: 1px solid var(--nutra-border); padding: 16px; }
.nutraceutical-page .nutra-dosage-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--origin-orange); margin-bottom: 6px; }
.nutraceutical-page .nutra-dosage-value { font-size: 13px; color: var(--science-blue); line-height: 1.6; }
.nutraceutical-page .nutra-exp-presentation {
  background: rgba(232,115,42,0.08); border: 1px solid var(--origin-orange);
  padding: 16px 20px; font-family: var(--font-display);
  font-size: 12px; color: var(--origin-orange-dark); display: flex; align-items: center; gap: 10px;
}
.nutraceutical-page .nutra-exp-presentation::before { content: '\25A3'; color: var(--origin-orange); }

.nutraceutical-page .nutra-card-footer { display: flex; flex-direction: column; gap: 16px; padding-top: 20px; border-top: 1px solid rgba(26,58,92,0.1); }
.nutraceutical-page .nutra-card-footer-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: stretch; }
.nutraceutical-page .nutra-card-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; border: 1px solid var(--origin-orange);
  color: var(--origin-orange); font-family: var(--font-display);
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 16px; cursor: pointer; transition: all 0.3s;
}
.nutraceutical-page .nutra-card-btn:hover { background: var(--origin-orange) !important; color: var(--pure-white) !important; transform: translateX(2px); }
.nutraceutical-page .nutra-card-btn.expanded { background: rgba(232,115,42,0.12) !important; color: var(--origin-orange-dark) !important; }
.nutraceutical-page .nutra-card-btn-arrow {
  width: 14px; height: 1px; background: currentColor;
  position: relative; transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); flex-shrink: 0;
}
.nutraceutical-page .nutra-card-btn-arrow::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 6px; height: 6px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg);
}
.nutraceutical-page .nutra-card-btn.expanded .nutra-card-btn-arrow { transform: rotate(180deg); }
.nutraceutical-page .nutra-card-btn-ver {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(26,58,92,0.28); color: var(--science-blue);
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; padding: 12px 16px; cursor: pointer; transition: all 0.3s;
  text-decoration: none;
}
.nutraceutical-page .nutra-card-btn-ver:hover { border-color: var(--science-blue) !important; color: var(--pure-white) !important; background: var(--science-blue) !important; transform: translateY(-2px); }
.nutraceutical-page .nutra-card-presentation { font-family: var(--font-display); font-size: 10px; color: var(--slate-gray); letter-spacing: 1px; }

/* Tags */
.nutraceutical-page .nutra-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.nutraceutical-page .nutra-card-tag {
  font-family: var(--font-display); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 9px; border-radius: 3px; border: 1px solid; line-height: 1.4;
}
.nutraceutical-page .nutra-card-tag-categoria { border-color: rgba(232,115,42,0.5); color: var(--origin-orange-dark); background: rgba(232,115,42,0.1); }

/* FILTROS */
.nutraceutical-page .nutra-filter-bar {
  position: relative; z-index: 2; background: var(--pure-white);
  border-top: 1px solid var(--nutra-border); border-bottom: 1px solid var(--nutra-border); padding: 28px 60px;
}
.nutraceutical-page .nutra-filter-bar-inner { max-width: 1400px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-start; }
.nutraceutical-page .nutra-filter-group { display: flex; flex-direction: column; gap: 10px; flex: 1; min-width: 260px; }
.nutraceutical-page .nutra-filter-label {
  font-family: var(--font-display); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--origin-orange); display: flex; align-items: center; gap: 8px;
}
.nutraceutical-page .nutra-filter-label::before { content: ''; display: inline-block; width: 18px; height: 1px; background: var(--origin-orange); }
.nutraceutical-page .nutra-filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.nutraceutical-page .nutra-filter-chip {
  font-family: var(--font-display); font-size: 13px; font-weight: 500; letter-spacing: 0.3px;
  padding: 7px 16px; border-radius: 4px;
  border: 1px solid rgba(26,58,92,0.22); background: rgba(26,58,92,0.04);
  color: var(--science-blue); cursor: pointer; transition: all 0.2s ease; user-select: none; white-space: nowrap;
}
.nutraceutical-page .nutra-filter-chip:hover { border-color: var(--origin-orange) !important; color: var(--origin-orange-dark) !important; background: rgba(232,115,42,0.08) !important; }
.nutraceutical-page .nutra-filter-chip.active { background: var(--origin-orange) !important; border-color: var(--origin-orange) !important; color: var(--pure-white) !important; font-weight: 700; }
.nutraceutical-page .nutra-filter-count { font-family: var(--font-display); font-size: 10px; letter-spacing: 1px; color: var(--slate-gray); align-self: flex-end; padding-bottom: 2px; white-space: nowrap; }
.nutraceutical-page .nutra-filter-count span { color: var(--origin-orange); font-weight: 700; }

.nutraceutical-page .nutra-product-card.nutra-filtered-out { display: none; }
.nutraceutical-page .nutra-filter-empty { display: none; grid-column: 1/-1; text-align: center; padding: 60px 24px; color: var(--slate-gray); font-family: var(--font-display); }
.nutraceutical-page .nutra-filter-empty.visible { display: block; }
.nutraceutical-page .nutra-filter-empty-icon { font-size: 36px; margin-bottom: 16px; opacity: 0.4; }
.nutraceutical-page .nutra-filter-empty-title { font-size: 20px; font-weight: 600; color: var(--science-blue); margin-bottom: 8px; }
.nutraceutical-page .nutra-filter-empty-sub { font-size: 14px; opacity: 0.6; }

/* ANIMATIONS */
@keyframes nutraFadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes nutraPulseLine { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nutraceutical-page .nutra-hero { padding: 100px 24px 60px; }
  .nutraceutical-page .nutra-hero-stats { right: 24px; bottom: 40px; gap: 24px; }
  .nutraceutical-page .nutra-stat-num { font-size: 26px; }
  .nutraceutical-page .nutra-products-grid { padding: 0 0 60px; grid-template-columns: 1fr; }
  .nutraceutical-page .nutra-section-header { padding: 60px 24px 40px; }
  .nutraceutical-page .nutra-dosage-grid { grid-template-columns: 1fr; }
  .nutraceutical-page .nutra-card-footer-actions { grid-template-columns: 1fr; }
  .nutraceutical-page .nutra-filter-bar { padding: 20px 24px; }
  .nutraceutical-page .nutra-filter-bar-inner { gap: 18px; }
  .nutraceutical-page .nutra-filter-group { min-width: 100%; }
  .nutraceutical-page .nutra-filter-chip { font-size: 12px; padding: 6px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .nutraceutical-page .nutra-product-card { transition: none; }
  .nutraceutical-page .nutra-hero-eyebrow, .nutraceutical-page .nutra-hero-title, .nutraceutical-page .nutra-hero-subtitle, .nutraceutical-page .nutra-hero-tagline, .nutraceutical-page .nutra-hero-actions, .nutraceutical-page .nutra-hero-stats, .nutraceutical-page .nutra-scroll-hint { animation: none !important; opacity: 1 !important; }
  .nutraceutical-page .nutra-scroll-line { animation: none !important; }
}
