/* ===================================================
   EDIL PUNTO — style.css  v4
   Font: Plus Jakarta Sans
   Palette: Beige caldo · Terracotta · Noce scuro
   =================================================== */

:root {
  --col-primary:    #2C1A0E;
  --col-primary-dk: #180E06;
  --col-primary-lt: #5A3519;
  --col-secondary:  #B87333;
  --col-secondary-lt: #D4924A;
  --col-whatsapp:   #25D366;
  --col-bg:         #FAF8F3;
  --col-bg-alt:     #F0E9DC;
  --col-text:       #1E1510;
  --col-text-soft:  #7B6455;
  --col-border:     #DDD0C2;

  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --shadow-xs:  0 1px 4px rgba(44,26,14,.05);
  --shadow-sm:  0 2px 12px rgba(44,26,14,.08);
  --shadow-md:  0 8px 32px rgba(44,26,14,.12);
  --shadow-lg:  0 20px 56px rgba(44,26,14,.16);
  --transition: .22s ease;
}

/* 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(--col-text);
  background: var(--col-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* TYPOGRAPHY */
h1 { font-size: clamp(2.4rem, 7vw, 4.2rem); font-weight: 900; line-height: 1.04; letter-spacing: -.03em; }
h2 { font-size: clamp(1.7rem, 4.5vw, 2.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; }
h3 { font-size: 1.08rem; font-weight: 700; letter-spacing: -.01em; }
p  { color: var(--col-text-soft); }

/* UTILITIES */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section--alt { background: var(--col-bg-alt); }
.text-center { text-align: center; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--col-secondary);
  margin-bottom: 16px;
  background: rgba(184,115,51,.1);
  padding: 6px 14px 6px 10px;
  border-radius: 50px;
  border: 1px solid rgba(184,115,51,.22);
}
.section-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--col-secondary);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.section-title { margin-bottom: 16px; }
.section-title::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--col-secondary), var(--col-secondary-lt));
  border-radius: 2px;
  margin-top: 14px;
}
.text-center .section-title::after { margin: 14px auto 0; }
.section-sub { font-size: 1.1rem; max-width: 640px; margin: 0 auto 60px; line-height: 1.75; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: .97rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn--wa {
  background: var(--col-whatsapp);
  color: #fff;
  border-color: var(--col-whatsapp);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn--wa:hover {
  background: #1da851; border-color: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37,211,102,.45);
}
.btn--phone {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
}
.btn--phone:hover {
  background: rgba(255,255,255,.24);
  border-color: #fff;
  transform: translateY(-3px);
}
.btn--phone-dark {
  background: var(--col-primary);
  color: #fff;
  border-color: var(--col-primary);
  box-shadow: 0 4px 16px rgba(44,26,14,.25);
}
.btn--phone-dark:hover {
  background: var(--col-primary-lt);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(44,26,14,.35);
}
.btn--primary {
  background: var(--col-primary);
  color: #fff;
  border-color: var(--col-primary);
}
.btn--primary:hover {
  background: var(--col-primary-dk);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(44,26,14,.3);
}
.btn--outline {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(8px);
}
.btn--outline:hover { background: rgba(255,255,255,.22); border-color: #fff; }
.btn--orange {
  background: linear-gradient(135deg, var(--col-secondary), var(--col-secondary-lt));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(184,115,51,.3);
}
.btn--orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(184,115,51,.45);
}
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-group--center { justify-content: center; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 6px 0;
  background: rgba(15,8,3,.22);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .3s, box-shadow .3s, padding .3s;
}
.navbar.scrolled {
  background: rgba(250,248,243,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--col-border), 0 4px 24px rgba(0,0,0,.07);
  padding: 2px 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo { display: flex; align-items: center; }
.navbar__logo img {
  height: 88px; width: auto;
  transition: height .3s;
}
.navbar.scrolled .navbar__logo img { height: 70px; }
.navbar__links {
  display: flex; gap: 34px;
  font-weight: 600; font-size: .92rem;
  color: rgba(255,255,255,.92);
}
.navbar.scrolled .navbar__links { color: var(--col-text); }
.navbar__links a { transition: color .2s; }
.navbar__links a:hover { color: var(--col-secondary); }
.navbar__cta { display: flex; align-items: center; gap: 12px; }
.navbar__phone {
  display: flex; align-items: center;
  font-size: .88rem; font-weight: 700;
  color: rgba(255,255,255,.92);
}
.navbar__phone a {
  display: flex; align-items: center; gap: 7px;
  transition: color .2s;
}
.navbar__phone a:hover { color: var(--col-secondary-lt); }
.navbar__phone i { color: var(--col-secondary-lt); font-size: .95rem; }
.navbar.scrolled .navbar__phone { color: var(--col-text); }
.navbar.scrolled .navbar__phone i { color: var(--col-secondary); }
.navbar.scrolled .navbar__phone a:hover { color: var(--col-secondary); }

.navbar__hamburger {
  display: none; background: none; border: none;
  color: #fff; font-size: 1.5rem;
}
.navbar.scrolled .navbar__hamburger { color: var(--col-primary); }

@media (max-width: 1024px) {
  .navbar__phone { display: none; }
}
@media (max-width: 768px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__hamburger { display: block; }
  .navbar.mobile-open { background: var(--col-bg); backdrop-filter: none; }
  .navbar.mobile-open .navbar__hamburger { color: var(--col-primary); }
  .navbar__mobile-menu {
    display: none; flex-direction: column; gap: 16px;
    padding: 20px; background: var(--col-bg);
    border-top: 1px solid var(--col-border);
  }
  .navbar.mobile-open .navbar__mobile-menu { display: flex; }
  .navbar__mobile-menu a { color: var(--col-text); font-weight: 600; font-size: 1.1rem; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0603 0%, #2C1A0E 45%, #4A2E18 100%);
}
.hero__video-wrap { position: absolute; inset: 0; }
.hero__video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    150deg,
    rgba(15,6,2,.84) 0%,
    rgba(44,26,14,.58) 40%,
    rgba(15,6,2,.90) 100%
  );
}
.hero__overlay::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,115,51,.2) 0%, transparent 65%);
  top: -200px; right: -150px;
  pointer-events: none;
}
/* Cornice decorativa hero */
.hero__frame {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(184,115,51,.2);
  border-radius: calc(var(--radius-lg) + 6px);
  pointer-events: none;
  z-index: 1;
}
.hero__frame::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(184,115,51,.08);
  border-radius: var(--radius-lg);
}
@media (max-width: 768px) { .hero__frame { inset: 10px; } }

.hero__content {
  position: relative; z-index: 2;
  color: #fff; padding: 148px 0 100px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,115,51,.9);
  color: #fff; font-size: .76rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 50px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(184,115,51,.5);
  border: 1px solid rgba(255,255,255,.15);
}
.hero__badge::before {
  content: ''; width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: .3; }
}
.hero__title { color: #fff; margin-bottom: 22px; }
.hero__title::after { display: none; }
.hero__title span { color: var(--col-secondary-lt); }
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: rgba(255,255,255,.82); max-width: 540px;
  margin-bottom: 40px; line-height: 1.8;
}
.hero__trust {
  margin-top: 52px; display: flex; flex-wrap: wrap;
  gap: 10px 24px; align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .86rem; color: rgba(255,255,255,.85); font-weight: 600;
}
.hero__trust-item i { color: var(--col-secondary-lt); font-size: .95rem; }

/* ZONES STRIP */
.zones-strip {
  background: linear-gradient(90deg, var(--col-primary) 0%, var(--col-primary-lt) 100%);
  padding: 14px 0;
  border-bottom: 2px solid var(--col-secondary);
}
.zones-strip .container {
  display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.zones-strip__label {
  font-size: .75rem; font-weight: 800;
  color: var(--col-secondary-lt);
  text-transform: uppercase; letter-spacing: .1em;
  white-space: nowrap;
  display: flex; align-items: center; gap: 7px;
  flex-shrink: 0;
}
.zones-strip__cities {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.zones-strip__cities span {
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.1);
  padding: 4px 13px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.18);
  white-space: nowrap;
}

/* STATS BAR */
.stats-bar {
  background: var(--col-secondary);
  padding: 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 4px;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,.2);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900; color: #fff;
  line-height: 1; letter-spacing: -.03em;
}
.stat-plus {
  font-size: .6em; font-weight: 800;
  color: rgba(255,255,255,.8);
  vertical-align: super;
}
.stat-label {
  font-size: .8rem; font-weight: 600;
  color: rgba(255,255,255,.75);
  text-transform: uppercase; letter-spacing: .06em;
  text-align: center;
}
@media (max-width: 640px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.2); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.2); border-right: none; }
}

/* PROBLEMS */
.problems__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.problem-card {
  background: #fff;
  border: 1.5px solid var(--col-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--col-secondary), var(--col-secondary-lt));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.problem-card:hover::before { transform: scaleX(1); }
.problem-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: transparent; }
.problem-card__icon {
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #FDF5EC, #F5E3C6);
  border-radius: 16px; margin-bottom: 20px;
  color: var(--col-secondary); font-size: 1.6rem;
}
.problem-card__q { font-size: .92rem; color: var(--col-text-soft); margin-bottom: 12px; font-style: italic; line-height: 1.55; }
.problem-card h3 { color: var(--col-primary); font-size: .98rem; line-height: 1.55; }

/* SERVICES */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1.5px solid var(--col-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: var(--transition);
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(44,26,14,.03), rgba(184,115,51,.05));
  opacity: 0; transition: opacity .3s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: var(--col-secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.service-card__icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--col-primary), var(--col-primary-lt));
  border-radius: 14px; color: #fff; font-size: 1.35rem;
  box-shadow: 0 4px 14px rgba(44,26,14,.25);
  margin-bottom: 4px;
}
.service-card h3 { font-size: .98rem; color: var(--col-text); }
.service-card p { font-size: .84rem; color: var(--col-text-soft); line-height: 1.55; }
.tag-disponibile {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .7rem; font-weight: 700;
  color: #059669; background: #D1FAE5;
  padding: 4px 10px; border-radius: 50px;
  width: fit-content; margin-top: auto;
}

/* GALLERY */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative; border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer;
  background: #111; aspect-ratio: 16/9;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease, opacity .45s ease;
}
.gallery-item:hover img { transform: scale(1.08); opacity: .75; }
.gallery-item__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,.6);
  transition: transform .3s ease;
}
.gallery-item:hover .gallery-item__play { transform: scale(1.15); }
.gallery-item__label {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(0,0,0,.72); color: #fff;
  font-size: .78rem; font-weight: 700;
  padding: 6px 14px; border-radius: 50px;
  backdrop-filter: blur(8px); letter-spacing: .02em;
}

/* Modal */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.94); z-index: 1000;
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-inner { position: relative; width: 100%; max-width: 920px; }
.modal-inner video { width: 100%; border-radius: var(--radius-md); }
.modal-close {
  position: absolute; top: -50px; right: 0;
  background: rgba(255,255,255,.14); border: none; color: #fff;
  font-size: 1.25rem; width: 40px; height: 40px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.modal-close:hover { background: rgba(255,255,255,.28); }

/* HOW IT WORKS */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0; position: relative;
}
.steps__grid::before {
  content: '';
  position: absolute;
  top: 74px; left: 22%; right: 22%; height: 2px;
  background: linear-gradient(90deg, var(--col-secondary), var(--col-primary));
  opacity: .18; pointer-events: none;
}
@media (max-width: 768px) {
  .steps__grid { grid-template-columns: 1fr; gap: 20px; }
  .steps__grid::before { display: none; }
}
.step-card {
  text-align: center; padding: 40px 28px;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition); margin: 0 10px;
  border: 1.5px solid var(--col-border);
  position: relative;
}
/* Cornice angolare decorativa */
.step-card::before,
.step-card::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border-color: var(--col-secondary);
  border-style: solid;
  opacity: .3;
  transition: opacity .3s;
}
.step-card::before { top: 10px; left: 10px; border-width: 2px 0 0 2px; border-radius: 3px 0 0 0; }
.step-card::after  { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; border-radius: 0 0 3px 0; }
.step-card:hover::before, .step-card:hover::after { opacity: .75; }
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-7px); border-color: var(--col-secondary); }
.step-card__num {
  font-size: 5rem; font-weight: 900;
  color: var(--col-primary); opacity: .06;
  line-height: 1; margin-bottom: -18px;
  letter-spacing: -.05em;
}
.step-card__icon {
  width: 74px; height: 74px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--col-primary), var(--col-primary-lt));
  border-radius: 50%; color: #fff; font-size: 1.8rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 26px rgba(44,26,14,.28);
}
.step-card h3 { margin-bottom: 10px; color: var(--col-primary); font-size: 1rem; }
.step-card p { font-size: .88rem; line-height: 1.7; }

/* WHY CHOOSE */
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}
.why-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 26px; background: #fff;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--col-border);
  transition: var(--transition);
}
.why-item:hover { border-color: var(--col-secondary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-item__icon {
  flex-shrink: 0; width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--col-secondary), var(--col-secondary-lt));
  border-radius: 13px; color: #fff; font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(184,115,51,.28);
}
.why-item h3 { font-size: .96rem; margin-bottom: 5px; }
.why-item p { font-size: .84rem; line-height: 1.62; }

/* REVIEWS */
.reviews__track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px; scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 320px; scroll-snap-align: start;
  background: #fff; border: 1.5px solid var(--col-border);
  border-radius: var(--radius-md); padding: 28px;
  position: relative; transition: var(--transition);
}
.review-card::before {
  content: '\201C';
  position: absolute; top: 16px; right: 22px;
  font-size: 6rem; line-height: 1;
  color: var(--col-secondary); opacity: .1;
  font-family: Georgia, serif; pointer-events: none;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.review-card__stars { color: #C8961A; margin-bottom: 14px; font-size: 1.05rem; letter-spacing: .04em; }
.review-card__text { font-size: .91rem; color: var(--col-text-soft); margin-bottom: 18px; font-style: italic; line-height: 1.7; }
.review-card__author strong { display: block; color: var(--col-text); font-size: .93rem; }
.review-card__author span  { font-size: .79rem; color: var(--col-text-soft); }

/* FAQ */
.faq__list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1.5px solid var(--col-border); padding: 22px 0; }
.faq-item.open { border-bottom-color: var(--col-secondary); }
.faq-item__q {
  width: 100%; background: none; border: none;
  text-align: left; font-size: 1rem; font-weight: 700;
  color: var(--col-text);
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; padding: 0; line-height: 1.45;
}
.faq-item.open .faq-item__q { color: var(--col-primary); }
.faq-item__q i { flex-shrink: 0; color: var(--col-secondary); transition: transform .25s; font-size: .88rem; }
.faq-item.open .faq-item__q i { transform: rotate(180deg); }
.faq-item__a {
  display: none; font-size: .93rem;
  color: var(--col-text-soft); padding-top: 12px; line-height: 1.8;
}
.faq-item.open .faq-item__a { display: block; }

/* MAP */
.map-section__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: center;
}
.map-section__info h2 { margin-bottom: 22px; }
.map-info-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.map-info-item { display: flex; align-items: center; gap: 14px; font-size: .95rem; }
.map-info-item i { color: var(--col-secondary); font-size: 1.1rem; width: 22px; flex-shrink: 0; }
.map-info-item a:hover { color: var(--col-secondary); }
.map-frame { border-radius: var(--radius-md); overflow: hidden; height: 360px; box-shadow: var(--shadow-md); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 768px) { .map-section__inner { grid-template-columns: 1fr; } }

/* CTA FINAL */
.cta-final {
  background: linear-gradient(135deg, var(--col-primary) 0%, #1A0F07 55%, #0f0603 100%);
  color: #fff; padding: 108px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,115,51,.22) 0%, transparent 65%);
  top: -280px; right: -140px; pointer-events: none;
}
.cta-final::after {
  content: '';
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,115,51,.14) 0%, transparent 65%);
  bottom: -200px; left: -100px; pointer-events: none;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 { color: #fff; margin-bottom: 16px; }
.cta-final h2::after { background: rgba(184,115,51,.5); margin: 14px auto 0; }
.cta-final p  { color: rgba(255,255,255,.75); margin-bottom: 44px; font-size: 1.1rem; }

/* FOOTER */
.footer {
  background: #0f0804;
  color: rgba(255,255,255,.58);
  padding: 72px 0 28px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 52px; margin-bottom: 56px;
}
.footer__logo { margin-bottom: 18px; }
.footer__desc { font-size: .88rem; margin-bottom: 24px; line-height: 1.72; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.06);
}
.footer__social a:hover { background: var(--col-secondary); color: #fff; transform: translateY(-2px); border-color: transparent; }
.footer__heading { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: #fff; margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; font-size: .88rem; }
.footer__links a { transition: color .2s; }
.footer__links a:hover { color: var(--col-secondary); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 12px;
  font-size: .8rem;
}
.footer__bottom a:hover { color: var(--col-secondary); }
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }

/* WA FLOAT */
.wa-float {
  position: fixed; bottom: 28px; right: 24px;
  z-index: 800; width: 62px; height: 62px;
  background: var(--col-whatsapp); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
  animation: wa-pulse 2.5s ease-in-out infinite;
  color: #fff; font-size: 1.85rem; transition: transform .2s;
}
.wa-float:hover { transform: scale(1.12); animation: none; box-shadow: 0 6px 32px rgba(37,211,102,.6); }

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* PHONE FLOAT */
.phone-float {
  position: fixed; bottom: 104px; right: 24px;
  z-index: 800; width: 52px; height: 52px;
  background: var(--col-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(44,26,14,.45);
  color: #fff; font-size: 1.3rem;
  transition: transform .2s, box-shadow .2s;
  border: 2px solid rgba(184,115,51,.4);
}
.phone-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(44,26,14,.55); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* PROGRESS BAR */
.progress-bar-wrap { background: var(--col-border); border-radius: 50px; height: 6px; margin-bottom: 40px; }
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--col-primary), var(--col-secondary));
  border-radius: 50px; transition: width .4s ease;
}

/* FORM FUNNEL */
.funnel { min-height: 100svh; padding: 100px 0 60px; background: var(--col-bg-alt); }
.funnel__card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 44px; box-shadow: var(--shadow-md);
  max-width: 720px; margin: 0 auto;
}
.funnel__step { display: none; }
.funnel__step.active { display: block; }
.funnel__step-label { font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--col-secondary); margin-bottom: 8px; }
.funnel__step h2 { margin-bottom: 6px; }
.funnel__step > p { margin-bottom: 28px; }
.type-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
.type-btn {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px; padding: 20px 12px;
  border: 2px solid var(--col-border); border-radius: var(--radius-md);
  background: #fff; font-size: .88rem; font-weight: 700;
  color: var(--col-text); transition: var(--transition);
  cursor: pointer; font-family: inherit;
}
.type-btn i { font-size: 1.9rem; color: var(--col-primary); }
.type-btn:hover, .type-btn.selected { border-color: var(--col-secondary); background: #FDF5EC; color: var(--col-secondary); }
.type-btn.selected i { color: var(--col-secondary); }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 7px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--col-border); border-radius: 10px;
  font-size: .97rem; font-family: inherit;
  color: var(--col-text); background: #fff; transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--col-primary);
  box-shadow: 0 0 0 3px rgba(44,26,14,.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.urgency-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.urgency-btn {
  padding: 15px 12px; border: 2px solid var(--col-border);
  border-radius: 10px; background: #fff; font-size: .88rem;
  font-weight: 700; color: var(--col-text);
  cursor: pointer; font-family: inherit; transition: var(--transition);
}
.urgency-btn:hover, .urgency-btn.selected { border-color: var(--col-secondary); color: var(--col-secondary); background: #FDF5EC; }
.address-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 14px; }
.checkbox-wrap { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; }
.checkbox-wrap input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--col-primary); }
.funnel__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 36px; flex-wrap: wrap; gap: 12px; }
.upload-area {
  border: 2px dashed var(--col-border); border-radius: 12px;
  padding: 32px; text-align: center; cursor: pointer;
  transition: var(--transition); color: var(--col-text-soft); font-size: .88rem;
}
.upload-area:hover { border-color: var(--col-primary); background: #FDF5EC; }
.upload-area i { font-size: 2.2rem; display: block; margin-bottom: 10px; color: var(--col-primary); }
.summary-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--col-border); font-size: .92rem; }
.summary-row:last-child { border-bottom: none; }
.summary-row strong { color: var(--col-text); }
.thank-you { text-align: center; padding: 40px 20px; }
.thank-you__icon { font-size: 4rem; margin-bottom: 16px; }
.thank-you h2 { margin-bottom: 12px; color: var(--col-primary); }
.thank-you p  { margin-bottom: 28px; }

@media (max-width: 640px) {
  .funnel__card { padding: 24px 18px; }
  .address-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   v5 — MODERN ENHANCEMENTS
   Scroll progress, urgency bar, hero rating, magnetic
   buttons, 3D card tilt, animated counter, glow effects
   =================================================== */

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: 1100; background: rgba(0,0,0,.05);
  pointer-events: none;
}
.scroll-progress__fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--col-secondary), #ffb05a, var(--col-secondary));
  background-size: 200% 100%;
  box-shadow: 0 0 12px rgba(184,115,51,.7);
  animation: progressGlow 3s ease-in-out infinite;
  transition: width .12s linear;
}
@keyframes progressGlow {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

/* ---------- URGENCY TOP BANNER ---------- */
.urgency-bar {
  position: relative; z-index: 901;
  background: linear-gradient(90deg, #1a1208 0%, #2C1A0E 50%, #1a1208 100%);
  background-size: 200% 100%;
  animation: urgencyShift 8s ease-in-out infinite;
  border-bottom: 1px solid rgba(184,115,51,.3);
  padding: 8px 0;
  font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.92);
  overflow: hidden;
}
@keyframes urgencyShift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
.urgency-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; text-align: center;
}
.urgency-bar__pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239,68,68,.6);
  animation: pulseDot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(239,68,68,.7); }
  70%  { box-shadow: 0 0 0 12px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}
.urgency-bar__text strong { color: var(--col-secondary-lt); font-weight: 800; }
.urgency-bar__count {
  display: inline-block;
  background: linear-gradient(135deg, var(--col-secondary), #ffb05a);
  color: #fff; font-weight: 800; padding: 1px 9px;
  border-radius: 50px; font-size: .78rem;
  box-shadow: 0 2px 8px rgba(184,115,51,.4);
}
.urgency-bar__cta {
  color: var(--col-secondary-lt); font-weight: 800;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color .2s;
}
.urgency-bar__cta:hover { color: #ffd6a3; }

/* Push navbar down because of urgency bar */
.navbar { top: 0; }
@media (max-width: 640px) {
  .urgency-bar { font-size: .72rem; padding: 6px 0; }
}

/* ---------- HERO ENHANCEMENTS ---------- */
.hero__rating {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  padding: 7px 16px; border-radius: 50px;
  margin-bottom: 18px;
  animation: floatIn .8s .15s ease both;
}
.hero__rating-stars {
  color: #fbbf24; font-size: .92rem; letter-spacing: .03em;
  text-shadow: 0 0 10px rgba(251,191,36,.5);
}
.hero__rating-text { font-size: .78rem; color: rgba(255,255,255,.92); }
.hero__rating-text strong { color: #fff; font-weight: 800; }

.hero__title-accent {
  background: linear-gradient(135deg, #fff 0%, var(--col-secondary-lt) 50%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shineText 4s ease-in-out infinite;
  display: inline-block;
}
@keyframes shineText {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
.hero__title-small {
  font-size: clamp(1.05rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--col-secondary-lt);
  letter-spacing: .02em;
  display: block; margin-top: 8px;
}
.hero__sub-highlight {
  background: linear-gradient(120deg, rgba(184,115,51,.3) 0%, rgba(184,115,51,.5) 100%);
  padding: 1px 8px; border-radius: 6px;
  color: #fff; font-weight: 700;
}

.hero__guarantee {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px; padding: 12px 18px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 12px;
  font-size: .85rem; color: rgba(255,255,255,.92);
}
.hero__guarantee i { color: #4ade80; font-size: 1rem; }
.hero__guarantee strong { color: #fff; font-weight: 800; }

/* Animated background grid in hero */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,115,51,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,115,51,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 1;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}

/* Hero scroll indicator */
.hero__scroll-indicator {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.55);
  z-index: 3; pointer-events: none;
  animation: floatUpDown 2.4s ease-in-out infinite;
}
.hero__scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 12px; position: relative;
}
.hero__scroll-wheel {
  position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--col-secondary-lt);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
.hero__scroll-text {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
@keyframes scrollWheel {
  0%   { top: 6px; opacity: 1; }
  50%  { top: 18px; opacity: .3; }
  100% { top: 6px; opacity: 1; }
}
@keyframes floatUpDown {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(8px); }
}
@media (max-width: 768px) { .hero__scroll-indicator { display: none; } }

@keyframes floatIn {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- MAGNETIC BUTTON & SHIMMER ---------- */
.btn--magnetic { position: relative; overflow: hidden; }
.btn-shimmer {
  position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg);
  animation: shimmerSweep 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmerSweep {
  0%   { left: -75%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

/* ---------- 3D CARD TILT (services) ---------- */
.service-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
}
.service-card .service-card__icon,
.service-card h3,
.service-card p,
.service-card .tag-disponibile {
  transition: transform .35s ease;
}
.service-card:hover .service-card__icon { transform: translateZ(20px) scale(1.1); }
.service-card:hover h3                  { transform: translateZ(15px); }
.service-card:hover p                   { transform: translateZ(10px); }

/* Glow effect on services hover */
.service-card::after {
  content: '';
  position: absolute; inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--col-secondary), transparent 50%, var(--col-secondary-lt));
  opacity: 0; transition: opacity .35s;
  z-index: -1; filter: blur(12px);
}
.service-card:hover::after { opacity: .35; }

/* ---------- ANIMATED COUNTER (stats) ---------- */
.stat-num { display: inline-block; }
.stat-item {
  position: relative; overflow: hidden;
  transition: background .3s;
}
.stat-item:hover { background: rgba(255,255,255,.06); }
.stat-item::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transition: left .8s ease;
  pointer-events: none;
}
.stat-item:hover::before { left: 100%; }

/* ---------- ZONES STRIP MARQUEE ---------- */
.zones-strip__cities { animation: none; }
@media (max-width: 768px) {
  .zones-strip__cities {
    animation: marqueeSlow 30s linear infinite;
    flex-wrap: nowrap; min-width: max-content;
  }
  .zones-strip:hover .zones-strip__cities { animation-play-state: paused; }
}
@keyframes marqueeSlow {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- REVEAL STAGGER ---------- */
.reveal-stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-stagger.visible > *           { opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: .55s; }

/* ---------- GLOW PULSE ON CTA FINALE ---------- */
.cta-final h2 {
  position: relative;
}
.cta-final::before { animation: glowPulse 6s ease-in-out infinite; }
.cta-final::after  { animation: glowPulse 6s ease-in-out 3s infinite; }
@keyframes glowPulse {
  0%,100% { transform: scale(1);   opacity: 1; }
  50%     { transform: scale(1.1); opacity: .7; }
}

/* ---------- BEFORE/AFTER GALLERY HOVER ---------- */
.gallery-item { will-change: transform; }
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-item__play {
  background: radial-gradient(circle at center, rgba(184,115,51,.0) 0%, rgba(0,0,0,.55) 70%);
  transition: background .35s ease;
}
.gallery-item:hover .gallery-item__play {
  background: radial-gradient(circle at center, rgba(184,115,51,.3) 0%, rgba(0,0,0,.45) 70%);
}

/* ---------- PROBLEM CARDS — connecting line ---------- */
.problems__grid { position: relative; }

/* ---------- FAQ ENHANCEMENT ---------- */
.faq-item__a {
  overflow: hidden; max-height: 0;
  display: block !important;
  transition: max-height .35s ease, padding-top .35s ease, opacity .25s ease;
  padding-top: 0; opacity: 0;
}
.faq-item.open .faq-item__a {
  max-height: 500px; padding-top: 12px; opacity: 1;
}

/* ---------- WA FLOAT — WIDER PULSE ---------- */
.wa-float::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--col-whatsapp);
  animation: waRipple 2.5s ease-out infinite;
}
@keyframes waRipple {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- WHY-ITEM HOVER GLOW ---------- */
.why-item__icon {
  transition: transform .35s ease, box-shadow .35s ease;
}
.why-item:hover .why-item__icon {
  transform: rotate(-6deg) scale(1.1);
  box-shadow: 0 8px 24px rgba(184,115,51,.5);
}

/* ---------- STEP CARDS — PULSE ICON ---------- */
.step-card__icon {
  position: relative;
  transition: transform .35s ease;
}
.step-card:hover .step-card__icon {
  transform: scale(1.08);
}
.step-card__icon::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid var(--col-secondary);
  opacity: 0; transition: opacity .3s;
}
.step-card:hover .step-card__icon::after {
  opacity: .5; animation: stepPing 1.4s ease-out infinite;
}
@keyframes stepPing {
  0%   { transform: scale(1);   opacity: .5; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- SECTION DIVIDER (decorative) ---------- */
.section-divider {
  height: 80px; position: relative;
  background: linear-gradient(to bottom, var(--col-bg), var(--col-bg-alt));
}
.section-divider::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 4px;
  background: linear-gradient(90deg, var(--col-secondary), var(--col-secondary-lt));
  border-radius: 50px;
}

/* ---------- IMAGE PLACEHOLDER PATTERN (when img missing) ---------- */
.gallery-item img {
  background:
    linear-gradient(135deg, var(--col-primary) 0%, var(--col-primary-lt) 100%);
}
img[src=""], img:not([src]) { background: var(--col-bg-alt); }

/* ---------- PREFERS-REDUCED-MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .urgency-bar__pulse, .wa-float, .hero__scroll-indicator { display: none; }
}

/* ---------- SELECTION ---------- */
::selection { background: var(--col-secondary); color: #fff; }

/* ---------- FOCUS VISIBLE ---------- */
*:focus-visible {
  outline: 3px solid var(--col-secondary);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- LAZY LOAD FADE-IN ---------- */
img[loading="lazy"] {
  opacity: 0; transition: opacity .5s ease;
}
img[loading="lazy"].loaded,
img[loading="lazy"][src] {
  opacity: 1;
}

/* ===================================================
   v7 — SEE US IN ACTION (Hugo Builders style)
   2 reels verticali per riga · sfondo nero · minimal
   =================================================== */
.action-section {
  background: #000;
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.action-section__header {
  text-align: center;
  margin-bottom: 60px;
}
.action-section__eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .14em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.action-section__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1;
}
.action-section__title::after { display: none; }
.action-section__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Grid 2 colonne */
.action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 940px;
  margin: 0 auto;
}
.action-grid--row2 {
  margin-top: 22px;
}
@media (max-width: 640px) {
  .action-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 460px;
  }
  .action-section { padding: 70px 0; }
}

/* Singolo reel verticale 9:16 */
.action-reel {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  contain: layout paint;
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease;
}
.action-reel:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(184,115,51,.25), 0 0 0 1px rgba(184,115,51,.4);
}

.action-reel__video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: #0a0a0a;
}

/* Mute button (bottom-right, come Hugo) */
.action-reel__mute {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: .92rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .15s;
  z-index: 3;
}
.action-reel__mute:hover {
  background: rgba(0,0,0,.85);
  transform: scale(1.08);
}
.action-reel__mute:active { transform: scale(.92); }
.action-reel.is-unmuted .action-reel__mute {
  background: var(--col-secondary);
  border-color: var(--col-secondary-lt);
}

/* Caption overlay (in alto a sinistra, sottile) */
.action-reel__caption {
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  display: flex; flex-direction: column; gap: 4px;
  text-decoration: none;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  transition: background .2s ease, transform .15s ease;
  max-width: fit-content;
}
.action-reel__caption:hover {
  background: rgba(184,115,51,.85);
  transform: scale(1.02);
}
.action-reel__caption-tag {
  font-size: .7rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
  letter-spacing: .04em;
}
.action-reel__caption-text {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 2px rgba(0,0,0,.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Social pills sotto */
.action-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.action-social-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  color: #000;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease;
}
.action-social-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255,255,255,.15);
}
.action-social-pill i { font-size: 1.1rem; color: var(--col-secondary); }

.action-fullscreen-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  padding: 11px 22px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.action-fullscreen-btn:hover {
  background: var(--col-secondary);
  color: #fff;
  border-color: var(--col-secondary);
}

/* ===================================================
   v6 LEGACY — REELS FEED (orizzontale, non più usato ma lasciato per compat)
   =================================================== */
.reels-section {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--col-bg) 0%, #1a1208 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.reels-section .section-title { color: #fff; }
.reels-section .section-title::after {
  background: linear-gradient(90deg, var(--col-secondary), var(--col-secondary-lt));
}
.reels-section .section-tag {
  background: rgba(184,115,51,.18);
  color: var(--col-secondary-lt);
  border-color: rgba(184,115,51,.4);
}
.reels-section .section-sub { color: rgba(255,255,255,.7); }

/* Wrapper con frecce */
.reels-wrap {
  position: relative;
  margin-top: 50px;
}

/* Scroll horizontal con snap */
.reels {
  display: flex;
  gap: 18px;
  padding: 12px 32px 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reels::-webkit-scrollbar { display: none; }

/* Singolo reel — formato 9:16 verticale */
.reel {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: clamp(280px, 75vw, 360px);
  aspect-ratio: 9 / 16;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: pointer;
}
.reel:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 80px rgba(184,115,51,.3), 0 0 0 2px rgba(184,115,51,.4);
}

.reel__video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: #111;
}

/* Overlay scuro a gradiente per leggibilità */
.reel__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, transparent 25%, transparent 60%, rgba(0,0,0,.85) 100%);
  pointer-events: none;
  color: #fff;
}
.reel__overlay > * { pointer-events: auto; }

.reel__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.reel__chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 700;
  color: #fff;
}
.reel__chip i { color: var(--col-secondary-lt); font-size: .82rem; }

.reel__mute {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: .9rem;
  transition: background .2s, transform .2s;
}
.reel__mute:hover { background: rgba(184,115,51,.7); transform: scale(1.08); }
.reel.unmuted .reel__mute { background: var(--col-secondary); border-color: var(--col-secondary-lt); }

.reel__bottom {
  display: flex; flex-direction: column;
  gap: 8px;
}
.reel__title {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
  margin: 0;
}
.reel__meta {
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.reel__btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--col-whatsapp);
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  margin-top: 4px;
  width: fit-content;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(37,211,102,.45);
}
.reel__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,.6);
}

/* Progress bar in basso */
.reel__progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.15);
  z-index: 2;
}
.reel__progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--col-secondary), var(--col-secondary-lt));
  transition: width .15s linear;
  box-shadow: 0 0 8px var(--col-secondary-lt);
}

/* Stato attivo (in viewport) */
.reel.is-active {
  box-shadow: 0 30px 80px rgba(184,115,51,.4), 0 0 0 2px var(--col-secondary);
}

/* Frecce navigazione (desktop) */
.reels-arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--col-primary);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  transition: transform .2s, background .2s;
}
.reels-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  background: var(--col-secondary);
  color: #fff;
}
.reels-arrow--prev { left: 12px; }
.reels-arrow--next { right: 12px; }
@media (max-width: 768px) {
  .reels-arrow { display: none; }
}

.reels-hint {
  text-align: center;
  margin-top: 18px;
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  font-weight: 600;
}
.reels-hint i { color: var(--col-secondary-lt); margin-right: 6px; }
