/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #D85A30;
  --orange-dark: #b84a22;
  --orange-light: #F5C4B3;
  --orange-pale: #FAECE7;
  --dark: #1a1a18;
  --mid: #3a3a38;
  --muted: #6b6b68;
  --border: #e8e6e0;
  --bg: #fafaf8;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-orange: 0 8px 24px rgba(216,90,48,0.28);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── TOPBAR ── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  padding: 9px 0;
}
.topbar .inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.topbar a { color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 6px; transition: color .2s; }
.topbar a:hover { color: var(--orange-light); }
.topbar .left, .topbar .right { display: flex; align-items: center; gap: 18px; }
.topbar svg { width: 13px; height: 13px; }
.topbar .right a svg { fill: currentColor; }

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 20px rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px; background: var(--orange);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark svg { width: 25px; height: 25px; fill: white; }
.logo-text .line1 { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--dark); letter-spacing: -0.5px; }
.logo-text .line2 { font-size: 9px; font-weight: 500; color: var(--muted); letter-spacing: 2.5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--mid);
  padding: 8px 13px; border-radius: 8px; transition: all .2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { background: var(--orange-pale); color: var(--orange); }
.nav-links a.cta {
  background: var(--orange); color: white; margin-left: 6px;
}
.nav-links a.cta:hover { background: var(--orange-dark); }

.nav-search-btn { background: none; border: none; cursor: pointer; padding: 8px; color: var(--muted); }
.nav-search-btn:hover { color: var(--orange); }

/* ── SEARCH OVERLAY ── */
#search-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(26,26,24,0.85);
  backdrop-filter: blur(6px);
  align-items: flex-start; justify-content: center;
  padding-top: 12vh;
}
#search-overlay.open { display: flex; }
.search-box {
  width: 100%; max-width: 680px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  overflow: hidden;
  margin: 0 1.5rem;
}
.search-input-row {
  display: flex; align-items: center; gap: 12px;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--border);
}
.search-input-row svg { width: 20px; height: 20px; stroke: var(--muted); fill: none; stroke-width: 2; flex-shrink: 0; }
.search-input-row input {
  flex: 1; border: none; outline: none;
  font-size: 17px; font-family: 'DM Sans', sans-serif;
  color: var(--dark); background: transparent;
}
.search-input-row input::placeholder { color: var(--muted); }
.search-close {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 22px; line-height: 1;
  padding: 4px 6px; border-radius: 6px; transition: all .15s; flex-shrink: 0;
}
.search-close:hover { background: var(--orange-pale); color: var(--orange); }
.search-results { max-height: 420px; overflow-y: auto; }
.search-result-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 1rem 1.4rem; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background .15s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--orange-pale); }
.sr-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--orange-pale); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.sr-icon svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.sr-text .sr-page { font-size: 11px; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.sr-text .sr-title { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.sr-text .sr-snippet { font-size: 13px; color: var(--muted); line-height: 1.5; }
.sr-text mark { background: #fff3b0; color: var(--dark); border-radius: 2px; padding: 0 2px; }
.search-empty { padding: 2.5rem; text-align: center; color: var(--muted); font-size: 15px; }
.search-hint {
  padding: .8rem 1.4rem;
  font-size: 12px; color: var(--muted);
  background: var(--bg);
  display: flex; gap: 1.5rem;
}
.search-hint kbd {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; padding: 1px 6px; font-size: 11px; font-family: monospace;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--dark); padding: 4rem 0 3.5rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(216,90,48,0.18) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(216,90,48,0.18) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero::after {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(216,90,48,0.12) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(216,90,48,0.15); border: 1px solid rgba(216,90,48,0.3);
  color: var(--orange-light); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 13px; border-radius: 100px; margin-bottom: 1.2rem;
}
.page-hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight:800;
  color: white; line-height: 1.1; letter-spacing: -1px; margin-bottom: 1rem;
}
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,0.6); max-width: 580px;
  font-weight: 300; line-height: 1.7;
}

/* ── PAGINA LEGALE (privacy/cookie) — accordion ── */
.legal-section { padding: 3.5rem 0 5rem; background: var(--bg); }
.container.legal { max-width: 860px; }

/* prosa legale (whistleblowing) */
.legal-prose h2 { font-family:'DM Sans',sans-serif; font-size:1.25rem; font-weight:700; color:var(--dark); margin:2rem 0 .8rem; }
.legal-prose h3 { font-family:'DM Sans',sans-serif; font-size:1.05rem; font-weight:700; color:var(--orange); margin:2rem 0 .6rem; }
.legal-prose p { font-size:15.5px; line-height:1.75; color:var(--mid); margin-bottom:1rem; }
.legal-prose ul { margin:0 0 1rem; padding-left:1.3rem; }
.legal-prose li { font-size:15.5px; line-height:1.7; color:var(--mid); margin-bottom:.4rem; }
.legal-prose a { color:var(--orange); font-weight:600; text-decoration:none; word-break:break-word; }
.legal-prose a:hover { text-decoration:underline; }
.legal-acc { display: flex; flex-direction: column; gap: .9rem; }
.legal-acc-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; transition: border-color .2s;
}
.legal-acc-item.open { border-color: var(--mid); }
.legal-acc-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.5rem; background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 1.1rem; font-weight: 600;
  color: var(--orange); text-align: left;
}
.legal-acc-sign { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.legal-acc-sign::before, .legal-acc-sign::after {
  content: ''; position: absolute; background: var(--orange); border-radius: 2px;
}
.legal-acc-sign::before { width: 16px; height: 2px; top: 8px; left: 1px; }
.legal-acc-sign::after { width: 2px; height: 16px; top: 1px; left: 8px; transition: transform .25s; }
.legal-acc-item.open .legal-acc-sign::after { transform: scaleY(0); }
.legal-acc-body {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.legal-acc-item.open .legal-acc-body { max-height: 2600px; }
.legal-acc-inner { padding: 0 1.5rem 1.4rem; }
.legal-acc-inner p {
  font-size: 15.5px; line-height: 1.75; color: var(--mid); margin-bottom: 1rem;
}
.legal-acc-inner p:last-child { margin-bottom: 0; }
.legal-acc-inner ul { margin: 0 0 1rem; padding-left: 1.3rem; }
.legal-acc-inner li {
  font-size: 15.5px; line-height: 1.7; color: var(--mid); margin-bottom: .35rem;
}
.legal-acc-inner a { color: var(--orange); font-weight: 600; text-decoration: none; word-break: break-word; }
.legal-acc-inner a:hover { text-decoration: underline; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color .2s; }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.section-title { font-family: 'DM Sans', sans-serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight:800; color: var(--dark); line-height: 1.2; letter-spacing: -0.5px; }
.section-sub { font-size: 16px; color: var(--muted); margin-top: 12px; font-weight: 300; line-height: 1.75; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: white;
  padding: 13px 26px; border-radius: 10px;
  font-weight: 600; font-size: 14px; transition: all .2s;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-orange); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 12px 24px; border-radius: 10px;
  font-weight: 600; font-size: 14px; transition: all .2s;
}
.btn-outline:hover { background: var(--orange-pale); }

/* ── STATS BAND ── */
.stats-band { background: var(--dark); padding: 3.5rem 0; }
.stats-band .inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center;
}
.stat-item .num { font-family: 'DM Sans', sans-serif; font-size: 2.8rem; font-weight: 700; color: white; line-height: 1; margin-bottom: 6px; }
.stat-item .num em { color: var(--orange-light); font-style: normal; }
.stat-item .lbl { font-size: 13px; color: rgba(255,255,255,0.45); }


/* ── FOOTER ── */
footer { background: #111110; padding: 3.5rem 0 1.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 1.5rem;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 14px; line-height: 1.7; max-width: 240px; }
.footer-brand .cls-2, .footer-brand .cls-3 { fill: white !important; }
.footer-socials { display: flex; gap: 9px; margin-top: 16px; }
.footer-socials a {
  width: 33px; height: 33px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.footer-socials a:hover { background: var(--orange); border-color: var(--orange); }
.footer-socials svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.55); }
.footer-socials a:hover svg { fill: white; }

.footer-col h4 { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--orange-light); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.45); margin-left: 16px; transition: color .2s; }
.footer-bottom a:hover { color: var(--orange-light); }

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.6rem; transition: all .25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ── CORSO CARD ── */
.corso-icon {
  width: 48px; height: 48px; background: var(--orange-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: background .25s;
}
.corso-icon svg { width: 23px; height: 23px; stroke: var(--orange); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card:hover .corso-icon { background: rgba(216,90,48,0.16); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-band .inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .topbar .inner { flex-direction: column; text-align: center; gap: 6px; }
  .topbar .left, .topbar .right { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .stats-band .inner { grid-template-columns: 1fr; gap: 1.2rem; }
  .hero h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; justify-content: center; }
  .sedi-strip .inner { flex-direction: column; text-align: center; }
  .sedi-pills { justify-content: center; }
  .page-hero h1 { font-size: 1.8rem; }
  section { padding: 3rem 0; }
}

/* ── HERO ── */
.hero {
  background: var(--dark); position: relative; overflow: hidden;
  min-height: 580px; display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg,#1a1a18 0%,#2d2a24 55%,#3a2d1e 100%); }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(216,90,48,.18) 1px,transparent 1px), linear-gradient(90deg,rgba(216,90,48,.18) 1px,transparent 1px);
  background-size: 60px 60px;
}
.hero-glow { position: absolute; right:-80px; top:-80px; width:500px; height:500px; background: radial-gradient(circle,rgba(216,90,48,.14) 0%,transparent 70%); }
.hero-inner {
  max-width:1200px; margin:0 auto; padding:5rem 2rem;
  position:relative; z-index:2;
  display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; width:100%;
}
.hero-tag {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(216,90,48,.15); border:1px solid rgba(216,90,48,.3);
  color:var(--orange-light); font-size:11px; font-weight:600; letter-spacing:2px; text-transform:uppercase;
  padding:5px 14px; border-radius:100px; margin-bottom:1.4rem;
}
.hero-tag::before { content:'●'; font-size:7px; }
.hero h1 {
  font-family:'DM Sans',sans-serif;
  font-size:clamp(2.4rem,4vw,3.5rem); font-weight:800; color:white;
  line-height:1.12; letter-spacing:-1px; margin-bottom:1.4rem;
}
.hero h1 em {
  font-style:normal; color:var(--orange-light);
  position:relative;
}
.hero h1 em::after {
  content:''; position:absolute; left:-4px; right:-4px; bottom:-6px; height:5px;
  background:var(--orange); opacity:.45; border-radius:4px;
  transform:rotate(-.4deg);
}

/* Pencil accent for section labels across the site */
.section-label::before {
  content:''; display:inline-block; width:14px; height:14px; margin-right:6px; vertical-align:-1px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d85a30' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 3a2.83 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z'/%3E%3C/svg%3E");
  background-size:contain; background-repeat:no-repeat;
}
.page-hero .tag::before {
  content:''; display:inline-block; width:12px; height:12px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8925a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 3a2.83 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z'/%3E%3C/svg%3E");
  background-size:contain; background-repeat:no-repeat;
  font-size:0;
}
.hero-lead { font-size:17px; color:rgba(255,255,255,.62); max-width:460px; margin-bottom:2.2rem; font-weight:300; line-height:1.75; }
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; }
.btn-ghost {
  background:rgba(255,255,255,.08); color:rgba(255,255,255,.85);
  border:1px solid rgba(255,255,255,.15); padding:13px 26px;
  border-radius:10px; font-weight:500; font-size:14px; transition:all .2s;
}
.btn-ghost:hover { background:rgba(255,255,255,.15); }

/* hero right */
.hero-right { display:flex; flex-direction:column; gap:12px; }
.stat-cards { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.stat-card {
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius); padding:1.4rem; text-align:center;
}
.stat-card .num { font-family:'DM Sans',sans-serif; font-size:2.4rem; font-weight:700; color:white; line-height:1; margin-bottom:4px; }
.stat-card .num em { color:var(--orange-light); font-style:normal; font-size:1.5rem; }
.stat-card .lbl { font-size:12px; color:rgba(255,255,255,.45); }
.fondimpresa-cta {
  background:rgba(216,90,48,.12); border:1px solid rgba(216,90,48,.25);
  border-radius:var(--radius); padding:1.1rem 1.3rem;
  display:flex; align-items:center; gap:14px; transition:all .2s;
}
.fondimpresa-cta:hover { background:rgba(216,90,48,.2); }
.fondimpresa-cta .ic {
  width:42px; height:42px; flex-shrink:0; background:var(--orange);
  border-radius:10px; display:flex; align-items:center; justify-content:center;
}
.fondimpresa-cta .ic svg { width:21px; height:21px; fill:none; stroke:white; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.fondimpresa-cta .t1 { font-size:13px; font-weight:600; color:var(--orange-light); }
.fondimpresa-cta .t2 { font-size:11px; color:rgba(255,255,255,.45); margin-top:2px; }

/* ── OFFERTA ── */
.offerta { background:var(--white); }
.offerta-head { text-align:center; margin-bottom:3.5rem; }
.offerta-head .section-sub { margin:10px auto 0; max-width:580px; }
.corsi-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1px; background:var(--border);
  border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden;
}
.corso-card {
  background:var(--white); padding:1.8rem; transition:all .25s; position:relative;
}
.corso-card::after {
  content:''; position:absolute; bottom:0; left:1.8rem; right:1.8rem;
  height:2px; background:var(--orange); transform:scaleX(0);
  transition:transform .3s; transform-origin:left;
}
.corso-card:hover { background:var(--orange-pale); }
.corso-card:hover::after { transform:scaleX(1); }
.corso-card h3 { font-size:15px; font-weight:600; color:var(--dark); margin-bottom:8px; line-height:1.35; }
.corso-card p { font-size:13px; color:var(--muted); line-height:1.6; }
.corso-link {
  display:inline-flex; align-items:center; gap:4px;
  font-size:12px; font-weight:600; color:var(--orange); margin-top:12px; letter-spacing:.3px;
}
.corso-link svg { width:13px; height:13px; stroke:var(--orange); fill:none; stroke-width:2; transition:transform .2s; }
.corso-card:hover .corso-link svg { transform:translateX(3px); }

/* ── PERCHÉ ── */
.perche { background:var(--bg); }
.perche-layout { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.perche-features { margin-top:2rem; display:flex; flex-direction:column; gap:.9rem; }
.feature-item {
  display:flex; align-items:flex-start; gap:13px;
  padding:1rem 1.2rem; background:var(--white);
  border:1px solid var(--border); border-radius:10px; transition:all .2s;
}
.feature-item:hover { border-color:var(--orange-light); box-shadow:0 4px 16px rgba(216,90,48,.07); }
.fdot { width:7px; height:7px; border-radius:50%; background:var(--orange); flex-shrink:0; margin-top:7px; }
.feature-item p { font-size:14px; color:var(--mid); line-height:1.55; }
.feature-item p strong { color:var(--dark); font-weight:600; display:block; margin-bottom:2px; }
.cert-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-top:1.8rem; }
.cert-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius); padding:1.3rem; text-align:center; transition:all .2s;
}
.cert-card:hover { box-shadow:var(--shadow-md); transform:translateY(-2px); }
.cert-icon {
  width:46px; height:46px; margin:0 auto 10px;
  background:var(--orange-pale); border-radius:12px;
  display:flex; align-items:center; justify-content:center;
}
.cert-icon svg { width:24px; height:24px; stroke:var(--orange); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.cert-card h4 { font-size:13px; font-weight:600; color:var(--dark); line-height:1.3; }
.cert-card p { font-size:11px; color:var(--muted); margin-top:3px; }
.quote-box {
  background:var(--dark); border-radius:var(--radius-lg); padding:1.8rem; margin-top:1rem;
}
.quote-box h3 { font-family:'DM Sans',sans-serif; font-size:1.2rem; color:white; margin-bottom:10px; }
.quote-box p { font-size:13px; color:rgba(255,255,255,.55); line-height:1.7; }
.quote-box .sig { font-size:12px; color:rgba(255,255,255,.3); margin-top:10px; }

/* ── NEWS PREVIEW ── */
.news-preview { background:var(--white); }
.news-head { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:2.5rem; flex-wrap:wrap; gap:1rem; }
.news-head a { font-size:14px; font-weight:500; color:var(--orange); display:flex; align-items:center; gap:4px; }
.news-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.news-card {
  background:var(--bg); border:1px solid var(--border);
  border-radius:var(--radius); padding:1.4rem; transition:all .25s; display:block;
}
.news-card:hover { border-color:var(--orange-light); box-shadow:0 4px 20px rgba(216,90,48,.09); transform:translateY(-2px); }
.news-date { font-size:11px; font-weight:600; color:var(--orange); letter-spacing:1px; text-transform:uppercase; margin-bottom:9px; }
.news-card h3 { font-size:14px; font-weight:600; color:var(--dark); line-height:1.45; }
.news-card h3.big { font-family:'DM Sans',sans-serif; font-size:17px; }

/* ── SEDI STRIP ── */
.sedi-strip { background:var(--orange-pale); padding:2rem 0; }
.sedi-strip .inner {
  max-width:1200px; margin:0 auto; padding:0 2rem;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1.5rem;
}
.sedi-strip .txt h3 { font-family:'DM Sans',sans-serif; font-size:1.4rem; color:var(--dark); }
.sedi-strip .txt p { font-size:14px; color:var(--muted); margin-top:4px; }
.sedi-pills { display:flex; gap:10px; flex-wrap:wrap; }
.sedi-pill {
  background:var(--white); border:1px solid var(--border);
  border-radius:100px; padding:7px 16px;
  font-size:13px; font-weight:500; color:var(--mid);
  display:flex; align-items:center; gap:6px;
}
.sedi-pill::before { content:'📍'; font-size:12px; }

@media(max-width:960px){
  .hero-inner { grid-template-columns:1fr; }
  .hero-right { display:none; }
  .perche-layout { grid-template-columns:1fr; }
  .corsi-grid { grid-template-columns:1fr 1fr; }
  .news-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:640px){
  .corsi-grid { grid-template-columns:1fr; }
  .cert-grid { grid-template-columns:1fr; }
  .news-grid { grid-template-columns:1fr; }
}
.about-layout { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.about-text .section-sub { max-width:100%; margin-bottom:1.5rem; }
.about-text p { font-size:15px; color:var(--mid); line-height:1.8; margin-bottom:1rem; }
.about-text p strong { color:var(--dark); font-weight:600; }

.values-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-top:3rem; }
.value-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius); padding:1.4rem; transition:all .2s;
}
.value-card:hover { border-color:var(--orange-light); transform:translateY(-2px); box-shadow:0 4px 16px rgba(216,90,48,.08); }
.v-icon {
  width:42px; height:42px; background:var(--orange-pale);
  border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:.9rem;
}
.v-icon svg { width:22px; height:22px; stroke:var(--orange); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.value-card h3 { font-size:14px; font-weight:600; color:var(--dark); margin-bottom:5px; }
.value-card p { font-size:13px; color:var(--muted); line-height:1.6; }

.storia { background:var(--dark); padding:5rem 0; position:relative; overflow:hidden; }
.storia::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(216,90,48,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(216,90,48,.06) 1px,transparent 1px);
  background-size:50px 50px;
}
.storia .container { position:relative; z-index:2; }
.storia .section-label { color:rgba(255,255,255,.5); }
.storia .section-title { color:white; }
.timeline { margin-top:3rem; display:flex; flex-direction:column; gap:0; }
.timeline-item {
  display:grid; grid-template-columns:100px 1fr;
  gap:2rem; padding:1.8rem 0; border-bottom:1px solid rgba(255,255,255,.07);
  position:relative;
}
.timeline-item:last-child { border-bottom:none; }
.t-year { font-family:'DM Sans',sans-serif; font-size:1.8rem; font-weight:700; color:var(--orange-light); line-height:1; }
.t-content h3 { font-size:15px; font-weight:600; color:white; margin-bottom:6px; }
.t-content p { font-size:14px; color:rgba(255,255,255,.5); line-height:1.65; }

.cert-section { background:var(--bg); }
.cert-layout { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
.cert-big-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.cert-big {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:1.8rem; transition:all .2s;
}
.cert-big:hover { box-shadow:0 6px 24px rgba(0,0,0,.08); transform:translateY(-2px); }
.cert-big .ico {
  width:52px; height:52px; background:var(--orange-pale);
  border-radius:13px; display:flex; align-items:center; justify-content:center; margin-bottom:1rem;
}
.cert-big .ico svg { width:27px; height:27px; stroke:var(--orange); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.cert-big h3 { font-size:15px; font-weight:600; color:var(--dark); margin-bottom:6px; }
.cert-big p { font-size:13px; color:var(--muted); line-height:1.6; }

.direzione-box {
  background:var(--orange); border-radius:var(--radius-lg); padding:2.2rem;
  position:relative; overflow:hidden;
}
.direzione-box::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
  background-size:30px 30px;
}
.direzione-box .content { position:relative; z-index:2; }
.direzione-box h3 { font-family:'DM Sans',sans-serif; font-size:1.5rem; color:white; margin-bottom:1rem; }
.direzione-box p { font-size:14px; color:rgba(255,255,255,.8); line-height:1.75; margin-bottom:10px; }
.direzione-box .sig { font-size:13px; font-weight:600; color:rgba(255,255,255,.6); margin-top:1.2rem; }

.offerta-strip {
  background:var(--white); padding:1.5rem 0;
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.offerta-strip .inner {
  max-width:1200px; margin:0 auto; padding:0 2rem;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem;
}
.offerta-strip p { font-size:15px; color:var(--mid); }
.offerta-strip p strong { color:var(--dark); }

@media(max-width:960px){
  .about-layout,.cert-layout { grid-template-columns:1fr; gap:3rem; }
  .values-grid { grid-template-columns:1fr; }
  .cert-big-grid { grid-template-columns:1fr; }
  .timeline-item { grid-template-columns:80px 1fr; gap:1.2rem; }
}
.corsi-full { background:var(--bg); }
.corsi-full-grid { display:grid; grid-template-columns:280px 1fr; gap:3rem; align-items:start; }

/* sidebar */
.sidebar { position:sticky; top:90px; }
.sidebar-title { font-size:11px; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--muted); margin-bottom:1rem; }
.sidebar-menu { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; }
.sidebar-item {
  display:flex; align-items:center; gap:10px;
  padding:.9rem 1.2rem; border-bottom:1px solid var(--border);
  font-size:14px; font-weight:500; color:var(--mid);
  cursor:pointer; transition:all .2s;
}
.sidebar-item:last-child { border-bottom:none; }
.sidebar-item:hover, .sidebar-item.active { background:var(--orange-pale); color:var(--orange); }
.sidebar-item .dot { width:7px; height:7px; border-radius:50%; background:var(--border); flex-shrink:0; transition:background .2s; }
.sidebar-item:hover .dot, .sidebar-item.active .dot { background:var(--orange); }
.sidebar-cta {
  background:var(--dark); border-radius:var(--radius-lg); padding:1.4rem;
  margin-top:1rem; text-align:center;
}
.sidebar-cta p { font-size:13px; color:rgba(255,255,255,.55); margin-bottom:1rem; line-height:1.6; }

/* corso detail cards */
.corso-detail {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:2.2rem; margin-bottom:1.5rem;
  transition:all .2s; scroll-margin-top:100px;
}
.corso-detail:hover { box-shadow:0 4px 20px rgba(0,0,0,.07); }
.corso-header { display:flex; align-items:flex-start; gap:1.2rem; margin-bottom:1.2rem; }
.corso-ico-big {
  width:56px; height:56px; background:var(--orange-pale);
  border-radius:14px; display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.corso-ico-big svg { width:28px; height:28px; stroke:var(--orange); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.corso-header-text h2 { font-family:'DM Sans',sans-serif; font-size:1.4rem; font-weight:700; color:var(--dark); margin-bottom:4px; }
.corso-header-text .tag {
  display:inline-block; background:var(--orange-pale); color:var(--orange);
  font-size:11px; font-weight:600; padding:3px 10px; border-radius:100px; letter-spacing:.5px;
}
.corso-detail p { font-size:14px; color:var(--mid); line-height:1.8; margin-bottom:1rem; }
.corso-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:.8rem; }
.corso-tag {
  background:var(--bg); border:1px solid var(--border);
  border-radius:100px; padding:5px 13px; font-size:12px; color:var(--muted);
}
.corso-footer { display:flex; align-items:center; justify-content:space-between; margin-top:1.4rem; padding-top:1.2rem; border-top:1px solid var(--border); flex-wrap:wrap; gap:10px; }
.corso-footer span { font-size:12px; color:var(--muted); }
.corso-footer span strong { color:var(--dark); }

.metodologia-box { background:var(--orange); border-radius:var(--radius-lg); padding:3rem; margin-bottom:5rem; }
.metodologia-box h2 { font-family:'DM Sans',sans-serif; font-size:1.8rem; color:white; margin-bottom:1rem; }
.metodologia-box p { font-size:15px; color:rgba(255,255,255,.75); line-height:1.75; max-width:700px; margin-bottom:1.5rem; }
.metodo-pills { display:flex; flex-wrap:wrap; gap:10px; }
.metodo-pill { background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.25); color:white; font-size:13px; font-weight:500; padding:7px 16px; border-radius:100px; }

@media(max-width:960px){
  .corsi-full-grid { grid-template-columns:1fr; }
  .sidebar { position:static; }
}
.intro-section { background:var(--white); }
.intro-layout { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.intro-text p { font-size:15px; color:var(--mid); line-height:1.8; margin-bottom:1rem; }
.intro-text p strong { color:var(--dark); }

.process-steps { display:flex; flex-direction:column; gap:0; margin-top:2rem; }
.step {
  display:grid; grid-template-columns:48px 1fr; gap:1.2rem;
  padding:1.4rem 0; border-bottom:1px solid var(--border); align-items:start;
}
.step:last-child { border-bottom:none; }
.step-num {
  width:36px; height:36px; border-radius:10px;
  background:var(--orange); display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:700; color:white; flex-shrink:0;
}
.step h3 { font-size:14px; font-weight:600; color:var(--dark); margin-bottom:4px; }
.step p { font-size:13px; color:var(--muted); line-height:1.6; }

/* FONDI SECTION */
.fondi-section { background:var(--bg); }
.fondi-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; margin-top:3rem; }
.fondo-big {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:2rem; transition:all .25s;
}
.fondo-big:hover { box-shadow:0 6px 24px rgba(0,0,0,.08); transform:translateY(-2px); border-color:var(--orange-light); }
.fondo-header { display:flex; align-items:center; gap:14px; margin-bottom:1.2rem; }
.fondo-logo {
  width:52px; height:52px; background:var(--orange-pale);
  border-radius:13px; display:flex; align-items:center; justify-content:center;
}
.fondo-logo svg { width:27px; height:27px; fill:none; stroke:var(--orange); stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.fondo-header h3 { font-family:'DM Sans',sans-serif; font-size:1.3rem; font-weight:700; color:var(--dark); }
.fondo-header span { font-size:12px; color:var(--muted); }
.fondo-big p { font-size:14px; color:var(--mid); line-height:1.7; margin-bottom:.8rem; }
.fondo-big .fondo-tags { display:flex; flex-wrap:wrap; gap:6px; margin-top:.8rem; }
.fondo-tag { background:var(--orange-pale); color:var(--orange); font-size:11px; font-weight:600; padding:4px 10px; border-radius:100px; }

/* AVVISI */
.avvisi-section { background:var(--dark); padding:5rem 0; }
.avvisi-section .section-label { color:rgba(255,255,255,.45); }
.avvisi-section .section-title { color:white; margin-bottom:2.5rem; }
.avvisi-grid { display:flex; flex-direction:column; gap:1px; background:rgba(255,255,255,.08); border-radius:var(--radius-lg); overflow:hidden; }
.avviso-item {
  background:rgba(255,255,255,.04); padding:1.4rem 1.8rem;
  display:grid; grid-template-columns:120px 1fr auto;
  gap:1.5rem; align-items:center; transition:background .2s; cursor:pointer;
}
.avviso-item:hover { background:rgba(216,90,48,.12); }
.avviso-date { font-size:12px; font-weight:600; color:var(--orange-light); letter-spacing:.8px; }
.avviso-title { font-size:14px; font-weight:500; color:rgba(255,255,255,.85); line-height:1.4; }
.avviso-arrow { color:var(--orange-light); font-size:18px; flex-shrink:0; }

/* GARANZIE */
.garanzie-section { background:var(--white); }
.garanzie-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3rem; }
.garanzia-card {
  background:var(--bg); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:1.8rem; text-align:center; transition:all .2s;
}
.garanzia-card:hover { transform:translateY(-3px); box-shadow:0 6px 24px rgba(0,0,0,.08); }
.g-icon {
  width:56px; height:56px; margin:0 auto 1rem;
  background:var(--orange-pale); border-radius:14px;
  display:flex; align-items:center; justify-content:center;
}
.g-icon svg { width:28px; height:28px; stroke:var(--orange); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.garanzia-card h3 { font-size:15px; font-weight:600; color:var(--dark); margin-bottom:8px; }
.garanzia-card p { font-size:13px; color:var(--muted); line-height:1.65; }

.cta-section {
  background:var(--orange); padding:4rem 0; position:relative; overflow:hidden;
}
.cta-section::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
  background-size:40px 40px;
}
.cta-inner { max-width:700px; margin:0 auto; text-align:center; position:relative; z-index:2; padding:0 2rem; }
.cta-inner h2 { font-family:'DM Sans',sans-serif; font-size:2rem; color:white; margin-bottom:1rem; }
.cta-inner p { font-size:16px; color:rgba(255,255,255,.75); margin-bottom:2rem; }
.cta-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.btn-white { background:white; color:var(--orange); padding:13px 26px; border-radius:10px; font-weight:600; font-size:14px; transition:all .2s; display:inline-flex; align-items:center; gap:8px; }
.btn-white:hover { transform:translateY(-1px); box-shadow:0 8px 24px rgba(0,0,0,.15); }
.btn-ghost-white { background:rgba(255,255,255,.12); color:white; border:1px solid rgba(255,255,255,.25); padding:13px 26px; border-radius:10px; font-weight:500; font-size:14px; transition:all .2s; }
.btn-ghost-white:hover { background:rgba(255,255,255,.2); }

@media(max-width:960px){
  .intro-layout { grid-template-columns:1fr; gap:3rem; }
  .fondi-grid { grid-template-columns:1fr; }
  .garanzie-grid { grid-template-columns:1fr; }
  .avviso-item { grid-template-columns:1fr; gap:.5rem; }
  .avviso-arrow { display:none; }
}
.news-layout { display:grid; grid-template-columns:1fr 320px; gap:3rem; align-items:start; }
.news-list { display:flex; flex-direction:column; gap:1.5rem; }
.news-article {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:2rem; transition:all .25s; display:block;
}
.news-article:hover { border-color:var(--orange-light); box-shadow:0 4px 24px rgba(216,90,48,.1); transform:translateY(-2px); }
.article-meta { display:flex; align-items:center; gap:12px; margin-bottom:1rem; flex-wrap:wrap; }
.article-date { font-size:11px; font-weight:700; color:var(--orange); letter-spacing:1.2px; text-transform:uppercase; }
.article-cat {
  background:var(--orange-pale); color:var(--orange);
  font-size:11px; font-weight:600; padding:3px 10px; border-radius:100px;
}
.news-article h2 { font-family:'DM Sans',sans-serif; font-size:1.25rem; font-weight:700; color:var(--dark); margin-bottom:.8rem; line-height:1.35; }
.news-article p { font-size:14px; color:var(--muted); line-height:1.75; }
.article-footer { margin-top:1.2rem; display:flex; align-items:center; justify-content:space-between; }

.read-more { font-size:13px; font-weight:600; color:var(--orange); display:flex; align-items:center; gap:4px; }
.read-more svg { width:13px; height:13px; stroke:var(--orange); fill:none; stroke-width:2; transition:transform .2s; }
.news-article:hover .read-more svg { transform:translateX(3px); }

.featured-article {
  background:var(--dark); border:none; padding:2rem;
}
.featured-article h2 { color:white; }
.featured-article p { color:rgba(255,255,255,.6); }
.featured-badge {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(216,90,48,.2); border:1px solid rgba(216,90,48,.35);
  color:var(--orange-light); font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
  padding:4px 10px; border-radius:100px; margin-bottom:.8rem;
}
.featured-article .read-more { color:var(--orange-light); }
.featured-article .read-more svg { stroke:var(--orange-light); }
.featured-article .article-date { color:var(--orange-light); }

/* SIDEBAR */
.news-sidebar { position:sticky; top:90px; display:flex; flex-direction:column; gap:1.5rem; }
.sidebar-widget {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:1.5rem; overflow:hidden;
}
.widget-title { font-size:11px; font-weight:700; color:var(--muted); letter-spacing:2px; text-transform:uppercase; margin-bottom:1.2rem; }
.recent-item { display:flex; flex-direction:column; gap:3px; padding:.8rem 0; border-bottom:1px solid var(--border); }
.recent-item:last-child { border-bottom:none; padding-bottom:0; }
.recent-item .date { font-size:11px; color:var(--orange); font-weight:600; letter-spacing:.5px; }
.recent-item .title { font-size:13px; font-weight:500; color:var(--mid); line-height:1.45; transition:color .2s; }
.recent-item:hover .title { color:var(--orange); }

.cat-list { display:flex; flex-direction:column; gap:.5rem; }
.cat-item {
  display:flex; align-items:center; justify-content:space-between;
  padding:.6rem 0; border-bottom:1px solid var(--border); font-size:13px;
}
.cat-item:last-child { border-bottom:none; }
.cat-item span:first-child { color:var(--mid); font-weight:500; }
.cat-item span:last-child { background:var(--orange-pale); color:var(--orange); font-size:11px; font-weight:700; padding:2px 8px; border-radius:100px; }

.fondimpresa-widget {
  background:var(--orange);
  border:none;
}
.fondimpresa-widget .widget-title { color:rgba(255,255,255,.6); }
.fondimpresa-widget h3 { font-family:'DM Sans',sans-serif; font-size:1.1rem; color:white; margin-bottom:.6rem; }
.fondimpresa-widget p { font-size:13px; color:rgba(255,255,255,.7); line-height:1.65; margin-bottom:1rem; }

@media(max-width:960px){
  .news-layout { grid-template-columns:1fr; }
  .news-sidebar { position:static; }
}
.contatti-section { background:var(--white); }
.contatti-layout { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }

.form-box {
  background:var(--bg); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:2.2rem;
}
.form-box h2 { font-family:'DM Sans',sans-serif; font-size:1.5rem; color:var(--dark); margin-bottom:.4rem; }
.form-box p { font-size:14px; color:var(--muted); margin-bottom:2rem; }
.form-group { margin-bottom:1.2rem; }
.form-group label { display:block; font-size:13px; font-weight:600; color:var(--mid); margin-bottom:6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:12px 14px;
  border:1px solid var(--border); border-radius:9px;
  font-size:14px; font-family:'DM Sans',sans-serif; color:var(--dark);
  background:var(--white); outline:none; transition:border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--orange); }
.form-group textarea { resize:vertical; min-height:110px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-submit { width:100%; padding:14px; background:var(--orange); color:white; border:none; border-radius:10px; font-size:15px; font-weight:600; cursor:pointer; font-family:'DM Sans',sans-serif; transition:all .2s; margin-top:.5rem; }
.form-submit:hover { background:var(--orange-dark); transform:translateY(-1px); box-shadow:0 6px 20px rgba(216,90,48,.3); }

.contact-info { display:flex; flex-direction:column; gap:1.5rem; }
.contact-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:1.8rem; transition:all .2s;
}
.contact-card:hover { box-shadow:0 4px 20px rgba(0,0,0,.07); }
.contact-card-header { display:flex; align-items:center; gap:12px; margin-bottom:1.2rem; }
.contact-card-ico {
  width:44px; height:44px; background:var(--orange);
  border-radius:11px; display:flex; align-items:center; justify-content:center;
}
.contact-card-ico svg { width:22px; height:22px; stroke:white; fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.contact-card-header h3 { font-size:16px; font-weight:600; color:var(--dark); }
.contact-card-header p { font-size:12px; color:var(--muted); }
.contact-detail { display:flex; align-items:flex-start; gap:10px; padding:.6rem 0; border-bottom:1px solid var(--border); }
.contact-detail:last-child { border-bottom:none; }
.cd-label { font-size:12px; color:var(--muted); min-width:60px; flex-shrink:0; padding-top:1px; }
.cd-val { font-size:14px; color:var(--dark); font-weight:500; }
.cd-val a { color:var(--dark); transition:color .2s; }
.cd-val a:hover { color:var(--orange); }

/* SEDI */
.sedi-section { background:var(--bg); }
.sedi-section-layout { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3rem; }
.sede-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:1.8rem; transition:all .2s;
}
.sede-card:hover { border-color:var(--orange-light); box-shadow:0 4px 20px rgba(216,90,48,.08); }
.sede-num-badge {
  width:38px; height:38px; background:var(--orange);
  border-radius:10px; display:flex; align-items:center; justify-content:center;
  font-size:15px; font-weight:700; color:white; margin-bottom:1rem;
}
.sede-card h3 { font-family:'DM Sans',sans-serif; font-size:1.2rem; color:var(--dark); margin-bottom:4px; }
.sede-card .tipo { font-size:11px; font-weight:600; color:var(--orange); letter-spacing:1px; text-transform:uppercase; margin-bottom:1rem; }
.sede-card p { font-size:13px; color:var(--muted); line-height:1.65; }
.sede-map-btn {
  display:inline-flex; align-items:center; gap:6px;
  font-size:12px; font-weight:600; color:var(--orange);
  margin-top:1.2rem; border:1px solid var(--orange-light);
  padding:6px 14px; border-radius:100px; transition:all .2s;
}
.sede-map-btn:hover { background:var(--orange-pale); }

/* MAP PLACEHOLDER */
.map-section { background:var(--dark); padding:3rem 0; }
.map-inner { max-width:1200px; margin:0 auto; padding:0 2rem; }
.map-placeholder {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-lg); height:280px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1rem;
}
.map-placeholder svg { width:40px; height:40px; stroke:rgba(255,255,255,.3); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.map-placeholder p { font-size:14px; color:rgba(255,255,255,.4); }
.map-placeholder a { font-size:13px; font-weight:600; color:var(--orange-light); border:1px solid rgba(216,90,48,.3); padding:8px 18px; border-radius:100px; transition:all .2s; }
.map-placeholder a:hover { background:rgba(216,90,48,.15); }
.maps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:2rem; }
.map-item { border-radius:16px; overflow:hidden; box-shadow:0 4px 24px rgba(0,0,0,.08); }
.map-label { background:var(--dark); color:rgba(255,255,255,.8); font-size:13px; font-weight:600; padding:.6rem 1rem; }
.map-item iframe { width:100%; height:280px; border:none; display:block; }
.maps-grid--2col { grid-template-columns:repeat(2,1fr); }
.map-footer { background:var(--white); padding:.7rem 1rem; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:.5rem; }
.map-footer span { font-size:13px; color:var(--mid); }
.map-footer a { font-size:13px; font-weight:600; color:var(--orange); text-decoration:none; white-space:nowrap; }
.map-footer a:hover { text-decoration:underline; }
@media (max-width:640px) { .maps-grid--2col { grid-template-columns:1fr; } }
@media (max-width:860px) { .maps-grid { grid-template-columns:1fr; } .map-item iframe { height:220px; } }

@media(max-width:960px){
  .contatti-layout { grid-template-columns:1fr; gap:3rem; }
  .sedi-section-layout { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
}
.lavora-intro { background:var(--white); }
.lavora-layout { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.lavora-text p { font-size:15px; color:var(--mid); line-height:1.8; margin-bottom:1rem; }

.ruoli-section { background:var(--bg); }
.ruoli-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin-top:3rem; }
.ruolo-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:2rem; transition:all .25s; position:relative;
}
.ruolo-card:hover { border-color:var(--orange-light); box-shadow:0 6px 24px rgba(216,90,48,.1); transform:translateY(-2px); }
.ruolo-badge {
  position:absolute; top:1.5rem; right:1.5rem;
  background:var(--orange-pale); color:var(--orange);
  font-size:10px; font-weight:700; letter-spacing:1px; text-transform:uppercase;
  padding:4px 10px; border-radius:100px;
}
.ruolo-ico {
  width:50px; height:50px; background:var(--orange-pale);
  border-radius:13px; display:flex; align-items:center; justify-content:center; margin-bottom:1.2rem;
}
.ruolo-ico svg { width:25px; height:25px; stroke:var(--orange); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.ruolo-card h3 { font-size:16px; font-weight:600; color:var(--dark); margin-bottom:.6rem; }
.ruolo-card p { font-size:13px; color:var(--muted); line-height:1.7; margin-bottom:1.2rem; }
.ruolo-reqs { display:flex; flex-direction:column; gap:.4rem; }
.ruolo-req { display:flex; align-items:flex-start; gap:8px; font-size:13px; color:var(--mid); }
.ruolo-req::before { content:'→'; color:var(--orange); font-weight:700; flex-shrink:0; }

.valori-section { background:var(--dark); padding:5rem 0; }
.valori-section .section-label { color:rgba(255,255,255,.45); }
.valori-section .section-title { color:white; }
.valori-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3rem; }
.valore-card {
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.09);
  border-radius:var(--radius-lg); padding:1.8rem; transition:all .2s;
}
.valore-card:hover { background:rgba(216,90,48,.1); border-color:rgba(216,90,48,.25); }
.valore-num { font-family:'DM Sans',sans-serif; font-size:2rem; font-weight:700; color:var(--orange-light); margin-bottom:.5rem; }
.valore-card h3 { font-size:15px; font-weight:600; color:white; margin-bottom:.5rem; }
.valore-card p { font-size:13px; color:rgba(255,255,255,.5); line-height:1.65; }

.candidatura-section { background:var(--bg); }
.candidatura-layout { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
.form-box {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:2.2rem;
}
.form-box h2 { font-family:'DM Sans',sans-serif; font-size:1.5rem; color:var(--dark); margin-bottom:.4rem; }
.form-box .sub { font-size:14px; color:var(--muted); margin-bottom:2rem; }
.form-group { margin-bottom:1.2rem; }
.form-group label { display:block; font-size:13px; font-weight:600; color:var(--mid); margin-bottom:6px; }
.form-group input, .form-group select, .form-group textarea {
  width:100%; padding:12px 14px; border:1px solid var(--border); border-radius:9px;
  font-size:14px; font-family:'DM Sans',sans-serif; color:var(--dark);
  background:var(--white); outline:none; transition:border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--orange); }
.form-group textarea { resize:vertical; min-height:110px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-submit { width:100%; padding:14px; background:var(--orange); color:white; border:none; border-radius:10px; font-size:15px; font-weight:600; cursor:pointer; font-family:'DM Sans',sans-serif; transition:all .2s; margin-top:.5rem; }
.form-submit:hover { background:var(--orange-dark); transform:translateY(-1px); }

.benefit-list { display:flex; flex-direction:column; gap:1rem; }
.benefit-item {
  display:flex; align-items:flex-start; gap:14px;
  background:var(--white); border:1px solid var(--border);
  border-radius:10px; padding:1.2rem; transition:all .2s;
}
.benefit-item:hover { border-color:var(--orange-light); }
.b-ico {
  width:38px; height:38px; background:var(--orange-pale); flex-shrink:0;
  border-radius:9px; display:flex; align-items:center; justify-content:center;
}
.b-ico svg { width:19px; height:19px; stroke:var(--orange); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.benefit-item h4 { font-size:14px; font-weight:600; color:var(--dark); margin-bottom:3px; }
.benefit-item p { font-size:13px; color:var(--muted); line-height:1.6; }

@media(max-width:960px){
  .lavora-layout, .candidatura-layout { grid-template-columns:1fr; gap:3rem; }
  .ruoli-grid { grid-template-columns:1fr; }
  .valori-grid { grid-template-columns:1fr 1fr; }
  .form-row { grid-template-columns:1fr; }
}
@media(max-width:640px){ .valori-grid { grid-template-columns:1fr; } }

/* Real logo sizing */
.logo > svg, .logo svg[id="Livello_1"] { height: 36px; width: auto; }
.footer-brand .logo > svg, .footer-brand .logo svg[id="Livello_1"] { height: 30px; width: auto; }

/* ── HAMBURGER & MOBILE MENU ── */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--mid); border-radius: 8px; transition: all .2s; margin-left: 4px;
  position: relative; z-index: 202;
}
.hamburger:hover { background: var(--orange-pale); color: var(--orange); }
.hamburger svg { width: 22px; height: 22px; display: block; }

.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(26,26,24,0.6); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .3s ease;
}
.mobile-overlay.open { display: block; opacity: 1; }

.mobile-menu {
  position: fixed; top: 0; right: 0; z-index: 201;
  width: 320px; max-width: 85vw; height: 100dvh;
  background: var(--dark);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.6rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.mm-header .mm-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.mm-close {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
}
.mm-close:hover { background: rgba(216,90,48,.2); border-color: rgba(216,90,48,.3); }
.mm-close svg { width: 18px; height: 18px; stroke: rgba(255,255,255,.6); fill: none; stroke-width: 2; stroke-linecap: round; }

.mm-links {
  flex: 1; display: flex; flex-direction: column; gap: 2px;
  padding: 1rem 1rem;
}
.mm-links a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: 10px;
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,.75);
  transition: all .2s; text-decoration: none;
}
.mm-links a:hover, .mm-links a.active { background: rgba(216,90,48,.12); color: var(--orange-light); }
.mm-links a svg {
  width: 20px; height: 20px; stroke: currentColor; fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
  opacity: .5;
}
.mm-links a:hover svg { opacity: 1; }

.mm-cta {
  padding: 1rem 1.6rem 1.6rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mm-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--orange); color: white;
  padding: 14px 24px; border-radius: 10px;
  font-weight: 600; font-size: 15px; transition: all .2s; text-decoration: none;
}
.mm-cta a:hover { background: var(--orange-dark); }

.mm-footer {
  padding: 1rem 1.6rem 1.8rem;
  display: flex; flex-direction: column; gap: 10px;
}
.mm-footer a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s;
}
.mm-footer a:hover { color: var(--orange-light); }
.mm-footer a svg {
  width: 15px; height: 15px; stroke: currentColor; fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}

@media (max-width: 960px) {
  .nav-inner { justify-content: center; position: relative; }
  .nav-search-btn { order: -1; position: absolute; left: 2rem; }
  .hamburger { display: flex; align-items: center; position: absolute; right: 2rem; }
  .logo { order: 0; }
  .nav-links { display: none !important; }
}
/* ── WIZARD ── */
#wizard-overlay {
  display:none; position:fixed; inset:0; z-index:200;
  background:rgba(15,15,15,.65); backdrop-filter:blur(4px);
  align-items:center; justify-content:center; padding:1rem;
}
#wizard-overlay.open { display:flex; }
.wizard-modal {
  background:var(--white); border-radius:20px; width:100%; max-width:520px;
  max-height:90dvh; overflow-y:auto; padding:1.8rem 2rem 2.2rem;
  box-shadow:0 24px 64px rgba(0,0,0,.22); animation:wizUp .22s ease;
}
@keyframes wizUp {
  from { opacity:0; transform:translateY(16px) scale(.98); }
  to   { opacity:1; transform:translateY(0)    scale(1); }
}
.wiz-head { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:1.6rem; }
.wiz-dots { display:flex; align-items:center; gap:6px; margin-bottom:5px; }
.wiz-dot { width:10px; height:10px; border-radius:50%; background:var(--border); transition:background .25s; }
.wiz-dot.active { background:var(--orange); }
.wiz-dot.done   { background:var(--orange); opacity:.4; }
.wiz-line { width:28px; height:2px; background:var(--border); border-radius:1px; }
.wiz-lbl { font-size:11px; font-weight:700; color:var(--mid); text-transform:uppercase; letter-spacing:.07em; }
.wiz-close { background:none; border:none; cursor:pointer; color:var(--mid); padding:4px; border-radius:8px; transition:background .15s; flex-shrink:0; }
.wiz-close:hover { background:var(--bg); color:var(--dark); }
.wiz-close svg { width:20px; height:20px; display:block; }
.wiz-title { font-family:'DM Sans',sans-serif; font-size:1.35rem; color:var(--dark); margin-bottom:.35rem; line-height:1.3; }
.wiz-sub { font-size:14px; color:var(--mid); margin-bottom:1.2rem; line-height:1.6; }
.wiz-opts { display:flex; flex-direction:column; gap:.45rem; }
.wopt {
  display:flex; align-items:center; padding:.75rem 1rem;
  border:1.5px solid var(--border); border-radius:12px;
  background:var(--white); cursor:pointer; text-align:left;
  font-size:14.5px; color:var(--dark); font-weight:500;
  transition:border-color .15s, background .15s;
  font-family:inherit;
}
.wopt:hover { border-color:var(--orange-light); background:var(--orange-pale); }
.wopt.sel   { border-color:var(--orange); background:var(--orange-pale); color:var(--orange); font-weight:600; }
.wiz-bot { margin-top:1rem; }
.wiz-back-btn { background:none; border:none; cursor:pointer; font-size:13px; color:var(--mid); padding:0; font-family:inherit; }
.wiz-back-btn:hover { color:var(--dark); }
.wiz-tags { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:.9rem; }
.wiz-tag { background:var(--orange-pale); border:1px solid var(--orange-light); color:var(--orange); font-size:12px; font-weight:600; padding:3px 10px; border-radius:100px; }
.wiz-form { display:flex; flex-direction:column; gap:.7rem; }
.wf-row { display:grid; grid-template-columns:1fr 1fr; gap:.7rem; }
.wiz-form input { padding:12px 14px; border:1.5px solid var(--border); border-radius:10px; font-size:14px; color:var(--dark); outline:none; transition:border-color .15s; font-family:inherit; width:100%; box-sizing:border-box; }
.wiz-form input:focus { border-color:var(--orange); }
.wf-err { font-size:13px; color:#b91c1c; min-height:0; margin:0; }
.wf-submit { width:100%; padding:14px; background:var(--orange); color:white; border:none; border-radius:10px; font-size:15px; font-weight:600; cursor:pointer; transition:background .2s; font-family:inherit; margin-top:.2rem; }
.wf-submit:hover { background:#c94e1e; }
.wiz-success { text-align:center; padding:1.5rem 0 .5rem; }
.wok-ico { width:56px; height:56px; background:#f0fdf4; border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 1.2rem; }
.wok-ico svg { width:28px; height:28px; stroke:#16a34a; }
.wiz-success h2 { font-family:'DM Sans',sans-serif; font-size:1.5rem; color:var(--dark); margin-bottom:.5rem; }
.wiz-success p { font-size:14px; color:var(--mid); margin-bottom:1.5rem; line-height:1.7; }
/* Invite box in contatti */
.wiz-invite-box { display:flex; flex-direction:column; align-items:flex-start; }
.wib-icon { width:48px; height:48px; background:var(--orange-pale); border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:1.2rem; flex-shrink:0; }
.wib-icon svg { width:24px; height:24px; stroke:var(--orange); }
.wib-perks { display:flex; gap:1.2rem; flex-wrap:wrap; margin-top:1rem; font-size:13px; font-weight:600; color:var(--mid); }
/* Lavora email CTA */
.cv-mailto { display:flex; align-items:center; gap:10px; background:var(--orange-pale); border:1px solid var(--orange-light); color:var(--orange); font-weight:600; font-size:15px; padding:.9rem 1.2rem; border-radius:12px; transition:background .2s; margin:1.2rem 0; text-decoration:none; }
.cv-mailto:hover { background:rgba(216,90,48,.12); }
.cv-mailto svg { width:18px; height:18px; flex-shrink:0; }
.cv-ruoli { margin-top:1rem; }
.cv-ruoli-title { font-size:12px; font-weight:700; color:var(--mid); text-transform:uppercase; letter-spacing:.06em; margin-bottom:.5rem; }
.cv-ruoli ul { padding-left:1.2rem; margin:0; }
.cv-ruoli li { font-size:14px; color:var(--dark); margin-bottom:.3rem; }
@media (max-width:500px) {
  .wizard-modal { padding:1.4rem 1.2rem 1.6rem; border-radius:16px; }
  .wf-row { grid-template-columns:1fr; }
}

/* ── QUESTIONARIO NAV MINIMAL ── */
.q-minimal-nav { background:var(--white); border-bottom:1px solid var(--border); position:sticky; top:0; z-index:100; box-shadow:0 1px 20px rgba(0,0,0,.05); }
.q-minimal-nav .nav-inner { justify-content:center; }
.q-minimal-nav .nav-links,
.q-minimal-nav .nav-search-btn,
.q-minimal-nav .hamburger { display:none !important; }

/* ── ADMIN DASHBOARD ── */
.admin-section { background:var(--bg); min-height:70vh; }
.admin-login {
  max-width:400px; margin:0 auto; padding:4rem 0;
  text-align:center;
}
.admin-login-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:2.5rem 2rem;
}
.admin-login-ico {
  width:56px; height:56px; background:var(--orange-pale); border-radius:14px;
  display:flex; align-items:center; justify-content:center; margin:0 auto 1.2rem;
}
.admin-login-ico svg { width:28px; height:28px; stroke:var(--orange); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.admin-login-card h2 { font-family:'DM Sans',sans-serif; font-size:1.4rem; color:var(--dark); margin-bottom:.4rem; }
.admin-login-card p { font-size:14px; color:var(--muted); margin-bottom:1.5rem; }
.admin-pw-row { display:flex; gap:.5rem; }
.admin-pw-row input {
  flex:1; min-width:0; padding:12px 14px; border:1.5px solid var(--border); border-radius:9px;
  font-size:14px; font-family:'DM Sans',sans-serif; color:var(--dark); outline:none;
  transition:border-color .2s;
}
.admin-pw-row input:focus { border-color:var(--orange); }
.admin-pw-row button {
  padding:12px 20px; background:var(--orange); color:white; border:none;
  border-radius:9px; font-size:14px; font-weight:600; cursor:pointer;
  font-family:'DM Sans',sans-serif; transition:all .2s; white-space:nowrap;
}
.admin-pw-row button:hover { background:var(--orange-dark); }
.admin-pw-err { font-size:13px; color:#dc2626; margin-top:.6rem; min-height:20px; }

/* dashboard */
.admin-dash { display:none; padding:2rem 0 4rem; }
.admin-dash.show { display:block; }
.admin-topbar {
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:2rem; flex-wrap:wrap; gap:1rem;
}
.admin-topbar h2 { font-family:'DM Sans',sans-serif; font-size:1.5rem; color:var(--dark); }
.admin-topbar .admin-stats { display:flex; gap:1.5rem; }
.admin-stat {
  background:var(--white); border:1px solid var(--border); border-radius:10px;
  padding:.8rem 1.2rem; text-align:center;
}
.admin-stat .num { font-family:'DM Sans',sans-serif; font-size:1.5rem; font-weight:700; color:var(--orange); }
.admin-stat .num.num-sm { font-size:1.05rem; line-height:1.2; }
.admin-stat .lbl { font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:1px; font-weight:600; }

/* KPI row */
.admin-kpis { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; margin-bottom:1.5rem; }
.admin-kpis .admin-stat { padding:1rem 1.2rem; }
.admin-kpis .admin-stat.kpi-good { border-color:rgba(34,197,94,.35); background:rgba(34,197,94,.05); }
.admin-kpis .admin-stat.kpi-good .num { color:#16a34a; }
.admin-kpis .admin-stat.kpi-bad { border-color:rgba(220,38,38,.35); background:rgba(220,38,38,.05); }
.admin-kpis .admin-stat.kpi-bad .num { color:#dc2626; }
@media(max-width:760px) { .admin-kpis { grid-template-columns:1fr 1fr; } }

.admin-filter {
  display:flex; gap:.8rem; margin-bottom:1.5rem; flex-wrap:wrap; align-items:center;
}
.admin-filter select {
  padding:9px 14px; border:1px solid var(--border); border-radius:8px;
  font-size:13px; font-family:'DM Sans',sans-serif; color:var(--mid);
  background:var(--white); outline:none; cursor:pointer;
}
.admin-filter select:focus { border-color:var(--orange); }

/* charts grid */
.admin-charts {
  display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin-bottom:2rem;
}
.admin-chart-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:1.5rem;
}
.admin-chart-card h3 { font-size:14px; font-weight:700; color:var(--dark); margin-bottom:1rem; }
.admin-chart-card canvas { width:100% !important; max-height:280px; }

/* averages */
.admin-averages {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:1.5rem; margin-bottom:2rem;
}
.admin-averages h3 { font-size:14px; font-weight:700; color:var(--dark); margin-bottom:1.2rem; }
.avg-row {
  display:flex; align-items:center; gap:12px; padding:.6rem 0;
  border-bottom:1px solid var(--border); font-size:13px;
}
.avg-row:last-child { border-bottom:none; }
.avg-label { flex:1; color:var(--mid); }
.avg-bar-wrap { width:200px; height:8px; background:var(--border); border-radius:4px; overflow:hidden; }
.avg-bar { height:100%; background:var(--orange); border-radius:4px; transition:width .5s ease; }
.avg-val { width:40px; text-align:right; font-weight:700; color:var(--dark); }

/* table */
.admin-table-wrap {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); overflow:hidden;
}
.admin-table-wrap h3 { font-size:14px; font-weight:700; color:var(--dark); padding:1.5rem 1.5rem 1rem; }
.admin-table { width:100%; border-collapse:collapse; font-size:12px; }
.admin-table th {
  background:var(--bg); padding:10px 12px; text-align:left;
  font-size:10px; font-weight:700; color:var(--muted); text-transform:uppercase;
  letter-spacing:1px; border-bottom:1px solid var(--border); white-space:nowrap;
}
.admin-table td {
  padding:10px 12px; border-bottom:1px solid var(--border); color:var(--mid);
}
.admin-table tr:last-child td { border-bottom:none; }
.admin-table tr:hover td { background:var(--orange-pale); }
.admin-table-scroll { overflow-x:auto; }
.admin-empty { text-align:center; padding:3rem; color:var(--muted); font-size:15px; }
.admin-loading { text-align:center; padding:3rem; color:var(--muted); font-size:15px; }

.admin-export {
  display:inline-flex; align-items:center; gap:6px;
  padding:9px 18px; background:var(--dark); color:white; border:none;
  border-radius:8px; font-size:13px; font-weight:600; cursor:pointer;
  font-family:'DM Sans',sans-serif; transition:all .2s;
}
.admin-export:hover { background:var(--mid); }
.admin-export svg { width:15px; height:15px; stroke:currentColor; fill:none; stroke-width:1.6; }

@media(max-width:960px) {
  .admin-charts { grid-template-columns:1fr; }
  .admin-topbar .admin-stats { gap:.8rem; }
}
@media(max-width:640px) {
  .admin-topbar { flex-direction:column; align-items:flex-start; }
  .avg-bar-wrap { width:120px; }
}

/* ── ADMIN NEWS MANAGER ── */
.admin-tabs { display:flex; gap:0; margin-bottom:2rem; border-bottom:2px solid var(--light); }
.admin-tab { padding:.8rem 1.5rem; font-size:14px; font-weight:600; color:var(--muted); background:none; border:none; cursor:pointer; border-bottom:2px solid transparent; margin-bottom:-2px; transition:.2s; display:flex; align-items:center; gap:.5rem; }
.admin-tab:hover { color:var(--dark); }
.admin-tab.active { color:var(--orange); border-bottom-color:var(--orange); }
.admin-tab svg { width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; opacity:.6; }
.admin-tab:hover svg { opacity:1; }
.admin-tab.active svg { opacity:1; }
.admin-tab-panel { display:none; }
.admin-tab-panel.show { display:block; }

/* ── ADMIN MOBILE NAV ── */
.admin-mobile-bar {
  display:none; align-items:center; justify-content:space-between;
  margin-bottom:1.5rem; padding:.8rem 1rem;
  background:var(--white); border:1px solid var(--light); border-radius:12px;
}
.admin-mobile-bar-label {
  font-size:14px; font-weight:700; color:var(--dark); display:flex; align-items:center; gap:.5rem;
}
.admin-mobile-hamburger {
  background:none; border:1px solid var(--light); border-radius:8px;
  width:38px; height:38px; display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:all .2s; color:var(--mid);
}
.admin-mobile-hamburger:hover { background:var(--orange-pale); border-color:var(--orange); color:var(--orange); }
.admin-mobile-hamburger svg { width:20px; height:20px; display:block; }

.admin-mobile-overlay {
  display:none; position:fixed; inset:0; z-index:300;
  background:rgba(26,26,24,.6); backdrop-filter:blur(4px);
  opacity:0; transition:opacity .3s ease;
}
.admin-mobile-overlay.open { display:block; opacity:1; }

.admin-mobile-menu {
  position:fixed; top:0; right:0; z-index:301;
  width:300px; max-width:85vw; height:100dvh;
  background:var(--dark);
  display:flex; flex-direction:column;
  transform:translateX(100%); transition:transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y:auto;
}
.admin-mobile-menu.open { transform:translateX(0); }

.amm-header {
  display:flex; align-items:center; justify-content:space-between;
  padding:1.4rem 1.6rem; border-bottom:1px solid rgba(255,255,255,.08);
}
.amm-header .amm-label {
  font-size:10px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase;
  color:rgba(255,255,255,.35);
}
.amm-close {
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.1);
  border-radius:8px; width:36px; height:36px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:all .2s;
}
.amm-close:hover { background:rgba(216,90,48,.2); border-color:rgba(216,90,48,.3); }
.amm-close svg { width:18px; height:18px; stroke:rgba(255,255,255,.6); fill:none; stroke-width:2; stroke-linecap:round; }

.amm-links {
  flex:1; display:flex; flex-direction:column; gap:2px; padding:1rem;
}
.amm-links button {
  display:flex; align-items:center; gap:12px;
  padding:14px 16px; border-radius:10px;
  font-size:15px; font-weight:500; color:rgba(255,255,255,.75);
  transition:all .2s; background:none; border:none; cursor:pointer; text-align:left; width:100%;
  font-family:inherit;
}
.amm-links button:hover { background:rgba(216,90,48,.12); color:var(--orange-light); }
.amm-links button.active { background:rgba(216,90,48,.18); color:var(--orange-light); }
.amm-links button svg {
  width:20px; height:20px; stroke:currentColor; fill:none;
  stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; opacity:.5;
}
.amm-links button:hover svg, .amm-links button.active svg { opacity:1; }
.news-manager { max-width:900px; }
.nm-form { background:var(--white); border:1px solid var(--light); border-radius:14px; padding:1.5rem; margin-bottom:2rem; }
.nm-form h3 { font-family:'DM Sans',sans-serif; font-size:1.1rem; color:var(--dark); margin-bottom:1rem; display:flex; align-items:center; gap:.5rem; }
.nm-form h3 svg { width:20px; height:20px; stroke:var(--orange); fill:none; stroke-width:1.6; }
.nm-row { display:grid; grid-template-columns:1fr 1fr; gap:.8rem; margin-bottom:.8rem; }
.nm-row.full { grid-template-columns:1fr; }
.nm-field label { display:block; font-size:12px; font-weight:600; color:var(--muted); margin-bottom:.3rem; text-transform:uppercase; letter-spacing:.5px; }
.nm-field input, .nm-field textarea, .nm-field select { width:100%; padding:10px 12px; border:1px solid var(--light); border-radius:8px; font-size:14px; font-family:inherit; background:var(--bg); transition:.2s; }
.nm-field input:focus, .nm-field textarea:focus, .nm-field select:focus { outline:none; border-color:var(--orange); }
.nm-field textarea { resize:vertical; min-height:80px; }
.nm-actions { display:flex; gap:.6rem; margin-top:1rem; }
.nm-btn { padding:10px 20px; border-radius:8px; font-size:14px; font-weight:600; cursor:pointer; border:none; transition:.2s; }
.nm-btn-add { background:var(--dark); color:var(--white); }
.nm-btn-add:hover { background:var(--orange); }
.nm-btn-cancel { background:var(--light); color:var(--muted); }
.nm-btn-cancel:hover { background:var(--mid); }
.nm-list { display:flex; flex-direction:column; gap:.6rem; }
.nm-item { display:flex; align-items:center; gap:1rem; background:var(--white); border:1px solid var(--light); border-radius:12px; padding:1rem 1.2rem; transition:.2s; }
.nm-item:hover { border-color:var(--mid); }
.nm-item-info { flex:1; min-width:0; }
.nm-item-date { font-size:12px; color:var(--orange); font-weight:600; }
.nm-item-title { font-size:14px; font-weight:600; color:var(--dark); margin-top:.2rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.nm-item-cat { font-size:11px; color:var(--muted); margin-top:.15rem; }
.nm-item-del { background:none; border:1px solid #fecaca; color:#dc2626; border-radius:8px; padding:6px 12px; font-size:12px; font-weight:600; cursor:pointer; transition:.2s; white-space:nowrap; }
.nm-item-del:hover { background:#fef2f2; border-color:#dc2626; }
.nm-empty { text-align:center; padding:2rem; color:var(--muted); font-size:14px; }
.nm-featured-toggle { display:flex; align-items:center; gap:.5rem; font-size:13px; color:var(--muted); cursor:pointer; }
.nm-featured-toggle input { accent-color:var(--orange); }
@media(max-width:640px) {
  .admin-section { padding:0 .5rem; }
  .admin-dash { padding:1rem 0 2rem; }
  .admin-login { padding:2rem .5rem; }
  .admin-login-card { padding:1.8rem 1.2rem; }
  .admin-pw-row { flex-direction:column; }
  .admin-pw-row button { width:100%; padding:13px 20px; }
  .admin-topbar { flex-direction:column; align-items:flex-start; gap:.8rem; margin-bottom:1.2rem; }
  .admin-topbar h2 { font-size:1.2rem; }
  .admin-topbar .admin-stats { gap:.5rem; width:100%; }
  .admin-stat { padding:.6rem .8rem; flex:1; }
  .admin-stat .num { font-size:1.1rem; }
  .admin-stat .lbl { font-size:9px; letter-spacing:.5px; }
  .admin-filter { gap:.5rem; }
  .admin-filter select { font-size:12px; padding:7px 10px; flex:1; }
  .admin-charts { gap:1rem; }
  .admin-chart-card { padding:1rem; }
  .admin-chart-card h3 { font-size:13px; }
  .admin-averages { padding:1rem; }
  .avg-row { flex-wrap:wrap; gap:6px; }
  .avg-label { min-width:100%; font-size:12px; }
  .avg-bar-wrap { width:calc(100% - 52px); }
  .admin-table-wrap h3 { padding:1rem 1rem .6rem; }
  .admin-export { padding:7px 14px; font-size:12px; }
  .admin-tabs { display:none; }
  .admin-mobile-bar { display:flex; }
  .nm-row { grid-template-columns:1fr; }
  .nm-form { padding:1rem; }
  .nm-form h3 { font-size:1rem; }
  .nm-item { flex-direction:column; align-items:flex-start; gap:.6rem; padding:.8rem 1rem; }
  .nm-item-title { white-space:normal; }
  .nm-actions { flex-direction:column; }
  .nm-btn { width:100%; text-align:center; }
  .news-manager { max-width:100%; }
}

/* ── QUESTIONARIO ── */
.q-section { background:var(--white); }
.q-form-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); max-width:820px; margin:0 auto; overflow:hidden;
}
.q-header { background:var(--dark); padding:2rem 2.2rem; }
.q-header h3 {
  font-family:'DM Sans',sans-serif; font-size:1rem; color:white; margin-bottom:1.2rem;
  display:flex; align-items:center; gap:8px;
}
.q-header h3 svg { width:18px; height:18px; stroke:var(--orange-light); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.q-fields { display:grid; grid-template-columns:1fr 1fr; gap:.8rem; }
.q-field label { display:block; font-size:11px; font-weight:600; color:rgba(255,255,255,.4); letter-spacing:1px; text-transform:uppercase; margin-bottom:4px; }
.q-field input {
  width:100%; padding:10px 12px; border:1px solid rgba(255,255,255,.12);
  border-radius:8px; font-size:14px; font-family:'DM Sans',sans-serif;
  color:white; background:rgba(255,255,255,.06); outline:none; transition:border-color .2s;
}
.q-field input::placeholder { color:rgba(255,255,255,.25); }
.q-field input:focus { border-color:var(--orange); }

/* ── DATE PICKER PERSONALIZZATO ── */
.dp { position:relative; }
.dp-trigger {
  width:100%; padding:10px 12px; border:1px solid rgba(255,255,255,.12); border-radius:8px;
  font-size:14px; font-family:'DM Sans',sans-serif; color:white; background:rgba(255,255,255,.06);
  outline:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:8px;
  transition:border-color .2s;
}
.dp-trigger:hover { border-color:rgba(255,255,255,.25); }
.dp-trigger.dp-error { border-color:#ff6b6b; }
.dp-placeholder { color:rgba(255,255,255,.25); }
.dp-cal-ico { width:18px; height:18px; stroke:rgba(255,255,255,.5); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }
.dp-pop {
  position:absolute; top:calc(100% + 6px); left:0; z-index:50;
  background:var(--dark); border:1px solid rgba(255,255,255,.12); border-radius:12px;
  padding:.8rem; width:280px; max-width:calc(100vw - 3rem); box-shadow:0 12px 36px rgba(0,0,0,.4);
}
.dp-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:.6rem; }
.dp-title { font-size:14px; font-weight:700; color:white; }
.dp-nav {
  width:30px; height:30px; border-radius:8px; border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05); color:white; cursor:pointer; font-size:18px; line-height:1;
  display:flex; align-items:center; justify-content:center; transition:.2s; font-family:inherit;
}
.dp-nav:hover { background:var(--orange); border-color:var(--orange); }
.dp-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:2px; }
.dp-dow { margin-bottom:4px; }
.dp-dow-cell { text-align:center; font-size:11px; font-weight:600; color:rgba(255,255,255,.4); padding:4px 0; }
.dp-day {
  aspect-ratio:1; border:none; background:none; color:rgba(255,255,255,.85); border-radius:8px;
  font-size:13px; font-family:'DM Sans',sans-serif; cursor:pointer; transition:.15s;
  display:flex; align-items:center; justify-content:center;
}
.dp-day:hover { background:rgba(255,255,255,.12); }
.dp-day.sel { background:var(--orange); color:white; font-weight:700; }
.dp-day.empty { background:none; cursor:default; }
.q-block { padding:2rem 2.2rem; border-bottom:1px solid var(--border); }
.q-block:last-of-type { border-bottom:none; }
.q-block-title {
  display:flex; align-items:center; gap:10px;
  font-family:'DM Sans',sans-serif; font-size:1rem; font-weight:700; color:var(--dark); margin-bottom:1.5rem;
}
.q-block-num {
  width:30px; height:30px; background:var(--orange); color:white;
  border-radius:8px; display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:700; flex-shrink:0;
}
.q-item { margin-bottom:1.4rem; }
.q-item:last-child { margin-bottom:0; }
.q-item-text { font-size:14px; color:var(--mid); margin-bottom:.6rem; line-height:1.5; }
.q-scale { display:flex; gap:6px; }
.q-scale label { flex:1; text-align:center; cursor:pointer; }
.q-scale input[type="radio"] { display:none; }
.q-scale .q-chip {
  display:block; padding:8px 4px; border:1.5px solid var(--border);
  border-radius:8px; font-size:12px; font-weight:500; color:var(--muted); transition:all .2s; line-height:1.3;
}
.q-scale .q-chip span { display:block; font-size:10px; color:var(--muted); margin-top:2px; font-weight:400; }
.q-scale input[type="radio"]:checked + .q-chip { border-color:var(--orange); background:var(--orange-pale); color:var(--orange); font-weight:600; }
.q-scale label:hover .q-chip { border-color:var(--orange-light); }
.q-yesno { display:flex; gap:10px; }
.q-yesno label { cursor:pointer; }
.q-yesno input[type="radio"] { display:none; }
.q-yesno .q-yn-chip {
  display:flex; align-items:center; justify-content:center; gap:6px;
  padding:10px 28px; border:1.5px solid var(--border);
  border-radius:10px; font-size:14px; font-weight:500; color:var(--mid); transition:all .2s;
}
.q-yesno input[type="radio"]:checked + .q-yn-chip.yes { border-color:#16a34a; background:#f0fdf4; color:#16a34a; font-weight:600; }
.q-yesno input[type="radio"]:checked + .q-yn-chip.no { border-color:#dc2626; background:#fef2f2; color:#dc2626; font-weight:600; }
.q-yesno label:hover .q-yn-chip { border-color:var(--orange-light); }
.q-textarea {
  width:100%; padding:12px 14px; border:1px solid var(--border); border-radius:9px;
  font-size:14px; font-family:'DM Sans',sans-serif; color:var(--dark);
  background:var(--bg); outline:none; transition:border-color .2s; resize:vertical; min-height:100px;
}
.q-textarea:focus { border-color:var(--orange); }
.q-textarea::placeholder { color:var(--muted); }
.q-footer {
  padding:1.5rem 2.2rem 2rem; display:flex; align-items:center; justify-content:space-between;
  gap:1rem; flex-wrap:wrap; border-top:1px solid var(--border);
}
.q-footer .q-note { font-size:12px; color:var(--muted); }
.q-submit {
  padding:14px 36px; background:var(--orange); color:white; border:none;
  border-radius:10px; font-size:15px; font-weight:600; cursor:pointer;
  font-family:'DM Sans',sans-serif; transition:all .2s;
}
.q-submit:hover { background:var(--orange-dark); transform:translateY(-1px); box-shadow:var(--shadow-orange); }
.q-submit:disabled { opacity:.5; cursor:not-allowed; transform:none; box-shadow:none; }
.q-success { display:none; text-align:center; padding:4rem 2rem; }
.q-success.show { display:block; }
.q-success-ico {
  width:64px; height:64px; background:#f0fdf4; border-radius:50%;
  display:flex; align-items:center; justify-content:center; margin:0 auto 1.2rem;
}
.q-success-ico svg { width:32px; height:32px; stroke:#16a34a; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.q-success h2 { font-family:'DM Sans',sans-serif; font-size:1.5rem; color:var(--dark); margin-bottom:.5rem; }
.q-success p { font-size:15px; color:var(--muted); line-height:1.7; }
@media(max-width:640px) {
  .q-fields { grid-template-columns:1fr; }
  .q-scale { flex-wrap:wrap; }
  .q-scale label { flex:0 0 calc(33.33% - 4px); }
  .q-block, .q-header { padding:1.5rem 1.2rem; }
  .q-footer { padding:1.2rem; flex-direction:column; }
  .q-submit { width:100%; }
}
@keyframes spin { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
@keyframes fadeSlideOut {
  0% { opacity:1; transform:translateX(0); max-height:200px; }
  40% { opacity:0; transform:translateX(30px); }
  100% { opacity:0; transform:translateX(30px); max-height:0; padding-top:0; padding-bottom:0; margin-top:0; margin-bottom:0; }
}
.removing { animation: fadeSlideOut .4s ease forwards; pointer-events:none; overflow:hidden; }
tr.removing td { animation: fadeSlideOut .4s ease forwards; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position:fixed; left:0; right:0; bottom:0; z-index:400;
  background:var(--dark); color:rgba(255,255,255,.85);
  box-shadow:0 -8px 30px rgba(0,0,0,.25);
  transform:translateY(110%); transition:transform .4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.show { transform:translateY(0); }
.cookie-banner-inner {
  max-width:1200px; margin:0 auto; padding:1.3rem 2rem;
  display:flex; align-items:center; gap:2rem;
}
.cookie-banner-text strong { display:block; color:var(--white); font-size:15px; font-weight:700; margin-bottom:.3rem; }
.cookie-banner-text p { font-size:13px; line-height:1.5; color:rgba(255,255,255,.6); margin:0; }
.cookie-banner-actions { display:flex; gap:.6rem; flex-shrink:0; }
.cookie-btn {
  padding:11px 22px; border-radius:9px; font-size:14px; font-weight:600;
  font-family:'DM Sans',sans-serif; cursor:pointer; transition:all .2s; white-space:nowrap; border:none;
}
.cookie-btn-primary { background:var(--orange); color:var(--white); }
.cookie-btn-primary:hover { background:var(--orange-dark); }
.cookie-btn-ghost { background:rgba(255,255,255,.08); color:rgba(255,255,255,.85); border:1px solid rgba(255,255,255,.15); }
.cookie-btn-ghost:hover { background:rgba(255,255,255,.16); }

.cookie-fab {
  position:fixed; left:1.3rem; bottom:1.3rem; z-index:399;
  width:46px; height:46px; border-radius:50%; border:none; cursor:pointer;
  background:var(--dark); color:var(--white);
  display:none; align-items:center; justify-content:center;
  box-shadow:0 6px 20px rgba(0,0,0,.25); transition:transform .2s, background .2s;
  opacity:0;
}
.cookie-fab.show { display:flex; animation:cookieFabIn .3s ease forwards; }
.cookie-fab:hover { background:var(--orange); transform:translateY(-2px); }
.cookie-fab svg { width:24px; height:24px; stroke:currentColor; fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
@keyframes cookieFabIn { from { opacity:0; transform:scale(.7); } to { opacity:1; transform:scale(1); } }

.cookie-modal-overlay {
  position:fixed; inset:0; z-index:401; display:none;
  background:rgba(26,26,24,.6); backdrop-filter:blur(4px);
  align-items:center; justify-content:center; padding:1.5rem;
}
.cookie-modal-overlay.open { display:flex; }
.cookie-modal {
  background:var(--white); border-radius:16px; max-width:480px; width:100%;
  max-height:90vh; overflow-y:auto; box-shadow:0 20px 60px rgba(0,0,0,.3);
}
.cookie-modal-head {
  display:flex; align-items:center; justify-content:space-between;
  padding:1.4rem 1.6rem; border-bottom:1px solid var(--light);
}
.cookie-modal-head h3 { font-family:'DM Sans',sans-serif; font-size:1.2rem; color:var(--dark); margin:0; }
.cookie-modal-close {
  background:none; border:none; cursor:pointer; width:34px; height:34px; border-radius:8px;
  display:flex; align-items:center; justify-content:center; transition:.2s;
}
.cookie-modal-close:hover { background:var(--light); }
.cookie-modal-close svg { width:20px; height:20px; stroke:var(--muted); fill:none; stroke-width:2; stroke-linecap:round; }
.cookie-modal-body { padding:1rem 1.6rem; }
.cookie-opt {
  display:flex; align-items:flex-start; justify-content:space-between; gap:1rem;
  padding:1rem 0; border-bottom:1px solid var(--light);
}
.cookie-opt:last-child { border-bottom:none; }
.cookie-opt-info { flex:1; }
.cookie-opt-title { display:block; font-size:14px; font-weight:700; color:var(--dark); margin-bottom:.2rem; }
.cookie-opt-desc { display:block; font-size:12.5px; line-height:1.45; color:var(--muted); }
.cookie-switch { position:relative; display:inline-block; width:44px; height:24px; flex-shrink:0; }
.cookie-switch input { opacity:0; width:0; height:0; }
.cookie-slider {
  position:absolute; inset:0; cursor:pointer; background:var(--mid); border-radius:24px; transition:.25s;
}
.cookie-slider:before {
  content:''; position:absolute; height:18px; width:18px; left:3px; bottom:3px;
  background:var(--white); border-radius:50%; transition:.25s;
}
.cookie-switch input:checked + .cookie-slider { background:var(--orange); }
.cookie-switch input:checked + .cookie-slider:before { transform:translateX(20px); }
.cookie-switch.disabled .cookie-slider { background:var(--orange); opacity:.5; cursor:not-allowed; }
.cookie-modal-foot {
  display:flex; gap:.6rem; justify-content:flex-end;
  padding:1.2rem 1.6rem; border-top:1px solid var(--light);
}

@media(max-width:760px) {
  .cookie-banner-inner { flex-direction:column; align-items:stretch; gap:1rem; padding:1.2rem 1.2rem; }
  .cookie-banner-actions { flex-direction:column; }
  .cookie-btn { width:100%; }
  .cookie-modal-foot { flex-direction:column; }
  .cookie-modal-foot .cookie-btn { width:100%; }
}