/* ============================================================
   Abitakolo — foglio di stile condiviso
   Palette e tipografia estratte dai prototipi Claude Design.
   ============================================================ */

:root {
  --ink: #0D1117;
  --accent: #E0533C;
  --muted: #6E7885;
  --muted-light: #9AA4B0;
  --panel: #F4F6F9;
  --border: #E7EAEF;
  --border-soft: #DEE3EA;
  --disabled: #C6CCD4;
  --grid-line: rgba(110, 120, 133, 0.12);
  --font-display: 'GC Matrix', 'Geist', sans-serif;
  --font-body: 'Geist', system-ui, sans-serif;
}

@font-face {
  font-family: 'GC Matrix';
  src: url('/assets/fonts/GCMatrix.woff2') format('woff2');
  font-display: swap;
}

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

body {
  margin: 0;
  background: #FFFFFF;
  color: var(--ink);
  font-family: var(--font-body);
}

a { color: var(--ink); }
a:hover { color: var(--accent); }

img { max-width: 100%; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* L'header resta fisso: i salti alle ancore non finiscono sotto */
html { scroll-padding-top: 88px; }

.container {
  background: #FFFFFF;
}

/* Titoli display (GC Matrix, senza legature come nei prototipi) */
.display {
  font-family: var(--font-display);
  font-variant-ligatures: none;
  font-weight: 400;
  margin: 0;
}

/* Griglia decorativa 40px degli hero */
.hero-grid {
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ------------------------------------------------------------
   Bottoni e link
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-accent {
  background: var(--accent);
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 16px;
}
.btn-accent:hover { color: #FFFFFF; }

.btn-display {
  background: var(--accent);
  color: #FFFFFF;
  padding: 16px 36px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-variant-ligatures: none;
  font-size: 20px;
  text-transform: uppercase;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-display:hover { color: #FFFFFF; transform: scale(1.04); }

.link-underline {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.link-underline--lg { font-size: 16px; }

/* Pill "Sezione in lavorazione" e badge hero */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  background: #FFFFFF;
  border: 1px solid rgba(13, 17, 23, 0.1);
  padding: 8px 18px;
  border-radius: 999px;
}
.pill-dashed {
  gap: 8px;
  border: 1px dashed var(--muted-light);
  letter-spacing: 0.08em;
  padding: 7px 14px;
  white-space: nowrap;
}
.pill .dot, .pill-dashed .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}
.pill-dashed .dot { width: 7px; height: 7px; }

/* ------------------------------------------------------------
   Header / navigazione
   ------------------------------------------------------------ */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  border-bottom: 1px solid var(--border);
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .logo { display: block; }
.site-header .logo img { height: 26px; display: block; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a { text-decoration: none; color: var(--ink); }
.site-nav a:hover { color: var(--accent); }
.site-nav a.active { color: var(--accent); }

.site-nav .btn-cta {
  background: var(--accent);
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 600;
}
.site-nav .btn-cta:hover { color: #FFFFFF; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  padding: 8px 0;
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.site-footer {
  background: var(--ink);
  color: #FFFFFF;
}
.footer-inner {
  padding: 56px 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 72px;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 38ch;
}
.footer-brand img { height: 26px; display: block; align-self: flex-start; }
.footer-brand p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-light);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
.footer-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.footer-col a { text-decoration: none; color: #FFFFFF; }
.footer-col a:hover { color: var(--accent); }
.footer-col span { color: var(--muted-light); }
.footer-pages,
.footer-sedi {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
  column-gap: 40px;
  row-gap: 12px;
}
.footer-sedi { column-gap: 48px; row-gap: 20px; }
.footer-pages .footer-label,
.footer-sedi .footer-label { grid-column: 1 / -1; }
.footer-sedi .footer-label { margin-bottom: -2px; }
.footer-sede {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-pin {
  flex: none;
  margin-top: 1px;
  color: var(--accent);
}
.footer-city {
  color: #FFFFFF;
  font-weight: 500;
  margin-bottom: 4px;
}
.footer-sede span { line-height: 1.5; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  font-size: 13px;
  color: var(--muted-light);
}

/* ------------------------------------------------------------
   Pannello "Sezione in lavorazione" (Progetti / Home)
   ------------------------------------------------------------ */
.wip-panel {
  background: var(--panel);
  border-radius: 4px;
  padding: 72px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.wip-panel h3 {
  font-family: var(--font-display);
  font-variant-ligatures: none;
  font-weight: 400;
  font-size: 34px;
  margin: 0;
  text-transform: uppercase;
}
.wip-panel p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 52ch;
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .site-header { padding: 18px 32px; }
  .footer-inner { padding: 48px 32px 28px; }
  .footer-grid { grid-template-columns: repeat(3, auto); justify-content: start; gap: 40px 64px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
    padding: 12px 32px 20px;
    font-size: 18px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 0; }
  .site-nav .btn-cta { margin-top: 8px; padding: 12px 26px; }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, auto); }
  .footer-sedi { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .site-header { padding: 14px 20px; }
  .site-nav { padding: 10px 20px 18px; }
  .footer-inner { padding: 44px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-sedi { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .wip-panel { padding: 56px 24px; }
  .wip-panel h3 { font-size: 28px; }
}


/* ============================================================
   Pagina: home
   ============================================================ */

/* ============================================================
   Home page (prefix: home-)
   ============================================================ */

/* ---------- Hero ---------- */
.home-hero {
  padding: 64px 48px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.home-hero-title {
  font-size: 80px;
  line-height: 0.98;
  text-transform: uppercase;
  max-width: 13ch;
  text-wrap: pretty;
}

/* Evidenziazione ruotata dietro "al lavoro" */
.home-hl {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.home-hl-bg {
  position: absolute;
  top: 2px;
  bottom: -2px;
  left: -10px;
  right: -10px;
  background: var(--accent);
  transform: rotate(-1.5deg);
}
.home-hl-text {
  position: relative;
  color: #FFFFFF;
}

.home-hero-lead {
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(13, 17, 23, 0.7);
  max-width: 54ch;
}

.home-hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ---------- Il problema ---------- */
.home-problema {
  padding: 88px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.home-problema-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.home-problema-title {
  font-size: 44px;
  line-height: 1.1;
  text-wrap: pretty;
}

/* Griglia "Munari" 4x2 */
.home-problema-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}
.home-problema-text p { margin: 0; }
.home-problema-strong {
  color: var(--ink);
  font-weight: 500;
}

/* ---------- Servizi ---------- */
.home-servizi {
  padding: 0 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.home-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 2px solid var(--ink);
  padding-top: 32px;
}

.home-h2-40 { font-size: 40px; }

/* Numeri GC Matrix */
.home-gcnum {
  font-family: var(--font-display, 'GC Matrix', 'Geist', sans-serif);
  font-variant-ligatures: none;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.home-gcnum-64 { font-size: 64px; }
.home-gcnum-40 { font-size: 40px; }
.home-gcnum-26 { font-size: 26px; }

.home-kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.home-kicker-14 { font-size: 14px; }

.home-card-icon {
  margin-left: auto;
  align-self: center;
  flex: none;
}
.home-svg-flex { flex: none; }

.home-servizi-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.home-card-ai {
  background: var(--panel);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.home-card-ai-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.home-card-ai-name {
  font-size: 28px;
  font-weight: 600;
}

.home-ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border-soft);
}
.home-ai-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-ai-item:nth-child(odd) {
  padding: 20px 28px 6px 0;
  border-right: 1px solid var(--border-soft);
}
.home-ai-item:nth-child(even) {
  padding: 20px 0 6px 28px;
}
.home-ai-item:nth-child(n + 3) {
  border-top: 1px solid var(--border-soft);
}
.home-ai-item-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-ai-item-title {
  font-weight: 600;
  font-size: 16px;
}
.home-ai-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.home-servizi-photo {
  border-radius: 4px;
  overflow: hidden;
  display: flex;
}
.home-servizi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-servizi-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.home-card-sm {
  background: var(--panel);
  border-radius: 4px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home-card-sm-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.home-card-sm-name {
  font-size: 20px;
  font-weight: 600;
}
.home-card-sm p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- Metodo ---------- */
.home-metodo {
  background: var(--panel);
  padding: 56px 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.home-metodo-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.home-metodo-note {
  font-size: 14px;
  color: var(--muted);
}

.home-metodo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.home-step {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.home-step-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.home-step-title {
  font-size: 19px;
  font-weight: 600;
}
.home-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.home-consult {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.home-consult-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-consult-title {
  font-size: 22px;
  font-weight: 600;
}
.home-consult-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
.home-btn-flex { flex: none; }

/* ---------- Progetti ---------- */
.home-progetti {
  padding: 64px 48px 88px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.home-progetti-headline {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ---------- CTA band ---------- */
.home-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px;
  border-top: 1px solid var(--border);
}
.home-cta-text {
  font-size: 22px;
  font-weight: 500;
  max-width: 48ch;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .home-hero { padding: 56px 32px 52px; }
  .home-hero-title { font-size: 56px; }

  .home-problema {
    padding: 72px 32px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .home-problema-title { font-size: 36px; }

  .home-servizi { padding: 0 32px 64px; }
  .home-h2-40 { font-size: 34px; }

  .home-servizi-main { grid-template-columns: 1fr; }
  .home-servizi-photo img {
    height: auto;
    aspect-ratio: 1.49;
  }

  .home-metodo { padding: 48px 32px 56px; }
  .home-metodo-grid { grid-template-columns: repeat(2, 1fr); }

  .home-progetti { padding: 56px 32px 72px; }
  .home-cta-band { padding: 48px 32px; }
}

@media (max-width: 680px) {
  .home-hero { padding: 48px 20px 44px; gap: 24px; }
  .home-hero-title { font-size: 40px; }
  .home-hero-lead { font-size: 17px; }
  .home-hero-ctas {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .home-hero-ctas .btn-display {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .home-problema { padding: 56px 20px; gap: 40px; }
  .home-problema-title { font-size: 30px; }

  .home-servizi { padding: 0 20px 56px; gap: 32px; }
  .home-h2-40 { font-size: 28px; }
  .home-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 24px;
  }
  .home-progetti-headline {
    flex-wrap: wrap;
    gap: 12px;
  }

  .home-card-ai { padding: 28px 24px; }
  .home-card-ai-head { gap: 16px; flex-wrap: wrap; }
  .home-gcnum-64 { font-size: 48px; }
  .home-card-ai-name { font-size: 24px; }
  .home-ai-grid { grid-template-columns: 1fr; }
  .home-ai-item:nth-child(odd) {
    padding: 20px 0 6px;
    border-right: 0;
  }
  .home-ai-item:nth-child(even) { padding: 20px 0 6px; }
  .home-ai-item:nth-child(n + 2) {
    border-top: 1px solid var(--border-soft);
  }

  .home-servizi-duo { grid-template-columns: 1fr; }
  .home-card-sm { padding: 28px 24px; }

  .home-metodo { padding: 44px 20px 48px; gap: 28px; }
  .home-metodo-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .home-metodo-grid { grid-template-columns: 1fr; gap: 16px; }

  .home-consult {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 24px;
  }
  .home-consult .btn {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .home-progetti { padding: 48px 20px 56px; gap: 32px; }

  .home-cta-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 44px 20px;
  }
  .home-cta-band .btn {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}


/* ============================================================
   Pagina: servizi
   ============================================================ */

/* ============================================================
   Servizi — stili di pagina (prefisso sv-)
   ============================================================ */

/* Hero */
.sv-hero {
  padding: 72px 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}
.sv-hero-title {
  font-size: 64px;
  line-height: 1.02;
  max-width: 20ch;
  text-wrap: pretty;
}
.sv-hero-lede {
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 60ch;
}

/* Contenitore aree */
.sv-areas {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Numeri GC Matrix */
.sv-num { color: var(--accent); line-height: 1; }
.sv-num--xl { font-size: 80px; }
.sv-num--lg { font-size: 52px; }

/* Kicker maiuscoletto */
.sv-kicker {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.sv-kicker--sm { font-size: 12px; }

.sv-head-icon {
  margin-left: auto;
  align-self: center;
  flex: none;
}

/* 01 — blocco AI Design */
.sv-feature {
  background: var(--panel);
  border-radius: 4px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.sv-feature-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.sv-feature-title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
}
.sv-feature-lede {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 64ch;
}

/* Griglia 4 sotto-servizi */
.sv-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border-soft);
}
.sv-cell {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sv-cell:nth-child(odd) {
  padding: 28px 36px 12px 0;
  border-right: 1px solid var(--border-soft);
}
.sv-cell:nth-child(even) {
  padding: 28px 0 12px 36px;
}
.sv-cell:nth-child(n+3) {
  border-top: 1px solid var(--border-soft);
}
.sv-cell-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sv-cell-icon { flex: none; }
.sv-cell-title {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
}
.sv-cell-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* 02 / 03 — blocchi affiancati */
.sv-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.sv-block {
  background: var(--panel);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sv-block-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.sv-block-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}
.sv-block-lede {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
.sv-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-soft);
}
.sv-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sv-item:last-child { border-bottom: none; }
.sv-item-title {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
}
.sv-item-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}

/* CTA */
.sv-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px;
  border-top: 1px solid var(--border);
  gap: 24px;
}
.sv-cta-text {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  max-width: 48ch;
}
.sv-cta-btn { flex: none; }

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .sv-hero { padding: 56px 32px 48px; }
  .sv-hero-title { font-size: 52px; }
  .sv-areas { padding: 48px 32px; }
  .sv-feature { padding: 36px; }
  .sv-num--xl { font-size: 64px; }
  .sv-cta { padding: 40px 32px; }
}

@media (max-width: 680px) {
  .sv-hero { padding: 48px 20px 40px; }
  .sv-hero-title { font-size: 40px; }
  .sv-hero-lede { font-size: 17px; }
  .sv-areas { padding: 40px 20px; gap: 28px; }
  .sv-feature { padding: 28px 24px; gap: 28px; }
  .sv-feature-head { flex-wrap: wrap; gap: 12px 16px; }
  .sv-num--xl { font-size: 52px; }
  .sv-feature-title { font-size: 26px; }
  .sv-subgrid { grid-template-columns: 1fr; }
  .sv-cell:nth-child(odd) {
    padding: 22px 0 12px;
    border-right: none;
  }
  .sv-cell:nth-child(even) { padding: 22px 0 12px; }
  .sv-cell:nth-child(n+2) { border-top: 1px solid var(--border-soft); }
  .sv-duo { grid-template-columns: 1fr; gap: 20px; }
  .sv-block { padding: 28px 24px; }
  .sv-block-head { flex-wrap: wrap; gap: 10px 14px; }
  .sv-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 40px 20px;
    gap: 20px;
  }
  .sv-cta-btn { width: 100%; text-align: center; }
}


/* ============================================================
   Pagina: studio
   ============================================================ */

/* ============================================================
   Studio — stili di pagina (prefisso st-)
   ============================================================ */

/* Hero */
.st-hero {
  padding: 72px 48px 64px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.st-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.st-hero-title {
  font-size: 60px;
  line-height: 1.04;
  text-wrap: pretty;
}
.st-hero-lede {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 56ch;
}
.st-hero-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.st-hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.st-hero-caption {
  font-size: 12px;
  color: var(--muted);
}

/* Il nome */
.st-name {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.st-name-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.st-shapes {
  display: grid;
  grid-template-columns: repeat(3, 64px);
  grid-auto-rows: 64px;
  width: fit-content;
}
.st-shape-cell {
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-shape-cell + .st-shape-cell { margin-left: -1px; }
.st-shape--circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
}
.st-shape--square {
  width: 26px;
  height: 26px;
  background: var(--ink);
}
.st-shape--diamond {
  width: 26px;
  height: 26px;
  background: var(--accent);
  transform: rotate(45deg);
}
.st-name-title {
  font-size: 40px;
  line-height: 1.1;
}
.st-name-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}
.st-name-text p { margin: 0; }

/* Come lavoriamo */
.st-method {
  background: var(--panel);
  padding: 56px 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.st-method-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.st-method-title { font-size: 40px; }
.st-method-note {
  font-size: 14px;
  color: var(--muted);
}
.st-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.st-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.st-card {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.st-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.st-card-icon { flex: none; }
.st-step-num {
  font-size: 26px;
  color: var(--accent);
  line-height: 1;
}
.st-step-title {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
}
.st-step-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* CTA */
.st-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px;
  border-top: 1px solid var(--border);
  gap: 24px;
}
.st-cta-text {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  max-width: 48ch;
}
.st-cta-btn { flex: none; }

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .st-hero {
    padding: 56px 32px 48px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .st-hero-title { font-size: 50px; }
  .st-name { padding: 64px 32px; gap: 40px; }
  .st-name-title { font-size: 34px; }
  .st-method { padding: 48px 32px 56px; }
  .st-method-title { font-size: 34px; }
  .st-steps { grid-template-columns: repeat(2, 1fr); }
  .st-cta { padding: 40px 32px; }
}

@media (max-width: 680px) {
  .st-hero { padding: 48px 20px 40px; gap: 32px; }
  .st-hero-title { font-size: 40px; }
  .st-hero-lede { font-size: 16px; }
  .st-hero-img { height: 260px; }
  .st-name {
    padding: 48px 20px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .st-name-title { font-size: 30px; }
  .st-name-text { font-size: 16px; }
  .st-shapes {
    grid-template-columns: repeat(3, 52px);
    grid-auto-rows: 52px;
  }
  .st-method { padding: 40px 20px 48px; gap: 28px; }
  .st-method-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .st-method-title { font-size: 30px; }
  .st-steps { grid-template-columns: 1fr; gap: 20px; }
  .st-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 40px 20px;
    gap: 20px;
  }
  .st-cta-btn { width: 100%; text-align: center; }
}


/* ============================================================
   Pagina: progetti
   ============================================================ */

/* ------------------------------------------------------------
   Progetti (prefisso pr-)
   ------------------------------------------------------------ */

/* Hero */
.pr-hero {
  padding: 72px 48px 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}
.pr-hero .pill-dashed { background: transparent; }
.pr-hero-title {
  font-size: 64px;
  line-height: 1.02;
  max-width: 20ch;
  text-wrap: pretty;
}
.pr-hero-lead {
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 60ch;
}

/* Pannello lavori in corso (sostituisce la griglia progetti) */
.pr-wip { padding: 64px 48px 88px; }

/* CTA finale */
.pr-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  border-top: 1px solid var(--border);
}
.pr-cta-text {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  max-width: 48ch;
}
.pr-cta .btn-accent { flex: none; }

/* Responsive */
@media (max-width: 1024px) {
  .pr-hero { padding: 56px 32px 48px; }
  .pr-hero-title { font-size: 52px; }
  .pr-wip { padding: 56px 32px 72px; }
  .pr-cta { padding: 40px 32px; }
}

@media (max-width: 680px) {
  .pr-hero { padding: 48px 20px 40px; }
  .pr-hero-title { font-size: 40px; line-height: 1.05; }
  .pr-hero-lead { font-size: 17px; }
  .pr-wip { padding: 44px 20px 56px; }
  .pr-wip .btn-accent {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  .pr-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 40px 20px;
  }
  .pr-cta-text { font-size: 20px; }
  .pr-cta .btn-accent {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}


/* ============================================================
   Pagina: news
   ============================================================ */

/* ------------------------------------------------------------
   News (prefisso nw-)
   ------------------------------------------------------------ */

/* La pagina occupa l'intera altezza: hero elastico, footer in fondo
   (come min-height:100vh + flex del prototipo) */
.nw-page .container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.nw-page main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Hero / stato vuoto */
.nw-hero {
  flex: 1;
  padding: 96px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.nw-hero .pill-dashed { background: transparent; }
.nw-hero-title {
  font-size: 52px;
  line-height: 1.05;
  max-width: 22ch;
}
.nw-hero-lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 52ch;
}

/* Responsive */
@media (max-width: 1024px) {
  .nw-hero { padding: 80px 32px; }
  .nw-hero-title { font-size: 44px; }
}

@media (max-width: 680px) {
  .nw-hero { padding: 64px 20px; }
  .nw-hero-title { font-size: 36px; }
  .nw-hero .btn-accent {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}


/* ============================================================
   Pagina: contatti
   ============================================================ */

/* ===================================================================
   Contatti — booking flow (prefix ct-)
   =================================================================== */

/* Guard: keep [hidden] winning over display rules below */
.ct-booking [hidden] { display: none !important; }

/* --- Hero ---------------------------------------------------------- */
.ct-hero {
  padding: 64px 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-bottom: 1px solid var(--border);
}
.ct-hero-title {
  margin: 0;
  font-size: 60px;
  line-height: 1.04;
  text-wrap: pretty;
}
.ct-lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
}

/* --- Layout: widget a due colonne ------------------------------- */
.ct-booking {
  padding: 72px 48px 88px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.ct-widget {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(13, 17, 23, 0.04), 0 32px 64px -32px rgba(13, 17, 23, 0.18);
}

/* --- Colonna scura -------------------------------------------------- */
.ct-side {
  background: var(--ink);
  color: #F4F6F9;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ct-side-kicker,
.ct-main-kicker,
.ct-contact-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ct-side-kicker { color: var(--accent); }
.ct-side-title {
  font-size: 32px;
  line-height: 1.08;
  margin-top: -14px;
}
.ct-meta {
  list-style: none;
  margin: 0;
  padding: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.ct-meta li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted-light);
}
.ct-meta svg { flex: none; color: #F4F6F9; }

/* --- Step verticali ------------------------------------------------- */
.ct-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.ct-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 24px;
}
.ct-step:last-child { padding-bottom: 0; }
.ct-step-mark {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-light);
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.ct-step-num { font-size: 15px; line-height: 1; }
.ct-step-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 3px;
  min-width: 0;
}
.ct-step-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted-light);
}
.ct-step-hint {
  font-size: 13px;
  color: var(--muted);
}
.ct-step.is-active .ct-step-mark {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
}
.ct-step.is-active .ct-step-label,
.ct-step.is-done .ct-step-label { color: #FFFFFF; }
.ct-step.is-active .ct-step-hint,
.ct-step.is-done .ct-step-hint { color: var(--muted-light); }
.ct-step.is-done .ct-step-mark {
  border-color: var(--accent);
  color: var(--accent);
}

/* --- Colonna chiara ------------------------------------------------- */
.ct-main {
  padding: 40px 44px;
  min-width: 0;
}
.ct-step-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ct-step-body--card { gap: 16px; }
.ct-main-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ct-main-kicker { color: var(--muted); }
.ct-main-kicker span { color: var(--accent); }
.ct-main-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
.ct-main-sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}
.ct-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ct-field--full { grid-column: 1 / -1; }
.ct-main-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.ct-main-note {
  font-size: 13px;
  color: var(--muted);
}

/* --- Form fields --------------------------------------------------- */
.ct-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ct-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.ct-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  background: #FFFFFF;
  padding: 13px 14px;
  font-size: 14px;
  font-family: 'Geist', system-ui, sans-serif;
  color: var(--ink);
}
.ct-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224, 83, 60, 0.12);
}
select.ct-input { appearance: auto; }
textarea.ct-input { resize: vertical; }
.ct-input.ct-invalid { border-color: var(--accent); }
.ct-err {
  margin: 0;
  font-size: 13px;
  color: var(--accent);
}

/* Honeypot: visually hidden off-screen (never display:none) */
.ct-hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- Buttons ------------------------------------------------------- */
.ct-btn {
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #FFFFFF;
  border-radius: 2px;
  font-weight: 600;
  font-family: 'Geist', system-ui, sans-serif;
}
.ct-btn:disabled {
  background: var(--disabled);
  cursor: default;
}
.ct-btn-primary {
  padding: 15px 28px;
  font-size: 15px;
  align-self: flex-start;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.ct-btn-primary:hover:not(:disabled) { transform: scale(1.03); }
.ct-btn-confirm {
  padding: 14px 28px;
  font-size: 15px;
  flex: none;
}

/* --- Calendar ------------------------------------------------------ */
.ct-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ct-cal-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ct-cal-name { font-size: 19px; font-weight: 600; }
.ct-cal-sub { font-size: 13.5px; color: var(--muted); }
.ct-cal-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ct-nav-btn {
  border: 1px solid var(--border-soft);
  background: #FFFFFF;
  color: var(--ink);
  width: 34px;
  height: 34px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Geist', system-ui, sans-serif;
}
.ct-nav-btn:disabled {
  color: var(--disabled);
  cursor: default;
}
.ct-month-label {
  font-size: 14px;
  font-weight: 600;
  width: 130px;
  text-align: center;
}
.ct-cal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ct-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-align: center;
}
.ct-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.ct-day {
  border: 1px solid transparent;
  height: 44px;
  border-radius: 2px;
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.ct-day:hover:not(:disabled):not(.is-selected) { border-color: var(--accent); }
.ct-day:disabled {
  background: transparent;
  color: var(--disabled);
  cursor: default;
}
.ct-day--blank { background: transparent; }
.ct-day.is-selected {
  background: var(--accent);
  color: #FFFFFF;
}

/* --- Loading / fetch error ---------------------------------------- */
.ct-cal-status {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.ct-cal-error {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-soft);
  padding-top: 20px;
}
.ct-cal-error p {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
}
.ct-cal-error-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ct-mail-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* --- Slot chips ---------------------------------------------------- */
.ct-slots {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.ct-slots-title { font-size: 14px; font-weight: 600; }
.ct-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ct-chip {
  border: 1px solid var(--border-soft);
  background: #FFFFFF;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 2px;
  cursor: pointer;
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.ct-chip:disabled {
  color: var(--muted-light);
  text-decoration: line-through;
  cursor: default;
}
.ct-chip:hover:not(:disabled):not(.is-selected) { border-color: var(--accent); }
.ct-chip.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
}

/* --- Notices / footer row ------------------------------------------ */
.ct-notice {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}
.ct-cal-foot {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.ct-cal-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.ct-cal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.ct-back {
  border: none;
  background: none;
  padding: 0;
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  cursor: pointer;
}
.ct-back:hover:not(:disabled) { color: var(--accent); }
.ct-back:disabled {
  color: var(--muted-light);
  cursor: default;
}

/* --- Confirmation & fatal cards ------------------------------------ */
.ct-done-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-done-title {
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
}
.ct-done-when {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}
.ct-done-meet-row {
  margin: 0;
  font-size: 15px;
}
.ct-meet-link {
  color: var(--accent);
  font-weight: 600;
}
.ct-done-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.ct-fatal-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}
.ct-fatal-text a {
  color: var(--accent);
  font-weight: 600;
}

/* --- Contatti diretti sotto il widget ----------------------------- */
.ct-contact {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.ct-contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ct-contact-sede {
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}
.ct-contact-sede > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ct-contact-pin { flex: none; color: var(--accent); margin-top: -1px; }
.ct-contact-label { color: var(--ink); }
.ct-contact-mail {
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  width: fit-content;
}
.ct-contact-mail:hover { color: var(--accent); }

/* --- Noscript fallback ---------------------------------------------- */
.ct-noscript p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}
.ct-noscript a {
  color: var(--accent);
  font-weight: 600;
}

/* --- Responsive ------------------------------------------------------ */
@media (max-width: 1024px) {
  .ct-hero { padding: 56px 32px 48px; }
  .ct-hero-title { font-size: 48px; }
  .ct-booking { padding: 56px 32px 72px; }
  .ct-widget { grid-template-columns: 1fr; }
  .ct-side { padding: 32px; gap: 24px; }
  .ct-meta { flex-direction: row; flex-wrap: wrap; gap: 10px 24px; }
  .ct-steps { flex-direction: row; gap: 32px; }
  .ct-step { padding-bottom: 0; }
  .ct-main { padding: 36px 32px; }
}

@media (max-width: 680px) {
  .ct-hero { padding: 48px 20px 40px; }
  .ct-hero-title { font-size: 38px; }
  .ct-booking { padding: 48px 20px 64px; }
  .ct-side { padding: 28px 20px; }
  .ct-side-title { font-size: 28px; }
  .ct-meta { flex-direction: column; }
  .ct-steps { flex-direction: column; gap: 16px; }
  .ct-main { padding: 28px 20px; }
  .ct-fields { grid-template-columns: 1fr; }
  .ct-main-foot { flex-direction: column-reverse; align-items: stretch; }
  .ct-contact { grid-template-columns: 1fr; gap: 24px; }
  .ct-dow, .ct-days { gap: 4px; }
  .ct-day { height: 38px; font-size: 13px; }
  .ct-chip { padding: 9px 14px; font-size: 13px; }
  .ct-month-label { width: auto; min-width: 110px; }
  .ct-btn-primary { align-self: stretch; width: 100%; }
  .ct-cal-actions { flex-direction: column; align-items: stretch; }
  .ct-btn-confirm { width: 100%; }
  .ct-back { align-self: flex-start; }
}

/* ------------------------------------------------------------
   Schermi oltre 1440px: sfondi e linee a tutta larghezza,
   contenuto centrato entro 1440px
   ------------------------------------------------------------ */
@media (min-width: 1441px) {
  .site-header,
  .footer-inner,
  .home-hero, .home-problema, .home-servizi, .home-metodo, .home-progetti, .home-cta-band,
  .sv-hero, .sv-areas, .sv-cta,
  .st-hero, .st-name, .st-method, .st-cta,
  .pr-hero, .pr-wip, .pr-cta,
  .nw-hero,
  .ct-hero, .ct-booking {
    padding-left: calc((100% - 1440px) / 2 + 48px);
    padding-right: calc((100% - 1440px) / 2 + 48px);
  }
}


/* ------------------------------------------------------------
   Card progetto (prefisso pj-): Progetti e Home
   ------------------------------------------------------------ */
.pj-grid { display: grid; gap: 32px; }

.pj-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  background: #FFFFFF;
  transition: border-color 200ms ease;
}
.pj-card:hover { color: var(--ink); border-color: var(--muted-light); }

.pj-media {
  position: relative;
  background-color: var(--panel);
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 40px 40px;
  border-right: 1px solid var(--border);
  min-height: 440px;
  overflow: hidden;
}
.pj-media-desk {
  position: absolute;
  left: 7%;
  top: 11%;
  width: 74%;
  margin: 0;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.pj-media-phone {
  position: absolute;
  right: 7%;
  top: 22%;
  width: 22%;
  margin: 0;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.pj-card:hover .pj-media-desk { transform: translateY(-4px); }
.pj-card:hover .pj-media-phone { transform: translateY(-10px); }

.pj-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pj-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pj-num { font-size: 40px; color: var(--accent); line-height: 1; }
.pj-client { height: 34px; width: auto; display: block; }
.pj-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.pj-title {
  font-family: var(--font-display);
  font-variant-ligatures: none;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.08;
  margin: 0;
  text-wrap: pretty;
}
.pj-text { margin: 0; font-size: 16px; line-height: 1.6; color: var(--muted); }
.pj-stats {
  display: flex;
  gap: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.pj-stat-n {
  font-family: var(--font-display);
  font-variant-ligatures: none;
  font-size: 32px;
  line-height: 1;
}
.pj-stat-l { font-size: 13px; color: var(--muted); margin-top: 6px; }
.pj-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pj-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 5px 12px;
}
.pj-more { align-self: flex-start; }

/* Card verticali in fila (Home): oggi due, pronte per tre o quattro */
.pj-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* Finché i casi sono pochi, la card "in arrivo" prende lo spazio che resta */
.pj-card--soon { grid-column: span 2; display: flex; flex-direction: column; }
.pj-card--v.pj-card--soon .pj-media { flex: 1; aspect-ratio: auto; min-height: 200px; }
@media (max-width: 1100px) {
  .pj-row { grid-template-columns: repeat(2, 1fr); }
  .pj-card--soon { grid-column: auto; }
}
@media (max-width: 680px) {
  .pj-row { grid-template-columns: 1fr; }
  .pj-card--v.pj-card--soon .pj-media { flex: none; aspect-ratio: 16 / 10; min-height: 0; }
}
.pj-card--v { grid-template-columns: 1fr; }
.pj-card--v .pj-media { min-height: 0; aspect-ratio: 16 / 10; border-right: 0; border-bottom: 1px solid var(--border); }
.pj-card--v .pj-info { padding: 28px 28px 32px; gap: 16px; }
.pj-card--v .pj-num { font-size: 32px; }
.pj-card--v .pj-client { height: 30px; }
.pj-card--v .pj-title { font-size: 26px; }
.pj-card--v .pj-more { margin-top: auto; }

.pj-card--soon { border-style: dashed; border-color: var(--border-soft); }
.pj-media--soon { display: grid; place-items: center; background-image: none; }
.pj-skel {
  width: min(62%, 420px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.pj-skel-bar { height: 10px; width: 55%; border-radius: 2px; background: var(--border); }
.pj-skel-bar--wide { width: 80%; height: 14px; }
.pj-skel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 6px; }
.pj-skel-grid i { aspect-ratio: 1; border-radius: 3px; background: var(--panel); }
.pj-num--soon { color: var(--disabled); }
.pj-title--soon { color: var(--muted); }
.pj-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px dashed var(--muted-light);
  border-radius: 999px;
  padding: 5px 12px;
}
.pj-loading .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
@media (prefers-reduced-motion: no-preference) {
  .pj-skel-bar, .pj-skel-grid i {
    background: linear-gradient(90deg, var(--panel) 0%, var(--border) 50%, var(--panel) 100%);
    background-size: 200% 100%;
    animation: pj-shimmer 1.6s ease-in-out infinite;
  }
  .pj-loading .dot { animation: pj-blink 1.2s ease-in-out infinite; }
}
@keyframes pj-shimmer { from { background-position: 100% 0; } to { background-position: -100% 0; } }
@keyframes pj-blink { 50% { opacity: 0.25; } }

/* Slot "prossimo caso" */
.pj-next {
  border: 1px dashed var(--muted-light);
  border-radius: 6px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pj-next p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 56ch; }
.pj-next strong { color: var(--ink); font-weight: 600; }
.pj-next .link-underline { flex: none; }

/* Sezione griglia progetti nella pagina Progetti */
.pr-list { padding: 64px 48px 88px; }

/* ------------------------------------------------------------
   Caso studio (prefisso cs-)
   ------------------------------------------------------------ */

/* Icone */
.cs-ic { width: 24px; height: 24px; flex: none; color: var(--ink); display: block; }

/* Contenitore neutro in cui vivono i mockup */
.cs-frame {
  position: relative;
  background-color: var(--panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 56px;
  overflow: hidden;
}
.cs-frame--grid {
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: -1px -1px;
}

/* Cornici degli screen */
.cs-browser {
  margin: 0;
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(13, 17, 23, 0.04), 0 20px 40px -24px rgba(13, 17, 23, 0.22);
}
.cs-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 12px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
}
.cs-browser-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--border-soft); }
.cs-browser-bar em {
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
  margin: 0 auto;
  padding-right: 42px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cs-browser img { display: block; width: 100%; height: auto; }

/* Telefono: cornice e angoli in proporzione alla sua larghezza,
   cosi' resta giusto sia grande sia in miniatura nelle card */
.cs-phone {
  margin: 0;
  background: var(--ink);
  padding: 0;
  container-type: inline-size;
  border-radius: 13% / 6%;
  box-shadow: 0 24px 48px -28px rgba(13, 17, 23, 0.4);
}
.cs-phone img {
  display: block;
  width: calc(100% - 6cqi);
  height: auto;
  margin: 3cqi;
  border-radius: 10cqi;
}

/* Hero */
.cs-hero {
  position: relative;
  overflow: hidden;
  padding: 32px 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.cs-hero > * { position: relative; }
.cs-hero .cs-hero-shape {
  position: absolute;
  width: 560px;
  height: 560px;
  right: -140px;
  top: -220px;
  border-radius: 50%;
  border: 1px solid var(--border);
  pointer-events: none;
}
.cs-hero .cs-hero-shape::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  left: 76px;
  bottom: 92px;
}
.cs-back {
  align-self: flex-start;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}
.cs-back:hover { color: var(--accent); }
.cs-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 72px;
  align-items: end;
}
.cs-hero-main { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.cs-hero-title {
  font-size: 64px;
  line-height: 1.02;
  max-width: 16ch;
  text-wrap: balance;
}
.cs-hero-lead {
  margin: 0;
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 54ch;
}
.cs-meta {
  margin: 0;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 24px;
}
.cs-meta > div { padding: 16px 0; border-bottom: 1px solid var(--border); }
.cs-meta > div:last-child { border-bottom: 0; }
.cs-meta-client img { height: 38px; width: auto; display: block; }
.cs-meta dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 5px;
}
.cs-meta dd { margin: 0; font-size: 15px; font-weight: 500; }
.cs-meta a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--accent); }
.cs-meta a:hover { color: var(--accent); }

/* Visual d'apertura */
.cs-stage { padding: 24px 48px 0; }
.cs-frame--stage { padding: 64px; }
.cs-stage-inner { position: relative; max-width: 1120px; margin: 0 auto; padding-right: 13%; }
.cs-stage-phone { position: absolute; right: 0; top: 48px; width: 23%; }

/* Risultati: 80 quadratini e barre del tempo */
.cs-results {
  padding: 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 24px;
}
.cs-result {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #FFFFFF;
}
.cs-result-head { display: flex; align-items: center; gap: 12px; }
.cs-result-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.cs-result-big { display: flex; align-items: center; gap: 16px; }
.cs-big-old { font-size: 64px; line-height: 0.9; color: var(--disabled); }
.cs-big-new { font-size: 64px; line-height: 0.9; color: var(--accent); }
.cs-big-arrow { color: var(--muted-light); flex: none; }

.cs-squares {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 5px;
}
.cs-sq { aspect-ratio: 1; border-radius: 2px; background: var(--disabled); }
.cs-sq--new { background: var(--accent); }

.cs-legend { display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: 14px; color: var(--muted); }
.cs-legend span { display: inline-flex; align-items: center; gap: 8px; }
.cs-legend strong { color: var(--ink); font-weight: 600; }
.cs-key { width: 10px; height: 10px; border-radius: 2px; background: var(--disabled); }
.cs-key--new { background: var(--accent); }

.cs-bars { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.cs-bar-row { display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 12px; }
.cs-bar-label { font-size: 13px; font-weight: 600; color: var(--muted); }
.cs-bar {
  position: relative;
  display: flex;
  height: 36px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--panel);
}
.cs-bar-fill { display: block; height: 100%; background: var(--ink); flex: none; }
.cs-bar-fill--old { background: var(--disabled); }
.cs-bar-free {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: repeating-linear-gradient(135deg, rgba(224, 83, 60, 0.14) 0 6px, rgba(224, 83, 60, 0.04) 6px 12px);
  border: 1px dashed rgba(224, 83, 60, 0.5);
  border-left: 0;
  border-radius: 0 3px 3px 0;
}
.cs-result-note { margin: auto 0 0; font-size: 15px; line-height: 1.55; color: var(--muted); }

/* Animazione al caricamento: le 50 liste nuove si accendono una dopo l'altra */
@media (prefers-reduced-motion: no-preference) {
  .cs-sq--new { animation: cs-pop 320ms cubic-bezier(0.2, 0.7, 0.3, 1) both; animation-delay: calc(400ms + var(--i, 0) * 28ms); }
  .cs-bar-fill, .cs-bar-free { transform-origin: left; animation: cs-grow 900ms cubic-bezier(0.4, 0, 0.2, 1) both 400ms; }
  .cs-bar-free { animation-delay: 1100ms; }
}
@keyframes cs-pop { from { opacity: 0; transform: scale(0.3); } to { opacity: 1; transform: none; } }
@keyframes cs-grow { from { transform: scaleX(0); } to { transform: none; } }

/* Sezioni */
.cs-section {
  padding: 96px 48px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.cs-head { display: flex; flex-direction: column; gap: 18px; max-width: 760px; }
.cs-eyebrow {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.cs-num { font-size: 22px; letter-spacing: 0; color: var(--accent); }
.cs-h2 { font-size: 44px; line-height: 1.06; text-wrap: balance; }
.cs-lead { margin: 0; font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 52ch; }

/* 01: schede prima / oggi */
.cs-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cs-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cs-card-before {
  background: var(--panel);
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.cs-card-before .cs-ic { width: 30px; height: 30px; color: var(--muted-light); filter: grayscale(1); opacity: 0.75; }
.cs-card-before p { margin: 0; font-size: 16px; line-height: 1.5; color: var(--muted); }
.cs-card-after {
  padding: 18px 28px 22px;
  border-top: 1px dashed var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-card-after p { margin: 0; font-size: 16px; font-weight: 600; line-height: 1.45; }
.cs-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 3px 10px;
}
.cs-tag--now { color: var(--accent); border-color: rgba(224, 83, 60, 0.35); }

/* 02-04: testo + contenitore con i mockup */
.cs-feature {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 72px;
  align-items: center;
}
.cs-feature-text { display: flex; flex-direction: column; gap: 18px; }
.cs-feature--rev { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.cs-feature--rev .cs-feature-text { order: 2; }

.cs-points { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; }
.cs-points li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}
.cs-points li:last-child { border-bottom: 1px solid var(--border); }

.cs-frame-phones {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  padding: 56px 40px;
}
.cs-frame-phones .cs-phone { width: min(42%, 270px); }
.cs-frame-phones .cs-phone:nth-child(2) { margin-top: 48px; }

.cs-feature--wide { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); row-gap: 40px; align-items: end; }
.cs-feature--wide .cs-frame { grid-column: 1 / -1; }
.cs-points--row { margin: 0; }
.cs-frame-desk { padding: 56px 64px; }
.cs-frame-desk .cs-browser { max-width: 1040px; margin: 0 auto; }

/* 05: consegnato */
.cs-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.cs-tile {
  padding: 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cs-tile .cs-ic { width: 28px; height: 28px; margin-bottom: 8px; }
.cs-tile h3 { margin: 0; font-size: 17px; font-weight: 600; }
.cs-tile p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--muted); }
.cs-note { margin: 0; font-size: 13px; color: var(--muted-light); }

/* Ultima sezione prima della CTA */
.cs-section--last { padding-bottom: 96px; }

/* Responsive */
@media (max-width: 1024px) {
  .pj-card { grid-template-columns: 1fr; }
  .pj-media { min-height: 0; aspect-ratio: 16 / 10; border-right: 0; border-bottom: 1px solid var(--border); }
  .pj-info { padding: 32px; }
  .pr-list { padding: 56px 32px 72px; }

  .cs-hero { padding: 28px 32px 48px; gap: 32px; }
  .cs-hero-row { grid-template-columns: 1fr; gap: 36px; }
  .cs-hero-title { font-size: 52px; }
  .cs-meta { display: grid; grid-template-columns: repeat(4, auto); justify-content: space-between; gap: 0 24px; padding: 4px 24px; }
  .cs-meta > div { border-bottom: 0; }
  .cs-stage { padding: 24px 32px 0; }
  .cs-frame--stage { padding: 48px 40px; }
  .cs-results { padding: 0 32px; grid-template-columns: 1fr; }
  .cs-cards { grid-template-columns: 1fr; gap: 12px; }
  .cs-card { flex-direction: row; }
  .cs-card-after { border-top: 0; border-left: 1px dashed var(--border-soft); flex: 1; justify-content: center; }
  .cs-section { padding: 72px 32px 0; }
  .cs-section--last { padding-bottom: 72px; }
  .cs-h2 { font-size: 38px; }
  .cs-feature, .cs-feature--wide { grid-template-columns: 1fr; gap: 36px; }
  .cs-feature--rev .cs-feature-text { order: 0; }
  .cs-tiles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .pj-info { padding: 24px 20px 28px; }
  .pj-title { font-size: 28px; }
  .pj-stats { gap: 24px; }
  .pj-next { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
  .pr-list { padding: 44px 20px 56px; }

  .cs-hero { padding: 24px 20px 40px; gap: 24px; }
  .cs-hero-title { font-size: 38px; line-height: 1.05; }
  .cs-hero-lead { font-size: 17px; }
  .cs-meta { grid-template-columns: 1fr 1fr; padding: 4px 18px; column-gap: 16px; }
  .cs-meta > div { padding: 14px 0; }
  .cs-meta > div:last-child { grid-column: 1 / -1; border-top: 1px solid var(--border); }
  .cs-meta dd { font-size: 14px; }
  .cs-hero .cs-hero-shape { display: none; }
  .cs-stage { padding: 16px 20px 0; }
  .cs-frame--stage { padding: 28px 18px 32px; }
  .cs-results { padding: 0 20px; gap: 12px; }
  .cs-result { padding: 24px 20px; gap: 16px; }
  .cs-big-old, .cs-big-new { font-size: 48px; }
  .cs-squares { grid-template-columns: repeat(10, 1fr); gap: 4px; }
  .cs-bar-free { font-size: 11px; padding: 0 8px; }
  .cs-card { flex-direction: column; }
  .cs-card-before { padding: 20px; }
  .cs-card-after { padding: 16px 20px 18px; border-left: 0; border-top: 1px dashed var(--border-soft); }
  .cs-stage-inner { padding-right: 16%; }
  .cs-stage-phone { width: 34%; top: 24px; }
  .cs-browser-bar { height: 22px; }
  .cs-browser-bar span { width: 7px; height: 7px; }
  .cs-browser-bar em { display: none; }
  .cs-section { padding: 56px 20px 0; gap: 28px; }
  .cs-section--last { padding-bottom: 56px; }
  .cs-h2 { font-size: 30px; }
  .cs-lead { font-size: 16px; }
  .cs-cards { grid-template-columns: 1fr; gap: 10px; }
  .cs-frame { padding: 28px 20px; }
  .cs-frame-phones { gap: 14px; padding: 28px 16px; }
  .cs-frame-phones .cs-phone { width: 48%; }
  .cs-frame-phones .cs-phone:nth-child(2) { margin-top: 28px; }
  .cs-frame-desk { padding: 20px 14px; }
  .cs-tiles { grid-template-columns: 1fr; }
  .cs-tile { padding: 20px; flex-direction: row; flex-wrap: wrap; align-items: center; column-gap: 14px; row-gap: 4px; }
  .cs-tile .cs-ic { margin-bottom: 0; }
  .cs-tile p { flex-basis: 100%; }
}

@media (min-width: 1441px) {
  .pr-list,
  .cs-hero, .cs-stage, .cs-results, .cs-section {
    padding-left: calc((100% - 1440px) / 2 + 48px);
    padding-right: calc((100% - 1440px) / 2 + 48px);
  }
}
