/* ============================================================
   MARCATI TELONI — Stylesheet
   ============================================================ */

:root {
  --red: #C8102E;
  --red-dark: #9E0B24;
  --red-light: #E8294A;
  --dark: #1C1C1C;
  --gray: #555555;
  --gray-light: #F5F5F5;
  --white: #FFFFFF;
  --border: #E0E0E0;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --radius: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

.section-label {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ---- Utilities ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header p {
  max-width: 640px;
  margin: 1rem auto 0;
  color: var(--gray);
  font-size: 1.05rem;
}
section { padding: 5rem 0; }
section:nth-child(even) { background: var(--gray-light); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200,16,46,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--red);
}
.btn-white:hover {
  background: var(--gray-light);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  background: rgba(200,16,46,0.07);
}
.nav-links .btn-primary {
  padding: 0.5rem 1.2rem;
  color: var(--white);
}
.nav-links .btn-primary:hover {
  transform: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  border: none;
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  gap: 0.25rem;
}
.nav-mobile a {
  padding: 0.75rem 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  transition: color var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--red); }
.nav-mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/090.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,16,46,0.85) 0%, rgba(28,28,28,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-content h1 span { color: #FFD0D8; }
.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 580px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
}

/* ============================================================
   CHI SIAMO
   ============================================================ */
#chi-siamo { background: var(--white); }
.chi-siamo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.chi-siamo-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.chi-siamo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chi-siamo-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(200,16,46,0.5), transparent);
}
.chi-siamo-text h2 { margin-bottom: 1.25rem; }
.chi-siamo-text p { color: var(--gray); margin-bottom: 1rem; }
.chi-siamo-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--gray-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
}
.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.feature-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.feature-item p { font-size: 0.82rem; color: var(--gray); margin: 0; }

/* ============================================================
   PRODOTTI (homepage preview)
   ============================================================ */
#prodotti-preview { background: var(--gray-light); }
.prodotti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.prodotti-grid-full { margin-bottom: 0; }
.prodotto-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: var(--transition);
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
}
.prodotto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border-top-color: var(--red);
}
.prodotto-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.prodotto-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}
.prodotto-card p {
  font-size: 0.88rem;
  color: var(--gray);
  flex: 1;
}
.prodotto-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 1rem;
  transition: gap var(--transition);
}
.prodotto-link:hover { gap: 0.6rem; }

.prodotti-cta { text-align: center; }

/* ============================================================
   CAROUSEL (Lavori)
   ============================================================ */
#lavori { background: var(--dark); padding: 5rem 0; }
#lavori .section-header h2,
#lavori .section-header .section-label { color: var(--white); }
#lavori .section-header p { color: rgba(255,255,255,0.7); }

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.carousel-slide {
  min-width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  padding: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  z-index: 5;
  color: var(--dark);
}
.carousel-btn:hover { background: var(--white); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.carousel-dot.active { background: var(--red); width: 24px; border-radius: 4px; }

/* ============================================================
   COLORI (homepage preview)
   ============================================================ */
#colori-preview { background: var(--white); }
.colori-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.swatch-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform var(--transition);
}
.swatch:hover .swatch-circle { transform: scale(1.1); }
.swatch-name {
  font-size: 0.68rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
  color: var(--gray);
  line-height: 1.2;
}
.colori-cta { text-align: center; margin-top: 2rem; }

/* Color group titles and card rows (single-page layout) */
.colori-group-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.colori-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* ============================================================
   PREVENTIVO
   ============================================================ */
#preventivo { background: var(--gray-light); }
.preventivo-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.preventivo-info h2 { margin-bottom: 1rem; }
.preventivo-info p { color: var(--gray); margin-bottom: 1.5rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.contact-info-item .icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item .text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.contact-info-item .text span { font-size: 0.88rem; color: var(--gray); }

/* Form */
.quote-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.quote-form h3 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }
.form-note {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.75rem;
}
.form-success, .form-error {
  display: none;
  padding: 1rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.form-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-error { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }
.form-success.visible, .form-error.visible { display: block; }

/* ============================================================
   CONTATTI
   ============================================================ */
#contatti { background: var(--white); }
.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.map-placeholder {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--gray-light);
  aspect-ratio: 4/3;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.orari-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.orari-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.orari-table td:first-child { font-weight: 700; color: var(--dark); }
.orari-table td:last-child { color: var(--gray); text-align: right; }
.orari-table tr:last-child td { border-bottom: none; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand img { height: 44px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--red); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
}
.footer-contact-item span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--red); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
  padding: 8rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }

/* ============================================================
   PRODOTTI PAGE
   ============================================================ */
.prodotti-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.prodotto-full-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.prodotto-full-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border-color: var(--red);
}
.prodotto-full-card-body {
  padding: 1.75rem;
}
.prodotto-full-card .prodotto-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.prodotto-full-card h3 { margin-bottom: 0.75rem; font-size: 1.05rem; }
.prodotto-full-card p { font-size: 0.88rem; color: var(--gray); }

/* ============================================================
   COLORI PAGE
   ============================================================ */
.colori-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.5rem;
}
.colore-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: 1px solid var(--border);
  text-align: center;
}
.colore-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.colore-swatch {
  height: 90px;
  width: 100%;
}
.colore-card-body { padding: 0.85rem; }
.colore-card-body strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.colore-card-body span { font-size: 0.75rem; color: var(--gray); }
.colori-note {
  background: rgba(200,16,46,0.07);
  border: 1px solid rgba(200,16,46,0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--dark);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(200,16,46,0.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
#back-to-top.visible { opacity: 1; pointer-events: all; }
#back-to-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .prodotti-grid { grid-template-columns: repeat(2, 1fr); }
  .prodotti-full-grid { grid-template-columns: repeat(2, 1fr); }
  .chi-siamo-grid { gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .chi-siamo-grid { grid-template-columns: 1fr; }
  .chi-siamo-image { aspect-ratio: 16/9; }
  .chi-siamo-features { grid-template-columns: 1fr; }

  .prodotti-grid { grid-template-columns: 1fr; }
  .prodotti-full-grid { grid-template-columns: 1fr 1fr; }

  .preventivo-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }

  .contatti-grid { grid-template-columns: 1fr; }

  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-stat .num { font-size: 1.5rem; }

  .colori-swatches { grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); }
  .swatch-circle { width: 44px; height: 44px; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .quote-form { padding: 1.5rem; }
  .preventivo-wrapper { gap: 2rem; }
}

@media (max-width: 480px) {
  .prodotti-full-grid { grid-template-columns: 1fr; }
  .colori-full-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; justify-content: center; }
}
