/* HS Group — Foglio di stile v3 Corporate/Clinical */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:    #0d1f35;
  --navy-m:  #1a3450;
  --navy-l:  #e8eef5;
  --teal:    #0e6e5a;
  --teal-l:  #e6f4f1;
  --accent:  #12805a;
  --accent-d:#087a51;
  --nutr:    #166534;
  --nutr-l:  #f0fdf4;
  --est:     #7850c8;
  --est-l:   #f0ebff;
  --text:    #0d1f35;
  --text-s:  #4a5568;
  --text-m:  #5f6b7d;
  --bg:      #ffffff;
  --bg-s:    #f7f9fc;
  --border:  #dde3eb;
  --border-s:#828fa0;
  --radius:  5px;
  --radius-lg:8px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
}

/* ── NAV ── */
nav {
  background: var(--navy);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}
.logo-pipe { width: 1px; height: 20px; background: rgba(255,255,255,.15); }
.logo-text { color: #fff; font-size: 15px; font-weight: 600; font-family: 'Inter', sans-serif; }
.logo-text sup { font-size: 9px; vertical-align: super; }
.logo-sub  { color: rgba(255,255,255,.4); font-size: 10px; letter-spacing: .05em; font-family: 'Inter', sans-serif; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-btn {
  background: none; border: none;
  padding: 8px 13px; font-size: 13px;
  color: rgba(255,255,255,.65);
  cursor: pointer; border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  transition: all .15s; text-decoration: none;
  display: inline-block;
}
.nav-btn:hover { background: rgba(255,255,255,.08); color: #fff; }
.nav-btn.active { color: #fff; }
.nav-cta {
  background: var(--accent); color: #fff;
  border: none; padding: 9px 20px;
  font-size: 13px; font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: background .15s; margin-left: 8px;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--accent-d); }

/* Dropdown */
.dropdown { position: relative; display: inline-block; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--bg);
  border: 0.5px solid var(--border-s);
  border-radius: var(--radius-lg);
  padding: 6px; padding-top: 10px; min-width: 250px;
  z-index: 200; display: flex; flex-direction: column; gap: 1px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  visibility: hidden; opacity: 0;
  transition: opacity .15s ease, visibility 0s linear .25s;
  pointer-events: none;
}
.dropdown:hover .dropdown-menu {
  visibility: visible; opacity: 1;
  transition: opacity .15s ease, visibility 0s linear 0s;
  pointer-events: auto;
}
.dropdown-item {
  padding: 8px 12px; font-size: 13px;
  color: var(--text-s); border-radius: 4px;
  cursor: pointer; transition: background .1s;
  text-decoration: none; display: flex; align-items: center; gap: 9px;
  font-family: 'Inter', sans-serif;
}
.dropdown-item:hover { background: var(--bg-s); color: var(--navy); }
.dropdown-divider { height: 0.5px; background: var(--border); margin: 4px 0; }

/* ── HERO CON IMMAGINE ── */
.hero-img { position: relative; overflow: hidden; min-height: 480px; display: flex; align-items: center; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.32);
}
.hero-sm .hero-img { min-height: 360px; }
.hero-content { position: relative; z-index: 1; padding: 5rem 2.5rem 4.5rem; max-width: 760px; margin: 0 auto; width: 100%; }
.hero-sm .hero-content { padding: 4rem 2.5rem 3.5rem; }

.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.25rem; display: flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
}
.eyebrow::before { content: ''; width: 20px; height: 1.5px; background: var(--accent); display: inline-block; }

.hero-img h1 { font-size: 38px; line-height: 1.18; color: #fff; margin-bottom: 1.25rem; }
.hero-img h1 span { color: #6ee7b7; }
.hero-img .lead { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.8; max-width: 540px; margin-bottom: 2.25rem; font-family: 'Inter', sans-serif; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-p {
  background: var(--accent); color: #fff; border: none;
  padding: 12px 24px; font-size: 14px; font-weight: 600;
  border-radius: var(--radius); cursor: pointer;
  font-family: 'Inter', sans-serif; transition: background .15s;
  text-decoration: none; display: inline-block;
}
.btn-p:hover { background: var(--accent-d); }
.btn-s {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  padding: 12px 24px; font-size: 14px; font-weight: 500;
  border-radius: var(--radius); cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all .15s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.btn-s:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); }
.btn-dark {
  background: var(--navy); color: #fff; border: none;
  padding: 11px 22px; font-size: 13px; font-weight: 600;
  border-radius: var(--radius); cursor: pointer;
  font-family: 'Inter', sans-serif; transition: background .15s;
  text-decoration: none; display: inline-block;
}
.btn-w {
  background: #fff; color: var(--navy); border: none;
  padding: 11px 22px; font-size: 13px; font-weight: 700;
  border-radius: var(--radius); cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all .15s;
  text-decoration: none; display: block; text-align: center;
  letter-spacing: .02em; text-transform: uppercase;
}
.btn-w:hover { background: var(--teal-l); color: var(--teal); }

/* ── STATS ── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 0.5px solid var(--border); }
.stat-cell { padding: 1.75rem 2rem; border-right: 0.5px solid var(--border); background: var(--bg); }
.stat-cell:last-child { border-right: none; }
.stat-n { font-size: 28px; font-weight: 700; color: var(--navy); font-family: 'DM Serif Display', serif; }
.stat-n span { color: var(--accent); }
.stat-l { font-size: 11px; color: var(--text-m); margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; font-family: 'Inter', sans-serif; }

/* ── SECTIONS ── */
.section { padding: 4.5rem 2.5rem; }
.section-alt { background: var(--bg-s); }
.section-border { border-top: 0.5px solid var(--border); }

.label-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .9rem; display: flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
}
.label-tag::before { content: ''; width: 16px; height: 1.5px; background: var(--accent); display: inline-block; }

.sh { margin-bottom: 2.5rem; }
.sh h2 { font-size: 28px; color: var(--navy); margin-bottom: .75rem; }
.sh p { font-size: 14px; color: var(--text-s); line-height: 1.7; max-width: 520px; font-family: 'Inter', sans-serif; }
.sh-center { text-align: center; }
.sh-center p { margin: 0 auto; }

/* ── IMAGE CARDS GRID ── */
.img-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.img-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 0.5px solid var(--border);
  cursor: pointer; transition: transform .18s;
  text-decoration: none; display: block; color: inherit;
}
.img-card:hover { transform: translateY(-3px); }
.img-card img { width: 100%; height: 170px; object-fit: cover; display: block; }
.img-card-body { padding: 1.25rem; }
.img-card-body h3 { font-size: 16px; color: var(--navy); margin-bottom: .35rem; }
.img-card-body p { font-size: 13px; color: var(--text-s); line-height: 1.6; font-family: 'Inter', sans-serif; }
.img-card-link {
  font-size: 11px; color: var(--accent); margin-top: .65rem;
  display: flex; align-items: center; gap: 4px;
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

/* ── FEATURE ROW ── */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; max-width: 900px; margin: 0 auto; align-items: center;
}
.feature-img { border-radius: 10px; overflow: hidden; border: 0.5px solid var(--border); }
.feature-img img { width: 100%; height: 320px; object-fit: cover; display: block; }
.ft-content h2 { font-size: 28px; color: var(--navy); margin-bottom: 1rem; line-height: 1.25; }
.ft-content p { font-size: 14px; color: var(--text-s); line-height: 1.75; font-family: 'Inter', sans-serif; margin-bottom: 1rem; }

/* ── CHECKLIST ── */
.checks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.checks li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-s); font-family: 'Inter', sans-serif; }
.ck {
  width: 20px; height: 20px; background: var(--teal-l);
  border-radius: 3px; display: flex; align-items: center;
  justify-content: center; color: var(--teal); font-size: 12px;
  flex-shrink: 0; margin-top: 1px;
}
.checks strong { color: var(--navy); font-weight: 600; }

/* ── INFO BOX ── */
.info-box { background: var(--navy); border-radius: var(--radius-lg); padding: 2rem; }
.info-box h3 { font-size: 20px; color: #fff; margin-bottom: .4rem; }
.info-box .sub { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 1.5rem; line-height: 1.5; font-family: 'Inter', sans-serif; }
.info-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: .9rem; padding-bottom: .9rem; border-bottom: 0.5px solid rgba(255,255,255,.08); }
.info-row:last-of-type { border-bottom: none; margin-bottom: 1.25rem; }
.info-row i { color: var(--accent); font-size: 16px; margin-top: 2px; }
.info-row-t { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; font-family: 'Inter', sans-serif; }
.info-row-t strong { display: block; color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px; }

/* ── SERVICE LIST ── */
.srv-list { max-width: 860px; margin: 0 auto; border: 0.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.srv-row { padding: 1.75rem; border-bottom: 0.5px solid var(--border); display: grid; grid-template-columns: 48px 1fr; gap: 1.5rem; align-items: flex-start; }
.srv-row:last-child { border-bottom: none; }
.srv-icon { width: 42px; height: 42px; background: var(--teal-l); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 19px; flex-shrink: 0; }
.srv-row h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--navy); margin-bottom: .35rem; font-family: 'Inter', sans-serif; }
.srv-row p { font-size: 13px; color: var(--text-s); line-height: 1.65; font-family: 'Inter', sans-serif; }

/* ── TEAM GRID ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); gap: 1px; background: var(--border); border: 0.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.team-card { background: var(--bg); padding: 1.5rem; }
.team-avatar { width: 40px; height: 40px; border-radius: 5px; background: var(--teal-l); display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 18px; margin-bottom: .85rem; }
.team-card h4 { font-size: 12px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .3rem; font-family: 'Inter', sans-serif; }
.team-card p { font-size: 12px; color: var(--text-m); line-height: 1.55; font-family: 'Inter', sans-serif; }

/* ── NUTRIZIONE CARDS ── */
.nutr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; max-width: 900px; margin: 0 auto; }
.nutr-card { background: var(--bg); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; border-top: 3px solid var(--accent); }
.nutr-icon { width: 40px; height: 40px; background: var(--nutr-l); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--nutr); font-size: 19px; margin-bottom: 1rem; }
.nutr-card h3 { font-size: 15px; color: var(--navy); margin-bottom: .4rem; }
.nutr-card p { font-size: 13px; color: var(--text-s); line-height: 1.6; font-family: 'Inter', sans-serif; }

/* ── DARK STRIP ── */
.dark-strip { background: var(--navy); padding: 4rem 2.5rem; text-align: center; border-top: 3px solid var(--accent); }
.dark-strip h2 { font-size: 28px; color: #fff; margin-bottom: .85rem; }
.dark-strip p { font-size: 14px; color: rgba(255,255,255,.55); max-width: 500px; margin: 0 auto 2rem; line-height: 1.7; font-family: 'Inter', sans-serif; }

/* ── FORM ── */
.contact-grid { max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem; }
.form-stack { display: flex; flex-direction: column; gap: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-stack input, .form-stack textarea, .form-stack select {
  width: 100%; padding: 10px 13px; font-size: 13px;
  border: 0.5px solid var(--border-s); border-radius: var(--radius);
  background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif;
  outline: none; transition: border-color .15s;
}
.form-stack input:focus, .form-stack textarea:focus, .form-stack select:focus { border-color: var(--accent); }
.form-stack textarea { height: 100px; resize: vertical; }
.privacy-note { font-size: 11px; color: var(--text-m); line-height: 1.5; font-family: 'Inter', sans-serif; }
.privacy-note a { color: var(--accent); }
.success-msg { display: none; background: var(--teal-l); color: var(--teal); padding: 12px; border-radius: var(--radius); font-size: 13px; text-align: center; border: 0.5px solid #9ae6d4; font-weight: 600; font-family: 'Inter', sans-serif; }

/* ── COVER TAG ── */
.coverage { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 1rem; }
.cover-tag { background: rgba(255,255,255,.08); border: 0.5px solid rgba(255,255,255,.15); border-radius: 4px; padding: 5px 12px; font-size: 12px; color: rgba(255,255,255,.65); font-family: 'Inter', sans-serif; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 3rem 2.5rem 1.5rem; border-top: 3px solid var(--accent); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; max-width: 900px; margin: 0 auto 2rem; }
.footer-brand .brand-name { font-size: 14px; font-weight: 700; color: #fff; font-family: 'Inter', sans-serif; margin-bottom: .5rem; }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.65; max-width: 220px; font-family: 'Inter', sans-serif; }
.footer-brand .piva { font-size: 10px; color: rgba(255,255,255,.25); margin-top: .75rem; font-family: 'Inter', sans-serif; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: .85rem; font-family: 'Inter', sans-serif; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a { font-size: 12px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .12s; font-family: 'Inter', sans-serif; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 0.5px solid rgba(255,255,255,.1); padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: center; max-width: 900px; margin: 0 auto; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.3); font-family: 'Inter', sans-serif; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 11px; color: rgba(255,255,255,.3); text-decoration: none; font-family: 'Inter', sans-serif; }
.footer-links a:hover { color: rgba(255,255,255,.7); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links .nav-btn { display: none; }
  .hero-img { min-height: 360px; }
  .hero-img h1 { font-size: 26px; }
  .hero-content { padding: 3rem 1.25rem 2.5rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .section { padding: 3rem 1.25rem; }
  .img-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .nutr-grid { grid-template-columns: 1fr; }
}

.footer-h{font-size:13px;font-weight:600;color:#fff;margin-bottom:.75rem;text-transform:uppercase;letter-spacing:.04em}
