@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./fonts/outfit-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --background: #F6F4EE;
  --foreground: #14252A;
  --primary: #1F5F66;
  --primary-hover: #174A50;
  --secondary: #7AA39B;
  --muted: #E3E6E0;
  --border: #D6D9D2;
  --white: #FFFFFF;
  --secondary-text: #4D6C69;
  --text-subhead: #586365;
  --text-body-muted: #4D595B;
  --text-card-muted: #566266;
  --text-sector: #5C696A;
  --text-on-dark: #AEB2AF;
  --text-on-dark-muted: #A0A5A4;
  --text-on-dark-subtle: #858D8C;
  --text-nav-muted: #657071;
  /* fallback solido prima di color-mix: browser senza supporto vedono comunque lo stacco */
  --footer-contact-background: #26363A;
  --footer-contact-background: color-mix(in srgb, var(--foreground) 92%, var(--background));
  --font: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  text-underline-offset: 0.2em;
}

::selection {
  background: var(--secondary);
  color: var(--foreground);
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.services :focus-visible,
.final-cta :focus-visible,
.footer :focus-visible {
  outline-color: var(--background);
}

.wrap {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 100;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: var(--foreground);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 150ms ease-out;
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline-color: var(--background);
}

.site-header {
  background: var(--background);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 24px;
}

.nav-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.nav-word {
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.nav-lang {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
}

.nav-lang a {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border-radius: 6px;
  color: var(--text-nav-muted);
  text-decoration: none;
  transition: background-color 150ms ease-out, color 150ms ease-out;
}

.nav-lang a:hover {
  color: var(--foreground);
}

.nav-lang a[aria-current="page"] {
  background: var(--muted);
  color: var(--foreground);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 56px 72px;
}

.shape-circle,
.shape-square {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.shape-circle {
  inset-block-start: -100px;
  inset-inline-end: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgb(31 95 102 / 8%);
}

.shape-square {
  inset-block-end: -60px;
  inset-inline-start: -40px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-xl);
  background: rgb(122 163 155 / 12%);
  transform: rotate(18deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: min(680px, calc(100% - 344px));
}

.hero-photo {
  position: absolute;
  inset-block-start: 8px;
  inset-inline-end: 24px;
  z-index: 2;
  width: 320px;
  height: 320px;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: var(--muted);
}

.hero-photo picture,
.hero-photo img {
  width: 100%;
  height: 100%;
}

.hero-photo img {
  object-fit: cover;
}

.hero h1 {
  max-width: 680px;
  margin: 0 0 22px;
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}

.accent-word {
  color: var(--primary);
}

.subhead {
  max-width: 480px;
  margin: 0 0 32px;
  color: var(--text-subhead);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn-primary,
.btn-outline,
.footer-contact,
.footer-social,
.language-choice {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
}

.btn-primary,
.btn-outline {
  height: 56px;
  font-size: 15px;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.btn-primary {
  border: 0;
  padding-inline: 28px;
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-outline {
  border: 4px solid var(--foreground);
  padding-inline: 26px;
  background: transparent;
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--foreground);
  color: var(--white);
}

.icon-arrow {
  flex: 0 0 auto;
  width: 1.1em;
  height: 1.1em;
}

.about {
  padding-block: 8px 64px;
}

.about-inner {
  max-width: 640px;
}

.kicker {
  display: inline-block;
  margin-block-end: 20px;
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about h2,
.fit h2 {
  margin: 14px 0 24px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}

.about p {
  max-width: 58ch;
  margin: 0;
  color: var(--text-body-muted);
  font-size: 16px;
  line-height: 1.65;
}

.services {
  padding-block: 64px;
  background: var(--primary);
}

.services-head,
.cases-head {
  max-width: 560px;
  margin-block-end: 36px;
}

.services-head .kicker {
  background: rgb(255 255 255 / 14%);
  color: var(--white);
}

.services h2,
.cases h2 {
  margin: 14px 0 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
}

.services h2 {
  color: var(--white);
}

.card-grid,
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card-grid {
  align-items: stretch;
}

.stat-grid {
  align-items: start;
}

.card {
  min-width: 0;
  height: 100%;
  padding: 28px 26px;
  border-radius: var(--radius-md);
  background: var(--white);
  transition: background-color 200ms ease, transform 200ms ease;
}

.card:hover {
  background: var(--background);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: normal;
}

.card p {
  margin: 0;
  color: var(--text-card-muted);
  font-size: 15px;
  line-height: 1.6;
}

.bridge-line,
.case-bridge-line {
  max-width: 62ch;
  margin: 32px 0 0;
  padding-block-start: 28px;
  border-block-start: 1px solid rgb(255 255 255 / 16%);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
}

.cases {
  padding-block: 64px;
}

.stat-tile {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: var(--muted);
}

.stat-number {
  margin-block-end: 12px;
  color: var(--primary);
  font-size: 44px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-tile:nth-child(2) .stat-number {
  color: var(--secondary-text);
}

.stat-tile:nth-child(3) .stat-number {
  color: var(--foreground);
}

.stat-caption {
  margin-block-start: 2px;
  margin-block-end: 6px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.stat-sector {
  color: var(--text-sector);
  font-size: 13px;
  line-height: 1.65;
}

.case-details {
  margin-block-start: auto;
  padding-block-start: 20px;
}

.case-details summary {
  min-height: 44px;
  padding-block: 10px;
  color: var(--primary);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  transition: color 150ms ease-out;
}

.case-details summary:hover {
  color: var(--primary-hover);
}

.case-details summary::marker {
  color: currentColor;
}

.case-details dl {
  margin: 16px 0 0;
  padding-block-start: 20px;
  border-block-start: 1px solid var(--border);
}

.case-details dt {
  margin-block-start: 24px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.case-details dt:first-child {
  margin-block-start: 0;
}

.case-details dd {
  margin: 8px 0 0;
  color: var(--text-sector);
  font-size: 13px;
  line-height: 1.65;
}

.case-bridge-line {
  margin-block-start: 24px;
  padding-block-start: 24px;
  border-color: var(--border);
  color: var(--text-body-muted);
  font-size: 15px;
}

.fit {
  padding-block: 56px;
  background: var(--muted);
}

.fit-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.fit-head {
  max-width: 400px;
}

.fit h2 {
  margin-block-end: 0;
}

.chip-list {
  display: flex;
  max-width: 480px;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 10px 18px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}

.final-cta {
  padding-block: 72px;
  background: var(--foreground);
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 20px;
  color: var(--background);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
}

.final-cta p {
  max-width: 68ch;
  margin: 0 auto 28px;
  color: var(--text-on-dark);
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}

.footer {
  background: var(--foreground);
  color: var(--background);
}

.footer-contact-zone {
  background: var(--footer-contact-background);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-block: 32px;
}

.footer-word {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.footer-tagline {
  max-width: 300px;
  margin: 8px 0 0;
  color: var(--text-on-dark-muted);
  font-size: 14px;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  width: min(100%, 320px);
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.footer-contact,
.footer-social {
  width: 100%;
  max-width: 100%;
  height: 48px;
  padding-inline: 16px;
  font-size: 14px;
  line-height: 1.4;
}

.footer-contact {
  border: 1px solid var(--background);
  background: var(--background);
  color: var(--foreground);
  transition: background-color 150ms ease-out, border-color 150ms ease-out;
}

.footer-contact:hover {
  border-color: var(--white);
  background: var(--white);
}

.footer-social {
  border: 1px solid var(--secondary);
  background: transparent;
  color: var(--background);
  transition: background-color 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out;
}

.footer-social:hover {
  border-color: var(--background);
  background: var(--background);
  color: var(--foreground);
}

.footer-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-block: 20px 24px;
  color: var(--text-on-dark-subtle);
  font-size: 12px;
  line-height: 1.5;
}

.gateway-page,
.error-page {
  min-height: 100vh;
}

.gateway-main,
.error-main {
  position: relative;
  display: grid;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  place-items: center;
  padding-block: 48px 72px;
}

.gateway-panel,
.error-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
}

.gateway-panel h1,
.error-panel h1 {
  margin: 14px 0 18px;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
}

.gateway-copy,
.error-copy {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--text-subhead);
  font-size: 18px;
  line-height: 1.55;
}

.gateway-copy span {
  display: block;
}

.gateway-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.language-choice {
  min-width: 112px;
  height: 56px;
  border: 4px solid var(--foreground);
  background: var(--foreground);
  color: var(--white);
  font-size: 16px;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.language-choice:hover {
  background: var(--primary);
}

.error-panel {
  max-width: 680px;
}

.error-panel .kicker {
  margin-block-end: 0;
}

.error-panel .btn-primary {
  margin-block-start: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover,
  .btn-outline:hover,
  .language-choice:hover {
    transform: scale(1.05);
  }

  .card:hover {
    transform: scale(1.02);
  }
}

@media (min-width: 1440px) {
  .hero {
    padding-block: 64px 80px;
  }
}

@media (max-width: 1024px) {
  .fit-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .fit-head,
  .chip-list {
    max-width: none;
  }
}

@media (max-width: 861px) {
  .hero {
    padding-block: 40px 48px;
  }

  .hero-photo {
    position: relative;
    inset: auto;
    width: 200px;
    height: 200px;
    margin: 0 0 24px auto;
  }

  .hero-inner {
    max-width: 680px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1.06;
  }

  .subhead {
    font-size: 17px;
    line-height: 1.6;
  }

  .about {
    padding-block: 8px 48px;
  }

  .about h2,
  .fit h2 {
    font-size: 27px;
  }

  .about p {
    font-size: 16px;
  }

  .services,
  .cases {
    padding-block: 48px;
  }

  .services h2,
  .cases h2 {
    font-size: 30px;
  }

  .services-head,
  .cases-head {
    margin-block-end: 32px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid:not(.card-grid--two) .card:last-child {
    grid-column: 1 / -1;
  }

  .stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid,
  .stat-grid {
    gap: 16px;
  }

  .card {
    padding: 24px;
  }

  .stat-tile {
    padding: 20px 16px;
  }

  .stat-number {
    font-size: 40px;
  }

  .bridge-line {
    margin-block-start: 28px;
    padding-block-start: 24px;
    font-size: 15px;
  }

  .fit {
    padding-block: 40px;
  }

  .fit-inner {
    gap: 24px;
  }

  .final-cta {
    padding-block: 52px;
  }

  .final-cta h2 {
    font-size: 34px;
  }

  .final-cta p {
    font-size: 16px;
  }

  .gateway-panel h1,
  .error-panel h1 {
    font-size: 38px;
  }
}

@media (max-width: 719px) {
  .wrap {
    padding-inline: 20px;
  }

  .nav {
    padding-block: 18px;
  }

  .shape-circle {
    inset-block-start: -120px;
    inset-inline-end: -150px;
  }

  .shape-square {
    inset-block-end: -90px;
    inset-inline-start: -100px;
  }

  .hero {
    padding-block: 32px 40px;
  }

  .hero-photo {
    width: 160px;
    height: 160px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .subhead {
    font-size: 16px;
  }

  .about {
    padding-block: 4px 32px;
  }

  .about h2,
  .fit h2 {
    font-size: 26px;
  }

  .about p {
    font-size: 15px;
  }

  .services,
  .cases {
    padding-block: 32px;
  }

  .services h2,
  .cases h2 {
    font-size: 28px;
  }

  .services-head,
  .cases-head {
    margin-block-end: 24px;
  }

  .card-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .card-grid:not(.card-grid--two) .card:last-child {
    grid-column: auto;
  }

  .card,
  .stat-tile {
    padding: 24px;
  }

  .stat-number {
    font-size: 36px;
  }

  .bridge-line {
    margin-block-start: 24px;
    padding-block-start: 20px;
  }

  .fit-inner {
    display: block;
  }

  .chip-list {
    max-width: none;
    margin-block-start: 24px;
  }

  .fit {
    padding-block: 28px;
  }

  .final-cta {
    padding-block: 36px;
  }

  .final-cta h2 {
    font-size: 32px;
  }

  .footer-top {
    display: block;
  }

  .footer-links {
    width: 100%;
    margin-block-start: 24px;
  }

  .gateway-main,
  .error-main {
    min-height: calc(100vh - 70px);
    place-items: start;
    padding-block: 56px;
  }
}

@media (max-width: 480px) {
  .nav-word {
    font-size: 15px;
  }

  .nav-lang {
    gap: 0;
  }

  .hero h1 {
    font-size: 38px;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .about p {
    font-size: 15px;
  }

  .stat-number {
    font-size: 36px;
  }

  .chip {
    width: 100%;
  }

  .final-cta h2 {
    font-size: 30px;
  }

  .footer-top {
    padding-block: 28px;
  }

  .footer-bottom {
    padding-block: 20px;
  }

  .footer-contact span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .gateway-panel h1,
  .error-panel h1 {
    font-size: 34px;
  }

  .gateway-copy,
  .error-copy {
    font-size: 16px;
  }

  .gateway-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .language-choice {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* Il quadrato decorativo dell'hero, sotto i 861px, finiva dietro la CTA secondaria
   e usciva tagliato dal bordo sinistro: letto come errore di rendering, non come
   decorazione. Sopra quella soglia resta esattamente dove sta nel mockup approvato. */
@media (max-width: 861px) {
  .shape-square {
    display: none;
  }
}

/* Variante landing per traffico freddo (it/ads/): la card white-label parla ad agenzie,
   fuori posto su una pagina che porta founder e-commerce da una campagna. Restano due card. */
.card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 719px) {
  .card-grid--two {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   Ritmo verticale, revisione 03/09
   Il giro precedente aveva lavorato su interlinea e micro-margini, ma la
   densita' percepita veniva dallo spazio fra i blocchi, non dentro i paragrafi.
   ========================================================================== */

/* Il titolo di sezione deve aprire il contenuto, non stargli attaccato:
   lo spazio sotto il titolo va sempre almeno pari a quello sopra. */
.services-head,
.cases-head,
.faq-head {
  margin-block-end: 40px;
}

.about-inner .kicker,
.fit-head .kicker {
  margin-block-end: 12px;
}

/* Respiro fra la fine di una sezione e l'inizio della successiva */
.about {
  padding-block: 16px 72px;
}

.cases {
  padding-block: 72px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  padding-block: 72px;
  background: var(--background);
}

.faq-head h2 {
  max-width: 20ch;
  margin: 14px 0 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
}

.faq-list {
  max-width: 62ch;
  display: grid;
  gap: 0;
}

.faq-item {
  border-block-start: 2px solid var(--border);
}

.faq-item:last-child {
  border-block-end: 2px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-block: 20px;
  color: var(--foreground);
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  list-style: none;
  transition: color 150ms ease-out;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: none;
  color: var(--primary);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  content: "+";
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--primary);
}

.faq-item summary:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.faq-answer {
  padding-block: 0 24px;
}

.faq-answer p {
  max-width: 58ch;
  margin: 0;
  color: var(--text-body-muted);
  font-size: 15px;
  line-height: 1.7;
}

@media (min-width: 721px) and (max-width: 861px) {
  .faq { padding-block: 52px; }
  .faq-head h2 { font-size: 26px; }
  .services-head,
  .cases-head,
  .faq-head { margin-block-end: 32px; }
}

@media (max-width: 720px) {
  .faq { padding-block: 44px; }
  .faq-head h2 { font-size: 24px; max-width: none; }
  .faq-item summary { font-size: 16px; padding-block: 18px; }
  .services-head,
  .cases-head,
  .faq-head { margin-block-end: 28px; }
  .about { padding-block: 8px 48px; }
  .cases { padding-block: 48px; }
}


/* --------------------------------------------------------------------------
   Blocchi spezzati in paragrafi, 03/09
   Quando un blocco fa piu' di un lavoro (identita', credenziali, tesi) va
   spezzato: stringere la colonna non basta, resta comunque un muro.
   Lo spazio fra i paragrafi e' quello che rende leggibile la separazione.
   -------------------------------------------------------------------------- */

.about-inner p + p {
  margin-block-start: 20px;
}

.bridge-line--second {
  margin-block-start: 16px;
  padding-block-start: 0;
  border-block-start: 0;
}

.faq-answer p + p {
  margin-block-start: 16px;
}

@media (max-width: 720px) {
  .about-inner p + p { margin-block-start: 16px; }
  .bridge-line--second { margin-block-start: 14px; }
}
