/* ============================================================
   Mani d'Oro - Serramenti e Ristrutturazioni Lissone
   Global Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --gold:       #c9a227;
  --gold-dark:  #a8841c;
  --gold-light: #f0d067;
  --dark:       #1a1a2e;
  --dark2:      #16213e;
  --mid:        #4a4a6a;
  --light:      #f5f5f0;
  --white:      #ffffff;
  --text:       #333333;
  --text-light: #666666;
  --border:     #e0ddd4;
  --shadow:     0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.16);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: .3s ease;
  --font:       'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p  { color: var(--text-light); font-size: 1.05rem; }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.section-title { margin-bottom: 1rem; }
.section-desc  { max-width: 600px; margin: 0 auto 2.5rem; text-align: center; }

/* ---------- Layout Helpers ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
.section   { padding: 5rem 0; }
.section-alt { background: var(--light); }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark2);
  transform: translateY(-2px);
}

/* ---------- Header & Navigation ---------- */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
#header.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: 1160px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.logo img {
  height: 52px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: .02em;
}
.logo-sub {
  font-size: .7rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: .5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
}

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

/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: .75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn { margin-top: 1rem; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,26,46,.92) 0%, rgba(26,26,46,.75) 60%, rgba(201,162,39,.15) 100%),
    url('../img/hero-bg.jpg') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,162,39,.15);
  border: 1px solid rgba(201,162,39,.3);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--gold); }
.hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .25rem;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-dot {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
}

/* ---------- Features Bar ---------- */
.features-bar {
  background: var(--dark);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.features-bar-inner {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: nowrap;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
}
.feat-icon {
  width: 36px; height: 36px;
  background: rgba(201,162,39,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(201,162,39,.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
}
.service-card h3 { margin-bottom: .6rem; color: var(--dark); }
.service-card p  { font-size: .95rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
}
.service-link:hover { gap: .7rem; }

/* ---------- About Strip ---------- */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: .85rem;
  padding: .6rem 1.2rem;
  border-radius: 50px;
}
.about-text .section-label { display: block; }
.about-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text-light);
}
.about-list li::before {
  content: '✓';
  display: inline-flex;
  width: 22px; height: 22px;
  background: rgba(201,162,39,.12);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.brands-row {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.brands-row p {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
  margin-bottom: .75rem;
}
.brands-list {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.brand-tag {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .35rem .85rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--mid);
}

/* ---------- Products Grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-thumb {
  height: 200px;
  background: var(--light);
  overflow: hidden;
}
.product-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-info { padding: 1.5rem; }
.product-cat {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.product-info h3 { margin-bottom: .5rem; }
.product-info p { font-size: .9rem; }

/* ---------- Gallery / Realizzazioni ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,.6);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.testimonial-text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.author-avatar {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
  font-size: .85rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .9rem; color: var(--dark); }
.author-loc  { font-size: .8rem; color: var(--text-light); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,.12) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,.7); margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(201,162,39,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); margin-bottom: .25rem; }
.contact-item p, .contact-item a { font-size: .95rem; color: var(--text-light); }
.contact-item a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .8rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: var(--text-light);
  cursor: pointer;
  margin-bottom: 1rem;
}
.form-check input { width: auto; flex-shrink: 0; margin-top: .2rem; }
.form-msg {
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  display: none;
  margin-top: .75rem;
}
.form-msg.success { background: #d4edda; color: #155724; display: block; }
.form-msg.error   { background: #f8d7da; color: #721c24; display: block; }

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
  box-shadow: var(--shadow);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .6rem;
}
.whatsapp-btn {
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wa 2.5s ease infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
  animation: none;
}
.whatsapp-btn svg { width: 30px; height: 30px; fill: var(--white); }
.whatsapp-tooltip {
  background: var(--dark);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: .45rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
  pointer-events: none;
}
.whatsapp-fab:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 4px 36px rgba(37,211,102,.7); }
}

/* ---------- Footer ---------- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  max-width: 300px;
  line-height: 1.7;
}
.footer-col h5 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: .6rem;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .6rem;
}
.footer-contact-item a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero.alt::after { background: var(--light); }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.65); max-width: 540px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span::before { content: '/'; margin-right: .5rem; }

/* ---------- Promozioni ---------- */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.promo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.promo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.promo-header {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  padding: 2rem;
  position: relative;
}
.promo-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: .7rem;
  font-weight: 800;
  padding: .3rem .7rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.promo-header h3 { color: var(--white); }
.promo-header p  { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: .4rem; }
.promo-body { padding: 1.75rem; }
.promo-body ul { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.promo-body ul li {
  display: flex;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-light);
}
.promo-body ul li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ---------- Animate on scroll ---------- */
.aos {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.aos.visible { opacity: 1; transform: translateY(0); }
.aos-delay-1 { transition-delay: .1s; }
.aos-delay-2 { transition-delay: .2s; }
.aos-delay-3 { transition-delay: .3s; }
.aos-delay-4 { transition-delay: .4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-strip { grid-template-columns: 1fr; gap: 2rem; }
  .about-image img { height: 320px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item.tall { grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .features-bar-inner { gap: 1rem; flex-wrap: wrap; }
  .section { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* Hero two-col → single col on mobile */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content .hero-stats { display: flex; }
  /* Services list */
  .services-section-header { grid-template-columns: 1fr; gap: 1rem; }
  .service-row { grid-template-columns: 40px 1fr; }
  .srv-arrow { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NUOVI STILI: Hero due colonne + Lucide + Servizi editoriale
   ============================================================ */

/* Lucide icon base sizing */
[data-lucide] { display: block; width: 20px; height: 20px; stroke-width: 1.75; }
.feat-icon [data-lucide]      { width: 17px; height: 17px; }
.srv-title [data-lucide]      { width: 18px; height: 18px; flex-shrink: 0; }
.srv-arrow [data-lucide]      { width: 18px; height: 18px; }
.hero-stat-icon [data-lucide] { width: 20px; height: 20px; }
.footer-contact-icon [data-lucide] { width: 15px; height: 15px; flex-shrink: 0; margin-top: .18rem; color: var(--gold); stroke-width: 2; }
.contact-icon [data-lucide]   { width: 22px; height: 22px; color: var(--gold); }
.btn [data-lucide]            { width: 17px; height: 17px; }

/* Hero two-column inner container */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4.5rem;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}

/* On desktop: hide the simple stat row (shown in visual panel instead) */
@media (min-width: 769px) {
  .hero-content .hero-stats { display: none; }
}

/* Services list: 2 columns on desktop */
@media (min-width: 769px) {
  .services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    row-gap: 0;
  }
  .service-row { padding: 1.25rem 0; }
}

/* Hero visual panel (right column) – desktop only */
@media (min-width: 769px) {
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
}
.hero-stat-card {
  background: rgba(8,8,20,.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: background var(--transition), border-color var(--transition);
}
.hero-stat-card:hover {
  background: rgba(8,8,20,.85);
  border-color: rgba(201,162,39,.5);
}
.hero-stat-icon {
  width: 44px; height: 44px;
  background: rgba(201,162,39,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.stat-card-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-card-label {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-top: .2rem;
}

/* ---- Services section: editorial list ---- */
.services-section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}
.services-section-header .section-label { display: block; }
.services-section-header h2 { margin-bottom: 0; }
.services-section-header p  { margin: 0; }

.services-list {
  border-top: 1.5px solid var(--border);
  margin-top: 2.5rem;
}
.service-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: border-bottom-color var(--transition);
}
.service-row:hover { border-bottom-color: var(--gold); }
.srv-num {
  font-size: .72rem;
  font-weight: 800;
  color: rgba(201,162,39,.4);
  letter-spacing: .14em;
  font-variant-numeric: tabular-nums;
}
.srv-body { min-width: 0; }
.srv-title {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .3rem;
  transition: color var(--transition);
}
.srv-title [data-lucide] { color: var(--gold); }
.srv-desc {
  font-size: .88rem;
  color: var(--text-light);
  white-space: normal;
}
.srv-arrow {
  display: flex;
  align-items: center;
  color: var(--border);
  transition: color var(--transition), transform var(--transition);
}
.service-row:hover .srv-title { color: var(--gold); }
.service-row:hover .srv-arrow {
  color: var(--gold);
  transform: translateX(5px);
}

/* Footer contact icon alignment */
.footer-contact-item { align-items: flex-start; }
.footer-contact-icon { display: flex; }

/* ---- Brand partner grid: 5 columns on desktop ---- */
@media (min-width: 769px) {
  .brands-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
  .brands-grid .service-card { padding: 1.5rem 1.25rem; }
  .brands-grid .service-card p { font-size: .85rem; }
}
@media (max-width: 768px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Mobile hero fix ---- */
@media (max-width: 768px) {
  .hero { align-items: flex-start; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 5.5rem;
    padding-bottom: 3.5rem;
    text-align: center;
  }
  .hero-content .hero-btns { justify-content: center; }
  .hero-scroll { display: none; }
  .services-intro-text { display: none; }
  .services-section-header { grid-template-columns: 1fr; }
  .services-section-header h2,
  .services-section-header .section-label { white-space: nowrap; }
  .hero p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-badge { margin-left: auto; margin-right: auto; }

  /* Stats: colonna singola, centered, below the text */
  .hero-content .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
    justify-items: center;
  }
  .hero-content .stat-item { align-items: center; flex-direction: row; gap: 0.5rem; }
  .hero-content .stat-number { font-size: 1.4rem; }
  .hero-content .stat-label { font-size: .75rem; }
}
