﻿/* ============================================================================
   Geopharma Neuroscience — new site v1.1
   Build: 2026-05-22. Evolutivo (palette + Nunito Sans dal vecchio sito,
   nuove sezioni, registro istituzionale-farma con scrubbing regolatorio).
   ========================================================================= */

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --c-cyan:   #00B2E3;
  --c-royal:  #005CB9;
  --c-btn:    #005CB9;
  --c-navy:   #19203D;
  --c-footer: #05202F;
  --c-green:  #6FBE2A;
  --c-ink:    #161616;
  --c-mute:   #5F6360;
  --c-soft:   #f4f6f8;
  --c-rule:   #e6e9ee;
  --w-page:   1200px;
  --w-narrow: 880px;
  --gut:      32px;
  /* ---- Hypnera brand palette (page-scoped via .theme-hypnera) ---- */
  --hyp-green:       #1d4936;  /* verde bosco scuro — primario brand Hypnera */
  --hyp-green-dark:  #143527;  /* verde scuro per gradient inferiore */
  --hyp-green-mid:   #2a6a4f;  /* verde medio per accenti */
  --hyp-gold:        #c9a14a;  /* oro/ambra (liquido capsula) */
  --hyp-lavender:    #cbb8e0;  /* lavanda chiaro (pattern molecole) */
  --hyp-soft:        #f1f5f3;  /* fondo soft verde-tinted */
  --hyp-rule:        #d6e2db;  /* divider verde-tinted */
  --hyp-font-display: "Mulish", "Nunito Sans", "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  /* ---- Eutimera brand palette (page-scoped via .theme-eutimera) ---- */
  --eut-warm:        #C97A3E;  /* terracotta sunrise — primario brand Eutimera */
  --eut-warm-dark:   #8B4F26;  /* terracotta scuro per gradient inferiore */
  --eut-warm-mid:    #D9924B;  /* oro caldo per accenti */
  --eut-gold:        #E8B86A;  /* oro chiaro per CTA primaria */
  --eut-cream:       #F4E8D8;  /* cream/peach background pulito */
  --eut-soft:        #FAF4EA;  /* background soft per sezioni */
  --eut-rule:        #e8d8c0;  /* divider warm-tinted */
  --eut-font-display: "Mulish", "Nunito Sans", "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
}

body {
  font-family: "Nunito Sans", "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--c-btn);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--w-page);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.container.narrow { max-width: var(--w-narrow); }

/* ---- Header ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  line-height: 1;
}
.brand img {
  height: 44px;
  width: auto;
  display: block;
}
@media (max-width: 540px) {
  .brand img { height: 36px; }
}
.nav-wrap { display: flex; align-items: center; gap: 24px; }
.nav { display: flex; gap: 24px; align-items: center; }
.nav a {
  font-size: 14.5px;
  color: #2a2a2a;
  font-weight: 400;
  transition: color .15s ease;
  white-space: nowrap;
}
.nav a:hover, .nav a.is-active { color: var(--c-royal); }
.nav .nav-cta {
  border: 1.5px solid var(--c-royal);
  color: var(--c-royal);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13.5px;
}
.nav .nav-cta:hover {
  background: var(--c-royal);
  color: #fff;
}

/* ---- Nav dropdown (Prodotti → Hypnera, Eutimera) ----------------------- */
.nav-item.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 14.5px;
  color: #2a2a2a;
  font-weight: 400;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s ease;
}
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"],
.has-dropdown.is-product-active .nav-trigger { color: var(--c-royal); }
.nav-trigger::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .15s ease;
}
.nav-trigger[aria-expanded="true"]::after {
  transform: rotate(225deg) translate(-2px, -2px);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  min-width: 200px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  padding: 8px 0;
  display: none;
  z-index: 60;
}
.nav-dropdown::before {
  /* pad invisibile per evitare flicker hover su gap */
  content: "";
  position: absolute;
  top: -10px;
  left: 0; right: 0;
  height: 10px;
}
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown,
.nav-dropdown.is-open { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  color: var(--c-ink);
  white-space: nowrap;
}
.nav-dropdown a:hover,
.nav-dropdown a:focus,
.nav-dropdown a.is-active { background: var(--c-soft); color: var(--c-royal); }

/* Mobile: il dropdown si "appiattisce" dentro al menu hamburger */
@media (max-width: 960px) {
  .nav-item.has-dropdown { flex-direction: column; align-items: flex-start; gap: 8px; width: 100%; }
  .nav-trigger { padding: 0; }
  .nav-dropdown {
    position: static;
    box-shadow: none;
    padding: 0 0 0 16px;
    min-width: 0;
    background: transparent;
    display: block;  /* sempre aperto su mobile */
    border-left: 2px solid var(--c-rule);
    margin-top: 4px;
  }
  .nav-dropdown a { padding: 8px 0 8px 16px; }
  .nav-trigger::after { display: none; }
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px; margin: 5px 0;
  background: #2a2a2a;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--c-btn);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  border-radius: 4px;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
  text-align: center;
}
.btn:hover { background: #004a9e; transform: translateY(-1px); }
.btn.btn-outline {
  background: transparent;
  border: 2px solid var(--c-btn);
  color: var(--c-btn);
}
.btn.btn-outline:hover { background: var(--c-btn); color: #fff; }
.btn.btn-outline-white {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn.btn-outline-white:hover { background: #fff; color: var(--c-royal); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.link-text {
  color: var(--c-royal);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.link-text::after {
  content: "→";
  transition: transform .15s ease;
}
.link-text:hover::after { transform: translateX(3px); }

/* ---- Hero homepage ------------------------------------------------------ */
.hero {
  background: var(--c-navy) url('../images/01-hero-vitruvian.jpg') left center / cover no-repeat;
  color: #fff;
  /* Full viewport height minus sticky header (76px). svh evita il "jump" da URL-bar su mobile. */
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(25,32,61,0) 32%, rgba(25,32,61,.55) 68%, rgba(25,32,61,.9) 100%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  position: relative;
  z-index: 1;
}
/* Scroll indicator in fondo alla hero */
.hero .scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.75);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: scroll-cue-bob 2.4s ease-in-out infinite;
}
.hero .scroll-cue::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.75) 0%, rgba(255,255,255,0) 100%);
}
.hero .scroll-cue:hover { color: var(--c-cyan); }
@keyframes scroll-cue-bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero .scroll-cue { animation: none; }
}
.hero .h-side { /* image bg */ }
.hero .h-body { padding: 40px 24px; max-width: 540px; justify-self: center; }
.hero .eyebrow {
  color: var(--c-cyan);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero .lead {
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 32px;
  color: #d8e0e7;
  line-height: 1.6;
}

/* ---- Page hero (interne) ----------------------------------------------- */
.page-hero {
  background: var(--c-navy);
  color: #fff;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero.with-bg {
  background: var(--c-navy) url('../images/09-bg-network.jpeg') center/cover no-repeat;
}
.page-hero.with-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(25,32,61,.92) 0%, rgba(0,92,185,.78) 100%);
}
.page-hero .container { position: relative; z-index: 1; max-width: 920px; }
.page-hero .eyebrow {
  color: var(--c-cyan);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero .lead {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  color: #d8e0e7;
  max-width: 760px;
}

/* ---- Press band -------------------------------------------------------- */
.press {
  position: relative;
  background: #0e2a44 url('../images/03-bg-geopharma.jpg') center 30% / cover no-repeat;
  color: #fff;
  padding: 72px 0 80px;
  text-align: center;
}
.press::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,30,70,.55) 0%, rgba(0,92,185,.45) 60%, rgba(0,92,185,.65) 100%);
}
.press .container { position: relative; z-index: 1; }
.press .anniv-logo {
  display: block;
  margin: 0 auto 28px;
  max-width: 480px;
  width: 100%;
  height: auto;
}
.press p {
  font-size: 20px;
  font-weight: 300;
  max-width: 760px;
  margin: 0 auto 28px;
  line-height: 1.5;
}

/* ---- "Cosa facciamo" tiles (home) -------------------------------------- */
.tiles-section {
  padding: 88px 0;
  background: #fff;
}
.tiles-section .section-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: block;
  color: var(--c-cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 {
  color: var(--c-royal);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-head p {
  font-size: 16.5px;
  color: var(--c-ink);
  line-height: 1.6;
}
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tiles-grid.two-cols {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin: 0 auto;
}
.tile {
  background: var(--c-soft);
  padding: 36px 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tile:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,92,185,.08); }
.tile::before, .tile::after { content: ''; position: absolute; top: 0; left: 0; background: var(--c-cyan); }
.tile::before { width: 40px; height: 3px; border-radius: 4px 0 0 0; }
.tile::after  { width: 3px; height: 40px; }
.tile.tile-pro::before, .tile.tile-pro::after { background: var(--c-royal); }
.tile h3 {
  color: var(--c-royal);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.tile p {
  font-size: 15px;
  color: var(--c-ink);
  flex-grow: 1;
}
.tile .link-text { margin-top: 8px; }

/* ---- ERA concept (Equilibrium · Recovery · Action) --------------------- */
.era-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #f7f1e6 0%, #f4ead9 100%);
  position: relative;
  overflow: hidden;
}
.era-section .section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.era-section .era-letter {
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 800;
  line-height: 1;
  color: #b88a3e;
  margin-bottom: 0;
  letter-spacing: -3px;
}
.era-section h2 {
  color: var(--c-royal);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  margin-bottom: 16px;
}
.era-section .era-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-ink);
}
.era-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.era-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 8px 20px rgba(184, 138, 62, 0.08);
}
.era-card::before, .era-card::after { content: ''; position: absolute; top: 0; left: 0; background: #b88a3e; }
.era-card::before { width: 36px; height: 3px; border-radius: 4px 0 0 0; }
.era-card::after  { width: 3px; height: 36px; }
.era-card .era-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b88a3e;
  margin-bottom: 8px;
}
.era-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--c-royal);
  margin-bottom: 16px;
}
.era-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-ink);
  margin-bottom: 0;
}
.era-section .era-cta { text-align: center; margin-top: 40px; }

/* ---- NUTRACEUTICA pilastri (3 colonne con bullet) ---------------------- */
.nutra-section {
  padding: 96px 0;
  background: #fff;
}
.nutra-section .section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.nutra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.nutra-card {
  padding: 36px 32px;
  background: var(--c-soft);
  border-radius: 4px;
  position: relative;
}
.nutra-card::before, .nutra-card::after { content: ''; position: absolute; top: 0; left: 0; background: var(--c-cyan); }
.nutra-card::before { width: 36px; height: 3px; border-radius: 4px 0 0 0; }
.nutra-card::after  { width: 3px; height: 36px; }
.nutra-card:nth-child(2)::before, .nutra-card:nth-child(2)::after { background: var(--c-royal); }
.nutra-card:nth-child(3)::before, .nutra-card:nth-child(3)::after { background: var(--c-green); }
.nutra-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-royal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.nutra-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nutra-card li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-ink);
  padding: 10px 0 10px 20px;
  position: relative;
  border-bottom: 1px solid var(--c-rule);
}
.nutra-card li:last-child { border-bottom: 0; }
.nutra-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px; height: 8px;
  background: var(--c-cyan);
  border-radius: 50%;
}
.nutra-card:nth-child(2) li::before { background: var(--c-royal); }
.nutra-card:nth-child(3) li::before { background: var(--c-green); }
.nutra-section .nutra-claim {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-mute);
  font-style: italic;
  max-width: 720px;
  margin: 40px auto 0;
}

/* ---- ERA: oltre la stabilizzazione clinica (R&D extra) ---------------- */
.era-extension {
  padding: 80px 0;
  background: var(--c-soft);
}
.era-extension .section-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.era-extension h2 {
  color: var(--c-royal);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 700;
  margin-bottom: 12px;
}
.era-extension-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.era-extension-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 4px;
  position: relative;
}
.era-extension-card::before, .era-extension-card::after { content: ''; position: absolute; top: 0; left: 0; background: #b88a3e; }
.era-extension-card::before { width: 32px; height: 3px; border-radius: 4px 0 0 0; }
.era-extension-card::after  { width: 3px; height: 32px; }
.era-extension-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-royal);
  margin-bottom: 12px;
}
.era-extension-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c-ink);
  margin-bottom: 0;
}

/* Responsive ERA + NUTRACEUTICA */
@media (max-width: 960px) {
  .era-grid, .nutra-grid, .era-extension-grid { grid-template-columns: 1fr; }
}

/* ---- Approccio scientifico (home) -------------------------------------- */
.approach {
  padding: 88px 0;
  background: var(--c-soft);
}
.approach .container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.approach .a-img {
  background: url('../images/08-test-tube-blue.jpeg') center/cover no-repeat;
  min-height: 420px;
  border-radius: 4px;
}
.approach h2 {
  color: var(--c-royal);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.approach p { margin-bottom: 16px; font-size: 16px; line-height: 1.65; }

/* ---- Per i professionisti block (home) --------------------------------- */
.pro-block {
  padding: 88px 0;
  background: #fff;
}
.pro-block .pro-card {
  background: var(--c-soft);
  padding: 64px 56px;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.pro-block .pro-card::before {
  content: '';
  position: absolute;
  top: 15%; left: 0;
  width: 3px; height: 70%;
  background: linear-gradient(180deg, transparent, var(--c-royal) 25%, var(--c-royal) 75%, transparent);
  border-radius: 0 2px 2px 0;
}
.pro-block h2 {
  color: var(--c-royal);
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.pro-block p { font-size: 16px; line-height: 1.6; margin-bottom: 24px; }

/* ---- Mini-pillars (home teaser) ---------------------------------------- */
.pillars-mini {
  padding: 88px 0;
  background: #fff;
}
.pillars-mini .section-head { text-align: center; max-width: 740px; margin: 0 auto 48px; }
.pillars-mini .mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar-mini {
  padding: 28px 24px;
  background: var(--c-soft);
  border-radius: 4px;
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease;
}
.pillar-mini::before, .pillar-mini::after { content: ''; position: absolute; top: 0; left: 0; background: var(--c-royal); }
.pillar-mini::before { width: 28px; height: 3px; border-radius: 4px 0 0 0; }
.pillar-mini::after  { width: 3px; height: 28px; }
.pillar-mini:nth-child(2)::before, .pillar-mini:nth-child(2)::after { background: var(--c-cyan); }
.pillar-mini:nth-child(3)::before, .pillar-mini:nth-child(3)::after { background: var(--c-green); }
.pillar-mini:nth-child(4)::before, .pillar-mini:nth-child(4)::after { background: var(--c-btn); }
.pillar-mini:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,92,185,.08); }
.pillar-mini .p-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-mute);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.pillar-mini h3 {
  color: var(--c-royal);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.pillar-mini p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-ink);
  margin-bottom: 0;
}
.pillars-mini .pillars-cta {
  text-align: center;
  margin-top: 40px;
}

/* ---- Philosophy teaser (home) ------------------------------------------ */
.philo-teaser {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #ebeefa 0%, #e3e8f6 100%);
  overflow: hidden;
  text-align: center;
}
.philo-teaser::before {
  content: "";
  position: absolute; inset: 0;
  background: url('../images/10-bg-hand-medical-tube.jpg') center/cover no-repeat;
  opacity: .15;
}
.philo-teaser .container { position: relative; z-index: 1; max-width: 780px; }
.philo-teaser .eyebrow {
  color: var(--c-royal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.philo-teaser h2 {
  color: var(--c-royal);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.philo-teaser p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
  color: var(--c-ink);
}
.philo-teaser .pp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.philo-teaser .pp-tag {
  padding: 8px 18px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--c-royal);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--c-royal);
  letter-spacing: .3px;
}

/* ---- Vision/Mission teaser (home, compatto) ---------------------------- */
.mission-band.compact { padding: 56px 0; }
.mission-band.compact h3 { font-size: 18px; margin-bottom: 12px; }
.mission-band.compact p { font-size: 15.5px; }
.mission-band.compact .mb-cta {
  grid-column: 1 / -1;
  margin-top: 8px;
  text-align: center;
}

/* ---- Mini-pillars: variante 5 col su chi-siamo (deep version) ---------- */
.pillars-mini .mini-grid.five {
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.pillars-mini.chi-pillars .pillar-mini {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.pillars-mini.chi-pillars .pillar-mini h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.pillars-mini.chi-pillars .pillar-mini p {
  font-size: 14.5px;
  line-height: 1.6;
}
.pillars-mini.chi-pillars .mini-grid.five .pillar-mini:nth-child(5) {
  border-top-color: var(--c-cyan);
}

/* ---- Mini-pillars responsive ------------------------------------------- */
@media (max-width: 1080px) {
  .pillars-mini .mini-grid.five { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .pillars-mini .mini-grid { grid-template-columns: 1fr 1fr; }
  .pillars-mini .mini-grid.five { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .pillars-mini .mini-grid { grid-template-columns: 1fr; }
  .pillars-mini .mini-grid.five { grid-template-columns: 1fr; }
  .philo-teaser .pp-tags { gap: 8px; }
}

/* ---- Vision / Mission band --------------------------------------------- */
.mission-band {
  background: var(--c-cyan);
  color: #fff;
  padding: 72px 0;
}
.mission-band .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  text-align: center;
}
.mission-band h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.mission-band p { font-size: 16px; font-weight: 300; max-width: 440px; margin: 0 auto; line-height: 1.6; }

/* ---- Pilastri (home, chi-siamo) ---------------------------------------- */
.values { background: #fff; }
.value-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.value-row.reverse { direction: rtl; }
.value-row.reverse > * { direction: ltr; }
.value-row .v-text {
  padding: 72px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.value-row .v-text .v-eyebrow {
  color: var(--c-cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.value-row h3 {
  color: var(--c-royal);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 380px;
  line-height: 1.25;
}
.value-row p {
  color: var(--c-ink);
  font-size: 15.5px;
  max-width: 380px;
  line-height: 1.6;
}
.value-row .v-img {
  background: #ccc center/cover no-repeat;
  min-height: 440px;
}

/* ---- Philosophy / 4P --------------------------------------------------- */
.philo {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(180deg, #ebeefa 0%, #e3e8f6 100%);
  overflow: hidden;
}
.philo::before {
  content: "";
  position: absolute; inset: 0;
  background: url('../images/10-bg-hand-medical-tube.jpg') center/cover no-repeat;
  opacity: .2;
}
.philo .container { position: relative; z-index: 1; }
.philo .eyebrow {
  display: block;
  text-align: center;
  color: var(--c-royal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.philo .card {
  background: #fff;
  padding: 48px 56px;
  max-width: 760px;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(20, 40, 90, .12);
}
.philo h2 {
  color: var(--c-royal);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 540px;
  line-height: 1.2;
}
.philo p { font-size: 15.5px; margin-bottom: 14px; color: var(--c-ink); line-height: 1.65; }
.philo strong { color: var(--c-royal); font-weight: 700; }

/* ---- ESG section ------------------------------------------------------- */
.esg {
  padding: 96px 0;
  background: #fff;
  text-align: center;
}
.esg h2 {
  color: var(--c-green);
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.esg-intro {
  max-width: 760px;
  margin: 0 auto 56px;
  font-size: 16px;
  color: var(--c-ink);
  line-height: 1.65;
}
.esg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.esg-pillar {
  text-align: left;
  background: #fafbfd;
  border-radius: 4px;
  overflow: hidden;
}
.esg-pillar img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.esg-pillar h3 {
  color: var(--c-green);
  font-size: 22px;
  font-weight: 700;
  padding: 24px 28px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.esg-pillar p {
  padding: 0 28px 28px;
  font-size: 14.5px;
  line-height: 1.65;
}

/* ---- Partnership ------------------------------------------------------- */
.partner {
  padding: 96px 0;
  background: linear-gradient(135deg, #00385f 0%, var(--c-royal) 100%);
  color: #fff;
}
.partner h2 {
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}
.partner .lead {
  font-size: 19px;
  font-weight: 300;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 12px;
  line-height: 1.6;
}
.partner .lead-tail {
  font-size: 16px;
  text-align: center;
  margin-bottom: 32px;
  color: #d8e6f5;
}
.partner ul {
  max-width: 720px;
  margin: 0 auto;
  list-style: none;
  display: grid;
  gap: 16px;
}
.partner li {
  padding: 20px 28px;
  background: rgba(255,255,255,.08);
  border-left: 3px solid var(--c-cyan);
  font-size: 15.5px;
  line-height: 1.55;
}

/* ---- Publications ------------------------------------------------------ */
.pubs {
  padding: 96px 0;
  background: #fff;
  text-align: center;
}
.pubs h2 {
  color: var(--c-royal);
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
}
.pubs p {
  max-width: 820px;
  margin: 0 auto 16px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--c-ink);
  text-align: left;
}
.pub-tiles {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pub-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--c-soft);
  border-radius: 4px;
  transition: transform .15s ease, box-shadow .15s ease;
  text-decoration: none;
  color: var(--c-royal);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 200px;
}
.pub-tile:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,92,185,.15); }
.pub-tile img { border: 1px solid var(--c-rule); }

/* ---- Careers section --------------------------------------------------- */
.careers {
  padding: 96px 0;
  background: var(--c-royal) url('../images/14-bg-careers.jpg') center/cover no-repeat;
  background-blend-mode: multiply;
  color: #fff;
  text-align: center;
}
.careers h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 20px;
}
.careers p {
  max-width: 820px;
  margin: 0 auto 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #e8edf5;
}
.careers .apply-line { margin-top: 28px; margin-bottom: 16px; font-weight: 400; color: #fff; }

/* ---- Scroll reveal (fade-up) ------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ---- Careers page (carriere.html) ------------------------------------- */
.careers-hero {
  padding: 100px 0 80px;
  background: var(--c-royal) url('../images/14-bg-careers.jpg') center/cover no-repeat;
  background-blend-mode: multiply;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.careers-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.ch-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-cyan);
  margin-bottom: 20px;
}
.ch-h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  max-width: 700px;
}
.ch-lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.80);
  max-width: 540px;
  margin-bottom: 48px;
}
.ch-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  margin-bottom: 48px;
}
.ch-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
  color: #fff;
}
.ch-stat em {
  font-style: normal;
  font-size: 12.5px;
  color: rgba(255,255,255,.58);
  line-height: 1.4;
  display: block;
  margin-top: 5px;
}
.ch-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}
.ch-cta-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ch-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--c-royal);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 3px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.ch-cta-btn:hover { background: var(--c-cyan); color: #fff; }
.ch-cta-btn svg { transition: transform .25s; flex-shrink: 0; }
.ch-cta-btn:hover svg { transform: translateX(5px); }
.ch-cta-note {
  font-size: 13.5px;
  color: rgba(255,255,255,.48);
  font-style: italic;
}

/* Values grid */
.careers-values { padding: 88px 0; }
.cv-header { margin-bottom: 48px; }
.cv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cv-item {
  background: var(--c-soft);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
}
.cv-item::before, .cv-item::after { content: ''; position: absolute; top: 0; left: 0; background: var(--c-cyan); }
.cv-item::before { width: 32px; height: 3px; border-radius: 4px 0 0 0; }
.cv-item::after  { width: 3px; height: 32px; }
.cv-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--c-cyan);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cv-item p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--c-ink);
  margin: 0;
}

/* Offer list */
.careers-offer { }
.co-header { margin-bottom: 40px; }
.co-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.co-item {
  padding: 22px 0 22px 44px;
  border-bottom: 1px solid var(--c-rule);
  position: relative;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
}
.co-item:first-child { border-top: 1px solid var(--c-rule); }
.co-item::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 22px;
  color: var(--c-cyan);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.65;
}

/* Apply CTA */
.careers-apply {
  padding: 96px 0;
  background: var(--c-royal);
  color: #fff;
}
.ca-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 72px;
  align-items: center;
}
.ca-eyebrow { color: var(--c-cyan) !important; }
.ca-h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}
.ca-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.70);
  margin: 0;
  max-width: 540px;
}
.ca-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-width: 220px;
}
.ca-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--c-royal);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.ca-btn:hover { background: var(--c-cyan); color: #fff; }
.ca-btn svg { transition: transform .25s; flex-shrink: 0; }
.ca-btn:hover svg { transform: translateX(5px); }
.ca-gdpr {
  font-size: 12px;
  color: rgba(255,255,255,.36);
  text-align: center;
  line-height: 1.5;
  max-width: 200px;
}
.ca-gdpr a { color: rgba(255,255,255,.50); text-decoration: underline; }

/* Careers responsive */
@media (max-width: 960px) {
  .cv-grid { grid-template-columns: repeat(2, 1fr); }
  .ca-inner { grid-template-columns: 1fr; gap: 40px; }
  .ca-action { align-items: flex-start; }
}
@media (max-width: 540px) {
  .careers-hero { padding: 64px 0 56px; }
  .ch-h1 { letter-spacing: -1px; }
  .ch-stats { gap: 20px; flex-wrap: wrap; }
  .ch-stat-div { display: none; }
  .ch-cta-wrap { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cv-grid { grid-template-columns: 1fr; }
}

/* ---- Contact ----------------------------------------------------------- */
.contact {
  padding: 96px 0;
  background: var(--c-soft);
}
.contact h2 {
  color: var(--c-royal);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}
.contact-block {
  background: #fff;
  padding: 32px 28px;
  border-radius: 4px;
  text-align: center;
  position: relative;
}
.contact-block::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 3px;
  background: var(--c-cyan);
  border-radius: 0 0 3px 3px;
}
.contact-block h3 {
  color: var(--c-royal);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contact-block address,
.contact-block p {
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-ink);
}
.contact-block a:hover { color: var(--c-royal); }

/* ---- Generic content sections ------------------------------------------ */
.section {
  padding: 80px 0;
}
.section.dark {
  background: var(--c-footer);
  color: #fff;
}
.section.soft { background: var(--c-soft); }
.section h2 {
  color: var(--c-royal);
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}
.section.dark h2 { color: var(--c-cyan); }
.section h3 {
  color: var(--c-royal);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: 28px;
}
.section.dark h3 { color: #fff; }
.section p { font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.section ul, .section ol { margin: 0 0 16px 24px; }
.section li { font-size: 16px; line-height: 1.7; margin-bottom: 6px; }
.section strong { color: var(--c-royal); }
.section.dark strong { color: var(--c-cyan); }

/* ---- Two-column section ------------------------------------------------ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
.two-col.wide { grid-template-columns: 1.3fr 1fr; }

/* ---- Method steps ------------------------------------------------------ */
.method-steps {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}
.method-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px;
  background: var(--c-soft);
  border-radius: 4px;
}
.method-step .num {
  font-size: 36px;
  font-weight: 800;
  color: var(--c-cyan);
  line-height: 1;
}
.method-step h3 {
  margin: 0 0 8px;
  color: var(--c-royal);
  font-size: 18px;
}
.method-step p { font-size: 15.5px; margin-bottom: 0; line-height: 1.6; }

/* ---- Product page ------------------------------------------------------ */
.product-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--c-soft) 0%, #e7eef7 100%);
}
.product-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.product-hero .p-info .eyebrow {
  color: var(--c-cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.product-hero h1 {
  color: var(--c-royal);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1;
}
.product-hero .p-sub {
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.5;
  color: var(--c-ink);
}
.product-hero .p-visual {
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 40px;
  box-shadow: 0 18px 40px rgba(20, 40, 90, .1);
  position: relative;
}
.product-hero .p-visual .pack-placeholder {
  width: 220px;
  height: 320px;
  background: linear-gradient(180deg, var(--c-royal) 0%, var(--c-cyan) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0,92,185,.25);
}
.product-hero .p-visual .pack-note {
  position: absolute;
  bottom: 14px;
  font-size: 11px;
  color: var(--c-mute);
  font-style: italic;
}

/* ---- Tables ------------------------------------------------------------ */
.table-wrap { overflow-x: auto; margin: 24px 0; }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  font-variant-numeric: tabular-nums;
}
table.data th, table.data td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--c-rule);
  vertical-align: top;
}
table.data thead th {
  background: var(--c-soft);
  color: var(--c-royal);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
table.data tbody tr:hover { background: #f9fafc; }
.placeholder-cell { color: var(--c-mute); font-style: italic; }

/* ---- Callouts / disclaimer --------------------------------------------- */
.disclaimer {
  background: #fff8e6;
  border-left: 4px solid #d9a000;
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5a4b1a;
  border-radius: 0 4px 4px 0;
}
.disclaimer.regulatory {
  background: var(--c-soft);
  border-left-color: var(--c-royal);
  color: var(--c-ink);
  font-style: italic;
}
.note-callout {
  background: #eef5ff;
  border-left: 4px solid var(--c-royal);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.65;
  border-radius: 0 4px 4px 0;
}
.note-callout strong { color: var(--c-royal); }

/* ---- FAQ / accordion --------------------------------------------------- */
.faq { margin: 24px 0; }
.faq-item {
  border-bottom: 1px solid var(--c-rule);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-royal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--c-cyan);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .a {
  padding: 0 0 24px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--c-ink);
}

/* ---- Form -------------------------------------------------------------- */
.form-grid {
  display: grid;
  gap: 16px;
  max-width: 620px;
  margin: 32px auto 0;
}
.form-grid.two-cols {
  grid-template-columns: 1fr 1fr;
}
.form-grid.two-cols .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-royal);
  letter-spacing: .3px;
}
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--c-rule);
  border-radius: 4px;
  background: #fff;
  color: var(--c-ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-royal);
}
.field textarea { min-height: 120px; resize: vertical; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--c-mute);
  line-height: 1.5;
  margin-top: 4px;
}
.consent input[type=checkbox] { margin-top: 3px; }

/* ---- Doc cards (Per i professionisti) ---------------------------------- */
.doc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.doc-card {
  background: #fff;
  border: 1.5px solid var(--c-rule);
  padding: 24px;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: center;
  transition: border-color .15s ease, transform .15s ease;
  color: var(--c-ink);
}
.doc-card:hover { border-color: var(--c-cyan); transform: translateY(-2px); }
.doc-card .doc-icon {
  width: 44px; height: 44px;
  background: var(--c-cyan);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .5px;
}
.doc-card .doc-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.doc-card .doc-title {
  font-weight: 700;
  color: var(--c-royal);
  font-size: 15.5px;
}
.doc-card .doc-info {
  font-size: 12px;
  color: var(--c-mute);
}

/* ---- Blog cards -------------------------------------------------------- */
.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  justify-content: center;
}
.chip {
  padding: 8px 18px;
  background: var(--c-soft);
  border-radius: 100px;
  font-size: 13.5px;
  color: var(--c-ink);
  border: 1.5px solid transparent;
  cursor: pointer;
}
.chip.is-active {
  background: var(--c-royal);
  color: #fff;
  border-color: var(--c-royal);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--c-rule);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,92,185,.1); }
.blog-card .b-img {
  height: 200px;
  background: linear-gradient(135deg, var(--c-royal), var(--c-cyan));
  position: relative;
}
.blog-card .b-img.placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/02-divider-pattern.png') center/cover;
  opacity: .15;
}
.blog-card .b-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,.95);
  color: var(--c-royal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.blog-card .b-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card h3 {
  color: var(--c-royal);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card .b-excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--c-ink);
  margin-bottom: 14px;
  flex-grow: 1;
}
.blog-card .b-meta {
  font-size: 12px;
  color: var(--c-mute);
  margin-top: auto;
}

/* ---- Footer ------------------------------------------------------------ */
.site-footer {
  background: var(--c-footer);
  color: #fff;
  padding: 56px 0 24px;
}
.site-footer .brand-line {
  display: inline-flex;
  align-items: center;
  margin-bottom: 32px;
  line-height: 1;
}
.site-footer .brand-line img {
  height: 48px;
  width: auto;
  display: block;
}
@media (max-width: 540px) {
  .site-footer .brand-line img { height: 38px; }
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 24px;
}
.footer-grid h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--c-cyan);
}
.footer-grid ul { list-style: none; }
.footer-grid li, .footer-grid address { margin-bottom: 8px; font-size: 14px; font-style: normal; line-height: 1.6; }
.footer-grid a { color: #d8e0e7; }
.footer-grid a:hover { color: var(--c-cyan); }
.footer-legal {
  font-size: 12.5px;
  color: #a8b1bd;
  line-height: 1.7;
}
.footer-legal a { color: #a8b1bd; }
.footer-legal a:hover { color: var(--c-cyan); }
.footer-disclaimer {
  margin-top: 16px;
  font-size: 11.5px;
  color: #7d8694;
  line-height: 1.6;
  font-style: italic;
}

/* ---- Cookie banner ----------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--c-rule);
  border-radius: 6px;
  padding: 20px 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  z-index: 100;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 14px;
  color: var(--c-ink);
}
.cookie-banner .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner .btn { font-size: 12px; padding: 10px 20px; letter-spacing: 1px; }

/* ============================================================================
   Hypnera page theming — verde brand applicato a scopo di pagina
   Attivare con la classe .theme-hypnera sul <body> della pagina hypnera.html
   ========================================================================= */

/* ---- Hero Hypnera (full-page, capsula a destra, testo a sinistra) ------ */
.hyp-hero {
  position: relative;
  background:
    linear-gradient(135deg, var(--hyp-green) 0%, var(--hyp-green-dark) 100%);
  color: #fff;
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
}
.hyp-hero .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  position: relative;
  z-index: 2;
  gap: 32px;
}
/* Foto a destra: cover con focal-point ancorato a basso-sinistra del source
   (15% horiz, 80% vert) → coincide col logo geopharma in basso sulla confezione.
   Su schermi medi questo evita che la confezione finisca dietro la fascia verde. */
.hyp-hero .hyp-pill {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 58%;
  background: url('../images/hypnera-hero_conf2.jpg') calc(35% + 30px) center / cover no-repeat;
  z-index: 0;
}
.hyp-hero::before {
  /* Blocco verde solido a sinistra (40% viewport + 120px), nessuna sfumatura:
     transizione netta tra area testo verde e area foto. */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--hyp-green) 0%,
    var(--hyp-green) calc(40% + 150px),
    rgba(29, 73, 54, 0) calc(40% + 150px)
  );
  z-index: 1;
}
/* Pattern di "molecole" decorativo in alto a sinistra */
.hyp-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 460px;
  height: 460px;
  background: url('../images/hypnera-pattern.png') top left / contain no-repeat;
  opacity: 0.45;
  filter: hue-rotate(75deg) saturate(0.6) brightness(1.6);
  z-index: 1;
  pointer-events: none;
}
.hyp-hero .h-body {
  position: relative;
  z-index: 3;
  max-width: 540px;
  padding: 40px 0 40px 8px;
}
.hyp-hero .hyp-eyebrow {
  display: inline-block;
  font-family: var(--hyp-font-display);
  color: var(--hyp-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201, 161, 74, 0.5);
}
.hyp-hero h1 {
  font-family: var(--hyp-font-display);
  font-size: clamp(60px, 8.2vw, 108px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: #fff;
}
.hyp-hero h1.hyp-logo-title {
  font-size: clamp(64px, 9vw, 130px);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
/* Variante con logo immagine (HYPNERA™ ufficiale) */
.hyp-hero h1.hyp-logo-img {
  margin-bottom: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  line-height: 0;
}
.hyp-hero h1.hyp-logo-img img {
  /* il PNG è verde brand: lo invertiamo a bianco con filtro per stare sul dark */
  filter: brightness(0) invert(1);
  /* sizing width-first: height:auto mantiene le proporzioni anche quando max-width:100% entra in gioco */
  width: clamp(420px, 57vw, 780px);
  max-width: 100%;
  height: auto;
  display: block;
  /* il PNG sorgente ha whitespace trasparente a sinistra: compensiamo per allineare la H di HYPNERA al resto della colonna testuale */
  margin-left: calc(-6% + 9px);
}
.hyp-hero h1 sup {
  font-size: 0.32em;
  font-weight: 700;
  vertical-align: super;
  margin-left: 4px;
  color: var(--hyp-gold);
}
.hyp-hero .hyp-payoff {
  font-family: var(--hyp-font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.hyp-hero .hyp-tagline {
  font-family: var(--hyp-font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 12px;
}
.hyp-hero .hyp-tagline strong {
  font-weight: 800;
}
.hyp-hero .hyp-lead {
  font-family: var(--hyp-font-display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 500px;
}
.hyp-hero .hyp-meta {
  font-family: var(--hyp-font-display);
}
.hyp-hero .hyp-meta-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.hyp-hero .hyp-meta-icons img {
  height: 72px;
  width: auto;
  display: block;
  /* le icone PNG sono verdi su trasparente: le portiamo a bianco per stare sul fondo verde scuro */
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: opacity .15s ease, transform .15s ease;
}
.hyp-hero .hyp-meta-icons img:hover {
  opacity: 1;
  transform: translateY(-2px);
}
@media (max-width: 540px) {
  .hyp-hero .hyp-meta-icons { gap: 14px; }
  .hyp-hero .hyp-meta-icons img { height: 60px; }
}
.hyp-hero .hyp-meta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hyp-gold);
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.hyp-hero .hyp-meta span::before {
  content: "· ";
  color: rgba(255, 255, 255, 0.4);
  margin-right: 8px;
}
.hyp-hero .hyp-meta span:first-child::before { content: ""; margin-right: 0; }
.hyp-hero .btn.hyp-cta-primary {
  background: var(--hyp-gold);
  color: var(--hyp-green-dark);
}
.hyp-hero .btn.hyp-cta-primary:hover {
  background: #d6b25b;
  color: var(--hyp-green-dark);
}
.hyp-hero .btn.btn-outline-white:hover {
  background: #fff;
  color: var(--hyp-green);
}
.hyp-hero .scroll-cue {
  position: absolute;
  left: calc(50% - 150px);
  bottom: 28px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 4;
  animation: scroll-cue-bob 2.4s ease-in-out infinite;
}
.hyp-hero .scroll-cue::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.7) 0%, rgba(255,255,255,0) 100%);
}
.hyp-hero .scroll-cue:hover { color: var(--hyp-gold); }

/* Hypnera hero — testo descrittivo (claim ingredienti + Caps in Caps) */
.hyp-hero .hyp-hero-desc {
  font-family: var(--hyp-font-display);
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
  margin: 0 0 24px 0;
}
.hyp-hero .hyp-hero-desc strong {
  color: var(--hyp-gold);
  font-weight: 700;
}

.hyp-hero .hyp-hero-pack img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---- Hypnera: tabella composizione (Caps esterna / Caps interna) ------- */
.caps-subtitle {
  font-size: 16px !important;
  color: var(--hyp-green) !important;
  font-weight: 600;
  margin-bottom: 16px !important;
}
.caps-subtitle em {
  color: var(--c-mute);
  font-weight: 400;
}

.theme-hypnera table.caps-table {
  border-top: 1px solid var(--hyp-rule);
}
.theme-hypnera table.caps-table tr.caps-section th {
  padding: 18px 18px;
  text-align: left;
  font-family: var(--hyp-font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.2px;
  text-transform: none;
  border-bottom-width: 2px;
  border-bottom-style: solid;
}
/* Caps esterna: header oro tenue */
.theme-hypnera table.caps-table tr.caps-section.caps-esterna th {
  background: #fbf2e0;
  color: #b88a3e;
  border-bottom-color: #e8c984;
}
/* Caps interna: header verde tenue */
.theme-hypnera table.caps-table tr.caps-section.caps-interna th {
  background: #e8efea;
  color: var(--hyp-green);
  border-bottom-color: #c8dac5;
}
/* La regola hover globale non deve toccare le righe section */
.theme-hypnera table.caps-table tbody tr.caps-section:hover {
  background: inherit;
}
.theme-hypnera table.caps-table tbody tr.caps-section.caps-esterna:hover th {
  background: #fbf2e0;
}
.theme-hypnera table.caps-table tbody tr.caps-section.caps-interna:hover th {
  background: #e8efea;
}
/* Celle dati: padding generoso e tipografia coerente */
.theme-hypnera table.caps-table td {
  padding: 14px 18px;
  font-size: 15.5px;
}
.theme-hypnera table.caps-table td:last-child {
  text-align: right;
  color: var(--c-mute);
}
.theme-hypnera table.caps-table td strong {
  color: var(--hyp-green);
  font-weight: 700;
}
.theme-hypnera table.caps-table td em {
  color: var(--c-mute);
  font-style: italic;
  padding-left: 16px;
}

/* ---- Hypnera: sezione fotoconfezione (subito dopo hero) --------------- */
.hyp-pack {
  background: var(--hyp-soft);
  padding: 96px 0;
}
.hyp-pack .container {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 56px;
  align-items: center;
}
.hyp-pack-text .section-eyebrow { color: var(--hyp-green-mid); }
.hyp-pack-text h2 {
  font-family: var(--hyp-font-display);
  color: var(--hyp-green);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.hyp-pack-text p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  margin-bottom: 28px;
}
.hyp-pack-text p strong { color: var(--hyp-green); }
.hyp-pack-note {
  font-size: 12.5px !important;
  color: var(--c-mute) !important;
  margin-top: 8px;
  margin-bottom: 0 !important;
}

/* Badge vegan / gluten-free / lactose-free (immagini ufficiali) */
.hyp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 28px 0 0;
  align-items: center;
}
.hyp-badge-img {
  height: 90px;
  width: auto;
  display: block;
  transition: transform .2s ease;
}
.hyp-badge-img:hover {
  transform: translateY(-2px);
}

/* Foto confezione reale — ingrandita al max */
.hyp-pack-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.hyp-pack-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(20, 53, 39, 0.2));
}

/* Responsive .hyp-pack */
@media (max-width: 960px) {
  .hyp-pack .container { grid-template-columns: 1fr; gap: 40px; }
  .hyp-pack-photo { padding: 0; }
  .hyp-pack-photo img { max-width: 480px; margin: 0 auto; }
  .hyp-badges { justify-content: flex-start; gap: 16px; }
  .hyp-badge-img { height: 72px; }
}

/* ---- Theming verde per il resto della pagina hypnera.html -------------- */
.theme-hypnera .section h2,
.theme-hypnera .section h3,
.theme-hypnera .pro-block h2,
.theme-hypnera .section .section-eyebrow {
  font-family: var(--hyp-font-display);
}
.theme-hypnera .section h2,
.theme-hypnera .section h3 {
  color: var(--hyp-green);
  font-weight: 800;
  letter-spacing: -0.3px;
}
.theme-hypnera .section.soft { background: var(--hyp-soft); }
.theme-hypnera .section strong { color: var(--hyp-green); }
.theme-hypnera .section a { color: var(--hyp-green-mid); }
.theme-hypnera .section a:hover { color: var(--hyp-green); }

.theme-hypnera table.data thead th {
  background: var(--hyp-green);
  color: #fff;
  border-bottom-color: var(--hyp-green-dark);
}
.theme-hypnera table.data th,
.theme-hypnera table.data td {
  border-bottom-color: var(--hyp-rule);
}
.theme-hypnera table.data tbody tr:hover {
  background: var(--hyp-soft);
}

.theme-hypnera .note-callout {
  background: #f4f9f6;
  border-left-color: var(--hyp-green);
}
.theme-hypnera .note-callout strong { color: var(--hyp-green); }

.theme-hypnera .disclaimer.regulatory {
  background: var(--hyp-soft);
  border-left-color: var(--hyp-green);
  color: var(--c-ink);
}

.theme-hypnera .faq-item summary { color: var(--hyp-green); }
.theme-hypnera .faq-item summary::after { color: var(--hyp-gold); }
.theme-hypnera .faq-item { border-bottom-color: var(--hyp-rule); }

.theme-hypnera .pro-block .pro-card { background: var(--hyp-soft); }
.theme-hypnera .pro-block .pro-card::before {
  background: linear-gradient(180deg, transparent, var(--hyp-green) 25%, var(--hyp-green) 75%, transparent);
}
.theme-hypnera .pro-block h2 { color: var(--hyp-green); }
.theme-hypnera .pro-block .btn {
  background: var(--hyp-green);
  color: #fff;
}
.theme-hypnera .pro-block .btn:hover { background: var(--hyp-green-dark); }

.theme-hypnera .section .btn:not(.btn-outline) {
  background: var(--hyp-green);
  color: #fff;
}
.theme-hypnera .section .btn:not(.btn-outline):hover {
  background: var(--hyp-green-dark);
}
.theme-hypnera .section .btn.btn-outline {
  border-color: var(--hyp-green);
  color: var(--hyp-green);
  background: transparent;
}
.theme-hypnera .section .btn.btn-outline:hover {
  background: var(--hyp-green);
  color: #fff;
}

/* Header del sito sulla pagina Hypnera: brand cyan/royal restano (coerenza Geopharma);
   solo la CTA "Per i professionisti" passa al verde Hypnera per coerenza locale */
.theme-hypnera .nav .nav-cta {
  border-color: var(--hyp-green);
  color: var(--hyp-green);
}
.theme-hypnera .nav .nav-cta:hover {
  background: var(--hyp-green);
  color: #fff;
}

/* ---- Responsive hero Hypnera --------------------------------------------
   Strategia: il layout split (testo + foto affiancati) è attivo solo su
   schermi ≥1201px, dove la foto (ratio sorgente 2200/1824 ≈ 1.21) ha
   spazio sufficiente nel suo riquadro al 58% di viewport per non essere
   croppata dalla fascia verde.
   Sotto 1200px stack verticale: testo sopra, foto sotto, EDGE-TO-EDGE e
   con aspect-ratio del contenitore = ratio del source image → cover non
   crop mai, l'immagine si vede SEMPRE PER INTERO.
   ------------------------------------------------------------------------ */
@media (max-width: 1200px) {
  .hyp-hero {
    padding: 24px 0 0;
    min-height: auto;
  }
  .hyp-hero .container {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
    padding-bottom: 0;
  }
  /* Foto: edge-to-edge, aspect-ratio matched al source image (2200×1824),
     centratura standard senza shift, height auto + max-height come safety
     su viewport molto alti (così non domina lo scroll) */
  .hyp-hero .hyp-pill {
    position: relative;
    width: calc(100% + var(--gut) * 2);
    margin-left: calc(var(--gut) * -1);
    margin-right: calc(var(--gut) * -1);
    aspect-ratio: 2200 / 1824;
    height: auto;
    max-height: 75vh;
    top: auto; right: auto; bottom: auto;
    background-position: center center;
    background-size: cover;
    order: 2;
  }
  .hyp-hero::before { background: none; }
  .hyp-hero::after { width: 220px; height: 220px; opacity: 0.30; }
  .hyp-hero .h-body {
    padding: 8px 0 16px;
    order: 1;
    max-width: 100%;
  }
  .hyp-hero h1 { font-size: clamp(48px, 14vw, 72px); }
  .hyp-hero .scroll-cue { left: 50%; }
}
@media (max-width: 540px) {
  .hyp-hero .hyp-pill { max-height: 60vh; }
  .hyp-hero h1 { font-size: clamp(44px, 16vw, 64px); }
}

/* ============================================================================
   Eutimera page theming — terracotta/warm brand applicato a scopo di pagina
   Attivare con la classe .theme-eutimera sul <body> della pagina eutimera.html
   ========================================================================= */

/* ---- Hero Eutimera (full-page, donna in equilibrio a destra, testo a sx) */
.eut-hero {
  position: relative;
  background: linear-gradient(135deg, var(--eut-cream) 0%, #f8efe1 50%, var(--eut-gold) 100%);
  color: var(--eut-warm-dark);
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
}
.eut-hero .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  position: relative;
  z-index: 2;
  gap: 32px;
}
/* Foto donna a destra come immagine assoluta */
.eut-hero .eut-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 60%;
  background: url('../images/eutimera-hero.jpg') right center / cover no-repeat;
  z-index: 0;
}
.eut-hero::before {
  /* Sfumatura cream sul lato sinistro per fondere la foto nel fondo */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--eut-cream) 0%,
    var(--eut-cream) 32%,
    rgba(244, 232, 216, 0.65) 48%,
    rgba(244, 232, 216, 0) 65%
  );
  z-index: 1;
}
/* Pattern molecole in alto a sinistra, ricolorato in warm */
.eut-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 460px;
  height: 460px;
  background: url('../images/hypnera-pattern.png') top left / contain no-repeat;
  opacity: 0.5;
  filter: hue-rotate(180deg) saturate(0.7) brightness(1.05);
  z-index: 1;
  pointer-events: none;
}
.eut-hero .h-body {
  position: relative;
  z-index: 3;
  max-width: 580px;
  padding: 40px 0 40px 8px;
}
.eut-hero .eut-eyebrow {
  display: inline-block;
  font-family: var(--eut-font-display);
  color: var(--eut-warm-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(139, 79, 38, 0.4);
}
.eut-hero h1 {
  font-family: var(--eut-font-display);
  font-size: clamp(46px, 6.2vw, 84px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--eut-warm-dark);
}
.eut-hero h1 .light {
  font-weight: 300;
  color: var(--eut-warm);
}
.eut-hero .eut-tagline {
  font-family: var(--eut-font-display);
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--eut-warm-dark);
  margin-bottom: 32px;
  max-width: 520px;
}
.eut-hero .eut-keywords {
  font-family: var(--eut-font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--eut-warm);
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
}
.eut-hero .eut-keywords span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eut-hero .eut-keywords span:not(:last-child)::after {
  content: "";
  width: 6px; height: 6px;
  background: var(--eut-gold);
  border-radius: 50%;
  display: inline-block;
}
.eut-hero .eut-meta {
  font-family: var(--eut-font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--eut-warm);
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.eut-hero .eut-meta span::before {
  content: "· ";
  color: rgba(139, 79, 38, 0.4);
  margin-right: 8px;
}
.eut-hero .eut-meta span:first-child::before { content: ""; margin-right: 0; }
.eut-hero .btn.eut-cta-primary {
  background: var(--eut-warm);
  color: #fff;
}
.eut-hero .btn.eut-cta-primary:hover {
  background: var(--eut-warm-dark);
  color: #fff;
}
.eut-hero .btn.btn-outline {
  border-color: var(--eut-warm-dark);
  color: var(--eut-warm-dark);
  background: transparent;
}
.eut-hero .btn.btn-outline:hover {
  background: var(--eut-warm-dark);
  color: #fff;
}
.eut-hero .scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: rgba(139, 79, 38, .7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 4;
  animation: scroll-cue-bob 2.4s ease-in-out infinite;
}
.eut-hero .scroll-cue::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(139, 79, 38, .7) 0%, rgba(139, 79, 38, 0) 100%);
}
.eut-hero .scroll-cue:hover { color: var(--eut-warm-dark); }

/* ---- Theming warm per il resto della pagina eutimera.html -------------- */
.theme-eutimera .section h2,
.theme-eutimera .section h3,
.theme-eutimera .pro-block h2,
.theme-eutimera .section .section-eyebrow {
  font-family: var(--eut-font-display);
}
.theme-eutimera .section h2,
.theme-eutimera .section h3 {
  color: var(--eut-warm-dark);
  font-weight: 800;
  letter-spacing: -0.3px;
}
.theme-eutimera .section.soft { background: var(--eut-soft); }
.theme-eutimera .section strong { color: var(--eut-warm-dark); }
.theme-eutimera .section a { color: var(--eut-warm); }
.theme-eutimera .section a:hover { color: var(--eut-warm-dark); }

.theme-eutimera table.data thead th {
  background: var(--eut-warm);
  color: #fff;
  border-bottom-color: var(--eut-warm-dark);
}
.theme-eutimera table.data th,
.theme-eutimera table.data td {
  border-bottom-color: var(--eut-rule);
}
.theme-eutimera table.data tbody tr:hover {
  background: var(--eut-soft);
}

.theme-eutimera .note-callout {
  background: #fbf6ed;
  border-left-color: var(--eut-warm);
}
.theme-eutimera .note-callout strong { color: var(--eut-warm-dark); }

.theme-eutimera .disclaimer.regulatory {
  background: var(--eut-soft);
  border-left-color: var(--eut-warm);
  color: var(--c-ink);
}

.theme-eutimera .faq-item summary { color: var(--eut-warm-dark); }
.theme-eutimera .faq-item summary::after { color: var(--eut-warm); }
.theme-eutimera .faq-item { border-bottom-color: var(--eut-rule); }

.theme-eutimera .pro-block .pro-card { background: var(--eut-soft); }
.theme-eutimera .pro-block .pro-card::before {
  background: linear-gradient(180deg, transparent, var(--eut-warm) 25%, var(--eut-warm) 75%, transparent);
}
.theme-eutimera .pro-block h2 { color: var(--eut-warm-dark); }
.theme-eutimera .pro-block .btn {
  background: var(--eut-warm);
  color: #fff;
}
.theme-eutimera .pro-block .btn:hover { background: var(--eut-warm-dark); }

.theme-eutimera .section .btn:not(.btn-outline) {
  background: var(--eut-warm);
  color: #fff;
}
.theme-eutimera .section .btn:not(.btn-outline):hover {
  background: var(--eut-warm-dark);
}
.theme-eutimera .section .btn.btn-outline {
  border-color: var(--eut-warm);
  color: var(--eut-warm);
  background: transparent;
}
.theme-eutimera .section .btn.btn-outline:hover {
  background: var(--eut-warm);
  color: #fff;
}

/* Nav CTA "Per i professionisti" in alto: passa al warm Eutimera */
.theme-eutimera .nav .nav-cta {
  border-color: var(--eut-warm);
  color: var(--eut-warm);
}
.theme-eutimera .nav .nav-cta:hover {
  background: var(--eut-warm);
  color: #fff;
}

/* Responsive hero Eutimera */
@media (max-width: 960px) {
  .eut-hero { padding: 32px 0; }
  .eut-hero .container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .eut-hero .eut-photo {
    position: relative;
    width: 100%;
    height: 320px;
    background-position: center 30%;
    order: 2;
  }
  .eut-hero::before {
    background: linear-gradient(
      180deg,
      rgba(244, 232, 216, 0.3) 0%,
      var(--eut-cream) 70%
    );
  }
  .eut-hero::after { width: 240px; height: 240px; opacity: 0.4; }
  .eut-hero .h-body { padding: 32px 0; order: 1; }
  .eut-hero h1 { font-size: clamp(42px, 12vw, 64px); }
  .eut-hero .eut-keywords { font-size: 12px; gap: 10px 18px; }
}

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 960px) {
  .nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: #fff;
    flex-direction: column; padding: 24px 32px; gap: 16px; align-items: flex-start;
    box-shadow: 0 8px 24px rgba(0,0,0,.08); }
  .nav.is-open { display: flex; }
  .nav .nav-cta { width: 100%; text-align: center; }
  .nav-toggle { display: block; }

  .hero { padding: 32px 0; }
  .hero .container { grid-template-columns: 1fr; }
  .hero .h-side { display: none; }
  .hero .h-body { padding: 32px 0; text-align: left; max-width: 100%; align-self: center; }
  .hero::after { background: linear-gradient(180deg, rgba(25,32,61,.65) 0%, rgba(25,32,61,.92) 80%, rgba(25,32,61,.96) 100%); }

  .tiles-grid,
  .tiles-grid.two-cols { grid-template-columns: 1fr; max-width: 100%; }
  .tile { padding: 28px 24px; }
  .approach .container,
  .pro-block .pro-card,
  .product-hero .container,
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .mission-band .container { grid-template-columns: 1fr; gap: 40px; }

  .esg-grid, .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .value-row, .value-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .value-row .v-text { padding: 48px 32px; }
  .value-row h3, .value-row p { max-width: 100%; }
  .value-row .v-img { min-height: 240px; order: -1; }

  .philo .card { padding: 32px 28px; }
  .pro-block .pro-card { padding: 36px 28px 36px 40px; }

  .form-grid.two-cols { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  :root { --gut: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .pub-tiles { gap: 24px; }
  .product-hero .p-visual { min-height: 320px; padding: 24px; }
  .product-hero .p-visual .pack-placeholder { width: 180px; height: 260px; font-size: 18px; }
}

/* ============================================================================
   Bibliografia Hypnera — griglia di tile con preview prima pagina del PDF
   ========================================================================= */
.biblio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 32px 0 48px;
}
.biblio-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #dde3ee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(20, 40, 90, 0.07), 0 1px 3px rgba(20, 40, 90, 0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.biblio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 40, 90, 0.13), 0 4px 12px rgba(20, 40, 90, 0.07);
  border-color: var(--c-royal);
}
.biblio-card:focus-visible {
  outline: 2px solid var(--c-royal);
  outline-offset: 3px;
}
.biblio-header {
  padding: 11px 16px;
  background: #f4f7fc;
  border-bottom: 1px solid #dde3ee;
  display: flex;
  align-items: center;
}
.biblio-cover {
  position: relative;
  aspect-ratio: 1191 / 1560;
  background: #f6f8fb;
  overflow: hidden;
  border-bottom: 1px solid #e6eaf0;
}
.biblio-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .35s ease;
}
.biblio-card:hover .biblio-cover img {
  transform: scale(1.02);
}
.biblio-tag {
  display: inline-block;
  background: transparent;
  color: var(--c-royal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1.5px solid var(--c-royal);
}
.biblio-meta {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.biblio-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--c-royal);
  margin: 0 0 4px 0;
}
.biblio-title em {
  font-style: italic;
  font-weight: 700;
}
.biblio-authors {
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-ink);
  margin: 0;
}
.biblio-source {
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-mute);
  margin: auto 0 0 0;
  padding-top: 8px;
  border-top: 1px solid #f0f3f7;
}
.biblio-source em {
  font-style: italic;
  color: var(--c-ink);
  font-weight: 600;
}

.biblio-back {
  margin-top: 16px;
  text-align: center;
}
.biblio-back a {
  color: var(--c-royal);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.biblio-back a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .biblio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .biblio-cover {
    aspect-ratio: 16 / 9;  /* su mobile la card si appiattisce, mostra solo l'intestazione */
    object-position: top center;
  }
}

/* ============================================================================
   Smaltimento imballaggio — callout per pagina prodotto (Hypnera)
   ========================================================================= */
.smalt-callout {
  background: #f4f9f6;
  border: 1px solid #d6e6dc;
  border-left: 4px solid var(--hyp-green, #1d4936);
  border-radius: 10px;
  padding: 24px 28px;
  margin: 16px 0 32px;
}
.smalt-list {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.smalt-list li {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #e6eee9;
  border-radius: 8px;
}
.smalt-component {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--c-ink, #1a1a1a);
}
.smalt-component em {
  display: inline-block;
  margin-left: 6px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--c-mute, #6b7280);
  font-weight: 500;
  background: #f0f3f7;
  padding: 2px 8px;
  border-radius: 4px;
}
.smalt-arrow {
  font-size: 18px;
  color: var(--c-mute, #6b7280);
  font-weight: 400;
  justify-self: center;
}
.smalt-bin {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  text-align: center;
  justify-self: end;
  white-space: nowrap;
}
.smalt-plastic {
  background: #fff4d6;
  color: #8a6a14;
  border: 1px solid #f0d98a;
}
.smalt-paper {
  background: #e2eef9;
  color: #1f5694;
  border: 1px solid #b8d4ec;
}
.smalt-note {
  margin: 0;
  font-size: 13px;
  font-style: italic;
  color: var(--c-mute, #6b7280);
  text-align: center;
  padding-top: 8px;
  border-top: 1px dashed #d6e6dc;
}

@media (max-width: 540px) {
  .smalt-callout { padding: 20px 18px; }
  .smalt-list li {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
    padding: 12px 14px;
  }
  .smalt-arrow { display: none; }
  .smalt-bin { justify-self: start; }
}

/* ============================================================================
   Hypnera — Benefit panel ad alto impatto
   Layout 2-colonne: pack dominante a sinistra | claim+effetti+badge a destra
   Sfondo gradient + pattern decorativo + tipografia editoriale grande
   ========================================================================= */
.hyp-benefits {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8f5 30%, #e2efe7 100%);
  padding: clamp(80px, 10vw, 140px) 0;
  /* niente overflow: hidden — permette al pack di sforare ai lati con tutto il suo drop-shadow */
}
/* Pattern molecole decorativo in basso a destra (riusa pattern brand) */
.hyp-benefits-bg-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 480px;
  height: 480px;
  background: url('../images/hypnera-pattern.png') bottom right / contain no-repeat;
  opacity: 0.10;
  filter: hue-rotate(75deg) saturate(0.6) brightness(0.5);
  pointer-events: none;
  z-index: 0;
  max-width: 50vw;
  max-height: 50vw;
}
.hyp-benefits .container {
  position: relative;
  z-index: 1;
}
.hyp-benefits-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr;     /* pack ~65% / content ~35% */
  gap: clamp(16px, 3vw, 48px);
  align-items: center;
  overflow: visible;
}

/* Pack MOLTO GRANDE — overflow visibile, scale 1.15 visivo oltre la width layout */
.hyp-benefits-pack {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  /* estende il pack oltre il bordo sinistro del container per dare respiro */
  margin-left: clamp(-100px, -6vw, -24px);
}
.hyp-benefits-pack img {
  max-width: none;                       /* rimuove cap al 100% del genitore */
  height: auto;
  width: clamp(520px, 68vw, 1000px);    /* width effettiva layout */
  transform: rotate(-4deg) scale(1.15); /* +15% visivo sopra la width */
  transform-origin: center center;
  filter:
    drop-shadow(0 60px 110px rgba(20, 53, 39, 0.40))
    drop-shadow(0 20px 40px rgba(20, 53, 39, 0.25));
  transition: transform .4s ease;
}
.hyp-benefits-pack:hover img {
  transform: rotate(-2deg) scale(1.20);
}

/* Destra: claim + bullet timeline + aside (badge + posologia) */
.hyp-benefits-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.hyp-benefits-claim {
  font-family: var(--hyp-font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--hyp-green);
  margin: 0;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.hyp-benefits-claim strong {
  font-weight: 800;
}

/* Lista benefici con timeline verticale */
.hyp-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.hyp-benefits-list::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: var(--hyp-green);
  opacity: 0.25;
}
.hyp-benefits-list li {
  position: relative;
  padding: 12px 0 12px 40px;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
  color: var(--c-ink);
}
.hyp-benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--hyp-green);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1.5px var(--hyp-green), 0 4px 10px rgba(20, 53, 39, 0.2);
}
.hyp-benefits-list li.is-key::before {
  background: #6a4f9e;  /* violet/lavender — accent visivo come da reference */
  box-shadow: 0 0 0 1.5px #6a4f9e, 0 4px 10px rgba(106, 79, 158, 0.3);
}
.hyp-benefits-list li strong {
  font-weight: 700;
  color: var(--hyp-green);
}

/* Aside: PATENT badge + posologia, sotto la lista */
.hyp-benefits-aside {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(29, 73, 54, 0.15);
}
.patent-badge {
  position: relative;
  width: clamp(110px, 11vw, 150px);
  height: clamp(110px, 11vw, 150px);
  border-radius: 50%;
  background: #fff;
  border: 3px dashed var(--hyp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 0 0 4px #fff,
    inset 0 0 0 5px rgba(29, 73, 54, 0.5),
    0 8px 20px rgba(20, 53, 39, 0.15);
  flex-shrink: 0;
  transform: rotate(-6deg);
}
.patent-badge-text {
  position: absolute;
  font-family: var(--hyp-font-display);
  font-weight: 900;
  font-size: clamp(15px, 1.4vw, 20px);
  letter-spacing: 4px;
  color: var(--hyp-green);
  text-transform: uppercase;
}
.patent-badge-text.patent-tr { transform: rotate(15deg); }
.patent-badge-text.patent-tl { transform: rotate(-15deg); }

.hyp-benefits-usage {
  font-family: var(--hyp-font-display);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.55;
  color: var(--c-ink);
  margin: 0;
  max-width: 260px;
}
.hyp-benefits-usage strong {
  font-weight: 700;
  color: var(--hyp-green);
  font-size: 1.1em;
}

/* Responsive */
@media (max-width: 960px) {
  .hyp-benefits { padding: 64px 0; }
  .hyp-benefits-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hyp-benefits-pack img {
    width: clamp(280px, 70vw, 420px);
    transform: rotate(-3deg);
  }
  .hyp-benefits-content { max-width: 600px; margin: 0 auto; }
}
@media (max-width: 540px) {
  .hyp-benefits-bg-deco { width: 340px; height: 340px; opacity: 0.06; }
  .hyp-benefits-aside { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hyp-benefits-usage { max-width: 100%; }
}

/* ---- Utilities ---------------------------------------------------------- */
.text-center { text-align: center; }
.no-pad { padding: 0 !important; }
.mt-32 { margin-top: 32px; }

/* Section CTA block — centered call-to-action with tight heading spacing */
.section-cta { text-align: center; }
.section-cta h2 { margin-bottom: 12px; }
.section-cta p { margin-bottom: 28px; }
.section-cta .btn-row { justify-content: center; }

/* Eutimera composition table — sub-ingredient rows */
.data td.sub { padding-left: 32px; color: var(--c-mute); font-size: 14px; }

/* Note callout — inner paragraph reset */
.note-callout p { margin: 0; }

/* Botanical name within headings */
.botanical { font-weight: 400; color: var(--c-mute); font-style: italic; }

/* ---- prefers-reduced-motion -------------------------------------------- */
@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;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================================
   Pagine legali (cookie-policy, privacy-policy, whistleblowing, farmacovigilanza)
   Tipografia editoriale leggibile, gerarchia chiara, TOC con anchor links
   ========================================================================= */
main.legal {
  padding: 56px 0 80px;
  background: #fafbfc;
  min-height: 60vh;
}
main.legal .container {
  max-width: 880px;     /* riga di lettura più stretta del default 1200 */
}
main.legal h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--c-royal);
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 12px 0;
}
main.legal h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--c-royal);
  letter-spacing: -0.3px;
  margin: 48px 0 16px 0;
  padding-top: 12px;
  border-top: 1px solid #e6eaf0;
  scroll-margin-top: 100px;   /* anchor scroll non sotto al header sticky */
}
main.legal h2:first-of-type {
  border-top: none;
  padding-top: 0;
}
main.legal h3 {
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 700;
  color: var(--c-ink);
  margin: 28px 0 10px 0;
}
main.legal p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--c-ink);
  margin: 0 0 16px 0;
}
main.legal ul,
main.legal ol {
  padding-left: 24px;
  margin: 0 0 20px 0;
}
main.legal li {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--c-ink);
  margin-bottom: 10px;
}
main.legal a {
  color: var(--c-royal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
main.legal a:hover { color: var(--c-cyan); }

main.legal strong { color: var(--c-ink); font-weight: 700; }
main.legal em { color: var(--c-mute); font-style: italic; }

/* Meta line (date di vigore / aggiornamento) */
.legal-meta {
  font-size: 13.5px !important;
  color: var(--c-mute);
  margin: 0 0 24px 0 !important;
  padding-bottom: 16px;
  border-bottom: 1px dashed #d6dee8;
}
.legal-meta strong { color: var(--c-ink); }

/* Table of Contents */
.legal-toc {
  background: #f0f4fa;
  border-left: 4px solid var(--c-royal);
  border-radius: 0 8px 8px 0;
  padding: 20px 28px;
  margin: 32px 0 48px;
}
.legal-toc-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-royal) !important;
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
  border: none !important;
}
.legal-toc ol {
  margin: 0;
  padding-left: 22px;
}
.legal-toc li {
  margin-bottom: 6px;
  font-size: 14.5px;
  line-height: 1.5;
}
.legal-toc a {
  text-decoration: none;
  color: var(--c-royal);
  font-weight: 500;
}
.legal-toc a:hover { text-decoration: underline; }

/* Lista links (browser controls, terze parti) — più compatta, con freccia decorativa */
ul.legal-links {
  list-style: none;
  padding-left: 0;
}
ul.legal-links li {
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid #ecf0f5;
  position: relative;
  margin-bottom: 0;
}
ul.legal-links li:last-child { border-bottom: none; }
ul.legal-links li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--c-cyan);
  font-weight: 700;
}

/* Divider tra sezioni */
hr.legal-divider {
  border: none;
  border-top: 2px solid var(--c-royal);
  margin: 56px 0 32px;
  opacity: 0.15;
}

/* Address (titolare del trattamento) */
main.legal address {
  font-style: normal;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--c-ink);
  background: #f6f8fb;
  border: 1px solid #e6eaf0;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 16px 0 0;
}
main.legal address strong { color: var(--c-royal); }

/* Tabella categorie dati (privacy policy) */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 24px;
  font-size: 14.5px;
  line-height: 1.55;
}
.legal-table thead th {
  background: var(--c-royal);
  color: #fff;
  text-align: left;
  font-weight: 700;
  padding: 12px 16px;
  font-size: 13.5px;
  letter-spacing: 0.5px;
}
.legal-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #e6eaf0;
  vertical-align: top;
}
.legal-table tbody tr:nth-child(even) td {
  background: #f6f8fb;
}
.legal-table tbody td:first-child {
  width: 30%;
  min-width: 180px;
}

@media (max-width: 540px) {
  main.legal { padding: 32px 0 56px; }
  main.legal h2 { margin: 36px 0 12px 0; }
  .legal-toc { padding: 16px 20px; }
  ul.legal-links li { padding-left: 20px; }
}

.text-center { text-align: center; }
.no-pad { padding: 0 !important; }
.mt-32 { margin-top: 32px; }
.section-cta { text-align: center; }
.section-cta h2 { margin-bottom: 12px; }
.section-cta p { margin-bottom: 28px; }
.section-cta .btn-row { justify-content: center; }
.data td.sub { padding-left: 32px; color: var(--c-mute); font-size: 14px; }
.note-callout p { margin: 0; }
.botanical { font-weight: 400; color: var(--c-mute); font-style: italic; }
@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;
  }
  html { scroll-behavior: auto; }
}


