:root {
  --red: #e30613;
  --red-dark: #b9000b;
  --black: #0d0d0f;
  --ink: #1d1d20;
  --muted: #68686f;
  --line: #e7e7e9;
  --soft: #f5f5f6;
  --white: #ffffff;
  --container: 1180px;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(12, 12, 14, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-soft { background: var(--soft); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 1000; background: var(--white); padding: 12px 16px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 12px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.header-inner { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 180px; height: auto; filter: drop-shadow(0 4px 16px rgba(0,0,0,.2)); }
.main-nav { display: flex; align-items: center; gap: 30px; color: var(--white); font-size: .95rem; font-weight: 700; }
.main-nav a { position: relative; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 18px; border-radius: 999px; background: var(--red); }
.nav-cta:hover { background: var(--red-dark); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 12px; background: rgba(255,255,255,.12); padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: #fff; }

.hero { position: relative; min-height: 760px; display: grid; align-items: center; overflow: hidden; color: var(--white); background: #111; }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 43%; transform: scale(1.02); }
.hero-overlay { background: linear-gradient(90deg, rgba(5,5,7,.92) 0%, rgba(5,5,7,.70) 48%, rgba(5,5,7,.22) 100%), linear-gradient(0deg, rgba(5,5,7,.45), transparent 45%); }
.hero-content { position: relative; z-index: 2; padding-top: 110px; }
.eyebrow, .section-kicker { margin: 0 0 16px; color: var(--red); font-size: .78rem; line-height: 1; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(3.4rem, 6.7vw, 6.2rem); line-height: .98; letter-spacing: -.055em; }
.hero-text { max-width: 680px; margin: 28px 0 0; color: rgba(255,255,255,.84); font-size: clamp(1.05rem, 1.8vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 13px 24px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary { color: var(--white); border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: var(--white); color: var(--black); }
.scroll-cue { position: absolute; z-index: 2; left: 50%; bottom: 28px; transform: translateX(-50%); width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }

.intro-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 90px; align-items: end; }
h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 4.2rem); line-height: 1.08; letter-spacing: -.045em; }
.intro-grid > p { margin: 0; color: var(--muted); font-size: 1.12rem; }

.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { min-height: 390px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.service-number { color: var(--red); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.service-card h3 { margin: 62px 0 16px; font-size: 1.65rem; line-height: 1.1; letter-spacing: -.03em; }
.service-card p { margin: 0; color: var(--muted); }
.service-card a { margin-top: auto; padding-top: 26px; font-weight: 800; }
.service-card a span, .text-link span { color: var(--red); }

.workshop-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.workshop-copy > p:not(.section-kicker) { margin: 26px 0 0; color: var(--muted); font-size: 1.05rem; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 32px 0; }
.check-list span { position: relative; padding-left: 22px; font-weight: 700; }
.check-list span::before { content: ""; position: absolute; left: 0; top: .62em; width: 9px; height: 9px; border-radius: 50%; background: var(--red); }
.text-link { display: inline-flex; gap: 10px; align-items: center; font-weight: 900; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 240px 320px; gap: 14px; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.photo-grid img:first-child { grid-row: 1 / 3; }

.cta-band { padding: 78px 0; color: var(--white); background: var(--red); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.cta-grid h2 { max-width: 850px; }
.section-kicker.light { color: rgba(255,255,255,.72); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.btn-light { background: var(--white); color: var(--red); }
.btn-outline-light { color: var(--white); border-color: rgba(255,255,255,.75); }
.btn-outline-light:hover { background: var(--white); color: var(--red); }

.location-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 90px; align-items: center; }
.location-lead { max-width: 650px; color: var(--muted); font-size: 1.1rem; }
.details { margin: 34px 0; }
.details div { display: grid; grid-template-columns: 160px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.details dt { font-weight: 900; }
.details dd { margin: 0; color: var(--muted); }
.details a { color: var(--ink); font-weight: 800; }
.btn-dark { color: var(--white); background: var(--black); }
.map-card { min-height: 470px; display: grid; place-items: center; align-content: center; gap: 22px; padding: 40px; border-radius: 28px; color: var(--white); text-align: center; background: radial-gradient(circle at 20% 20%, #38383c, #111 55%); box-shadow: var(--shadow); }
.map-pin { width: 92px; height: 92px; display: grid; place-items: center; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--red); font-size: 2.1rem; font-weight: 900; }
.map-pin::first-letter { transform: rotate(45deg); }
.map-card strong { display: block; font-size: 2rem; }
.map-card span { color: rgba(255,255,255,.72); }

.site-footer { padding: 72px 0 24px; color: rgba(255,255,255,.72); background: var(--black); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 80px; }
.footer-logo { width: 190px; height: auto; margin-bottom: 22px; }
.site-footer h2 { margin-bottom: 18px; color: var(--white); font-size: 1rem; letter-spacing: .04em; }
.site-footer a, .site-footer span { display: block; margin: 8px 0; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .86rem; }
.footer-bottom span { margin: 0; }
.mobile-actions { display: none; }

@media (max-width: 1000px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .workshop-grid, .location-grid { grid-template-columns: 1fr; }
  .workshop-copy { max-width: 760px; }
  .location-grid { gap: 50px; }
  .map-card { min-height: 340px; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 780px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 72px 0; }
  .site-header { position: absolute; }
  .header-inner { min-height: 82px; }
  .brand img { width: 150px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 82px; left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; color: var(--ink); background: var(--white); border-radius: 16px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 10px; }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 6px; color: var(--white); text-align: center; }
  .hero { min-height: 700px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,5,7,.92), rgba(5,5,7,.58)), linear-gradient(0deg, rgba(5,5,7,.56), transparent); }
  .hero-content { padding-top: 90px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .cards-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }
  .service-card h3 { margin-top: 42px; }
  .workshop-grid { gap: 44px; }
  .photo-grid { grid-template-rows: 230px 230px; }
  .check-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; padding-bottom: 70px; }
  .mobile-actions { position: fixed; z-index: 50; left: 12px; right: 12px; bottom: 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(13,13,15,.94); box-shadow: 0 14px 40px rgba(0,0,0,.35); backdrop-filter: blur(14px); }
  .mobile-actions a { min-height: 46px; display: grid; place-items: center; border-radius: 11px; color: var(--white); font-weight: 900; }
  .mobile-actions a:last-child { background: var(--red); }
}

@media (max-width: 520px) {
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .photo-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 240px 190px; }
  .photo-grid img:first-child { grid-column: 1 / 3; grid-row: auto; }
  .details div { grid-template-columns: 1fr; gap: 4px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}


/* Pagine servizio integrate */
.inner-header { position: relative; background: var(--black); border-bottom-color: rgba(255,255,255,.12); }
.inner-header + main { margin-top: 0; }
.page-hero { position: relative; min-height: 620px; display: grid; align-items: end; overflow: hidden; color: var(--white); background: var(--black); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 20%, rgba(227,6,19,.34), transparent 34%), linear-gradient(120deg, #070708 0%, #17171a 62%, #09090a 100%); }
.page-hero.has-photo::before { background: linear-gradient(90deg, rgba(5,5,7,.93) 0%, rgba(5,5,7,.72) 50%, rgba(5,5,7,.28) 100%), linear-gradient(0deg, rgba(5,5,7,.55), transparent 55%); z-index: 1; }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero-content { position: relative; z-index: 2; padding: 105px 0 82px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; color: rgba(255,255,255,.66); font-size: .9rem; }
.breadcrumbs a:hover { color: var(--white); }
.page-hero h1 { max-width: 970px; margin: 0; font-size: clamp(3rem, 6.4vw, 5.8rem); line-height: .98; letter-spacing: -.055em; }
.page-hero .lead { max-width: 780px; margin: 26px 0 0; color: rgba(255,255,255,.83); font-size: clamp(1.06rem, 1.8vw, 1.28rem); }
.page-hero .hero-actions { margin-top: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-badges span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: rgba(255,255,255,.88); background: rgba(255,255,255,.07); font-size: .9rem; font-weight: 750; backdrop-filter: blur(8px); }
.return-strip { background: #f1f1f3; border-bottom: 1px solid var(--line); }
.return-strip .container { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.return-strip a { font-weight: 900; }
.return-strip span { color: var(--muted); font-size: .92rem; }
.content-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; }
.content-grid.reverse { grid-template-columns: .8fr 1fr; }
.content-grid.reverse > :first-child { order: 2; }
.content-copy > p:not(.section-kicker) { color: var(--muted); font-size: 1.06rem; }
.feature-panel { padding: 38px; border-radius: 26px; color: var(--white); background: var(--black); box-shadow: var(--shadow); }
.feature-panel.red { background: var(--red); }
.feature-panel h3 { margin: 0 0 18px; font-size: 2rem; line-height: 1.08; }
.feature-panel p { color: rgba(255,255,255,.78); }
.feature-panel .price { margin: 18px 0 4px; font-size: 4.5rem; line-height: 1; font-weight: 950; letter-spacing: -.06em; }
.feature-panel .price small { font-size: 1rem; letter-spacing: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 38px; }
.stat-card { padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.stat-card strong { display: block; color: var(--red); font-size: 2rem; line-height: 1; }
.stat-card span { display: block; margin-top: 8px; color: var(--muted); font-size: .92rem; }
.icon-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.icon-card { min-height: 250px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.icon-card .icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: var(--white); background: var(--red); font-size: 1.25rem; font-weight: 900; }
.icon-card h3 { margin: 26px 0 12px; font-size: 1.35rem; line-height: 1.12; }
.icon-card p { margin: 0; color: var(--muted); }
.logo-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.logo-badges span { padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); font-weight: 900; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.review-stars { color: var(--red); letter-spacing: .12em; }
.review-card blockquote { margin: 18px 0; color: var(--muted); }
.review-card cite { font-style: normal; font-weight: 900; }
.zone-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.zone-list span { padding: 9px 14px; border-radius: 999px; background: var(--soft); font-weight: 750; }
.faq-list { max-width: 920px; margin: 38px auto 0; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; list-style: none; padding: 22px 38px 22px 0; font-size: 1.08rem; font-weight: 900; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 17px; color: var(--red); font-size: 1.65rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0; padding: 0 40px 22px 0; color: var(--muted); }
.model-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.model-card { min-height: 280px; padding: 26px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(150deg, #fff, #f3f3f5); }
.model-card .model-type { color: var(--red); font-size: .75rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.model-card h3 { margin: 32px 0 14px; font-size: 1.5rem; }
.model-card ul { margin: 0; padding-left: 18px; color: var(--muted); }
.model-card .model-note { margin-top: auto; padding-top: 20px; font-weight: 850; }
.contact-panel { padding: 42px; border-radius: 28px; color: var(--white); background: radial-gradient(circle at 80% 10%, #3c3c41, #0d0d0f 55%); }
.contact-panel h2 { max-width: 800px; }
.contact-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.contact-item { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.16); }
.contact-item strong { display: block; color: var(--white); }
.contact-item span, .contact-item a { color: rgba(255,255,255,.72); }
.current-page { color: #fff; }
.current-page::after { transform: scaleX(1) !important; }

@media (max-width: 1000px) {
  .icon-cards { grid-template-columns: repeat(2, 1fr); }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid, .content-grid.reverse { grid-template-columns: 1fr; gap: 44px; }
  .content-grid.reverse > :first-child { order: 0; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .contact-items { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
  .inner-header { position: relative; }
  .page-hero { min-height: 590px; }
  .page-hero-content { padding: 76px 0 66px; }
  .return-strip .container { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 14px; }
  .stats-grid { grid-template-columns: 1fr; }
  .icon-cards, .review-grid, .model-grid, .contact-items { grid-template-columns: 1fr; }
  .feature-panel, .contact-panel { padding: 30px 24px; }
}
