/* === GSave Landing Kit v3 — Vibrant, Human, Italian === */
:root {
  --bg: #fefdfb;
  --bg-alt: #f2f0eb;
  --card: #fff;
  --text: #1e1e1c;
  --text-soft: #5c5a55;
  --border: #e6e3dc;
  --shadow: 0 2px 10px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 36px rgba(0,0,0,0.09);
  --radius: 16px;
  --max-w: 920px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.6rem; }

h1 { font-size: 2.5rem; line-height: 1.15; font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: 1.7rem; line-height: 1.25; font-weight: 700; margin-bottom: 1.2rem; }
h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }

/* Header */
.site-header {
  padding: 0.8rem 0; background: #fff;
  border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.header-brand { display: flex; align-items: center; gap: 0.4rem; }
.header-logo-text { font-weight: 800; font-size: 1rem; color: var(--text); text-decoration: none; }
.header-tel {
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  background: var(--color); color: #fff; padding: 0.5rem 1.1rem;
  border-radius: 100px; display: flex; align-items: center; gap: 0.35rem;
  transition: transform 0.15s;
}
.header-tel:hover { transform: scale(1.04); }

/* Hero */
.hero { padding: 3.5rem 0 2.5rem; background: linear-gradient(170deg, #fff 60%, var(--bg-alt) 100%); text-align: center; }
.hero-grid { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.hero-grid > div:first-child { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-badge {
  display: inline-block; background: var(--color); color: #fff;
  padding: 0.3rem 1rem; border-radius: 100px; font-size: 0.8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 1rem;
}
.hero h1 { margin-bottom: 0.8rem; max-width: 780px; }
.hero h1 span { color: var(--color); }
.hero-desc { font-size: 1rem; color: var(--text-soft); margin-bottom: 1.5rem; max-width: 620px; }
.hero-desc strong { color: var(--text); font-weight: 700; }
.hero-cta-group { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; justify-content: center; }
.hero-micro { margin-top: 1rem; font-size: 0.8rem; color: var(--text-soft); display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-photo { display: none; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--color); color: #fff; padding: 0.85rem 1.8rem;
  border-radius: 100px; font-weight: 700; text-decoration: none; font-size: 1.05rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12); transition: transform 0.15s;
}
.hero-cta:hover { transform: scale(1.03); }
.hero-cta-secondary { color: var(--text); text-decoration: underline; text-underline-offset: 4px; font-weight: 600; font-size: 0.9rem; }
.hero-micro { margin-top: 1rem; font-size: 0.8rem; color: var(--text-soft); display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-photo { border-radius: var(--radius); overflow: hidden; max-width: 500px; width: 100%; aspect-ratio: 16/9; box-shadow: var(--shadow-lg); margin: 0 auto; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Trust strip */
.trust-strip {
  background: var(--color); padding: 1.2rem 0;
}
.trust-strip .container { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.trust-strip .trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: #fff; }

/* Sections */
section { padding: 3.5rem 0; }
section.colored { background: var(--color); color: #fff; }
section.colored h2, section.colored h3 { color: #fff; }
section.colored .section-intro p { color: rgba(255,255,255,0.85); }
section.colored .svc-card { background: #fff; border-color: #fff; color: var(--text); }
section.colored .svc-card p { color: var(--text-soft); }
section.colored .svc-card h3 { color: var(--text); }
section.colored .svc-card .svc-icon { background: var(--color); color: #fff; }
section.colored .city-card { background: #fff; border-color: #fff; }
section.colored .city-card .city-name { color: var(--text); }
section.colored .city-card .city-desc { color: var(--text-soft); }
section.colored .city-card .city-arrow { color: var(--color); }

.alt-bg { background: var(--bg-alt); }
.section-intro { text-align: center; margin-bottom: 2.5rem; }
.section-intro p { color: var(--text-soft); max-width: 520px; margin: 0 auto; font-size: 1rem; }

/* Service cards */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.svc-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow); transition: transform 0.15s;
  text-align: center;
}
.svc-card:hover { transform: translateY(-3px); }
.svc-card .svc-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--color); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin: 0 auto 0.8rem auto; }
.svc-card h3 { margin-bottom: 0.3rem; }
.svc-card p { color: var(--text-soft); font-size: 0.9rem; line-height: 1.6; }

/* Inverted card (colored bg, white text) */
.svc-card-inv {
  background: var(--color); border: none;
}
.svc-card-inv h3, .svc-card-inv p { color: #fff; }
.svc-card-inv .svc-icon { background: #fff; color: var(--color); }

/* Cities */
.city-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0.8rem; }
.city-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.4rem 1.5rem; text-decoration: none; display: flex; flex-direction: column; gap: 0.3rem;
  box-shadow: var(--shadow); transition: border-color 0.15s, transform 0.15s;
}
.city-card:hover { border-color: var(--color); transform: translateY(-2px); }
.city-card .city-name { font-weight: 700; color: var(--text); font-size: 1.05rem; }
.city-card .city-desc { color: var(--text-soft); font-size: 0.85rem; line-height: 1.5; }
.city-card .city-arrow { align-self: flex-end; color: var(--color); font-weight: 600; font-size: 0.88rem; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; text-align: center; }
.step-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.step-num { display: inline-block; width: 36px; height: 36px; line-height: 36px; border-radius: 50%; background: var(--color); color: #fff; font-weight: 800; font-size: 0.9rem; margin-bottom: 0.5rem; }
.steps p { color: var(--text-soft); font-size: 0.9rem; }

/* Footer — BLU, not black */
.site-footer {
  background: #1a3a5c; color: #c8d6e3; padding: 2.5rem 0 0; font-size: 0.85rem;
}
.site-footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.footer-brand { font-weight: 800; font-size: 1.1rem; color: #fff; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: #c8d6e3; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { text-align: center; margin-top: 2rem; padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,0.1); }

/* CTA Banner */
.cta-banner {
  background: var(--color); text-align: center; padding: 3rem 0; color: #fff;
}
.cta-banner h2 { color: #fff; }
.cta-banner .hero-cta { background: #fff; color: var(--color); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.cta-banner .hero-cta-secondary { color: rgba(255,255,255,0.9); }

/* Responsive */
@media (max-width: 700px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { max-height: 220px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .trust-strip .container { gap: 0.8rem; }
  section { padding: 2.5rem 0; }
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
CSSEOF

scp /tmp/shared-v3.css clima:/var/www/ricarica-clima-modena.it/html/shared/style-v3.css 2>&1 && echo "CSS v3 uploaded"/* Brand logo cards */
.brand-card {
  background: #fff; border: 1px solid #e6e3dc; border-radius: 14px;
  padding: 1rem; text-decoration: none; display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem; transition: transform 0.15s, border-color 0.15s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.brand-card:hover { border-color: var(--color); transform: translateY(-2px); }
.brand-card img { max-height: 36px; max-width: 120px; object-fit: contain; }
.brand-card span { font-weight: 600; color: #1e1e1c; font-size: 0.85rem; text-align: center; }
.brand-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.8rem; }
