:root{
  --ink: #111;
  --muted: #5f6b7a;
  --line: #e7eaee;
  --soft: #f7f8fa;
}

*{ box-sizing: border-box; }

body{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  padding-top: 120px; /* spazio per navbar e logo grande */
  font-size: 18px;   /* tutto più grande */
}

/* NAV */
.nav-clean{
  border-bottom: 1px solid var(--line);
}

.brand-logo{
  height: 96px;   /* logo più grande header */
  width: auto;
}

.nav-link{
  font-weight: 600;
  font-size: 18px;
  padding: .9rem .85rem;
}

/* HERO */
.hero{
  padding: 56px 0 30px;
}

.hero-title{
  font-size: clamp(34px, 4.2vw, 56px);
  letter-spacing: -0.02em;
}

.hero-subtitle{
  font-size: 20px;
  line-height: 1.7;
}

/* SECTIONS */
.section{
  padding: 70px 0;
}

.section-soft{
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title{
  font-size: clamp(28px, 2.6vw, 40px);
}

.section-subtitle{
  font-size: 19px;
}

/* CARDS */
.step-card, .service-card{
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}

.step-icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 22px;
}

.step-quote{
  font-size: 19px;
  font-weight: 600;
}

/* IMMAGINI */
.image-box{
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 8px;
  overflow: hidden;
}

/* Hero: un po' più presente */
.image-hero img{
  height: 360px;
  object-fit: cover;
  border-radius: 14px;
}

/* Chi siamo: media */
.image-medium img{
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
}

/* Come funziona + Servizi: piccole (richiesta utente) */
.image-small{
  max-width: 900px;
  margin: 0 auto;
}
.image-small img{
  height: 350px;          /* ridotte */
  object-fit: cover;
  border-radius: 14px;
}

/* MAPPA */
.map-box{
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.map-box iframe{
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* FOOTER */
.footer{
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-logo{
  height: 200px; /* logo grande footer */
  width: auto;
}

.footer-box{
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  padding: 18px;
}

.footer-links{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-link{
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  opacity: .85;
}
.footer-link:hover{
  opacity: 1;
  text-decoration: underline;
}

.footer-sep{
  color: var(--muted);
}

/* Responsive */
@media (max-width: 992px){
  body{ padding-top: 112px; }
  .brand-logo{ height: 86px; }
  .footer-logo{ height: 86px; }
  .map-box iframe{ height: 360px; }

  .image-hero img{ height: 300px; }
  .image-medium img{ height: 240px; }
  .image-small img{ height: 180px; }
}