/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* VARIABILI */
:root {
  --accent: #2563eb;
  --text: #111827;
  --muted: #6b7280;
  --soft: #f9fafb;
  --border: #e5e7eb;
}

/* BODY */
body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.75;
}

/* IMMAGINE IN ALTO */
.top-image {
  background: #ffffff;
  text-align: center;
}

.top-image img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* CONTENUTO */
.page-content {
  max-width: 960px;
  margin: auto;
  padding: 100px 24px;
}

/* INTRO */
.intro {
  margin-bottom: 60px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.intro h1 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.subtitle {
  margin-top: 12px;
  font-size: 18px;
  color: var(--muted);
}

/* TESTO PRINCIPALE */
.lead {
  font-size: 20px;
  max-width: 720px;
  margin-bottom: 90px;
}

/* TITOLI SEZIONI */
h2 {
  font-size: 26px;
  margin-bottom: 32px;
}

/* SERVIZI */
.services {
  margin-bottom: 110px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}

.card {
  background: var(--soft);
  padding: 30px;
  border-radius: 16px;
  font-weight: 500;
  text-align: center;
  border: 1px solid var(--border);
}

/* BLOCCO TESTO */
.text-block {
  max-width: 700px;
  margin-bottom: 110px;
}

/* CONTATTI */
.contact-box {
  padding: 46px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
  border: 1px solid var(--border);
}

.contact-box p {
  margin-top: 20px;
}

/* LINK */
a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 44px 20px;
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* MOBILE */
@media (max-width: 768px) {
  .page-content {
    padding: 70px 18px;
  }

  .intro h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 22px;
  }

  .lead {
    font-size: 18px;
  }
}
/* Titoli cliccabili */
.link-title {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.link-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.link-title:hover::after {
  width: 100%;
}

.link-title .arrow {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.link-title:hover .arrow {
  transform: translateX(4px);
}