/* ============================================================
   DELIGO SRL — Hugo Theme CSS
   Design: "Digital Pulse" — Tech Futurism
   Colors: Navy #0A1628, Blue #1565C0, Orange #E87722
   Fonts: Space Grotesk (headings) + Outfit (body)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0A1628;
  --navy-dark: #060E1C;
  --blue: #1565C0;
  --blue-light: #4A90D9;
  --orange: #E87722;
  --orange-light: #F5A623;
  --green: #4CAF50;
  --purple: #9C6FFF;
  --muted: #8FA3C0;
  --white: #FFFFFF;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Container ── */
.dg-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) { .dg-container { padding: 0 2rem; } }

/* ── Grid ── */
.dg-grid { display: grid; gap: 1.5rem; }
.dg-grid--2 { grid-template-columns: 1fr; }
.dg-grid--3 { grid-template-columns: 1fr; }
.dg-grid--4 { grid-template-columns: 1fr; }
.dg-gap-xl { gap: 3rem; }
.dg-align-center { align-items: center; }
@media (min-width: 640px) { .dg-grid--3 { grid-template-columns: repeat(2, 1fr); } .dg-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dg-grid--2 { grid-template-columns: repeat(2, 1fr); } .dg-grid--3 { grid-template-columns: repeat(3, 1fr); } .dg-grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* ── Sections ── */
.dg-section { padding: 5rem 0; position: relative; background: var(--navy); }
.dg-section--darker { background: var(--navy-dark); }

.dg-section-header { text-align: center; margin-bottom: 3rem; }
.dg-section-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; color: var(--white); margin: 0.75rem 0; line-height: 1.2; }
.dg-section-title--left { text-align: left; }
.dg-section-subtitle { color: var(--muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.dg-divider { width: 64px; height: 4px; background: linear-gradient(to right, var(--blue), var(--blue-light)); border-radius: 2px; margin: 1.5rem auto 0; }
.dg-divider--orange { background: linear-gradient(to right, var(--orange), var(--orange-light)); }
.dg-divider--orange-blue { background: linear-gradient(to right, var(--orange), var(--blue)); }

/* ── Typography ── */
.dg-text--orange { color: var(--orange); }
.dg-text--blue { color: var(--blue-light); }
.dg-text--muted { color: var(--muted); }
.dg-text--sm { font-size: 0.875rem; }

/* ── Tags ── */
.dg-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.dg-tag--blue { background: rgba(21,101,192,0.2); color: var(--blue-light); border: 1px solid rgba(21,101,192,0.4); }
.dg-tag--orange { background: rgba(232,119,34,0.2); color: var(--orange); border: 1px solid rgba(232,119,34,0.4); }
.dg-tag--sm { font-size: 0.68rem; padding: 3px 10px; }

/* ── Buttons ── */
.dg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.dg-btn--orange { background: var(--orange); color: var(--white); }
.dg-btn--orange:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,119,34,0.4); }
.dg-btn--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.dg-btn--outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.dg-btn--outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.dg-btn--outline-white:hover { background: rgba(255,255,255,0.1); }
.dg-btn--sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.dg-btn--full { width: 100%; justify-content: center; }

/* ── Links ── */
.dg-link { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; transition: all var(--transition); display: inline-flex; align-items: center; gap: 0.25rem; }
.dg-link--blue { color: var(--blue-light); }
.dg-link--orange { color: var(--orange); }
.dg-link--green { color: var(--green); }
.dg-link--purple { color: var(--purple); }
.dg-link:hover { gap: 0.5rem; }

/* ── Fade In Animation ── */
.dg-fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.dg-fade-in.dg-visible { opacity: 1; transform: translateY(0); }

/* ── NAVBAR ── */
.dg-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
.dg-navbar.dg-navbar--scrolled {
  background: rgba(6,14,28,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.dg-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.dg-navbar__logo-img { height: 56px; width: auto; object-fit: contain; }
.dg-navbar__links { display: none; list-style: none; gap: 0.25rem; }
@media (min-width: 768px) { .dg-navbar__links { display: flex; } }
.dg-navbar__link {
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.dg-navbar__link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.dg-navbar__cta { display: none; }
@media (min-width: 768px) { .dg-navbar__cta { display: inline-flex; } }
.dg-navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
}
@media (min-width: 768px) { .dg-navbar__hamburger { display: none; } }
.dg-navbar__hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.dg-navbar__mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  background: rgba(6,14,28,0.97);
  border-top: 1px solid rgba(21,101,192,0.2);
}
.dg-navbar__mobile.dg-open { display: flex; }
.dg-navbar__mobile-link {
  padding: 0.75rem 0;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.dg-navbar__mobile-link:hover { color: var(--orange); }

/* ── HERO ── */
.dg-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 8rem 1.5rem 4rem;
}
.dg-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,14,28,0.92) 0%, rgba(10,22,40,0.75) 50%, rgba(6,14,28,0.85) 100%);
}
.dg-hero__content { position: relative; z-index: 1; max-width: 700px; }
.dg-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
  letter-spacing: -0.02em;
}
.dg-hero__subtitle { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2rem; max-width: 560px; }
.dg-hero__badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.dg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
}
.dg-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.dg-hero__stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 600px;
}
.dg-hero__stat { display: flex; flex-direction: column; gap: 0.2rem; }
.dg-hero__stat-value { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.dg-hero__stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.dg-hero__stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); align-self: center; display: none; }
@media (min-width: 640px) { .dg-hero__stat-divider { display: block; } }
.dg-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }

/* ── VIDEO ── */
.dg-video-wrapper { position: relative; margin-bottom: 2.5rem; }
.dg-video-glow { position: absolute; inset: -4px; background: linear-gradient(to right, rgba(21,101,192,0.4), rgba(232,119,34,0.2), rgba(21,101,192,0.4)); border-radius: 20px; filter: blur(8px); }
.dg-video-frame { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid rgba(21,101,192,0.3); box-shadow: 0 20px 60px rgba(21,101,192,0.2); }
.dg-video-thumb { position: relative; cursor: pointer; }
.dg-video-thumb__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.dg-video-thumb__overlay { position: absolute; inset: 0; background: rgba(10,22,40,0.5); transition: background var(--transition); }
.dg-video-thumb:hover .dg-video-thumb__overlay { background: rgba(10,22,40,0.3); }
.dg-video-thumb__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.dg-play-pulse {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(232,119,34,0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%{transform:scale(1);opacity:0.8} 100%{transform:scale(2);opacity:0} }
.dg-play-btn {
  position: relative;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(232,119,34,0.5);
  transition: transform var(--transition);
}
.dg-video-thumb:hover .dg-play-btn { transform: scale(1.1); }
.dg-video-thumb__label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(10,22,40,0.85);
  border: 1px solid rgba(74,144,217,0.4);
  border-radius: 20px;
  color: var(--white);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.dg-video-iframe-wrapper { position: relative; width: 100%; aspect-ratio: 16/9; }
.dg-video-iframe-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.dg-stats-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.dg-stats-strip__item { text-align: center; padding: 1.25rem; border-radius: var(--radius); }
.dg-stats-strip__item--blue { background: rgba(74,144,217,0.1); border: 1px solid rgba(74,144,217,0.25); }
.dg-stats-strip__item--orange { background: rgba(232,119,34,0.1); border: 1px solid rgba(232,119,34,0.25); }
.dg-stats-strip__item--green { background: rgba(76,175,80,0.1); border: 1px solid rgba(76,175,80,0.25); }
.dg-stats-strip__value { display: block; font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: var(--white); }
.dg-stats-strip__label { display: block; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.25rem; }

/* ── CHI SIAMO ── */
.dg-values { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.dg-value-item { display: flex; gap: 1rem; align-items: flex-start; }
.dg-value-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dg-value-icon--blue { background: rgba(21,101,192,0.15); color: var(--blue-light); }
.dg-value-icon--orange { background: rgba(232,119,34,0.15); color: var(--orange); }
.dg-value-icon--green { background: rgba(76,175,80,0.15); color: var(--green); }
.dg-value-title { font-family: var(--font-heading); font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.dg-founders-card { background: rgba(15,32,64,0.8); border: 1px solid rgba(21,101,192,0.2); border-radius: var(--radius); padding: 2rem; }
.dg-founders-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.dg-founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }
.dg-founder { display: flex; gap: 0.75rem; align-items: flex-start; }
.dg-founder__avatar { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.dg-founder__avatar--blue { background: rgba(21,101,192,0.25); color: var(--blue-light); border: 1px solid rgba(21,101,192,0.4); }
.dg-founder__avatar--orange { background: rgba(232,119,34,0.25); color: var(--orange); border: 1px solid rgba(232,119,34,0.4); }
.dg-founder__avatar--green { background: rgba(76,175,80,0.25); color: var(--green); border: 1px solid rgba(76,175,80,0.4); }
.dg-founder__avatar--purple { background: rgba(156,111,255,0.25); color: var(--purple); border: 1px solid rgba(156,111,255,0.4); }
.dg-founder__name { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: var(--white); }
.dg-founder__role { font-size: 0.78rem; color: var(--muted); }
.dg-founder__contact a { font-size: 0.78rem; color: var(--blue-light); }
.dg-company-info { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.dg-company-info__item { display: flex; gap: 0.75rem; font-size: 0.85rem; }
.dg-company-info__label { color: var(--muted); min-width: 40px; }
.dg-company-info__value { color: var(--white); }

/* ── SETTORI ── */
.dg-sector-card {
  background: rgba(15,32,64,0.6);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  cursor: default;
}
.dg-sector-card:hover { transform: translateY(-4px); }
.dg-sector-card--blue:hover { border-color: rgba(21,101,192,0.5); box-shadow: 0 8px 32px rgba(21,101,192,0.2); }
.dg-sector-card--orange:hover { border-color: rgba(232,119,34,0.5); box-shadow: 0 8px 32px rgba(232,119,34,0.2); }
.dg-sector-card--green:hover { border-color: rgba(76,175,80,0.5); box-shadow: 0 8px 32px rgba(76,175,80,0.2); }
.dg-sector-card--purple:hover { border-color: rgba(156,111,255,0.5); box-shadow: 0 8px 32px rgba(156,111,255,0.2); }
.dg-sector-card__icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.dg-sector-card--blue .dg-sector-card__icon { background: rgba(21,101,192,0.15); color: var(--blue-light); }
.dg-sector-card--orange .dg-sector-card__icon { background: rgba(232,119,34,0.15); color: var(--orange); }
.dg-sector-card--green .dg-sector-card__icon { background: rgba(76,175,80,0.15); color: var(--green); }
.dg-sector-card--purple .dg-sector-card__icon { background: rgba(156,111,255,0.15); color: var(--purple); }
.dg-sector-card__title { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--white); margin-bottom: 0.75rem; }
.dg-sector-card__desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.dg-sector-card__count { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.dg-sector-card__link { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; transition: color var(--transition); }
.dg-sector-card--blue .dg-sector-card__link { color: var(--blue-light); }
.dg-sector-card--orange .dg-sector-card__link { color: var(--orange); }
.dg-sector-card--green .dg-sector-card__link { color: var(--green); }
.dg-sector-card--purple .dg-sector-card__link { color: var(--purple); }

/* ── TABS ── */
.dg-tabs { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 2.5rem; }
.dg-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(15,32,64,0.8);
  border: 1px solid rgba(21,101,192,0.2);
  cursor: pointer;
  transition: all var(--transition);
}
.dg-tab:hover { color: var(--white); border-color: rgba(21,101,192,0.4); }
.dg-tab--active { color: var(--white); }
.dg-tab-panel { display: none; }
.dg-tab-panel--active { display: block; }
.dg-tab-count { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; opacity: 0.3; line-height: 1; margin-bottom: 0.5rem; }
.dg-tab-count span { font-size: 0.75rem; color: var(--muted); opacity: 1; display: block; text-transform: uppercase; letter-spacing: 0.05em; }
.dg-tab-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.dg-feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin: 1.25rem 0; }
.dg-feature-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--muted); }
.dg-feature-list li::before { content: '✓'; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; margin-top: 1px; }
.dg-tab-img-wrapper { position: relative; border-radius: var(--radius); overflow: hidden; }
.dg-tab-img { width: 100%; height: 300px; object-fit: cover; }
@media (min-width: 1024px) { .dg-tab-img { height: 380px; } }
.dg-tab-img__badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: var(--white);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  backdrop-filter: blur(8px);
}

/* ── ACCORDION ── */
.dg-accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.dg-accordion__item { background: rgba(15,32,64,0.6); border: 1px solid rgba(21,101,192,0.15); border-radius: var(--radius); overflow: hidden; }
.dg-accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: background var(--transition);
}
.dg-accordion__btn:hover { background: rgba(21,101,192,0.08); }
.dg-accordion__btn--active { background: rgba(21,101,192,0.1); }
.dg-accordion__icon { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dg-accordion__arrow { margin-left: auto; flex-shrink: 0; transition: transform var(--transition); }
.dg-accordion__btn--active .dg-accordion__arrow { transform: rotate(180deg); }
.dg-accordion__body { display: none; padding: 0 1.5rem 1.5rem; color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.dg-accordion__body--open { display: block; }
.dg-tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }

/* ── SOLUTION CARDS ── */
.dg-sol-card {
  background: rgba(15,32,64,0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.dg-sol-card:hover { transform: translateY(-3px); }
.dg-sol-card--blue:hover { border-color: rgba(21,101,192,0.4); }
.dg-sol-card--orange:hover { border-color: rgba(232,119,34,0.4); }
.dg-sol-card__num { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 900; color: var(--blue-light); opacity: 0.4; line-height: 1; margin-bottom: 0.5rem; }
.dg-sol-card h4 { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; color: var(--white); margin-bottom: 0.5rem; }
.dg-sol-card p { font-size: 0.825rem; color: var(--muted); line-height: 1.6; }

/* ── INFRASTRUTTURA ── */
.dg-infra-card {
  background: rgba(15,32,64,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
}
.dg-infra-card:hover { transform: translateY(-3px); border-color: rgba(156,111,255,0.3); }
.dg-infra-card__icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(156,111,255,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.dg-infra-card h4 { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 0.5rem; }
.dg-infra-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.dg-nis2-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: rgba(232,119,34,0.08);
  border: 1px solid rgba(232,119,34,0.25);
  border-radius: var(--radius);
}
.dg-nis2-banner__icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(232,119,34,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dg-nis2-banner > div { flex: 1; min-width: 200px; }
.dg-nis2-banner strong { display: block; font-family: var(--font-heading); font-size: 1rem; color: var(--white); margin-bottom: 0.25rem; }
.dg-nis2-banner p { font-size: 0.875rem; color: var(--muted); }

/* ── CTA BANNER ── */
.dg-cta-banner { position: relative; padding: 5rem 0; overflow: hidden; }
.dg-cta-banner__bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0D2B6B, #1565C0, #0A1628); }
.dg-cta-banner__grid {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}
.dg-cta-banner__content { position: relative; z-index: 1; text-align: center; }
.dg-cta-banner h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.dg-cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.dg-cta-banner__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── CONTATTI ── */
.dg-contact-info { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.dg-contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.dg-contact-item__icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dg-contact-item__label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.dg-contact-item__value { font-family: var(--font-heading); font-weight: 600; color: var(--white); font-size: 0.95rem; }
.dg-contact-item__value a { color: var(--white); transition: color var(--transition); }
.dg-contact-item__value a:hover { color: var(--blue-light); }
.dg-company-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.dg-contact-form-wrapper { background: rgba(15,32,64,0.6); border: 1px solid rgba(21,101,192,0.2); border-radius: var(--radius); padding: 2rem; }
.dg-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.dg-form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .dg-form-row { grid-template-columns: 1fr 1fr; } }
.dg-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.dg-form-group label { font-size: 0.8rem; color: var(--muted); font-family: var(--font-heading); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }
.dg-form-group input,
.dg-form-group select,
.dg-form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(21,101,192,0.25);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.dg-form-group input::placeholder,
.dg-form-group textarea::placeholder { color: rgba(143,163,192,0.5); }
.dg-form-group input:focus,
.dg-form-group select:focus,
.dg-form-group textarea:focus { border-color: var(--blue-light); background: rgba(255,255,255,0.07); }
.dg-form-group select option { background: var(--navy-dark); }

/* ── FOOTER ── */
.dg-footer { background: var(--navy-dark); border-top: 1px solid rgba(21,101,192,0.15); }
.dg-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 0; }
@media (min-width: 640px) { .dg-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dg-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.dg-footer__logo { height: 56px; width: auto; object-fit: contain; margin-bottom: 1.25rem; }
.dg-footer__brand p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; max-width: 280px; }
.dg-footer__badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.dg-footer__contacts { display: flex; flex-direction: column; gap: 0.5rem; }
.dg-footer__contacts a,
.dg-footer__contacts span { font-size: 0.85rem; color: var(--muted); transition: color var(--transition); }
.dg-footer__contacts a:hover { color: var(--blue-light); }
.dg-footer__col h4 { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem; }
.dg-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.dg-footer__col a { font-size: 0.875rem; color: var(--muted); transition: color var(--transition); }
.dg-footer__col a:hover { color: var(--blue-light); }
.dg-footer__bottom { border-top: 1px solid rgba(21,101,192,0.1); }
.dg-footer__bottom .dg-container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.25rem; padding-bottom: 1.25rem; }
.dg-footer__bottom p { font-size: 0.78rem; color: var(--muted); }
.dg-footer__bottom div { display: flex; align-items: center; gap: 1rem; font-size: 0.78rem; color: var(--muted); }
.dg-footer__bottom a { color: var(--muted); transition: color var(--transition); }
.dg-footer__bottom a:hover { color: var(--blue-light); }

/* ── Toast notification ── */
.dg-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(15,32,64,0.95);
  border: 1px solid rgba(76,175,80,0.4);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(12px);
}
.dg-toast.dg-toast--show { transform: translateY(0); opacity: 1; }
