/* D.G. Aspirazione — website stylesheet. Uses tokens from ../../colors_and_type.css */
@import url('../../colors_and_type.css?v=10');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--fg-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

:focus-visible {
  outline: 2px solid var(--dg-blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Reveal animation ---------- */
.dg-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
}
.dg-reveal.is-in { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.dg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 14px;
  padding: 11px 20px; border-radius: 999px; border: 0;
  transition: all 240ms var(--ease-out);
  white-space: nowrap;
}
.dg-btn-lg { font-size: 15px; padding: 14px 26px; }
.dg-btn-primary { background: var(--dg-blue-500); color: #fff; box-shadow: 0 10px 28px rgba(20,35,68,0.28); }
.dg-btn-primary:hover { background: var(--dg-blue-600); transform: translateY(-1px); box-shadow: 0 14px 36px rgba(20,35,68,0.36); }
.dg-btn-primary:active { transform: translateY(0); box-shadow: var(--shadow-xs); }
.dg-btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.dg-btn-ghost {
  background: rgba(255,255,255,0.82); color: var(--fg);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.dg-btn-ghost:hover { background: #fff; border-color: var(--steel-300); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.dg-btn-white { background: #fff; color: var(--dg-blue-700); box-shadow: var(--shadow-sm); }
.dg-btn-white:hover { background: #fff; color: var(--dg-blue-900); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ---------- Overline / sections ---------- */
.dg-overline {
  display: inline-block; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--dg-blue-600);
}
.dg-overline.light { color: var(--dg-blue-300); }
.dg-section-head { max-width: 720px; margin: 0 auto var(--space-7); text-align: center; }
.dg-section-head .dg-overline { margin-bottom: 14px; }
.dg-section-title {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.02em; line-height: 1.1; color: var(--fg); margin: 0 0 14px;
  text-wrap: balance;
}
.dg-section-sub { font-size: 17px; line-height: 1.6; color: var(--fg-body); margin: 0; }

/* ---------- Header ---------- */
.dg-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms, box-shadow 200ms;
}
.dg-header.is-scrolled { border-bottom-color: var(--border); box-shadow: 0 1px 0 rgba(12,17,24,0.02); }
.dg-header-inner {
  max-width: var(--container); margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; gap: 28px;
}
.dg-brand { display: inline-flex; align-items: center; }
.dg-brand img { height: 26px; }
.dg-nav { display: flex; gap: 6px; margin-left: auto; }
.dg-nav-link {
  padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 500;
  color: var(--fg); text-decoration: none; transition: background 200ms, color 200ms;
}
.dg-nav-link:hover { background: var(--steel-50); }
.dg-nav-link.is-active { background: var(--dg-blue-600); color: #fff; }

/* ---------- Hero (full-bleed background) ---------- */
.dg-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.dg-hero-bg { position: absolute; inset: 0; z-index: 0; }
.dg-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.dg-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(217,227,238,0.98) 0%,
    rgba(217,227,238,0.96) 32%,
    rgba(217,227,238,0.88) 50%,
    rgba(217,227,238,0.6) 66%,
    rgba(217,227,238,0.2) 82%,
    rgba(217,227,238,0) 96%);
  pointer-events: none;
}
.dg-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto; width: 100%;
  padding: 0 28px;
}
.dg-hero-copy {
  max-width: 620px;
  padding: 96px 0;
  text-align: left;
}
.dg-hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(48px, 6vw, 88px); line-height: 1.0; letter-spacing: -0.03em;
  color: var(--fg); margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 6px;
  text-wrap: balance;
}
.dg-hero-title > span { white-space: nowrap; }
.dg-hero-italic {
  font-style: italic; font-weight: 900;
  background: var(--grad-logo);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  display: inline-block; padding-right: 0.08em;
}
.dg-hero-sub { font-size: 19px; line-height: 1.55; color: var(--fg); font-weight: 500; margin: 0 0 32px; max-width: 540px; }
.dg-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.dg-hero-proof {
  display: flex; align-items: center; gap: 18px;
  padding-top: 24px; border-top: 1px solid rgba(6,14,34,0.14);
}
.dg-hero-proof > div { display: flex; flex-direction: column; gap: 2px; }
.dg-hero-proof strong {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 24px; color: var(--fg); letter-spacing: -0.01em;
}
.dg-hero-proof span { font-size: 12px; color: var(--fg-body); font-weight: 600; letter-spacing: 0.02em; }
.dg-sep { width: 1px; height: 32px; background: rgba(6,14,34,0.22); }

/* ---------- Stat band ---------- */
.dg-statband {
  max-width: var(--container); margin: 96px auto 0; padding: 0 28px;
}
.dg-statband-inner {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--grad-hero); color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 48px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  box-shadow: 0 18px 40px rgba(6,14,34,0.28);
}
.dg-statband-inner::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 120% at 10% 50%, rgba(143,176,199,0.18), transparent 60%),
    radial-gradient(ellipse 65% 120% at 90% 50%, rgba(111,143,180,0.2), transparent 60%),
    radial-gradient(ellipse 38% 58% at 50% 12%, rgba(255,255,255,0.06), transparent 70%),
    radial-gradient(ellipse 30% 45% at 50% 100%, rgba(6,14,34,0.35), transparent 70%);
  opacity: 0.9;
}
.dg-statband-inner > * { position: relative; z-index: 1; }
.dg-stat { text-align: center; flex: 1; }
.dg-stat-n {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(40px, 4.8vw, 60px); letter-spacing: -0.02em; line-height: 1; color: #fff;
}
.dg-stat-l { font-size: 13px; color: #fff; margin-top: 8px; letter-spacing: 0.06em; font-weight: 600; text-shadow: 0 1px 2px rgba(6,14,34,0.35); }
.dg-stat-sep { width: 1px; height: 48px; background: rgba(255,255,255,0.28); }

/* ---------- Services grid ---------- */
.dg-svc-section { padding: 96px 28px; max-width: var(--container); margin: 0 auto; }
.dg-svc-section.is-compact { padding: 48px 28px; }
.dg-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Base card — light dusty #bfd2e0 with a unique smoky gradient per card
   via nth-child on the ::before pseudo-element. Dark navy text for contrast. */
.dg-svc {
  --svc-base: #bfd2e0;
  background: var(--svc-base);
  color: var(--dg-blue-900);
  border: 1px solid rgba(20,35,68,0.08);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out), border-color 240ms var(--ease-out);
  display: flex; flex-direction: column; gap: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.dg-svc::before {
  content: ''; position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  transition: transform 720ms var(--ease-out), opacity 480ms var(--ease-out);
  opacity: 0.7;
}
.dg-svc > * { position: relative; z-index: 1; }
.dg-svc:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(20,35,68,0.18);
  border-color: rgba(20,35,68,0.14);
}
.dg-svc:hover::before { opacity: 0.85; transform: scale(1.02); }
.dg-svc:hover .dg-svc-link { gap: 10px; color: var(--dg-blue-900); }

/* Six unique smoke formations. Subtle white highlights and a hint of cool
   shadow give each card a distinct — but understated — smoke feel. */
.dg-svc-grid .dg-svc:nth-child(1)::before {
  background:
    radial-gradient(ellipse 72% 55% at 18% 22%, rgba(255,255,255,0.35), transparent 62%),
    radial-gradient(ellipse 50% 38% at 90% 92%, rgba(255,255,255,0.2), transparent 60%),
    radial-gradient(ellipse 32% 26% at 58% 50%, rgba(75,100,135,0.05), transparent 70%);
}
.dg-svc-grid .dg-svc:nth-child(2)::before {
  background:
    radial-gradient(ellipse 92% 48% at 50% 110%, rgba(255,255,255,0.4), transparent 66%),
    radial-gradient(ellipse 44% 34% at 50% 35%, rgba(255,255,255,0.2), transparent 68%),
    radial-gradient(ellipse 26% 22% at 18% 18%, rgba(75,100,135,0.05), transparent 70%);
}
.dg-svc-grid .dg-svc:nth-child(3)::before {
  background:
    linear-gradient(215deg, rgba(255,255,255,0.32) 0%, transparent 55%),
    radial-gradient(ellipse 48% 52% at 14% 86%, rgba(255,255,255,0.24), transparent 60%),
    radial-gradient(ellipse 30% 24% at 78% 52%, rgba(75,100,135,0.04), transparent 72%);
}
.dg-svc-grid .dg-svc:nth-child(4)::before {
  background:
    radial-gradient(ellipse 58% 130% at 108% 55%, rgba(255,255,255,0.34), transparent 58%),
    radial-gradient(ellipse 36% 30% at 22% 24%, rgba(255,255,255,0.18), transparent 65%),
    radial-gradient(ellipse 28% 22% at 42% 94%, rgba(75,100,135,0.05), transparent 68%);
}
.dg-svc-grid .dg-svc:nth-child(5)::before {
  background:
    radial-gradient(ellipse 54% 48% at 22% 22%, rgba(255,255,255,0.32), transparent 63%),
    radial-gradient(ellipse 58% 50% at 82% 80%, rgba(255,255,255,0.28), transparent 63%),
    radial-gradient(ellipse 24% 20% at 50% 50%, rgba(75,100,135,0.04), transparent 72%);
}
.dg-svc-grid .dg-svc:nth-child(6)::before {
  background:
    radial-gradient(ellipse 115% 62% at 50% 112%, rgba(255,255,255,0.36), transparent 62%),
    radial-gradient(ellipse 34% 28% at 10% 12%, rgba(255,255,255,0.18), transparent 65%),
    radial-gradient(ellipse 28% 22% at 88% 28%, rgba(75,100,135,0.05), transparent 70%);
}

.dg-svc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--dg-blue-900); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
  border: 1px solid rgba(6,14,34,0.5);
  box-shadow: 0 2px 8px rgba(6,14,34,0.18);
}
.dg-svc-title { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--dg-blue-900); margin: 0; letter-spacing: -0.01em; }
.dg-svc-desc { font-size: 14px; line-height: 1.55; color: rgba(6,14,34,0.72); margin: 0; flex: 1; }
.dg-svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.dg-tag {
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: 999px; background: rgba(255,255,255,0.55); color: var(--dg-blue-800);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.5);
}
.dg-svc-link {
  font-size: 13px; font-weight: 600; color: var(--dg-blue-700); margin-top: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 200ms var(--ease-out), color 200ms var(--ease-out);
}

/* ---------- Sectors (photo-dominant poster cards) ---------- */
.dg-sectors { padding: 0 28px 96px; max-width: var(--container); margin: 0 auto; }
.dg-sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dg-sector {
  position: relative; overflow: hidden; isolation: isolate;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: var(--dg-blue-900);
  cursor: pointer;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}
.dg-sector:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.dg-sector-media { position: absolute; inset: 0; z-index: 0; }
.dg-sector-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 720ms var(--ease-out);
  filter: saturate(0.95);
}
.dg-sector:hover .dg-sector-media img { transform: scale(1.06); }
.dg-sector::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(6,14,34,0.15) 0%,
    rgba(6,14,34,0) 32%,
    rgba(6,14,34,0.15) 55%,
    rgba(6,14,34,0.88) 100%);
}
.dg-sector-tag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #fff;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 6px 12px; border-radius: 999px;
}
.dg-sector-content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 28px 26px;
  color: #fff;
  transform: translateY(0);
  transition: transform 420ms var(--ease-out);
}
.dg-sector:hover .dg-sector-content { transform: translateY(-4px); }
.dg-sector h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 26px; line-height: 1.1; letter-spacing: -0.015em;
  color: #fff; margin: 0 0 8px;
}
.dg-sector p {
  font-size: 14px; line-height: 1.5;
  color: rgba(255,255,255,0.85); margin: 0;
}

/* ---------- Gallery ---------- */
.dg-gallery-section { padding: 64px 28px; background: #EEF4F8; }
.dg-gallery-section .dg-section-head { max-width: 720px; margin: 0 auto var(--space-6); }
.dg-gallery-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px;
  grid-auto-flow: dense; gap: 12px;
}
.dg-gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  cursor: pointer; margin: 0;
  transition: all 240ms var(--ease-out);
}
.dg-gallery-item.span-tall { grid-row: span 2; }
.dg-gallery-item.span-wide { grid-column: span 2; }
.dg-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 480ms var(--ease-out); }
.dg-gallery-item:hover img { transform: scale(1.05); }
.dg-gallery-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 12px 14px;
  background: linear-gradient(180deg, rgba(6,14,34,0) 0%, rgba(6,14,34,0.75) 100%);
  color: #fff; font-size: 12px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.dg-lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(6,14,34,0.9);
  display: flex; align-items: center; justify-content: center; padding: 40px;
  cursor: zoom-out;
}
.dg-lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.dg-lightbox-tag { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 14px; font-weight: 600; background: rgba(255,255,255,0.12); backdrop-filter: blur(10px); padding: 8px 16px; border-radius: 999px; }
.dg-lightbox-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.14); color: #fff; border: 0; font-size: 24px; }

/* ---------- Process ---------- */
.dg-process { padding: 96px 28px; max-width: var(--container); margin: 0 auto; background: var(--steel-25); }
.dg-process-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.dg-process-step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; position: relative; }
.dg-process-n { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 36px; color: var(--dg-blue-500); letter-spacing: -0.02em; line-height: 1; margin-bottom: 12px; }
.dg-process-body h4 { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--fg); margin: 0 0 4px; }
.dg-process-body p { font-size: 13px; color: var(--fg-body); margin: 0; line-height: 1.5; }

/* ---------- CTA band — dusty steel #6f8fb4 + cinematic smoke ---------- */
.dg-ctaband { padding: 0 28px; margin: 96px auto 0; max-width: var(--container); }
.dg-ctaband-inner {
  position: relative; overflow: hidden; isolation: isolate;
  background: #6f8fb4;
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 96px 48px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  box-shadow:
    0 24px 60px rgba(20,35,68,0.24),
    inset 0 0 0 1px rgba(255,255,255,0.12);
}
.dg-ctaband-inner::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 75% at 8% 12%, rgba(255,255,255,0.42), transparent 62%),
    radial-gradient(ellipse 80% 58% at 50% 112%, rgba(255,255,255,0.48), transparent 66%),
    radial-gradient(ellipse 38% 48% at 94% 24%, rgba(255,255,255,0.3), transparent 60%),
    radial-gradient(ellipse 42% 50% at 82% 72%, rgba(20,35,68,0.2), transparent 66%),
    radial-gradient(ellipse 28% 32% at 20% 68%, rgba(255,255,255,0.18), transparent 70%);
}
.dg-ctaband-inner > * { position: relative; z-index: 1; }
.dg-ctaband-inner .dg-overline { margin-bottom: 20px; }
.dg-ctaband-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 4vw, 44px); line-height: 1.15; letter-spacing: -0.02em;
  margin: 0 0 22px; color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  max-width: 100%;
}
.dg-ctaband-title span { white-space: nowrap; }
@media (max-width: 900px) {
  .dg-ctaband-title span { white-space: normal; }
}
.dg-ctaband-highlight {
  font-style: inherit; font-weight: inherit;
  color: inherit; -webkit-text-fill-color: inherit;
  background: none;
}
.dg-ctaband-sub {
  font-size: 18px; line-height: 1.55;
  color: rgba(255,255,255,0.82); margin: 0 0 40px;
  max-width: 580px;
}
.dg-ctaband-actions {
  display: flex; justify-content: center; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.dg-ctaband-phone {
  color: rgba(255,255,255,0.88); font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  transition: color 200ms var(--ease-out);
}
.dg-ctaband-phone:hover { color: #fff; }
.dg-overline.light { color: rgba(255,255,255,0.85); }

/* ---------- Reviews carousel ---------- */
.dg-quote {
  padding: 96px 28px;
  max-width: var(--container); margin: 0 auto;
  position: relative;
}
.dg-reviews { position: relative; margin-top: 8px; }
.dg-reviews-viewport { overflow: hidden; border-radius: var(--radius-md); }
.dg-reviews-track {
  display: flex; width: 100%;
  transition: transform 520ms var(--ease-out);
  will-change: transform;
}
.dg-reviews-page {
  flex: 0 0 100%; min-width: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding: 6px 2px;
}
.dg-review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  text-align: left;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out), border-color 240ms var(--ease-out);
}
.dg-review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--dg-blue-200);
}
.dg-review-mark { color: var(--dg-blue-200); flex-shrink: 0; }
.dg-review-text {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.65;
  color: var(--fg-body); margin: 0; flex: 1;
  text-wrap: pretty;
}
.dg-review-by { display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.dg-review-by strong { color: var(--fg); font-weight: 700; font-size: 14px; }
.dg-review-by span { color: var(--fg-muted); }

.dg-reviews-controls {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  margin-top: 32px;
}
.dg-reviews-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--dg-blue-600);
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out), border-color 200ms var(--ease-out), transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.dg-reviews-btn:hover {
  background: var(--dg-blue-500); color: #fff; border-color: var(--dg-blue-500);
  transform: translateY(-1px); box-shadow: var(--shadow-sm);
}
.dg-reviews-dots { display: flex; gap: 8px; align-items: center; }
.dg-reviews-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--steel-200); border: 0; padding: 0; cursor: pointer;
  transition: background 240ms var(--ease-out), width 240ms var(--ease-out);
}
.dg-reviews-dot:hover { background: var(--steel-300); }
.dg-reviews-dot.is-active {
  background: var(--dg-blue-500);
  width: 24px; border-radius: 999px;
}

/* ---------- Services Detail (page /servizi) ---------- */
.dg-svc-side-nav {
  position: fixed;
  top: 50%; right: 32px;
  transform: translateY(-50%);
  z-index: 25;
}
.dg-svc-side-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
  align-items: flex-end;
}
.dg-svc-side-link {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 6px 0; border: 0; background: none; cursor: pointer;
  color: var(--fg-body);
  font-family: var(--font-body);
}
.dg-svc-side-label {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--fg);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out), color 200ms var(--ease-out);
  box-shadow: var(--shadow-sm);
}
.dg-svc-side-n {
  font-family: var(--font-display); font-style: italic; font-weight: 800;
  font-size: 11px; letter-spacing: -0.02em;
  color: var(--dg-blue-400);
}
.dg-svc-side-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(20,35,68,0.22);
  transition: background 280ms var(--ease-out), transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
  flex-shrink: 0;
}
.dg-svc-side-link:hover .dg-svc-side-label {
  opacity: 1; transform: translateX(0);
}
.dg-svc-side-link:hover .dg-svc-side-dot {
  background: var(--dg-blue-400);
  transform: scale(1.2);
}
.dg-svc-side-link.is-active .dg-svc-side-label {
  opacity: 1; transform: translateX(0);
  color: var(--dg-blue-700);
}
.dg-svc-side-link.is-active .dg-svc-side-n { color: var(--dg-blue-500); }
.dg-svc-side-link.is-active .dg-svc-side-dot {
  background: var(--dg-blue-500);
  transform: scale(1.4);
  box-shadow:
    0 0 0 4px rgba(44,64,100,0.18),
    0 0 14px rgba(44,64,100,0.45);
}

.dg-svc-detail {
  max-width: var(--container); margin: 0 auto;
  padding: 64px 28px 96px;
  display: flex; flex-direction: column; gap: 112px;
}

.dg-svc-row {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 64px; align-items: start;
  scroll-margin-top: 80px;
}
.dg-svc-row.is-flip { grid-template-columns: 1.1fr 1fr; }
.dg-svc-row.is-flip .dg-svc-row-media { order: 2; }
.dg-svc-row.is-flip .dg-svc-row-body  { order: 1; }

.dg-svc-row-media {
  position: sticky; top: 80px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden; isolation: isolate;
  box-shadow: var(--shadow-md);
}

.dg-svc-row-photo { position: relative; width: 100%; height: 100%; }
.dg-svc-row-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1200ms var(--ease-out);
}
.dg-svc-row-media:hover .dg-svc-row-photo img { transform: scale(1.04); }
.dg-svc-row-photo::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,14,34,0) 55%, rgba(6,14,34,0.55) 100%);
}
.dg-svc-row-photo-tag {
  position: absolute; bottom: 18px; left: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: 11px; font-weight: 700;
  color: var(--dg-blue-700);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.dg-svc-row-photo-tag svg { color: var(--dg-blue-600); }

.dg-svc-row-body { max-width: 600px; }
.dg-svc-row-num {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 64px; letter-spacing: -0.03em; line-height: 1;
  color: var(--dg-blue-200); margin-bottom: 12px;
}
.dg-svc-row-body .dg-overline { display: inline-block; margin-bottom: 14px; }
.dg-svc-row-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.02em;
  line-height: 1.1; color: var(--fg);
  margin: 0 0 18px; text-wrap: balance;
}
.dg-svc-row-lead {
  font-size: 17px; line-height: 1.6;
  color: var(--fg); font-weight: 500;
  margin: 0 0 24px;
}
.dg-svc-row-flow {
  display: flex; flex-direction: column; gap: 18px;
}
.dg-svc-row-para {
  font-size: 15px; line-height: 1.7;
  color: var(--fg-body); margin: 0;
}
.dg-svc-row-listblock {
  margin: 4px 0;
  padding: 18px 22px;
  background: var(--steel-25);
  border-left: 3px solid var(--dg-blue-300);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.dg-svc-row-coltitle {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--dg-blue-700); margin-bottom: 12px;
}
.dg-svc-row-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.dg-svc-row-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; line-height: 1.5; color: var(--fg-body);
}
.dg-svc-row-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--dg-blue-50); color: var(--dg-blue-600);
  flex-shrink: 0; margin-top: 1px;
}

/* Alternating number color: dispari = dusty light, pari = navy deep */
.dg-svc-row:nth-of-type(odd)  .dg-svc-row-num { color: var(--dg-blue-200); }
.dg-svc-row:nth-of-type(even) .dg-svc-row-num { color: var(--dg-blue-500); }
.dg-svc-row.is-featured .dg-svc-row-title { color: var(--dg-blue-700); }

/* ---------- Page head (for /servizi, /contatti) ---------- */
.dg-pagehead { padding: 72px 28px 48px; max-width: var(--container); margin: 0 auto; }
.dg-pagehead-inner { max-width: 820px; }
.dg-pagehead-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(44px, 5.2vw, 72px); line-height: 1.0; letter-spacing: -0.03em;
  color: var(--fg); margin: 14px 0 20px;
}
.dg-pagehead-sub { font-size: 19px; color: var(--fg-body); margin: 0; line-height: 1.55; max-width: 640px; }

.dg-pagehead--center { text-align: center; }
.dg-pagehead--center .dg-pagehead-inner { margin: 0 auto; }
.dg-pagehead--center .dg-pagehead-sub { margin-left: auto; margin-right: auto; }
.dg-pagehead--center .dg-pagehead-title {
  display: flex; flex-direction: column; gap: 4px;
  text-wrap: balance;
}

/* ---------- Contatti page ---------- */
.dg-cnt-split {
  padding: 32px 28px 96px;
  max-width: var(--container); margin: 0 auto;
}
.dg-cnt-split-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}

.dg-cnt-info { max-width: 540px; }
.dg-cnt-info .dg-overline { display: inline-block; margin-bottom: 14px; }
.dg-cnt-info-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--fg); margin: 0 0 14px;
  display: flex; flex-direction: column; gap: 4px;
  text-wrap: balance;
}
.dg-cnt-info-title > span { white-space: nowrap; }
.dg-cnt-info-sub {
  font-size: 17px; line-height: 1.6;
  color: var(--fg-body); margin: 0 0 32px;
}

.dg-cnt-info-boxes {
  display: flex; flex-direction: column; gap: 10px;
}

.dg-cnt-form-side { position: relative; align-self: end; width: 100%; }
.dg-cnt-info-box {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--border);
  text-decoration: none; color: var(--fg);
  box-shadow: var(--shadow-xs);
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 280ms var(--ease-out);
}
.dg-cnt-info-box.is-link { cursor: pointer; }
.dg-cnt-info-box.is-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(20,35,68,0.1);
  border-color: var(--dg-blue-300);
}
.dg-cnt-info-box-ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--dg-blue-50), var(--dg-blue-100));
  color: var(--dg-blue-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 280ms var(--ease-out), color 280ms var(--ease-out);
}
.dg-cnt-info-box.is-link:hover .dg-cnt-info-box-ic {
  background: linear-gradient(135deg, var(--dg-blue-500), var(--dg-blue-700));
  color: #fff;
}
.dg-cnt-info-box-value {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--fg); letter-spacing: -0.01em;
  line-height: 1.3;
  flex: 1; min-width: 0;
  overflow: hidden; text-overflow: ellipsis;
}
.dg-cnt-info-box-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--steel-50); color: var(--dg-blue-600);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  opacity: 0; transform: translateX(-6px);
  transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out), background 280ms var(--ease-out), color 280ms var(--ease-out);
}
.dg-cnt-info-box.is-link:hover .dg-cnt-info-box-arrow {
  opacity: 1; transform: translateX(0);
  background: var(--dg-blue-500); color: #fff;
}
.dg-cnt-info-box-arrow svg { width: 14px; height: 14px; }

/* What happens next — stessa grafica del CTA band */
.dg-cnt-next {
  position: relative; overflow: hidden; isolation: isolate;
  padding: 80px 48px;
  max-width: var(--container);
  margin: 32px auto;
  background: #6f8fb4;
  border-radius: var(--radius-xl);
  color: #fff;
  box-shadow:
    0 24px 60px rgba(20,35,68,0.24),
    inset 0 0 0 1px rgba(255,255,255,0.12);
}
.dg-cnt-next::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 75% at 8% 12%, rgba(255,255,255,0.42), transparent 62%),
    radial-gradient(ellipse 80% 58% at 50% 112%, rgba(255,255,255,0.48), transparent 66%),
    radial-gradient(ellipse 38% 48% at 94% 24%, rgba(255,255,255,0.3), transparent 60%),
    radial-gradient(ellipse 42% 50% at 82% 72%, rgba(20,35,68,0.2), transparent 66%),
    radial-gradient(ellipse 28% 32% at 20% 68%, rgba(255,255,255,0.18), transparent 70%);
}
.dg-cnt-next > * { position: relative; z-index: 1; }
.dg-cnt-next .dg-section-head { margin-bottom: 56px; }
.dg-cnt-next .dg-overline { color: rgba(255,255,255,0.85); }
.dg-cnt-next .dg-section-title { color: #fff; }
.dg-cnt-next .dg-section-sub { color: rgba(255,255,255,0.82); }
.dg-cnt-next-list {
  position: relative; list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.dg-cnt-next-line {
  position: absolute;
  top: 38px; left: 16.66%; right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.4), rgba(255,255,255,0.95), rgba(255,255,255,0.4));
  transform: scaleX(0); transform-origin: left;
  transition: transform 1400ms var(--ease-out) 240ms;
  z-index: 0;
}
.dg-cnt-next-list.is-in .dg-cnt-next-line { transform: scaleX(1); }
.dg-cnt-next-step {
  position: relative; z-index: 1;
  text-align: center; padding: 0 8px;
}
.dg-cnt-next-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: #fff;
  color: var(--dg-blue-700);
  border: 0;
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 26px; letter-spacing: -0.02em;
  margin: 0 auto 20px;
  box-shadow: 0 8px 22px rgba(6,14,34,0.22);
}
.dg-cnt-next-step h4 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px; line-height: 1.2; color: #fff;
  margin: 0 0 8px; letter-spacing: -0.01em;
}
.dg-cnt-next-step p {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.82); margin: 0;
  max-width: 240px; margin-left: auto; margin-right: auto;
}

/* FAQ accordion */
.dg-cnt-faq {
  padding: 64px 28px 96px;
  max-width: 880px; margin: 0 auto;
}
.dg-cnt-faq-list {
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--border);
}
.dg-cnt-faq-item {
  border-bottom: 1px solid var(--border);
  transition: background 240ms var(--ease-out);
}
.dg-cnt-faq-item.is-open {
  background: var(--steel-25);
}
.dg-cnt-faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 22px 18px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px; letter-spacing: -0.01em;
  color: var(--fg);
  cursor: pointer; border: 0; background: none;
  text-align: left;
  transition: color 200ms var(--ease-out);
}
.dg-cnt-faq-q:hover { color: var(--dg-blue-600); }
.dg-cnt-faq-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; color: var(--dg-blue-600);
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 320ms var(--ease-out), background 240ms var(--ease-out), color 240ms var(--ease-out), border-color 240ms var(--ease-out);
}
.dg-cnt-faq-item.is-open .dg-cnt-faq-icon {
  transform: rotate(180deg);
  background: var(--dg-blue-500); color: #fff;
  border-color: var(--dg-blue-500);
}
.dg-cnt-faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 360ms var(--ease-out);
}
.dg-cnt-faq-a > p {
  overflow: hidden;
  font-size: 15px; line-height: 1.7;
  color: var(--fg-body); margin: 0;
  padding: 0 18px;
}
.dg-cnt-faq-item.is-open .dg-cnt-faq-a {
  grid-template-rows: 1fr;
}
.dg-cnt-faq-item.is-open .dg-cnt-faq-a > p {
  padding: 0 18px 24px;
}

.dg-form {
  background: #bfd2e0;
  border: 1px solid rgba(20,35,68,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
}
.dg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dg-form label { display: flex; flex-direction: column; gap: 6px; }
.dg-form label > span {
  font-size: 12px; font-weight: 700;
  color: var(--dg-blue-900);
  letter-spacing: 0.02em;
}
.dg-form input, .dg-form select, .dg-form textarea {
  font-family: inherit; font-size: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(20,35,68,0.12);
  border-radius: 8px;
  background: #fff; color: var(--dg-blue-900); outline: none;
  transition: border 200ms, box-shadow 200ms;
  width: 100%;
}
.dg-form input::placeholder, .dg-form textarea::placeholder {
  color: rgba(20,35,68,0.4);
}
.dg-form textarea { resize: vertical; }
.dg-form input:focus, .dg-form select:focus, .dg-form textarea:focus {
  border-color: var(--dg-blue-600);
  box-shadow: 0 0 0 3px rgba(20,35,68,0.18);
}
.dg-form-check {
  flex-direction: row !important;
  align-items: flex-start; gap: 10px;
  font-size: 13px; line-height: 1.5;
  color: var(--dg-blue-800);
}
.dg-form-check input { width: auto; margin-top: 2px; accent-color: var(--dg-blue-600); }
.dg-form-success {
  background: #bfd2e0;
  border: 1px solid rgba(20,35,68,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.dg-form-success-icon { width: 56px; height: 56px; border-radius: 50%; background: #fff; color: #1E9E5A; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: 0 4px 12px rgba(20,35,68,0.1); }
.dg-form-success h3 { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--dg-blue-900); margin: 0 0 8px; }
.dg-form-success p { color: var(--dg-blue-800); margin: 0 0 20px; }

/* ---------- Footer ---------- */
.dg-footer {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--dg-blue-900);
  color: rgba(255,255,255,0.72);
  padding: 80px 28px 28px;
  margin-top: 96px;
}
.dg-footer::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 12% 0%, rgba(111,143,180,0.28), transparent 60%),
    radial-gradient(ellipse 55% 42% at 88% 0%, rgba(143,176,199,0.18), transparent 60%),
    radial-gradient(ellipse 40% 70% at 50% 120%, rgba(6,14,34,0.65), transparent 65%);
}
.dg-footer > * { position: relative; z-index: 1; }

.dg-footer-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dg-footer-brand { max-width: 360px; }
.dg-footer-logo { height: 40px; margin-bottom: 18px; filter: brightness(1.15); }
.dg-footer-blurb { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.6); }
.dg-footer-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  font-weight: 600; color: var(--dg-blue-300);
  margin-bottom: 16px;
}
.dg-footer-col { display: flex; flex-direction: column; gap: 11px; }
.dg-footer-col a, .dg-footer-col span {
  font-size: 14px; color: rgba(255,255,255,0.72);
  text-decoration: none; cursor: pointer;
  transition: color 160ms;
}
.dg-footer-col a:hover { color: #fff; }

.dg-footer-bottom {
  max-width: var(--container); margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.45);
  gap: 16px;
}
.dg-footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 160ms; }
.dg-footer-bottom a:hover { color: #fff; }

/* ---------- Responsive (loose) ---------- */
@media (max-width: 1180px) {
  .dg-process-list { grid-template-columns: repeat(3, 1fr); }
  .dg-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .dg-hero { min-height: 680px; }
  .dg-hero-copy { padding: 60px 0; max-width: 100%; }
  .dg-hero-bg img { object-position: 70% center; }
  .dg-hero-bg::after {
    background: linear-gradient(180deg,
      rgba(217,227,238,0.94) 0%,
      rgba(217,227,238,0.82) 45%,
      rgba(217,227,238,0.45) 80%,
      rgba(217,227,238,0.2) 100%);
  }
  .dg-cnt-split { padding: 24px 20px 56px; }
  .dg-cnt-split-inner { grid-template-columns: 1fr; gap: 48px; }
  .dg-cnt-info-boxes { gap: 8px; }
  .dg-cnt-info-box { padding: 12px 16px; gap: 14px; }
  .dg-cnt-info-box-ic { width: 40px; height: 40px; }
  .dg-cnt-info-box-value { font-size: 14px; }
  .dg-cnt-next { padding: 48px 24px; margin: 24px 20px; }
  .dg-cnt-next .dg-section-head { margin-bottom: 36px; }
  .dg-cnt-next-list { grid-template-columns: 1fr; gap: 28px; }
  .dg-cnt-next-line { display: none; }
  .dg-cnt-next-n { width: 64px; height: 64px; font-size: 22px; margin-bottom: 14px; }
  .dg-cnt-faq { padding: 48px 20px 72px; }
  .dg-cnt-faq-q { padding: 18px 14px; font-size: 16px; }
  .dg-cnt-faq-a > p { padding: 0 14px; }
  .dg-cnt-faq-item.is-open .dg-cnt-faq-a > p { padding: 0 14px 20px; }
  .dg-hero-proof { gap: 12px; padding-top: 18px; flex-wrap: wrap; }
  .dg-svc-grid, .dg-sectors-grid { grid-template-columns: 1fr; }
  .dg-process-list { grid-template-columns: repeat(2, 1fr); }
  .dg-nav { display: none; }
  .dg-statband-inner { flex-wrap: wrap; padding: 28px; gap: 20px; }
  .dg-stat { flex: 0 0 calc(50% - 12px); }
  .dg-stat-sep { display: none; }
  .dg-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .dg-gallery-item.span-tall, .dg-gallery-item.span-wide { grid-row: auto; grid-column: auto; }
  .dg-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dg-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .dg-form-row { grid-template-columns: 1fr; }
  .dg-svc-section, .dg-sectors, .dg-process, .dg-quote { padding-left: 20px; padding-right: 20px; padding-top: 64px; padding-bottom: 64px; }
  .dg-gallery-section { padding: 48px 20px; }
  .dg-reviews-page { grid-template-columns: 1fr; }
  .dg-ctaband { padding: 0 20px; margin-top: 64px; }
  .dg-ctaband-inner { padding: 48px 24px; }
  .dg-ctaband-actions { gap: 14px; }
  .dg-header-inner { padding: 12px 18px; gap: 14px; }

  /* Services Detail mobile */
  .dg-svc-side-nav { display: none; }
  .dg-svc-detail { padding: 40px 20px 64px; gap: 64px; }
  .dg-svc-row { grid-template-columns: 1fr; gap: 28px; scroll-margin-top: 70px; }
  .dg-svc-row.is-flip { grid-template-columns: 1fr; }
  .dg-svc-row.is-flip .dg-svc-row-media { order: 1; }
  .dg-svc-row.is-flip .dg-svc-row-body  { order: 2; }
  .dg-svc-row-media { position: static; aspect-ratio: 16 / 11; }
  .dg-svc-row-num { font-size: 48px; }
  .dg-svc-row-listblock { padding: 16px 18px; }
}
