/* =========================================================
   AURA AGENCY — style.css
   Colori presi dal logo: arancione caldo + crema + nero
   ========================================================= */

/* ---------- Font Montserrat (ospitato sul sito, niente Google Fonts) ---------- */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 800 900;
  font-display: swap;
  src: url(../fonts/montserrat-italic-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 800 900;
  font-display: swap;
  src: url(../fonts/montserrat-italic-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url(../fonts/montserrat-normal-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url(../fonts/montserrat-normal-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --orange: #F76B2E;
  --orange-deep: #E8541A;
  --peach: #FDB98A;
  --cream: #FFF6EC;
  --cream-2: #FCE9D4;
  --ink: #0D0D0D;
  --ink-2: #1A1A1A;
  --muted: #5B534C;
  --muted-light: #B7ACA2;
  --line: rgba(13, 13, 13, .12);
  --line-light: rgba(255, 246, 236, .16);

  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 28px;
  --radius-sm: 16px;
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --section-y: clamp(80px, 12vw, 150px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
main { overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.02; letter-spacing: -.035em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--orange); color: var(--cream); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Tipografia comune ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.eyebrow--light { color: var(--muted-light); }
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle, var(--orange) 30%, var(--peach) 100%);
  box-shadow: 0 0 12px var(--orange);
}
.hl {
  color: var(--orange);
}
.stroke {
  color: transparent;
  -webkit-text-stroke: 2px currentColor;
}
.services .stroke, .results .stroke { -webkit-text-stroke-color: var(--cream); }

.section { padding: var(--section-y) 0; position: relative; }
.section__head { margin-bottom: clamp(48px, 7vw, 80px); max-width: 900px; }
.section__head--row {
  max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap;
}
.section__title {
  font-size: clamp(40px, 7vw, 92px);
  font-weight: 900;
  text-transform: uppercase;
}
.section__aside { max-width: 360px; color: var(--muted); font-size: 18px; }

/* ---------- Bottoni ---------- */
.btn {
  --h: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--h); padding: 0 24px;
  border-radius: 999px; border: 2px solid transparent;
  font-family: inherit; font-weight: 700; font-size: 15px; text-decoration: none; white-space: nowrap;
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s, border-color .3s;
}
.btn:hover { transform: translateY(-3px); }
.btn--lg { --h: 58px; padding: 0 30px; font-size: 16px; }
.btn--xl { --h: 72px; padding: 0 40px; font-size: clamp(16px, 2vw, 20px); }
.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: var(--orange); }
.btn--orange { background: var(--orange); color: var(--ink); box-shadow: 0 10px 30px -10px rgba(247, 107, 46, .7); }
.btn--orange:hover { background: var(--ink); color: var(--cream); box-shadow: 0 14px 40px -12px rgba(13, 13, 13, .5); }
.cta .btn--orange:hover { background: var(--cream); color: var(--ink); }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.ico { width: 1.25em; height: 1.25em; flex: none; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  padding: 14px 0;
  transition: background .35s, box-shadow .35s, padding .35s;
}
.nav.is-scrolled {
  background: rgba(255, 246, 236, .85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 8px 0;
}
.nav__inner { display: flex; align-items: center; gap: 24px; }
.nav__logo img { height: 54px; width: auto; }
.nav__links { display: flex; gap: 32px; margin-left: auto; }
.nav__links a {
  font-weight: 600; font-size: 15px; text-decoration: none; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links-cta { display: none; }
.nav__burger { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
}
.hero__orb {
  position: absolute; z-index: 0;
  width: min(80vw, 820px); aspect-ratio: 1;
  right: -12%; top: 50%;
  translate: 0 -50%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange) 0%, #F9844A 35%, var(--peach) 58%, rgba(255, 238, 214, .6) 70%, transparent 72%);
  filter: blur(8px);
  animation: breathe 9s ease-in-out infinite;
  transform: translate(var(--mx, 0), var(--my, 0));
  transition: transform .8s var(--ease);
}
@keyframes breathe {
  0%, 100% { scale: 1; }
  50% { scale: 1.07; }
}
.hero__inner { position: relative; z-index: 1; }
.hero__title {
  font-size: clamp(42px, 13.4vw, 168px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.05em;
  line-height: .9;
}
.hero__title em { font-style: italic; }
.nowrap { white-space: nowrap; }
.hero__title .hl {
  color: var(--cream);
  background: var(--ink);
  padding: 0 .12em;
  display: inline-block;
  transform: rotate(-2deg);
  border-radius: .08em;
}
.hero__bottom {
  margin-top: clamp(36px, 5vw, 60px);
  display: flex; gap: 40px; align-items: flex-end; justify-content: space-between; flex-wrap: wrap;
}
.hero__lead { max-width: 520px; font-size: clamp(17px, 1.6vw, 20px); font-weight: 500; }
.hero__lead strong { font-weight: 800; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--orange);
  color: var(--ink);
  overflow: hidden;
  padding: 22px 0;
  transform: rotate(-1.5deg);
  margin: 0 -2vw;
  position: relative; z-index: 2;
  border-block: 2px solid var(--ink);
}
.marquee__track {
  display: flex; gap: 40px; width: max-content; align-items: center;
  animation: marquee 26s linear infinite;
  font-size: clamp(28px, 4.5vw, 56px); font-weight: 900; text-transform: uppercase; letter-spacing: -.03em;
  white-space: nowrap;
}
.marquee__track i { font-style: normal; font-size: .6em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Servizi ---------- */
.services { background: var(--ink); color: var(--cream); margin-top: -30px; padding-top: calc(var(--section-y) + 30px); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc {
  position: relative; overflow: hidden;
  padding: 40px 34px 38px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--ink-2);
  transition: transform .45s var(--ease), border-color .45s;
  isolation: isolate;
}
.svc::before {
  content: ""; position: absolute; z-index: -1;
  width: 380px; height: 380px; right: -160px; top: -160px; border-radius: 50%;
  background: radial-gradient(circle, var(--orange), transparent 65%);
  opacity: .0; transition: opacity .5s;
}
.svc:hover { transform: translateY(-8px); border-color: var(--orange); }
.svc:hover::before { opacity: .55; }
.svc__num {
  display: block; font-size: 72px; font-weight: 900; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--orange);
  margin-bottom: 36px;
}
.svc__title { font-size: 26px; font-weight: 800; margin-bottom: 16px; letter-spacing: -.02em; line-height: 1.1; }
.svc p { color: var(--muted-light); font-size: 16px; }
.svc__list { margin-top: 26px; border-top: 1px solid var(--line-light); }
.svc__list li {
  padding: 13px 0; border-bottom: 1px solid var(--line-light);
  font-size: 15px; font-weight: 600; display: flex; gap: 12px; align-items: center;
}
.svc__list li::before { content: "→"; color: var(--orange); font-weight: 800; }

/* ---------- Perché ---------- */
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why__card {
  border-radius: var(--radius);
  padding: clamp(34px, 5vw, 60px);
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
}
.why__card h3 { font-size: clamp(30px, 3.6vw, 48px); font-weight: 900; text-transform: uppercase; margin-bottom: 20px; }
.why__card p { font-size: 17px; max-width: 480px; font-weight: 500; }
.why__card--orange { background: var(--orange); }
.why__card--dark { background: var(--ink); color: var(--cream); }
.why__card--dark p { color: var(--muted-light); }
.why__card--orange::after, .why__card--dark::after {
  content: ""; position: absolute; top: 34px; right: 34px;
  width: 64px; height: 64px; border-radius: 50%;
}
.why__card--orange::after { background: var(--ink); }
.why__card--dark::after { background: radial-gradient(circle, var(--orange) 20%, var(--peach) 70%, transparent 72%); }

/* ---------- Metodo ---------- */
.method { background: var(--cream-2); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: s; border-top: 2px solid var(--ink); }
.step { padding: 34px 28px 10px 0; position: relative; }
.step + .step { padding-left: 28px; border-left: 1px solid var(--line); }
.step__n {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--ink); color: var(--cream);
  font-weight: 900; font-size: 20px;
  margin-bottom: 28px;
  transition: background .3s, color .3s, transform .4s var(--ease);
}
.step:hover .step__n { background: var(--orange); color: var(--ink); transform: scale(1.12) rotate(-8deg); }
.step h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; text-transform: uppercase; letter-spacing: -.02em; }
.step p { color: var(--muted); font-size: 16px; }

/* ---------- Per chi ---------- */
.who { background: var(--ink); color: var(--cream); overflow: hidden; }
.who__wrap { text-align: center; max-width: 1000px; margin: 0 auto; }
.who { padding: clamp(56px, 8vw, 96px) 0; }
.who__title { font-size: clamp(22px, 2.8vw, 36px); font-weight: 900; margin-bottom: 28px; letter-spacing: -.025em; }
.who .eyebrow { margin-bottom: 14px; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.chips li {
  padding: 9px 18px; border-radius: 999px;
  border: 1.5px solid var(--line-light);
  font-weight: 700; font-size: 14px;
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease);
}
.chips li:hover { background: var(--orange); color: var(--ink); border-color: var(--orange); transform: translateY(-3px) rotate(-2deg); }
.who__note { margin-top: 24px; color: var(--muted-light); font-weight: 600; font-size: 14px; }

/* ---------- Clienti ---------- */
.clients__list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.clients__list li { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.clients__list a {
  display: grid; grid-template-columns: 1fr auto; align-items: center; column-gap: 12px;
  padding: 26px 28px;
  text-decoration: none;
  transition: background .35s, color .35s;
}
.clients__name { min-width: 0; font-size: clamp(17px, 1.6vw, 21px); font-weight: 800; letter-spacing: -.02em; line-height: 1.2; }
.clients__handle { grid-column: 1; min-width: 0; overflow-wrap: anywhere; font-size: 13px; font-weight: 500; color: var(--muted); margin-top: 4px; transition: color .35s; }
.clients__arrow {
  grid-column: 2; grid-row: 1 / span 2;
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); font-size: 15px;
  transition: transform .4s var(--ease), background .35s, border-color .35s, color .35s;
}
.clients__list a:hover { background: var(--ink); color: var(--cream); }
.clients__list a:hover .clients__handle { color: var(--muted-light); }
.clients__list a:hover .clients__arrow { background: var(--orange); border-color: var(--orange); color: var(--ink); transform: rotate(45deg); }

/* ---------- Risultati ---------- */
.results { background: var(--ink); color: var(--cream); }
.results__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.insight {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  background: var(--ink-2); border: 1px solid var(--line-light);
}
.insight img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; object-position: top; }
.insight figcaption { padding: 20px 24px; color: var(--muted-light); font-size: 15px; }
.insight figcaption strong { display: block; color: var(--cream); font-size: 18px; }
.insight.is-missing { display: none; }
.results.is-empty { display: none; }

/* ---------- Recensioni ---------- */
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.review {
  margin: 0; padding: 40px; border-radius: var(--radius); background: #fff;
  border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--ink);
}
.review p { font-size: 20px; font-weight: 600; margin-bottom: 24px; }
.review footer { color: var(--muted); font-size: 15px; }
.review footer strong { display: block; color: var(--ink); }

/* ---------- Chi siamo ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about__text .section__title { margin-bottom: 32px; }
.about__text p + p { margin-top: 18px; }
.about__text p { font-size: 18px; color: var(--muted); }
.about__text strong { color: var(--ink); }
.about__people { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.person { margin: 0; }
.person--offset { margin-top: 70px; }
.person__photo {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden;
  background: radial-gradient(circle at 30% 35%, var(--orange), var(--peach) 55%, var(--cream-2) 80%);
}
.person__photo::before {
  content: attr(data-initials);
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: clamp(48px, 6vw, 80px); font-weight: 900; color: var(--ink); letter-spacing: -.05em;
}
.person__photo img { position: relative; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.person:hover .person__photo img { transform: scale(1.05); }
.person__photo.is-missing img { display: none; }
.person figcaption { margin-top: 16px; font-size: 15px; color: var(--muted); }
.person figcaption strong { display: block; color: var(--ink); font-size: 18px; font-weight: 800; }

/* ---------- CTA finale ---------- */
.cta {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--cream);
  padding: clamp(100px, 14vw, 180px) 0;
  text-align: center;
}
.cta__orb {
  position: absolute; left: 50%; top: 50%;
  width: min(120vw, 1100px); aspect-ratio: 1; translate: -50% -50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 107, 46, .55) 0%, rgba(247, 107, 46, .18) 40%, transparent 65%);
  animation: breathe 8s ease-in-out infinite;
}
.cta__inner { position: relative; }
.cta__title {
  font-size: clamp(38px, 11vw, 180px); font-weight: 900; text-transform: uppercase; letter-spacing: -.055em; line-height: .88;
  margin-bottom: 30px;
}
.cta__title em { color: var(--orange); }
.cta__lead { font-size: clamp(17px, 2vw, 22px); color: var(--muted-light); margin-bottom: 44px; }
.cta__phone { margin-top: 26px; font-weight: 700; letter-spacing: .08em; color: var(--muted-light); }

/* ---------- Footer ---------- */
.footer { background: var(--cream); padding: 70px 0 30px; }
.footer__inner { display: flex; justify-content: space-between; gap: 50px; flex-wrap: wrap; padding-bottom: 50px; border-bottom: 1px solid var(--line); }
.footer__logo { width: 220px; height: auto; }
.footer__cols { display: flex; gap: clamp(30px, 6vw, 80px); flex-wrap: wrap; }
.footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-bottom: 14px; font-weight: 700; }
.footer p { font-size: 15px; font-weight: 500; }
.footer p + p { margin-top: 6px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--orange-deep); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 13px; color: var(--muted); }

/* ---------- WhatsApp flottante ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .45);
  transition: transform .35s var(--ease), opacity .35s;
  opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none;
}
.wa-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
/* se Netlify mostra il suo badge in basso a destra, il pulsante sale sopra di esso */
body:has(#nl-badge-frame) .wa-float { bottom: 84px; }
.wa-float:hover { transform: scale(1.1); }
.wa-float .ico { width: 32px; height: 32px; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: ping 2.4s ease-out infinite;
}
@keyframes ping { from { transform: scale(1); opacity: .8; } to { transform: scale(1.6); opacity: 0; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Animazioni ---------- */

/* Barra di avanzamento della pagina */
.progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70; height: 3px;
  background: linear-gradient(90deg, var(--peach), var(--orange));
  transform: scaleX(var(--p, 0)); transform-origin: left;
}

/* Titoli: le parole entrano una alla volta */
.w {
  display: inline-block;
  opacity: 0; transform: translateY(.45em) rotate(3deg); filter: blur(8px);
  transition: opacity .8s var(--ease), transform .9s var(--ease), filter .8s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms + 100ms);
}
.is-in .w { opacity: 1; transform: none; filter: none; }

/* "Megafono": effetto timbro */
.hero__title.is-in .hl { animation: stamp .7s var(--ease) .45s backwards; }
@keyframes stamp {
  0% { transform: rotate(-12deg) scale(1.5); opacity: 0; }
  60% { transform: rotate(-1deg) scale(.95); opacity: 1; }
  100% { transform: rotate(-2deg) scale(1); }
}

/* Card servizi: inclinazione 3D + bagliore che segue il mouse */
.svc.is-in {
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0px));
  transition: transform .5s var(--ease), border-color .45s, opacity .9s var(--ease);
}
.svc:hover { --ty: -8px; }
.svc::before { right: auto; left: var(--gx, 100%); top: var(--gy, 0%); translate: -50% -50%; }

/* Metodo: la linea si disegna e i numeri rimbalzano */
.steps { border-top: 0; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.4s var(--ease);
}
.steps.is-in::before { transform: scaleX(1); }
.step.is-in .step__n { animation: pop .7s cubic-bezier(.34, 1.56, .64, 1) .25s backwards; }
@keyframes pop {
  from { opacity: 0; transform: scale(.3) rotate(-20deg); }
  to { opacity: 1; transform: none; }
}

/* Per chi lavoriamo: etichette una dopo l'altra */
.is-in .chips li { animation: pop .6s cubic-bezier(.34, 1.56, .64, 1) backwards; animation-delay: calc(var(--i, 0) * 80ms + 350ms); }

/* Foto: si svelano dal basso con un leggero zoom */
.person__photo { clip-path: inset(100% 0 0 0 round var(--radius)); transition: clip-path 1.2s var(--ease) .15s; }
.person.is-in .person__photo { clip-path: inset(0 0 0 0 round var(--radius)); }
.person__photo img { scale: 1.25; transition: scale 1.6s var(--ease), transform .6s var(--ease); }
.person.is-in .person__photo img { scale: 1; }

/* Pulsante WhatsApp finale: riflesso di luce */
.btn--xl { position: relative; overflow: hidden; isolation: isolate; }
.btn--xl::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 246, 236, .55) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: shine 4.5s ease-in-out 1.5s infinite;
}
@keyframes shine {
  0%, 60% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services__grid, .results__grid, .clients__list { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(3) { padding-left: 0; border-left: 0; }
  .step:nth-child(n+3) { border-top: 1px solid var(--line); }
}

@media (max-width: 860px) {
  .nav__cta { display: none; }
  .nav__burger {
    display: flex; flex-direction: column; justify-content: center; gap: 7px;
    margin-left: auto; width: 48px; height: 48px; border-radius: 50%;
    background: var(--ink); border: 0; cursor: pointer; position: relative; z-index: 2;
    align-items: center;
  }
  .nav__burger span { width: 20px; height: 2px; background: var(--cream); transition: transform .35s var(--ease); }
  .nav.is-open .nav__burger span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .nav.is-open .nav__burger span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .nav__links {
    position: fixed; inset: 0; margin: 0;
    flex-direction: column; justify-content: center; align-items: flex-start; gap: 10px;
    padding: 0 var(--gutter);
    background: var(--orange);
    clip-path: circle(0 at calc(100% - 44px) 40px);
    transition: clip-path .6s var(--ease);
  }
  .nav.is-open .nav__links { clip-path: circle(150% at calc(100% - 44px) 40px); }
  .nav__links a { font-size: clamp(36px, 10vw, 56px); font-weight: 900; text-transform: uppercase; letter-spacing: -.04em; }
  .nav__links a::after { display: none; }
  .nav__links-cta { display: inline; }
  .nav__logo { position: relative; z-index: 2; }
  .nav__logo img { height: 46px; }

  .hero__orb { width: 110vw; right: -45%; top: 38%; }
  .why__grid, .about__grid { grid-template-columns: 1fr; }
  .why__card { min-height: 300px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .services__grid, .results__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { padding: 28px 0 24px; border-left: 0; }
  .step + .step { border-top: 1px solid var(--line); }
  .hero { padding-top: 120px; }
  .hero__ctas, .hero__ctas .btn { width: 100%; }
  .person--offset { margin-top: 40px; }
  .svc { padding: 32px 26px; }
  .svc__num { font-size: 60px; margin-bottom: 24px; }
  .clients__list { grid-template-columns: 1fr; }
  .clients__list a { padding: 16px 18px; }
  .clients__arrow { width: 30px; height: 30px; font-size: 13px; }
  .btn--xl { width: 100%; padding: 0 20px; }
  .wa-float { width: 56px; height: 56px; right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .w { opacity: 1; transform: none; filter: none; }
  .person__photo { clip-path: none; }
  .person__photo img { scale: 1; }
  .steps::before { transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Link social nella CTA ---------- */
.cta__socials { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 32px; margin-top: 18px; }
.cta__social {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; text-decoration: none; white-space: nowrap;
  color: var(--cream); border-bottom: 2px solid var(--orange); padding-bottom: 4px;
  transition: color .3s;
}
.cta__social:hover { color: var(--orange); }
