/* Gala 400 — mobile-first, design professionale */
:root {
  --navy: #0c1f33;
  --navy-soft: #132d47;
  --accent: #c45c26;
  --accent-hover: #a34a1c;
  --teal: #0d6e5c;
  --teal-hover: #0a5849;
  --bg: #f4f6f8;
  --surface: #ffffff;
  --text: #1a2b3c;
  --muted: #5c6f82;
  --border: #dde4eb;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(12, 31, 51, 0.08);
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --max: 1120px;
  --narrow: 640px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: var(--narrow); }
.mt { margin-top: 1.5rem; }
.text-center { text-align: center; }
.text-accent { color: #e8a87c; }

/* Topbar */
.topbar {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
}
.brand-mark {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; gap: 0.1rem; }
.brand-name { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; }
.brand-tag { font-size: 0.7rem; font-weight: 500; color: #8fa8be; text-transform: uppercase; letter-spacing: 0.06em; }
.topbar-phone {
  text-align: right;
  padding: 0.55rem 1rem;
  min-height: 48px;
  background: var(--teal);
  border-radius: 10px;
  transition: background 0.15s;
}
.topbar-phone:hover { background: var(--teal-hover); }
.topbar-phone-label { display: block; font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.9; }
.topbar-phone-num { display: block; font-size: 1.2rem; font-weight: 700; letter-spacing: 0.03em; color: #fff; font-variant-numeric: tabular-nums; }
@media (max-width: 480px) {
  .topbar-inner { flex-wrap: wrap; }
  .topbar-phone { flex: 1; text-align: center; min-width: 100%; }
  .topbar-phone-num { font-size: 1.35rem; }
}

/* Nav */
.nav-main { background: var(--surface); border-bottom: 1px solid var(--border); }
.nav-main .container {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  padding-top: 0;
  padding-bottom: 0;
  -webkit-overflow-scrolling: touch;
}
.nav-main a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 1rem;
  min-height: 48px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.nav-ico { font-size: 1rem; line-height: 1; }
.nav-main a:hover { color: var(--navy); }
.nav-main a.is-active { color: var(--navy); border-bottom-color: var(--accent); }

/* Breadcrumb */
.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--border); font-size: 0.8rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.35rem; padding: 0.65rem 0; color: var(--muted); }
.breadcrumb a { color: var(--teal); font-weight: 500; }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 600; }

/* Hero */
.hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  padding: 2.5rem 0 3rem;
}
.hero-compact { padding: 2rem 0; }
.hero-home { padding: 2.75rem 0 3.25rem; }
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-grid-compact .hero-aside { max-width: 20rem; }
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr min(320px, 38%); align-items: start; }
  .hero-grid-compact { grid-template-columns: 1fr min(280px, 36%); align-items: center; }
}
.hero-visual-frame {
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
}
.hero-visual-emoji {
  display: block;
  font-size: clamp(3rem, 12vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}
.hero-visual-cap {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94b8d4;
}
.hero-title-ico { margin-right: 0.25rem; }
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8fb4d4;
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.hero-lead { font-size: 1.05rem; color: #b8cce0; line-height: 1.55; max-width: 36rem; }
.check-list { list-style: none; margin-top: 1.25rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: #d4e4f0;
}
.check-ico {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.35;
}

/* CTA panel */
.cta-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.cta-panel .btn { margin-bottom: 0.6rem; }
.cta-panel .btn:last-of-type { margin-bottom: 0; }
.cta-meta { font-size: 0.72rem; color: var(--muted); text-align: center; margin-top: 0.85rem; line-height: 1.45; }
.btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.95rem 1.15rem;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.15s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
}
.btn-wa-ico { margin-right: 0.35rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--teal); color: #fff !important; }
.btn-primary:hover { background: var(--teal-hover); color: #fff !important; }
.btn-secondary { background: var(--bg); color: var(--navy) !important; border: 1px solid var(--border); }
.btn-secondary:hover { background: #e8edf2; }
.btn-sub { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.92; color: #fff !important; margin-bottom: 0.2rem; }
.btn-phone { font-size: 1.45rem; font-weight: 700; letter-spacing: 0.04em; color: #fff !important; font-variant-numeric: tabular-nums; line-height: 1.15; }

/* Trust bar */
.trust-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.trust-ico { font-size: 1.35rem; line-height: 1; margin-bottom: 0.15rem; }
.trust-item strong { display: block; font-size: 1.1rem; color: var(--navy); font-weight: 700; }
.trust-item span { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }

.feature-strip {
  background: var(--navy);
  color: #fff;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.85rem 0.65rem;
  text-align: center;
}
.feature-ico { display: block; font-size: 1.5rem; margin-bottom: 0.35rem; }
.feature-card strong { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 0.15rem; }
.feature-card span { font-size: 0.7rem; color: #94b8d4; line-height: 1.35; }

/* Sections */
.section { padding: 2.75rem 0; }
.section-alt { background: var(--surface); border-block: 1px solid var(--border); }
.cta-section { background: var(--navy); color: #fff; }
.cta-section .section-title,
.cta-section .section-intro { color: #fff; }
.cta-section .section-intro { color: #b8cce0; }
.cta-section .cta-panel { margin-top: 0.5rem; }
.cta-section .cta-meta { color: #8fa8be; }

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: clamp(1.25rem, 4vw, 1.45rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.section-title.left { justify-content: flex-start; text-align: left; }
.section-title-ico { font-size: 1.25em; line-height: 1; }
.section-title.left { text-align: left; }
.section-intro {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 32rem;
  margin: 0 auto 1.75rem;
}
.section-title.left + .section-intro,
.prose .section-title.left { margin-left: 0; text-align: left; }
.prose .section-title { margin-bottom: 1rem; }

.prose { max-width: 42rem; }
.prose p { margin-bottom: 1rem; color: var(--muted); font-size: 0.98rem; }
.prose h3 { font-size: 1.05rem; color: var(--navy); margin: 1.5rem 0 0.75rem; font-weight: 700; }
.prose strong { color: var(--text); }
.link-accent { color: var(--teal); font-weight: 700; }

.link-more { font-weight: 600; color: var(--teal); font-size: 0.92rem; }
.link-more:hover { text-decoration: underline; }
.link-arrow { font-weight: 600; color: var(--teal); font-size: 0.88rem; display: inline-block; margin-top: 0.5rem; }

/* Cards grid */
.card-grid {
  display: grid;
  gap: 0.75rem;
}
.card-grid.cols-2 { grid-template-columns: 1fr; }
.card-grid.cols-3 { grid-template-columns: 1fr; }
.card-grid.cols-4 { grid-template-columns: 1fr; }
@media (min-width: 560px) {
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}
.card-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 52px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.card-link-icon {
  font-size: 1.65rem;
  line-height: 1;
  flex-shrink: 0;
  width: 2.25rem;
  text-align: center;
}
.card-link-body { flex: 1; min-width: 0; }
.card-link-arrow {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.7;
}
.card-link:hover .card-link-arrow { opacity: 1; }
.section-alt .card-link { background: var(--bg); }
.card-link:hover {
  border-color: #b8c9d8;
  box-shadow: var(--shadow);
}
.card-link-title { display: block; font-weight: 600; font-size: 0.95rem; color: var(--navy); line-height: 1.35; }
.card-link-desc { display: block; font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; line-height: 1.4; }

/* Steps */
.steps-row {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
@media (min-width: 600px) { .steps-row { grid-template-columns: repeat(4, 1fr); } }
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 0.75rem;
  text-align: center;
}
.step-ico {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.step-num {
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.7rem;
  margin-bottom: 0.35rem;
}
.step-card p { font-size: 0.82rem; font-weight: 600; color: var(--navy); line-height: 1.35; }
.service-block h3 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.block-ico { font-size: 1.15rem; line-height: 1; }

/* Service blocks (marche) */
.service-blocks { display: grid; gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 768px) { .service-blocks { grid-template-columns: repeat(3, 1fr); } }
.service-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.service-block h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.6rem; font-weight: 700; }
.service-block p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

.inline-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.inline-tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  min-height: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.section-alt .faq { background: var(--bg); }
.faq summary {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1rem 1.15rem;
  min-height: 48px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
.faq-ico { flex-shrink: 0; line-height: 1.35; }
.faq summary::-webkit-details-marker { display: none; }
.faq-a { padding: 0 1.15rem 1rem; }
.faq-a p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: #8fa8be;
  padding: 2.5rem 0 5rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr auto; align-items: start; }
}
.footer-brand { font-weight: 700; color: #fff; font-size: 1rem; margin-bottom: 0.35rem; }
.footer-tel a { font-size: 1.25rem; font-weight: 700; color: #fff !important; letter-spacing: 0.03em; }
.footer-legal { font-size: 0.75rem; margin-top: 0.5rem; line-height: 1.5; }
.footer-nav { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav a { font-size: 0.88rem; color: #b8cce0; font-weight: 500; }
.footer-nav a:hover { color: #fff; }
.footer-copy { font-size: 0.72rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 1.5rem; }

/* Float call (desktop) */
.float-call {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(13, 110, 92, 0.45);
}
.float-call:hover { background: var(--teal-hover); }

/* Legacy index widgets (cookie, form) */
#richiamata {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.15rem;
  margin-top: 1.25rem;
  border: 1px solid rgba(255,255,255,0.1);
}
#richiamata input, #richiamata select {
  width: 100%;
  padding: 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.2);
  color: #fff;
  font-family: var(--font);
  margin-bottom: 0.5rem;
}
#richiamata button {
  width: 100%;
  padding: 0.9rem;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy);
  color: #b8cce0;
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-banner.is-hidden { display: none; }
.cookie-banner a { color: #e8a87c; }
.cookie-accept {
  background: var(--teal);
  color: #fff;
  border: 0;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
}
.call-gate {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(12, 31, 51, 0.6);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
}
.call-gate.is-hidden { display: none; }
.call-gate-card {
  width: 100%;
  max-width: 24rem;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}
.call-gate-call {
  display: block;
  text-align: center;
  padding: 1.1rem;
  background: var(--teal);
  color: #fff !important;
  font-weight: 700;
  font-size: 1.1rem;
}
.call-gate-close {
  width: 100%;
  padding: 0.85rem;
  border: 0;
  background: var(--bg);
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
}
@media (min-width: 768px) { .call-gate { display: none !important; } }

/* —— Urgenza & conversioni —— */
.urgency-strip {
  background: #1a3a52;
  color: #e8f0f6;
  font-size: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.urgency-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  text-align: center;
}
.urgency-strip-phone {
  font-weight: 700;
  color: #7dffc8 !important;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: #34d399;
  border-radius: 50%;
  flex-shrink: 0;
  animation: live-pulse 2s ease infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  50% { opacity: 0.85; box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
}
.eyebrow-urgent {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #7dffc8 !important;
  font-weight: 600;
}
.eyebrow-zone {
  font-size: 0.78rem;
  color: #94b8d4;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-urgent .hero-lead strong { color: #fff; }

.mid-cta {
  background: var(--teal);
  color: #fff;
  padding: 1.1rem 0;
}
.mid-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.mid-cta-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}
.mid-cta-sub { font-size: 0.85rem; opacity: 0.9; }
.btn-cta-inline {
  padding: 0.85rem 1.5rem !important;
  flex-direction: row !important;
  white-space: nowrap;
}
.btn-cta-inline .btn-phone { font-size: 1.2rem !important; }

.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  padding: 0.5rem;
  gap: 0.5rem;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
}
@media (max-width: 767px) {
  .sticky-mobile {
    display: flex;
  }
  .float-call { display: none; }
  body { padding-bottom: 4rem; }
  .site-footer { padding-bottom: 5.5rem; }
}
.sticky-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--teal);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.9rem;
  border-radius: 10px;
}
.sticky-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d6e5c;
  color: #fff !important;
  font-weight: 700;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  font-size: 0.85rem;
}

.call-gate-emoji {
  display: block;
  text-align: center;
  font-size: 2.5rem;
  padding: 1rem 1rem 0;
  line-height: 1;
}
.call-gate-title { font-weight: 700; font-size: 1.1rem; color: var(--navy); padding: 0.5rem 1.15rem 0.35rem; text-align: center; }
.call-gate-text { text-align: center; }
.call-gate-text { font-size: 0.9rem; color: var(--muted); padding: 0 1.15rem 1rem; line-height: 1.45; }
.call-gate-btn {
  display: block;
  margin: 0 1.15rem;
  padding: 1rem;
  text-align: center;
  background: var(--teal);
  color: #fff !important;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 10px;
}
.call-gate-dismiss {
  width: calc(100% - 2.3rem);
  margin: 0.65rem 1.15rem 1.15rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
}

.section-callback { background: var(--surface); }
.callback-form {
  display: grid;
  gap: 0.6rem;
  max-width: 22rem;
  margin: 0 auto;
}
.field-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: -0.35rem;
}
.callback-form input,
.callback-form button {
  font-family: var(--font);
  font-size: 16px;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.callback-form button {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}
.callback-form button:hover { background: var(--accent-hover); }
.form-ok { text-align: center; font-size: 0.88rem; color: var(--muted); margin-top: 0.5rem; }
.form-ok a { color: var(--teal); font-weight: 700; }

.gbp-row { padding: 1.5rem 0; }
.gbp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--navy);
  border-radius: 10px;
  font-weight: 600;
  color: var(--navy);
}
.gbp-link:hover { background: var(--navy); color: #fff; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Touch & accessibilità mobile */
@media (max-width: 767px) {
  .hero { padding: 2rem 0 2.5rem; }
  .hero-home { padding: 2.25rem 0 2.75rem; }
  .section { padding: 2.25rem 0; }
  .card-grid { gap: 0.65rem; }
  .mid-cta-inner { flex-direction: column; text-align: center; }
  .btn-cta-inline { width: 100%; justify-content: center; }
  .urgency-strip-inner { font-size: 0.75rem; }
  .hero-visual { order: -1; }
  .hero-aside .hero-visual-frame { padding: 1.1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
  html { scroll-behavior: auto; }
}
