/* ── TOKENS — Nero / Oro / Bianco ── */
:root {
  --bg:          #0A0A0A;
  --bg-2:        #0F0F0F;
  --bg-card:     #141414;
  --border:      rgba(255,255,255,0.08);
  --accent:      #E8921A;
  --accent-2:    #F5A73B;
  --accent-glow: rgba(232,146,26,0.28);
  --accent-dim:  rgba(232,146,26,0.10);
  --accent-bord: rgba(232,146,26,0.30);
  --white:       #FFFFFF;
  --off-white:   #FFFFFF;
  --muted:       #B0B0B0;
  --muted-2:     #DEDEDE;
  --ff-head:     'Space Grotesk', system-ui, sans-serif;
  --ff-body:     'Montserrat', system-ui, sans-serif;
  --radius:      16px;
  --radius-sm:   10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--off-white);
  font-family: var(--ff-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── PROGRESS BAR ── */
#progress-bar {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 5vw, 3rem);
  background: rgba(12,12,14,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
}
.nav.stuck {
  background: rgba(12,12,14,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: var(--ff-head);
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: -.01em; color: var(--accent);
}
.nav-logo span { color: var(--accent-2); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .78rem; font-weight: 500;
  letter-spacing: .04em; color: var(--muted-2);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent); color: var(--bg);
  font-family: var(--ff-head); font-size: .78rem; font-weight: 600;
  padding: .65rem 1.3rem; border-radius: 100px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.nav-burger {
  display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); transition: transform .3s, opacity .3s; border-radius: 2px;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 490;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-drawer.open { transform: none; }
.mobile-drawer a {
  font-family: var(--ff-head); font-size: 2rem; font-weight: 600;
  color: var(--white); transition: color .2s;
}
.mobile-drawer a:hover { color: var(--accent); }

/* ── SECTION BASE ── */
section { padding: clamp(4rem,9vw,8rem) clamp(1.2rem,5vw,3rem); }

.section-label {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: ''; width: 20px; height: 1.5px;
  background: var(--accent); border-radius: 2px;
}

h2.headline {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -.02em; color: var(--white);
  white-space: nowrap;
}
h2.headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--accent); color: var(--bg);
  font-family: var(--ff-head); font-size: .88rem; font-weight: 600;
  padding: .95rem 2rem; border-radius: 100px;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--accent-glow);
  background: var(--accent-2);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  color: var(--off-white);
  font-family: var(--ff-head); font-size: .88rem; font-weight: 500;
  padding: .95rem 2rem; border-radius: 100px;
  transition: background .2s, border-color .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.15); }

@keyframes booking-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.35); }
  70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.btn-booking {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .6rem;
  width: 100%;
  background: #ffffff !important;
  border: none !important;
  color: #0c0c0e !important;
  font-family: var(--ff-head); font-size: .88rem; font-weight: 600;
  padding: .95rem 2rem; border-radius: 100px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  animation: booking-pulse 2.2s ease-out infinite;
}
.btn-booking svg { stroke: #0c0c0e !important; flex-shrink: 0; }
.btn-booking:hover { background: rgba(255,255,255,.88) !important; transform: scale(1.02); animation: none; }

/* ── HERO ── */
.hero {
  min-height: 100svh; display: grid; place-items: center; text-align: center;
  padding-top: 7rem; padding-bottom: 4rem;
  padding-inline: clamp(1.2rem,5vw,3rem);
  position: relative; overflow: hidden;
  background-image: url('hero.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.75) 0%,
    rgba(10,10,10,0.65) 50%,
    rgba(10,10,10,0.85) 100%
  );
  z-index: 0;
}
.hero-grid { display: none; }
@keyframes gridShift { from{transform:translateY(0)} to{transform:translateY(60px)} }
.hero-glow {
  position: absolute; top: 30%; left: 50%; z-index: 1;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,146,26,.10) 0%, transparent 70%);
  pointer-events: none; animation: orb 8s ease-in-out infinite alternate;
}
@keyframes orb {
  from { transform:translate(-50%,-50%) scale(1); }
  to   { transform:translate(-50%,-50%) scale(1.15); }
}
.hero-inner { position: relative; z-index: 2; max-width: 860px; }
.hero-badge {
  display: inline-block;
  background: transparent; border: none;
  padding: .4rem 1rem;
  font-family: var(--ff-body);
  font-size: clamp(.82rem, 1.5vw, .95rem);
  font-style: italic; font-weight: 300;
  letter-spacing: .02em; color: var(--off-white);
  white-space: nowrap;
  margin-bottom: 1.6rem; opacity: 0; animation: fadeUp .6s ease forwards .2s;
}
.hero-badge::before { display: none; }
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 700; line-height: 1.0; letter-spacing: -.03em; color: var(--white);
  margin-bottom: 1.4rem; opacity: 0; animation: fadeUp .8s ease forwards .4s;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 60%, #F5DFA0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-title .underline-anim { display: inline-block; }
.hero-sub {
  font-size: clamp(.95rem,2vw,1.15rem); color: var(--muted-2); line-height: 1.7;
  max-width: 520px; margin: 0 auto 2.5rem;
  opacity: 0; animation: fadeUp .8s ease forwards .6s;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s ease forwards .8s;
}
.hero-stats {
  display: flex; gap: clamp(1.5rem,4vw,3.5rem); justify-content: center;
  flex-wrap: wrap; margin-top: 2.5rem;
  opacity: 0; animation: fadeUp .8s ease forwards 1s;
}
.hero-stat-num {
  font-family: var(--ff-head); font-size: 1.8rem; font-weight: 700;
  color: var(--white); display: block;
}
.hero-stat-num .accent { color: var(--accent); }
.hero-stat-label { font-size: .75rem; color: var(--muted); display: block; margin-top: .2rem; }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  opacity: 0; animation: fadeUp .6s ease forwards 1.6s;
}
.scroll-indicator span { font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.scroll-mouse {
  width: 20px; height: 32px; border: 1.5px solid rgba(201,169,110,.35);
  border-radius: 10px; display: flex; justify-content: center; padding-top: 5px;
}
.scroll-wheel {
  width: 3px; height: 6px; background: var(--accent);
  border-radius: 2px; animation: wheel 1.8s ease infinite;
}
@keyframes wheel { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(10px);opacity:0} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ── PROBLEMA ── */
.problem { background: var(--bg-2); }
.problem-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.problem-inner > p { margin-top: 1rem; color: var(--muted-2); font-size: .92rem; line-height: 1.8; max-width: 580px; margin-inline: auto; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
/* Quinta card a tutta larghezza */
.problem-item:last-child {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}
.problem-item:last-child .problem-item-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-item:last-child { grid-column: 1 / -1; flex-direction: column; text-align: center; }
  .problem-item:last-child .problem-item-icon { margin-bottom: .5rem; }
}
@media (max-width: 480px) {
  .problem-grid { grid-template-columns: 1fr; }
  .problem-item:last-child { flex-direction: column; text-align: center; }
}
.problem-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: background .3s, box-shadow .35s, border-color .3s, transform .3s;
  position: relative;
}
.problem-item:hover {
  background: #1C1C24;
  border-color: rgba(232,146,26,.3);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(232,146,26,.18), 0 0 60px rgba(232,146,26,.07);
}
.problem-item-icon { font-size: 1.8rem; margin-bottom: .8rem; }
.problem-item-text { font-size: .88rem; color: var(--muted-2); line-height: 1.6; text-align: left; }
.problem-item-text strong { display: block; font-family: var(--ff-head); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .3rem; }

/* ── SERVICES ── */
.services { background: var(--bg); }
.services-intro { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.services-intro p { margin-top: 1rem; color: var(--muted-2); font-size: .95rem; line-height: 1.75; }
.services-filters { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  font-family: var(--ff-head); font-size: .72rem; font-weight: 600;
  letter-spacing: .05em; padding: .5rem 1.1rem; border-radius: 100px;
  border: 1px solid var(--border); color: var(--muted-2);
  transition: all .2s; cursor: pointer; min-height: 38px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent); border-color: var(--accent); color: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
/* Featured card occupa riga intera */
.svc-card.featured {
  grid-column: 1 / -1;
}

/* BACKLIT CARD */
.svc-card {
  position: relative;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; overflow: hidden;
  transition: transform .3s ease, border-color .3s, box-shadow .3s;
  cursor: default;
}
.svc-card::before {
  content: ''; position: absolute;
  bottom: -40px; left: 50%; transform: translateX(-50%);
  width: 90%; height: 200px; border-radius: 50%;
  background: var(--card-glow, rgba(255,255,255,.28));
  filter: blur(50px);
  opacity: 0; transition: opacity .45s ease; pointer-events: none; z-index: 0;
}
.svc-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  border: 1px solid var(--card-border, rgba(201,169,110,.45));
  opacity: 0; transition: opacity .35s ease; pointer-events: none; z-index: 0;
}
.svc-card::before { opacity: .35; }
.svc-card:hover { transform: translateY(-5px); border-color: transparent; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after  { opacity: 1; }

/* Glow variants per card */
.svc-card[data-type="cheratina"] { --card-glow: rgba(255,255,255,.32); --card-border: rgba(255,255,255,.55); }
.svc-card[data-type="nastro"]    { --card-glow: rgba(255,255,255,.26); --card-border: rgba(255,255,255,.48); }
.svc-card[data-type="microfilo"] { --card-glow: rgba(255,255,255,.28); --card-border: rgba(255,255,255,.50); }
.svc-card[data-type="clip"]      { --card-glow: rgba(255,255,255,.24); --card-border: rgba(255,255,255,.44); }
.svc-card[data-type="colorazione"]{ --card-glow: rgba(255,255,255,.28); --card-border: rgba(255,255,255,.50); }
.svc-card[data-type="taglio"]    { --card-glow: rgba(255,255,255,.24); --card-border: rgba(255,255,255,.44); }

.svc-inner { position: relative; z-index: 1; }
.svc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.2rem; }
.svc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(201,169,110,.08); border: 1px solid rgba(201,169,110,.15);
  display: grid; place-items: center; font-size: 1.3rem;
}
.svc-badge {
  font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 100px;
}
.badge-gold  { background: rgba(201,169,110,.15); color: var(--accent-2); border: 1px solid rgba(201,169,110,.3); }
.badge-white { background: rgba(255,255,255,.07); color: var(--muted-2); border: 1px solid var(--border); }
.badge-green { background: rgba(134,239,172,.1); color: #86EFAC; border: 1px solid rgba(134,239,172,.25); }

.svc-name { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; letter-spacing: -.01em; }
.svc-tagline { font-size: .82rem; font-style: italic; color: var(--accent-2); opacity: .85; margin-bottom: 1rem; }
.svc-desc { font-size: .85rem; color: var(--muted-2); line-height: 1.75; margin-bottom: 1.4rem; }

.svc-pros { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.4rem; }
.svc-pros li { display: flex; gap: .65rem; align-items: flex-start; font-size: .83rem; color: var(--off-white); line-height: 1.5; }
.svc-pros li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }

.svc-diff {
  background: rgba(201,169,110,.04); border: 1px solid rgba(201,169,110,.12);
  border-radius: var(--radius-sm); padding: .85rem 1rem; margin-bottom: 1.2rem;
}
.svc-diff-label { font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); opacity: .8; margin-bottom: .3rem; }
.svc-diff-text { font-size: .8rem; color: var(--muted-2); line-height: 1.6; }

.svc-specs { display: flex; gap: 1rem; flex-wrap: wrap; padding-top: 1rem; border-top: 1px solid var(--border); }
.svc-spec-label { font-size: .6rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: .15rem; }
.svc-spec-value { font-family: var(--ff-head); font-size: .82rem; font-weight: 600; color: var(--white); }

/* FEATURED (cheratina) */
.svc-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; border-color: rgba(232,146,26,.20); }
.svc-card.featured::before { opacity: .45; }

.comparison { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.4rem; }
.cmp-row { display: flex; align-items: center; gap: .8rem; font-size: .78rem; }
.cmp-label { color: var(--muted); min-width: 95px; flex-shrink: 0; }
.cmp-bar { flex: 1; height: 3px; background: rgba(255,255,255,.06); border-radius: 2px; overflow: hidden; }
.cmp-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 2px; width: 0; transition: width 1.3s cubic-bezier(.4,0,.2,1); }
.cmp-fill.go { width: var(--w); }
.cmp-val { font-family: var(--ff-head); font-size: .75rem; font-weight: 600; color: var(--white); min-width: 26px; text-align: right; }

/* ── METODO ── */
.metodo { background: var(--bg-2); }
.metodo-inner { max-width: 900px; margin: 0 auto; }
.metodo-steps {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 1.2rem;
  border-radius: var(--radius); margin-top: 3rem;
}
.metodo-step { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem 1.5rem; position: relative; overflow: hidden; transition: background .3s; }
.metodo-step::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.metodo-step:hover { background: #1C1C24; }
.metodo-step:hover::after { transform: scaleX(1); }
.metodo-step-num { font-family: var(--ff-head); font-size: .7rem; font-weight: 700; letter-spacing: .1em; color: var(--accent); margin-bottom: .8rem; }
.metodo-step-title { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.metodo-step-desc { font-size: .8rem; color: var(--muted-2); line-height: 1.6; }

/* ── PROOF ── */
.proof { background: var(--bg); }
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-numbers { display: flex; gap: clamp(2rem,6vw,5rem); justify-content: center; flex-wrap: wrap; margin: 3rem auto; text-align: center; }
.proof-num-val { font-family: var(--ff-head); font-size: clamp(2.5rem,5vw,3.8rem); font-weight: 700; color: var(--white); line-height: 1; display: block; }
.proof-num-val .accent { color: var(--accent); }
.proof-num-label { font-size: .7rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; margin-top: .5rem; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
  border-radius: var(--radius); margin-top: 3rem;
}
.gallery-item { background: var(--bg-card); aspect-ratio: 4/5; position: relative; overflow: hidden; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gallery-item:hover img { transform:scale(1.05); }
.gallery-placeholder { width:100%; height:100%; min-height:220px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.6rem; background:linear-gradient(135deg,var(--bg-card),#1C1C24); }
.gallery-placeholder-icon { font-size:1.5rem; opacity:.25; }
.gallery-placeholder span { font-size:.65rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); }
.gallery-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(12,12,14,.88) 0%,transparent 55%); opacity:0; transition:opacity .3s; display:flex; align-items:flex-end; padding:1.2rem; }
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-overlay-text { font-family:var(--ff-head); font-size:.85rem; font-weight:600; color:var(--white); }

/* ── REVIEWS ── */
.reviews { background: var(--bg-2); }
.reviews-inner { max-width: 1100px; margin: 0 auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1.2rem; margin-top: 3rem; text-align: left; }
.review-google-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1rem; font-size: .65rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  border-top: 1px solid var(--border); padding-top: .8rem; width: 100%;
}
.review-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem; position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.review-card::before {
  content: ''; position: absolute; bottom:-20px; left:50%; transform:translateX(-50%);
  width:60%; height:80px; border-radius:50%;
  background:rgba(201,169,110,.12); filter:blur(18px); opacity:0; transition:opacity .4s;
}
.review-card:hover { border-color:rgba(201,169,110,.35); transform:translateY(-2px); }
.review-card:hover::before { opacity:1; }
.review-stars { color:var(--accent); font-size:.85rem; letter-spacing:.05em; margin-bottom:1rem; }
.review-text { font-size:.88rem; color:var(--off-white); line-height:1.8; font-style:italic; margin-bottom:1.2rem; }
.review-author { display:flex; align-items:center; gap:.7rem; }
.review-avatar { width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg,var(--accent),var(--accent-2)); display:grid; place-items:center; font-family:var(--ff-head); font-size:.8rem; font-weight:700; color:var(--bg); flex-shrink:0; }
.review-name { font-family:var(--ff-head); font-size:.8rem; font-weight:600; color:var(--white); }
.review-loc { font-size:.72rem; color:var(--muted); }

/* ── FAQ ── */
.faq { background: var(--bg); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-list { margin-top: 2.5rem; display:flex; flex-direction:column; gap:.5rem; }
.faq-item { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-sm); overflow:hidden; transition:border-color .2s; }
.faq-item.open { border-color:rgba(201,169,110,.4); }
.faq-q { width:100%; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1.2rem 1.4rem; font-family:var(--ff-head); font-size:.92rem; font-weight:600; color:var(--white); text-align:left; cursor:pointer; transition:color .2s; background:transparent; }
.faq-q:hover { color:var(--accent-2); }
.faq-icon { width:22px; height:22px; border-radius:50%; border:1.5px solid var(--border); display:grid; place-items:center; flex-shrink:0; font-size:.9rem; color:var(--muted-2); transition:border-color .2s,transform .3s,color .2s; }
.faq-item.open .faq-icon { border-color:var(--accent); color:var(--accent); transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-a-inner { padding:.2rem 1.4rem 1.2rem; font-size:.86rem; color:var(--muted-2); line-height:1.8; }

/* ── CTA ── */
.cta-section { background:var(--bg); text-align:center; position:relative; overflow:hidden; }
.cta-glow { position:absolute; inset:0; background:radial-gradient(ellipse 60% 80% at 50% 100%,rgba(201,169,110,.14) 0%,transparent 65%); pointer-events:none; }
.cta-inner { position:relative; max-width:660px; margin:0 auto; }
.cta-badge { display:inline-flex; align-items:center; gap:.5rem; background:rgba(201,169,110,.08); border:1px solid rgba(201,169,110,.25); border-radius:100px; padding:.4rem 1rem; font-size:.7rem; font-weight:600; letter-spacing:.06em; color:var(--accent-2); margin-bottom:2rem; }
.cta-title { font-family:var(--ff-head); font-size:clamp(1.6rem,3.5vw,2.6rem); font-weight:700; letter-spacing:-.02em; color:var(--white); line-height:1.15; margin-bottom:1.2rem; white-space: nowrap; }
@media (max-width: 640px) { .cta-title { font-size: clamp(1.4rem, 5vw, 1.9rem); white-space: normal; } }
.cta-title em { font-style:normal; background:linear-gradient(135deg,var(--accent),var(--accent-2)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.cta-sub { font-size:.95rem; color:var(--muted-2); line-height:1.8; margin-bottom:2.5rem; }
.cta-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.cta-note { margin-top:1.4rem; font-size:.75rem; color:var(--muted); }
.other-services { margin-top:4rem; padding-top:3rem; border-top:1px solid var(--border); }
.other-services-title { font-family:var(--ff-head); font-size:.7rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-bottom:1.2rem; }
.other-tags { display:flex; gap:.7rem; flex-wrap:wrap; justify-content:center; }
.other-tag { display:inline-flex; align-items:center; gap:.4rem; background:rgba(255,255,255,.04); border:1px solid var(--border); border-radius:100px; padding:.4rem 1rem; font-size:.78rem; color:var(--muted-2); transition:background .2s,color .2s,border-color .2s; }
.other-tag:hover { background:rgba(201,169,110,.08); color:var(--off-white); border-color:rgba(201,169,110,.3); }

/* ── CONTACT ── */
.contact { background: var(--bg-2); }
.contact-inner { display:grid; grid-template-columns:1fr; max-width:560px; margin:0 auto; align-items:center; }
.contact-details { display:flex; flex-direction:column; gap:1.4rem; margin-top:2rem; }
.contact-row { display:flex; gap:1rem; align-items:flex-start; }
.contact-icon { width:38px; height:38px; border-radius:10px; background:rgba(201,169,110,.08); border:1px solid rgba(201,169,110,.18); display:grid; place-items:center; font-size:1rem; flex-shrink:0; }
.contact-row-label { font-size:.62rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--accent); margin-bottom:.2rem; }
.contact-row-value { font-size:.88rem; color:var(--off-white); line-height:1.5; }
.map-placeholder { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); height:280px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.8rem; color:var(--muted); font-size:.8rem; letter-spacing:.08em; text-transform:uppercase; }
.map-frame { position:relative; width:100%; height:320px; border-radius:var(--radius); overflow:hidden; border:1px solid var(--border); box-shadow:0 16px 48px rgba(0,0,0,.4); }
@media(max-width:768px){ .map-frame{height:260px} }
.map-placeholder-icon { font-size:2rem; opacity:.3; }

/* ── FOOTER ── */
footer { background:#060606; border-top:1px solid var(--border); padding:2.5rem clamp(1.2rem,5vw,3rem) 6rem; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1.5rem; }
@media(min-width:769px){ footer { padding-bottom: 2.5rem; } }
.footer-left { display:flex; flex-direction:column; gap:.5rem; }
.footer-logo { display:block; }
.footer-copy { font-size:.65rem; color:var(--muted); line-height:1.6; }
.footer-social { display:flex; flex-direction:column; align-items:center; gap:.6rem; }
.footer-follow { font-size:.6rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--muted); }
.footer-social-icons { display:flex; gap:.8rem; }
.social-icon { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.06); border:1px solid var(--border); display:grid; place-items:center; color:var(--muted-2); transition:background .2s,color .2s,border-color .2s; }
.social-icon svg { width:16px; height:16px; }
.social-icon:hover { background:var(--accent); border-color:var(--accent); color:var(--bg); }
.footer-links { display:flex; gap:1.4rem; }
.footer-links a { font-size:.68rem; color:var(--muted); transition:color .2s; }
.footer-links a:hover { color:var(--off-white); }

/* ── WA FLOAT — nascosto su mobile per non sovrapporsi alla sticky bar ── */
.wa-float { position:fixed; bottom:2rem; right:2rem; z-index:400; width:52px; height:52px; background:var(--accent); border-radius:50%; display:grid; place-items:center; box-shadow:0 8px 28px var(--accent-glow); transition:transform .25s,background .25s,box-shadow .25s; }
.wa-float:hover { background:var(--accent-2); transform:scale(1.1); box-shadow:0 12px 36px rgba(201,169,110,.45); }
.wa-float svg { width:22px; height:22px; fill:var(--bg); }
/* ── STICKY BAR ── */
.sticky-bar { position:fixed; bottom:0; left:0; right:0; z-index:399; background:rgba(12,12,14,.97); backdrop-filter:blur(16px); border-top:1px solid var(--border); padding:.9rem 1.2rem; display:none; align-items:center; justify-content:space-between; gap:1rem; }
.sticky-bar-text { font-family:var(--ff-head); font-size:.8rem; font-weight:600; color:var(--white); }
.sticky-bar-sub { font-size:.7rem; color:var(--muted); font-weight:400; }

/* ── REVEAL ── */
.reveal       { opacity:0; transform:translateY(32px);  transition:opacity .7s ease,transform .7s ease; }
.reveal-left  { opacity:0; transform:translateX(-32px); transition:opacity .7s ease,transform .7s ease; }
.reveal-right { opacity:0; transform:translateX(32px);  transition:opacity .7s ease,transform .7s ease; }
.reveal.in,.reveal-left.in,.reveal-right.in { opacity:1; transform:none; }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s}
.d4{transition-delay:.4s} .d5{transition-delay:.5s}

/* ── RESPONSIVE COMPLETO ── */
@media(max-width:900px){
  .svc-card.featured{grid-column:1 / -1;grid-template-columns:1fr}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-item.tall{grid-row:span 1}
  .metodo-steps{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .nav-links,.nav-cta{display:none}
  .nav-burger{display:flex}
  .sticky-bar{display:flex}
  .wa-float{display:none}
  .services-grid{grid-template-columns:1fr}
  .svc-card.featured{grid-column:1 / -1;grid-template-columns:1fr}
  .contact-inner{grid-template-columns:1fr}
  .hero{padding-top:6rem;padding-bottom:3rem}
  .hero-title{font-size:clamp(2rem,7vw,3rem)}
  .hero-badge{font-size:.72rem;white-space:nowrap}
  .hero-tagline{font-size:.75rem;white-space:normal}
  .hero-stats{gap:1.2rem;padding-top:1.5rem;margin-top:1.5rem}
  .hero-stat-num{font-size:1.4rem}
  .hero-stat-label{font-size:.58rem}
  .hero-actions{flex-direction:column;align-items:center;width:100%}
  .btn-primary,.btn-secondary{width:100%;justify-content:center;font-size:.8rem;padding:.85rem 1.2rem}
  h2.headline{font-size:clamp(1.3rem,5vw,1.9rem);white-space:normal}
  section{padding:3rem 1.1rem}
  .metodo-steps{grid-template-columns:1fr}
  .metodo-video{max-width:100% !important}
  .gallery-masonry{columns:2;column-gap:.7rem}
  .video-grid{grid-template-columns:1fr;max-width:100%}
  .reviews-grid{grid-template-columns:1fr}
  .contact-inner{gap:2rem}
  footer{flex-direction:column;align-items:flex-start;gap:1.5rem}
  .footer-social{align-items:flex-start}
  .cta-title{font-size:clamp(1.2rem,4.5vw,1.7rem);white-space:normal}
  .cta-actions{flex-direction:column;align-items:center}
  .cta-actions .btn-primary,.cta-actions .btn-secondary{width:100%;justify-content:center}
  .services-intro .headline{white-space:normal}
  .problem-grid{grid-template-columns:1fr 1fr}
  .problem-item:last-child{grid-column:1 / -1;flex-direction:column;text-align:center}
  .problem-item:last-child .problem-item-icon{margin-bottom:.5rem}
  .daniele-inner{grid-template-columns:1fr;gap:2rem}
  .daniele-photo-wrap{max-width:280px;margin:0 auto;aspect-ratio:1/1}
  .other-svc-grid{grid-template-columns:repeat(2,1fr)}
  .problem-item-text{font-size:.82rem}
  .svc-pros li{font-size:.82rem}
  .daniele-text p{font-size:.85rem}
  .gallery-card{margin-bottom:.7rem}
}
@media(max-width:480px){
  .hero-title{font-size:clamp(1.9rem,8vw,2.6rem)}
  .hero-badge{font-size:.68rem}
  .hero-stats{flex-wrap:wrap;gap:1rem}
  .hero-stats > div{min-width:80px}
  h2.headline{font-size:clamp(1.2rem,5.5vw,1.7rem);white-space:normal}
  .problem-grid{grid-template-columns:1fr}
  .problem-item:last-child{flex-direction:column;text-align:center}
  .gallery-grid,.reviews-grid{grid-template-columns:1fr}
  .services-filters{gap:.4rem}
  .filter-btn{font-size:.65rem;padding:.4rem .8rem;min-height:34px}
  .svc-specs{flex-wrap:wrap;gap:.8rem}
  .metodo-steps{grid-template-columns:1fr}
  footer{gap:1.2rem}
  .section-label{font-size:.6rem}
  .needle-thread{max-width:100%}
}
/* ── AGO E FILO ── */
.needle-thread {
  width: 100%;
  max-width: 700px;
  margin: 1.5rem auto 0;
  opacity: 0;
  animation: fadeUp .6s ease forwards .9s;
}
.needle-svg { width: 100%; height: 60px; overflow: visible; }
#strand1, #strand2, #strand3 { transition: none; }
#needleEl { transition: opacity .3s ease; }

/* Needle JS controlled */
#nEl { will-change: transform, opacity; }

/* ── VIDEO TESTIMONIANZE ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 3rem auto 0;
}
.video-item { display: flex; flex-direction: column; gap: 1rem; }
.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  contain: layout paint;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  background: linear-gradient(135deg, var(--bg-card), #1C1C24);
}
.video-play-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--bg);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.video-placeholder span {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.video-caption-name {
  font-family: var(--ff-head);
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .2rem;
}
.video-caption-text {
  font-size: .78rem;
  font-style: italic;
  color: var(--muted-2);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; max-width: 320px; }
}

/* ── PULSAZIONE BOTTONI ── */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px var(--accent-glow); }
  50% { box-shadow: 0 4px 32px rgba(232,146,26,.55), 0 0 0 6px rgba(232,146,26,.08); }
}
.btn-primary { animation: waPulse 2.8s ease-in-out infinite; }
.btn-primary:hover { animation: none; }

/* ── GALLERY ── */
.gallery-section { background: var(--bg-2); }
.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}
.gallery-card {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: pointer;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(232,146,26,.2), 0 0 56px rgba(232,146,26,.08);
}
.gallery-card img {
  width: 100%; display: block;
  transition: transform .5s ease;
  filter: brightness(1.0) contrast(1.0) saturate(1.0);
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card-glow {
  position: absolute; inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(232,146,26,.0);
  transition: box-shadow .35s ease;
  pointer-events: none;
}
.gallery-card:hover .gallery-card-glow {
  box-shadow: inset 0 0 0 1px rgba(232,146,26,.4), inset 0 0 20px rgba(232,146,26,.12);
}
@media(max-width:768px) { .gallery-masonry { columns: 2; } }
@media(max-width:480px) { .gallery-masonry { columns: 2; column-gap:.6rem; } }

/* ── METODO VIDEO ── */
.metodo-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 177.78%; /* 9:16 verticale */
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 40px rgba(232,146,26,.08);
}
.metodo-video-wrap iframe {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  border: none;
}
.metodo-video-caption {
  text-align: center;
  margin-top: 1.2rem;
  font-size: .82rem;
  font-style: italic;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 380px;
  margin-inline: auto;
}
.metodo-video-caption strong { color: var(--off-white); font-weight: 600; font-style: normal; }

/* ── OTHER SERVICES PHOTO CARDS ── */
.other-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  max-width: 900px;
  margin-inline: auto;
}
.other-svc-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}
.other-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(232,146,26,.25), 0 0 60px rgba(232,146,26,.12);
}
.other-svc-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.other-svc-card:hover .other-svc-img { transform: scale(1.06); }
/* Overlay gradient dal basso */
.other-svc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.85) 0%,
    rgba(0,0,0,.3) 50%,
    transparent 100%
  );
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  gap: .25rem;
  z-index: 1;
}
.other-svc-name {
  font-family: var(--ff-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.other-svc-sub {
  font-size: .65rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}
/* Glow retroilluminato sui bordi */
.other-svc-glow {
  position: absolute; inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(232,146,26,.0);
  transition: box-shadow .35s ease;
  pointer-events: none; z-index: 2;
}
.other-svc-card:hover .other-svc-glow {
  box-shadow:
    inset 0 0 0 1px rgba(232,146,26,.5),
    inset 0 0 20px rgba(232,146,26,.15);
}
@media(max-width:768px) {
  .other-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:480px) {
  .other-svc-grid { grid-template-columns: repeat(2, 1fr); gap:.7rem; }
  .other-svc-name { font-size:.75rem; }
}

/* ── DANIELE ── */
.daniele { background: var(--bg-2); }
.daniele-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.daniele-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.daniele-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: brightness(1.0) contrast(1.0) saturate(1.0);
  transition: transform .6s ease;
}
.daniele-photo-wrap:hover img { transform: scale(1.03); }
.daniele-placeholder {
  width:100%; height:100%;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:1rem; color:var(--muted);
  font-size:.85rem; text-align:center;
}
.daniele-placeholder span { font-size:3rem; }
.daniele-content { display:flex; flex-direction:column; gap:1.2rem; }
.daniele-quote {
  font-family: var(--ff-body);
  font-size: clamp(1rem,1.8vw,1.15rem);
  font-style: italic;
  font-weight: 300;
  color: var(--accent-2);
  line-height: 1.6;
  border-left: 3px solid var(--accent);
  padding-left: 1.2rem;
  margin: .5rem 0;
}
.daniele-text { display:flex; flex-direction:column; gap:.9rem; }
.daniele-text p { font-size:.92rem; color:var(--muted-2); line-height:1.8; }
.daniele-text strong { color:var(--off-white); font-weight:500; }
.daniele-badges { display:flex; flex-wrap:wrap; gap:.6rem; margin-top:.5rem; }
.daniele-badge {
  font-size:.72rem; font-weight:600;
  letter-spacing:.04em;
  background: rgba(232,146,26,.08);
  border: 1px solid var(--accent-bord);
  color: var(--accent-2);
  padding: .35rem .8rem;
  border-radius: 100px;
}
@media(max-width:768px){
  .daniele-inner { grid-template-columns:1fr; gap:2.5rem; }
  .daniele-photo-wrap { max-width:320px; margin:0 auto; aspect-ratio:1/1; }
  .daniele-quote { font-size:.95rem; }
}

/* ── HERO TAGLINE ── */
.hero-tagline {
  font-size: clamp(.78rem, 1.6vw, .92rem);
  color: var(--muted-2); letter-spacing: .02em;
  margin-bottom: .5rem;
  opacity: 0; animation: fadeUp .6s ease forwards .55s;
}
.hero-tagline strong { color: var(--off-white); font-weight: 500; }
/* ── FOOTER CTA ── */
.footer-cta { display:flex; flex-direction:column; align-items:center; gap:.6rem; }
.footer-cta-text { font-family:var(--ff-head); font-size:.8rem; font-weight:600; color:var(--white); }

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important}
  .reveal,.reveal-left,.reveal-right{opacity:1;transform:none}
}

/* ── YOUTUBE FACADE ── */
.yt-facade {
  position: relative; display: block; cursor: pointer;
  width: 100%; height: 100%; background: #000; border-radius: var(--radius); overflow: hidden;
}
.yt-facade img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .3s ease, filter .3s ease;
}
.yt-facade:hover img { transform: scale(1.03); filter: brightness(.85); }
.yt-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none; transition: transform .2s;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.5));
}
.yt-facade:hover .yt-play { transform: translate(-50%,-50%) scale(1.12); }
.yt-facade iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
