/* =========================================================
   GinPent — sitewide stylesheet
   Brand tokens derived from the live ginpent.it theme
   (primary #002a99, secondary #006eda, gold #ffc700 — secondary/teal/coral darkened from the original theme for WCAG AA text contrast)
   ========================================================= */

:root {
  --color-primary: #012a8c;
  --color-primary-dark: #011c5c;
  --color-primary-light: #1e49b8;
  --color-secondary: #006eda;
  --color-gold: #f2b705;
  --color-gold-soft: #fdf1d3;
  --color-coral: #ff6a55;
  --color-ink: #101a33;
  --color-text: #232a3d;
  --color-text-soft: #5a6178;
  --color-bg: #ffffff;
  --color-bg-soft: #f4f7fd;
  --color-bg-soft-2: #eaf0fc;
  --color-border: #e3e7f2;
  --color-navy: #071a4a;
  --color-navy-2: #050a14;
  --color-white: #ffffff;

  --font-body: "Roboto", "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-heading: "Roboto", "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;

  --edge: clamp(20px, 5vw, 72px);
  --maxw: 1240px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 6px 18px -12px rgba(5, 20, 54, 0.35);
  --shadow-md: 0 18px 40px -20px rgba(5, 20, 54, 0.45);
  --shadow-lg: 0 28px 64px -24px rgba(5, 20, 54, 0.5);
  --header-h: 96px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  line-height: 1.6;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-secondary); }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.18; margin: 0; color: var(--color-ink); letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
button { font-family: inherit; }

:focus-visible { outline: 2px solid var(--color-secondary); outline-offset: 2px; }
::selection { background: var(--color-gold-soft); color: var(--color-ink); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 18px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- eyebrow / kicker ---------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 14px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); color: #fff; }
.btn-gold { background: var(--color-gold); color: var(--color-ink); }
.btn-gold:hover { background: #d9a300; color: var(--color-ink); }
.btn-youtube { background: #eb0000; color: #fff; }
.btn-youtube:hover { background: #cc0000; color: #fff; }
.btn-outline { border-color: var(--color-primary); color: var(--color-primary); background: transparent; }
.btn-outline:hover { background: var(--color-bg-soft-2); color: var(--color-primary); }
.btn-outline-light { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,.14); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* ---------- badges/tags ---------- */
.badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--color-bg-soft-2);
  color: var(--color-primary);
}
.badge-gold { background: var(--color-gold-soft); color: #8a6316; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { height: 58px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; list-style: none; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a, .main-nav .nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-text);
  padding: 10px 12px;
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.main-nav a:hover, .main-nav .nav-parent:hover { color: var(--color-primary); background: var(--color-bg-soft); }
.main-nav .is-active > a { color: var(--color-primary); }
.main-nav .caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform .15s; }
.nav-parent[aria-expanded="true"] .caret { transform: rotate(-135deg); margin-top: 3px; }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(640px, 92vw);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s, transform .15s, visibility .15s;
}
.nav-parent:hover + .dropdown,
.nav-parent[aria-expanded="true"] + .dropdown,
.dropdown:hover,
.dropdown:focus-within { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.4;
}
.dropdown li a:hover { background: var(--color-bg-soft-2); color: var(--color-primary-dark); }
.dropdown li:last-child { grid-column: 1 / -1; border-top: 1px solid var(--color-border); margin-top: 10px; padding-top: 10px; }
.dropdown li:last-child a { color: var(--color-secondary); font-weight: 700; }

.header-cta { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 8px;
  border: 1.5px solid var(--color-border);
  background: #fff;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--color-ink); position: relative; transition: transform .2s, opacity .2s;
}
.nav-toggle::before { position: absolute; transform: translateY(-6px); }
.nav-toggle::after { position: absolute; transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }

@media (max-width: 980px) {
  .main-nav { position: fixed; inset: var(--header-h) 0 0 0; background: #fff; padding: 10px var(--edge) 40px; overflow-y: auto; transform: translateX(100%); transition: transform .25s ease; align-items: flex-start; }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; width: 100%; gap: 0; }
  .main-nav > ul > li { border-bottom: 1px solid var(--color-border); }
  .main-nav > ul > li > a, .main-nav .nav-parent { width: 100%; padding: 16px 4px; font-size: 16px; justify-content: space-between; }
  .dropdown { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; display: none; padding: 0 0 10px 12px; }
  .nav-parent[aria-expanded="true"] + .dropdown { display: block; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  .site-header { --header-h: 64px; }
  .brand img { height: 46px; }
  .header-cta { gap: 10px; }
}
@media (max-width: 380px) {
  .header-cta .btn-primary.btn-sm { padding: 9px 14px; font-size: 13px; }
}

/* =========================================================
   HERO / SECTIONS
   ========================================================= */
.hero { background: linear-gradient(180deg, var(--color-bg-soft) 0%, #fff 72%); }
.section { padding: clamp(48px, 6vw, 88px) 0; }
.section-tight { padding: clamp(32px, 4vw, 56px) 0; }
.section-navy { background: var(--color-navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-primary { background: var(--color-primary); color: #fff; }
.section-primary h2 { color: #fff; }
.section-soft { background: var(--color-bg-soft); }
.section-gold-soft { background: var(--color-gold-soft); }

/* ---------- lightbox gallery ---------- */
.lightbox-trigger { cursor: zoom-in; }
.lightbox-overlay { position: fixed; inset: 0; background: rgba(0,7,20,.88); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 56px 20px; }
.lightbox-overlay.is-open { display: flex; }
.lightbox-figure { max-width: min(90vw,1000px); max-height: 86vh; margin: 0; display: flex; flex-direction: column; align-items: center; }
.lightbox-img { max-width: 100%; max-height: 78vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-cap { color: #fff; margin-top: 14px; font-size: 14px; text-align: center; }
.lightbox-close { position: absolute; top: 18px; right: 22px; background: rgba(255,255,255,.12); border: 0; color: #fff; font-size: 22px; line-height: 1; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; }
.lightbox-close:hover { background: rgba(255,255,255,.24); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: 0; color: #fff; font-size: 18px; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.24); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; font-size: 15px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 10px; right: 10px; }
}

/* ---------- gin-pent page: banners, badges, alerts ---------- */
.banner-strip { background: var(--color-secondary); color: #fff; text-align: center; padding: 22px var(--edge); font-size: clamp(16px,2vw,19px); font-weight: 600; }

.badge-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 20px; }
.badge-pill { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--color-border); border-radius: 100px; padding: 12px 22px; font-size: 14px; font-weight: 600; color: var(--color-ink); box-shadow: var(--shadow-sm); }
.badge-pill svg { flex: 0 0 auto; color: #008287; }

.leaf-badge-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 30px; }
.leaf-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--color-border); border-radius: 100px; padding: 14px 30px; font-size: 14.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--color-ink); box-shadow: var(--shadow-sm); }
.leaf-badge svg { color: #008287; flex: 0 0 auto; }

.teal-banner { background: #008287; color: #fff; text-align: center; border-radius: var(--radius-md); padding: 18px 24px; margin-top: 26px; font-weight: 600; }

.alert-band { background: #e61e00; color: #fff; text-align: center; padding: clamp(32px,4vw,48px) var(--edge); }
.alert-band h2 { color: #fff; font-size: clamp(22px,2.6vw,28px); }
.alert-band ul { list-style: none; margin: 18px auto 0; padding: 0; display: grid; gap: 10px; max-width: 70ch; }
.alert-band li { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 15.5px; }
.alert-band li svg { flex: 0 0 auto; }

.btn-pill-outline { display: inline-flex; align-items: center; justify-content: center; background: #fff; color: var(--color-primary); border-radius: var(--radius-md); padding: 18px 40px; font-weight: 600; font-size: 16px; text-decoration: none; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s; }
.btn-pill-outline:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--color-primary); }

.section-center .container { text-align: center; }
.section-center .badge-row, .section-center .leaf-badge-row { justify-content: center; }
.section-center .video-card { text-align: left; }

.hero-grid { display: grid; grid-template-columns: minmax(0,7fr) minmax(0,5fr); gap: clamp(28px,5vw,72px); align-items: center; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--color-bg-soft); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-4-3 { aspect-ratio: 4/3; }
.media-4-5 { aspect-ratio: 4/5; }
.media-16-9 { aspect-ratio: 16/9; }
.media-1-1 { aspect-ratio: 1/1; }
.media-contain { object-fit: contain !important; padding: 18px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid > *:first-child { order: 2; }
  .hero-grid > *:last-child { order: 1; }
  .hero-grid.hero-grid-text-first > *:first-child { order: 1; }
  .hero-grid.hero-grid-text-first > *:last-child { order: 2; }
}

/* ---------- photo hero (homepage) ---------- */
.hero-photo {
  position: relative;
  overflow: hidden;
  color: #fff;
  width: 100%;
  aspect-ratio: 2.5 / 1;
  min-height: 460px;
}
.hero-photo-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(3,10,10,.72) 0%, rgba(3,10,10,.4) 40%, rgba(3,10,10,.1) 68%, rgba(3,10,10,0) 100%);
}
.hero-photo-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; padding-top: clamp(28px,5vw,56px); padding-bottom: clamp(28px,5vw,56px); }
.hero-photo-heading h1 { font-size: clamp(40px,6.2vw,72px); color: #fff; text-shadow: 0 6px 30px rgba(0,0,0,.35); }
.hero-photo-sub {
  font-size: clamp(18px,2.3vw,26px);
  font-weight: 700;
  color: #fff;
  margin: 10px 0 0;
  text-shadow: 0 4px 18px rgba(0,0,0,.35);
  max-width: 30ch;
}
.hero-photo-card {
  margin-top: clamp(24px,4vw,40px);
  max-width: 580px;
  background: rgba(7,50,58,.82);
  border-radius: var(--radius-lg);
  padding: clamp(28px,3.6vw,42px) clamp(28px,3.6vw,38px);
  box-shadow: var(--shadow-lg);
}
.hero-photo-card h2 { color: #fff; font-size: 18px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 24px; }
.hero-check-list { list-style: none; display: grid; gap: 20px; margin: 0; padding: 0; }
.hero-check-list li { display: flex; align-items: flex-start; gap: 15px; color: #fff; font-weight: 700; font-size: 17px; line-height: 1.4; }
.hero-check-list li .label { flex: 1 1 0; min-width: 0; }
.hero-check-list .check {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  margin-top: 1px;
  border-radius: 50%;
  background: #fff;
  color: #0a4a3a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-check-list .check svg { width: 15px; height: 15px; }
.hero-photo-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: clamp(28px,4vw,36px); }
.hero-photo-actions .btn { padding: 17px 34px; font-size: 16.5px; }

@media (max-width: 900px) {
  .hero-photo { aspect-ratio: auto; min-height: 560px; }
  .hero-photo-content { justify-content: flex-start; padding-top: clamp(40px,9vw,56px); }
}
@media (max-width: 560px) {
  .hero-photo { min-height: 600px; }
  .hero-photo-card { max-width: 100%; }
}

.stat-band { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(18px,3vw,36px); }
.stat { border-left: 2px solid rgba(255,255,255,.28); padding-left: 16px; }
.stat.accent { border-left-color: var(--color-gold); }
.stat-num { font-family: var(--font-heading); font-weight: 800; font-size: clamp(30px,3.2vw,44px); line-height: 1; }
.stat.accent .stat-num { color: var(--color-gold); }
.stat-label { font-size: 13.5px; color: rgba(255,255,255,.72); margin-top: 8px; }
@media (max-width: 720px) { .stat-band { grid-template-columns: repeat(2,1fr); row-gap: 26px; } }

/* ---------- grids / cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.card-accent { border-top: 4px solid var(--color-primary); border-radius: 4px var(--radius-md) var(--radius-md) var(--radius-md); }
.card-accent.gold { border-top-color: var(--color-gold); }
.card-tint { background: var(--color-bg-soft); border: none; }
.card-tint.gold { background: var(--color-gold-soft); }

.product-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); }
.product-card .shot { aspect-ratio: 4/3; background: var(--color-bg-soft); }
.product-card .body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.product-card .body p { flex: 1; }
.product-meta { margin: 4px 0 0; padding: 0; list-style: none; font-size: 14px; line-height: 1.6; color: var(--color-text-soft); display: grid; gap: 12px; }
.product-meta dt { font-weight: 700; color: var(--color-secondary); display: block; }
.product-meta dd { display: block; margin: 2px 0 0; }

/* ---------- product bands (integratori-ginpent) ---------- */
.product-band { padding: clamp(40px,5vw,64px) 0; }
.product-band-tint { background: rgba(0,125,247,.06); }
.product-row { display: grid; grid-template-columns: minmax(0,420px) 1fr; gap: clamp(28px,4vw,52px); align-items: center; }
.product-row .media-frame { width: 100%; margin: 0 auto; }
.product-info h2 { font-size: clamp(24px,2.8vw,32px); color: var(--color-secondary); }
.product-callout { border: 1px solid #008287; border-radius: var(--radius-md); padding: 20px 22px; margin: 18px 0; }
.product-callout h3 { font-size: 17px; color: #008287; margin: 0 0 8px; }
.pharmacy-banner { display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(45deg, #008287 25%, var(--color-secondary) 75%); color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; font-size: 13.5px; border-radius: var(--radius-md); padding: 14px 26px; margin: 14px 0; box-shadow: var(--shadow-sm); text-decoration: none; }
@media (max-width: 760px) {
  .product-row { grid-template-columns: 1fr; }
  .product-row .media-frame { max-width: 340px; }
}

/* ---------- GinPent Slim spotlight ---------- */
.slim-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,1fr); gap: clamp(32px,5vw,64px); align-items: end; }
@media (max-width: 960px) { .slim-grid { grid-template-columns: 1fr; } }

.slim-title { font-size: clamp(30px,3.6vw,42px); color: var(--color-secondary); margin-top: 10px; }
.slim-subtitle { font-size: clamp(15px,1.6vw,18px); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #08846d; margin-top: 6px; }
.slim-lede { margin-top: 18px; font-size: 16.5px; line-height: 1.7; max-width: 56ch; }
.slim-highlight { color: var(--color-secondary); }

.slim-card { margin-top: 28px; border: 1.5px solid #b9e4dc; border-radius: var(--radius-lg); background: #fff; padding: clamp(24px,3vw,32px); max-width: 620px; }
.slim-card h3 { color: #08846d; font-size: 19px; margin-bottom: 14px; }
.slim-card > p { color: var(--color-text); font-size: 15px; line-height: 1.7; margin: 0 0 16px; }
.slim-steps { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 12px; }
.slim-steps li { font-size: 15px; line-height: 1.7; color: var(--color-text); }
.slim-steps li strong { color: var(--color-secondary); }
.btn-outline-teal { border-color: #08846d; color: #08846d; background: transparent; letter-spacing: .05em; text-transform: uppercase; font-size: 13px; }
.btn-outline-teal:hover { background: #eafaf6; color: #08846d; }

.slim-media { display: flex; flex-direction: column; gap: 20px; }
.slim-carousel { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 1/1; background: var(--color-bg-soft); }
.slim-carousel-track { position: relative; list-style: none; margin: 0; padding: 0; width: 100%; height: 100%; }
.slim-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease; }
.slim-slide.is-active { opacity: 1; }
.slim-slide img { width: 100%; height: 100%; object-fit: cover; }
.slim-carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-secondary); color: #fff; border: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.slim-carousel-nav:hover { background: var(--color-primary); }
.slim-carousel-nav.prev { left: 14px; }
.slim-carousel-nav.next { right: 14px; }
.slim-carousel-nav svg { width: 20px; height: 20px; }

.slim-cta-stack { display: grid; gap: 14px; }
.slim-btn-buy, .slim-btn-pharmacy {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 24px; border-radius: 12px;
  font-weight: 800; font-size: 15.5px; letter-spacing: .04em; text-transform: uppercase;
  color: #fff;
}
.slim-btn-buy { background: linear-gradient(90deg,#1fa463,#08846d); }
.slim-btn-buy:hover { background: linear-gradient(90deg,#188b53,#08927a); color: #fff; }
.slim-btn-pharmacy { background: linear-gradient(90deg,#0d63d6,#3aa0ff); }
.slim-btn-pharmacy:hover { background: linear-gradient(90deg,#0b53b3,#2e8bdb); color: #fff; }
.slim-btn-icon { flex: 0 0 auto; display: inline-flex; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.22); align-items: center; justify-content: center; }
.slim-btn-icon svg { width: 15px; height: 15px; }

.slim-divider { border: 0; height: 1.5px; margin: 0; background: linear-gradient(90deg, transparent, #b9e4dc 15%, #08846d 50%, #b9e4dc 85%, transparent); }

/* ---------- Integratori GinPent® showcase ---------- */
.products-heading { text-align: center; font-size: clamp(26px,3.2vw,36px); color: var(--color-secondary); margin-bottom: 36px; }
.products-grid { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(0,1fr); gap: clamp(28px,4vw,48px); align-items: center; }
@media (max-width: 900px) { .products-grid { grid-template-columns: 1fr; } }

.products-banner { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.products-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }

.products-tiles { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.product-tile { display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
.product-tile-shot {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
}
.product-tile-shot img { width: 100%; height: 100%; object-fit: contain; }
.product-tile-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px; border-radius: 100px;
  background: var(--color-primary); color: #fff;
  font-weight: 800; font-size: 13.5px; letter-spacing: .04em; text-transform: uppercase;
}
.product-tile-btn:hover { background: var(--color-primary-dark); color: #fff; }
.product-tile-btn svg { width: 15px; height: 15px; }

/* ---------- FAQ boxes (domande page) ---------- */
.faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.faq-box { border-radius: var(--radius-lg); padding: clamp(22px,2.6vw,30px); }
.faq-box:nth-child(4n+1), .faq-box:nth-child(4n+4) { background: linear-gradient(135deg, rgba(0,125,247,.10), rgba(0,125,247,.02)); }
.faq-box:nth-child(4n+2), .faq-box:nth-child(4n+3) { background: linear-gradient(135deg, rgba(10,168,138,.10), rgba(10,168,138,.02)); }
.faq-q { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 12px; font-size: clamp(16px,1.9vw,18.5px); font-weight: 700; color: var(--color-secondary); }
.faq-q svg { flex: 0 0 auto; margin-top: 2px; color: #008287; }
.faq-box .answer { font-size: 15.5px; line-height: 1.65; margin: 0; color: var(--color-text-soft); }
@media (max-width: 760px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ---------- testimonials ---------- */
.testi-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; }
.testi-tab {
  border: 1.5px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
}
.testi-tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
.testi-tab.is-active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

.testi-group { margin-bottom: 8px; }
.testi-group > summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}
.testi-group > summary::-webkit-details-marker { display: none; }
.testi-group[open] > summary { margin-bottom: 14px; }
.testi-group .plus { font-size: 20px; color: var(--color-primary); transition: transform .2s; }
.testi-group[open] .plus { transform: rotate(45deg); }
.testi-title { display: flex; align-items: center; gap: 10px; text-transform: uppercase; }
.testi-title svg { flex: 0 0 auto; color: var(--color-primary); }

.testi-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-secondary);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
}
.testi-card cite { display: block; margin-top: 10px; font-style: normal; font-weight: 700; font-size: 13.5px; color: var(--color-primary); }

.quote-band { text-align: center; }
.quote-mark { font-family: var(--font-heading); font-size: 60px; line-height: .6; color: var(--color-gold); }
.pull-quote { font-family: var(--font-heading); font-weight: 500; font-style: italic; font-size: clamp(22px,3vw,34px); line-height: 1.32; margin: 18px auto 0; max-width: 26ch; }

/* ---------- video grid ---------- */
.video-card { display: block; border-radius: var(--radius-md); overflow: hidden; background: #000; box-shadow: var(--shadow-sm); }
.video-card .thumb { display: block; position: relative; width: 100%; aspect-ratio: 16/9; background-size: cover; background-position: center; }
.video-card .thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,20,54,0) 40%, rgba(5,20,54,.75) 100%);
}
.video-card .play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.video-card .play svg { width: 56px; height: 56px; filter: drop-shadow(0 6px 14px rgba(0,0,0,.4)); }
.video-card .cap { position: relative; z-index: 1; color: #fff; font-size: 13.5px; font-weight: 600; padding: 14px 16px; line-height: 1.4; }
.video-card iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }

/* ---------- video spotlight (homepage) ---------- */
.video-spotlight { padding: clamp(48px,6vw,88px) 0; background: linear-gradient(45deg, #27395c 25%, #007bff 75%); color: #fff; }
.video-spotlight-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(28px,4vw,48px); align-items: center; }
@media (max-width: 900px) { .video-spotlight-grid { grid-template-columns: 1fr; } }

.video-spotlight-card { background: rgba(0,7,43,.45); border-radius: var(--radius-lg); padding: clamp(30px,4vw,44px); }
.video-spotlight-card h2 { color: #bddeff; font-size: clamp(22px,2.6vw,27px); font-weight: 700; line-height: 1.3; margin: 0; }
.video-spotlight-card p { color: #05f3ff; font-size: clamp(15px,1.8vw,17px); margin: 18px 0 0; line-height: 1.6; }
.video-spotlight-card p em { font-style: normal; }

.video-spotlight-media.video-card { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.video-spotlight-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #ea0037; color: #fff;
  padding: 18px 44px; border-radius: 100px;
  font-weight: 700; font-size: 15px; letter-spacing: .06em; text-transform: uppercase;
}
.video-spotlight-btn:hover { background: #d6002f; color: #fff; }
.video-spotlight-btn svg { width: 18px; height: 18px; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--color-ink); }
.field.full { grid-column: 1 / -1; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.input, textarea.input, select.input {
  font: inherit;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
}
.input:focus, textarea.input:focus { border-color: var(--color-secondary); }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; font-weight: 400; color: var(--color-text-soft); }
.checkbox-row input { margin-top: 3px; }

/* ---------- breadcrumb ---------- */
.breadcrumb { font-size: 13px; color: var(--color-text-soft); margin-bottom: 18px; }
.breadcrumb a { color: var(--color-text-soft); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb .sep { margin: 0 6px; }

/* ---------- article / long-form content ---------- */
.article-body { max-width: 76ch; font-size: 16px; line-height: 1.75; }
.article-body p a { text-decoration: underline; text-underline-offset: 2px; }
.article-body h2 { font-size: clamp(21px,2.4vw,26px); margin: 2em 0 .6em; }
.article-body h3 { font-size: 18px; margin: 1.6em 0 .5em; }
.article-body p { margin: 0 0 1.1em; }
.article-body ul, .article-body ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.article-body li { margin-bottom: .4em; }
.article-body blockquote { margin: 1.6em 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--color-secondary); color: var(--color-text-soft); font-style: italic; }
.article-body figure { margin: 1.8em 0; }
.article-body figcaption { font-size: 13px; color: var(--color-text-soft); margin-top: 8px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; font-size: 13px; color: var(--color-text-soft); margin: 10px 0 30px; }

.source-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.source-list li { padding: 14px 18px; background: var(--color-bg-soft); border-radius: var(--radius-sm); font-size: 14.5px; line-height: 1.5; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--color-primary); }
.link-arrow .arrow { display: inline-block; transition: transform .15s; }
.link-arrow:hover .arrow { transform: translateX(5px); }

/* ---------- discover / approfondimenti split ---------- */
.discover-split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.discover-panel { padding: clamp(28px,3.6vw,44px) var(--edge); display: flex; flex-direction: column; }
.discover-panel-light { background: #fff; align-items: flex-start; justify-content: center; }
.discover-panel-light h2 { font-size: clamp(24px,2.8vw,32px); color: var(--color-primary); margin-bottom: 20px; }
.discover-panel-light .media-frame { width: 100%; max-width: 360px; margin: 0 auto 22px; background: transparent; box-shadow: none; border-radius: 0; }
.discover-panel-light .media-frame .media-contain { padding: 0; }
.discover-panel-light .pill-btn-outline { margin-left: auto; margin-right: auto; }
.discover-panel-dark { background: linear-gradient(45deg, var(--color-primary) 25%, var(--color-secondary) 75%); align-items: stretch; justify-content: center; gap: 18px; }
.discover-panel-dark h2 { font-size: clamp(24px,2.8vw,32px); color: #fff; margin-bottom: 6px; text-align: center; }
.discover-links { display: flex; flex-direction: column; gap: 14px; }
.pill-btn { display: inline-flex; align-items: center; justify-content: center; text-align: center; padding: 18px 32px; border-radius: 100px; font-weight: 700; font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: transform .15s, box-shadow .15s, background .15s, color .15s; }
.pill-btn-solid { background: #fff; color: var(--color-primary); }
.pill-btn-solid:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--color-primary); }
.pill-btn-outline { border: 1.5px solid var(--color-primary); color: var(--color-primary); background: transparent; }
.pill-btn-outline:hover { background: var(--color-primary); color: #fff; }
@media (max-width: 768px) {
  .discover-split { grid-template-columns: 1fr; }
  .discover-panel-light { align-items: center; text-align: center; }
}

.text-soft { color: var(--color-text-soft); }
.lede { font-size: 18px; line-height: 1.6; color: var(--color-text-soft); }
.max-60 { max-width: 60ch; }
.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--color-navy-2); color: rgba(255,255,255,.82); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 36px; align-items: start; padding-top: 52px; padding-bottom: 36px; }
.footer-brand picture { display: inline-block; background: #fff; padding: 10px 18px; border-radius: var(--radius-md); margin-bottom: 16px; line-height: 0; }
.footer-brand img { height: 34px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 34ch; color: rgba(255,255,255,.68); }
.footer-heading { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; }
.footer-links a { color: rgba(255,255,255,.82); }
.footer-links a:hover { color: var(--color-gold); }
.footer-partner-badge { background: #fff; border-radius: 6px; padding: 12px 14px; display: inline-block; margin-bottom: 12px; }
.footer-partner-badge img { width: 150px; max-width: 100%; }
.footer-cta-group { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 20px; padding-bottom: 36px; font-size: 12px; line-height: 1.6; color: rgba(255,255,255,.48); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300;
  max-width: 640px; margin: 0 auto;
  background: var(--color-navy-2); color: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 18px 20px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  font-size: 13.5px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; flex: 1 1 260px; color: rgba(255,255,255,.85); }
.cookie-banner a { color: var(--color-gold); }

/* ---------- utility ---------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.divider { height: 1px; background: var(--color-border); border: 0; margin: 0; }

@media (max-width: 620px) {
  .hero-grid, .grid-2 { gap: 20px; }
  .stat-band { gap: 20px; }
}
