/* ============================================================
   IL METODO ARGO — Landing premium
   Estende il design system di argo.css (palette e font invariati).
   Solo stili di pagina e componenti nuovi. Nessun override dei
   valori del brand.
   ============================================================ */

/* ---------- Micro-animazioni: scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1),
              transform .7s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Icone minimali (stroke) ---------- */
.ic {
  width: 22px; height: 22px;
  stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
  fill: none; flex: none;
}
.ic--sm { width: 18px; height: 18px; }

/* ---------- Barra promo (annuncio in alto) ---------- */
.promo-bar {
  background: var(--bosco);
  color: var(--paper);
  font-size: .86rem;
  letter-spacing: .01em;
}
.promo-bar__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 9px 24px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap; text-align: center;
}
.promo-bar strong { color: var(--amber); }
.promo-bar .promo-code {
  font-family: var(--sans); font-weight: 700; letter-spacing: .08em;
  background: rgba(247, 242, 232, .12);
  border: 1px solid rgba(247, 242, 232, .25);
  border-radius: 8px; padding: 2px 10px; color: var(--paper);
}
.promo-bar__count { font-variant-numeric: tabular-nums; opacity: .9; }
@media (max-width: 600px) { .promo-bar { font-size: .78rem; } }

/* ---------- Trust bar (sotto la CTA hero) ---------- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 22px;
  margin-top: 30px; max-width: 620px;
}
.trust-bar__item {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 600; color: var(--ink);
}
.trust-bar__item .ic { color: var(--salvia); }
@media (max-width: 620px) { .trust-bar { grid-template-columns: 1fr 1fr; } }

/* ---------- Striscia badge di fiducia ---------- */
.trust-strip { background: var(--paper2); border-block: 1px solid var(--line); }
.trust-strip__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 18px 24px;
  display: flex; flex-wrap: wrap; gap: 12px 26px;
  align-items: center; justify-content: center;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; color: var(--muted);
  white-space: nowrap;
}
.trust-pill .ic { color: var(--salvia); width: 18px; height: 18px; }

/* ---------- Placeholder immagini premium ---------- */
.ph {
  position: relative; display: block; width: 100%;
  border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(150deg, var(--salvia-t), var(--paper2));
  border: 1px solid var(--line);
}
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph--4x5 { aspect-ratio: 4 / 5; }
.ph--1x1 { aspect-ratio: 1 / 1; }
.ph--16x9 { aspect-ratio: 16 / 9; }
.ph--3x2 { aspect-ratio: 3 / 2; }
.ph__tag {
  position: absolute; left: 12px; bottom: 12px;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  background: rgba(33, 29, 23, .55); color: var(--paper);
  padding: 4px 10px; border-radius: 99px; backdrop-filter: blur(4px);
}

/* ---------- Sezione video ---------- */
.video-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 22px; margin-top: 44px; }
@media (max-width: 860px) { .video-grid { grid-template-columns: 1fr; } }
.video-col-side { display: grid; gap: 22px; grid-auto-rows: 1fr; }

.video-ph {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background: linear-gradient(150deg, var(--bosco), var(--salvia));
  border: 1px solid var(--line);
}
.video-ph--tall { aspect-ratio: 3 / 4; }
.video-ph img,
.video-ph video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-ph__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; color: var(--paper); text-align: center;
  background: linear-gradient(0deg, rgba(33, 29, 23, .5), rgba(33, 29, 23, .15));
}
.video-ph__play {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(247, 242, 232, .95); color: var(--bosco);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .6);
  transition: transform .2s ease, background .2s ease;
}
.video-ph__play svg { width: 24px; height: 24px; margin-left: 3px; fill: currentColor; stroke: none; }
.video-ph:hover .video-ph__play { transform: scale(1.08); background: var(--amber); }
.video-ph__label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; }
.video-ph__ring {
  position: absolute; width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid rgba(247, 242, 232, .6); animation: vpulse 2.6s ease-out infinite;
}
@keyframes vpulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.9); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .video-ph__ring { animation: none; } }

/* ---------- Sezione "Cosa ricevi" ---------- */
.ricevi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px;
}
@media (max-width: 860px) { .ricevi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ricevi-grid { grid-template-columns: 1fr; } }
.ricevi-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ricevi-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--salvia); }
.ricevi-item__ic {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--salvia-t); color: var(--bosco);
  display: grid; place-items: center;
}
.ricevi-item h3 { font-size: 1.08rem; margin-bottom: 4px; }
.ricevi-item p { font-size: .92rem; color: var(--muted); line-height: 1.55; }

/* ---------- Timeline "Come funziona" ---------- */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 48px; }
@media (max-width: 780px) { .timeline { grid-template-columns: 1fr; } }
.tl-step { position: relative; padding: 0 26px; text-align: center; }
.tl-step__num {
  width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--salvia); color: var(--salvia);
  display: grid; place-items: center; font-family: var(--serif);
  font-weight: 700; font-size: 1.4rem; position: relative; z-index: 2;
}
.tl-step__eyebrow {
  font-size: .74rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--amber-d); margin-bottom: 8px; display: block;
}
.tl-step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.tl-step p { color: var(--muted); font-size: .95rem; max-width: 300px; margin-inline: auto; }
/* linea di collegamento */
.tl-step:not(:last-child)::after {
  content: ""; position: absolute; top: 30px; left: calc(50% + 34px); right: calc(-50% + 34px);
  height: 2px; background: linear-gradient(90deg, var(--salvia), var(--line)); z-index: 1;
}
@media (max-width: 780px) {
  .tl-step { padding: 0 0 40px; }
  .tl-step:not(:last-child)::after {
    top: 60px; bottom: 0; left: 50%; right: auto; width: 2px; height: auto;
    transform: translateX(-1px);
    background: linear-gradient(180deg, var(--salvia), var(--line));
  }
}

/* ---------- Sezione storytelling "Perché nasce" ---------- */
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; margin-top: 40px; }
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; gap: 32px; } }
.story-grid p { color: var(--muted); font-size: 1.05rem; margin-bottom: 16px; }
.story-grid p:last-child { margin-bottom: 0; }
.story-grid .signature {
  font-family: var(--serif); font-style: italic; font-size: 1.15rem;
  color: var(--bosco); margin-top: 8px;
}

/* ---------- Sezione "Immagina il risultato" ---------- */
.immagina-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
@media (max-width: 860px) { .immagina-grid { grid-template-columns: 1fr 1fr; } }
.immagina-cap { display: flex; flex-direction: column; gap: 10px; }
.immagina-cap span { font-size: .9rem; font-weight: 600; color: var(--ink); }

/* ---------- Testimonianze (carosello) ---------- */
.tst { margin-top: 44px; position: relative; }
.tst__viewport { overflow: hidden; }
.tst__track {
  display: flex; gap: 22px;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.tst-card {
  flex: 0 0 calc((100% - 44px) / 3);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 26px 24px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow);
}
@media (max-width: 860px) { .tst-card { flex-basis: calc((100% - 22px) / 2); } }
@media (max-width: 560px) { .tst-card { flex-basis: 100%; } }
.tst-stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; }
.tst-card p { font-size: .96rem; line-height: 1.62; color: var(--ink); }
.tst-card__foot { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 6px; }
.tst-avatar {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--salvia); color: var(--paper);
  display: grid; place-items: center; font-weight: 700; font-size: 1.05rem;
  overflow: hidden; font-family: var(--serif);
}
.tst-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tst-who strong { display: block; font-size: .95rem; }
.tst-who span { font-size: .82rem; color: var(--muted); }
.tst-verified { display: inline-flex; align-items: center; gap: 4px; font-size: .74rem; color: var(--salvia); font-weight: 600; }
.tst-verified .ic { width: 14px; height: 14px; }

.tst__nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 26px; }
.tst__arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--line); background: #fff; color: var(--bosco);
  display: grid; place-items: center; cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.tst__arrow:hover { border-color: var(--salvia); background: var(--salvia-t); }
.tst__arrow:active { transform: scale(.94); }
.tst__dots { display: flex; gap: 8px; }
.tst__dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none;
  background: var(--line); cursor: pointer; padding: 0; transition: background .2s, width .2s;
}
.tst__dots button.on { background: var(--salvia); width: 22px; border-radius: 99px; }

/* ---------- Offerta / prezzo premium ---------- */
.offer-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); background: var(--amber);
  border-radius: 99px; padding: 6px 14px; margin-bottom: 18px;
}
.pricing-card { position: relative; }
.pricing-card .price-row {
  display: flex; align-items: baseline; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.pricing-card .price-old {
  font-family: var(--serif); font-size: 1.7rem; color: var(--muted);
  text-decoration: line-through; text-decoration-color: var(--terra); text-decoration-thickness: 2px;
}
.pricing-card .price-save {
  display: inline-block; font-size: .82rem; font-weight: 700;
  color: var(--bosco); background: var(--salvia-t);
  border-radius: 99px; padding: 5px 12px;
}
.pricing-card .price-note { margin-top: 6px; font-size: .9rem; color: var(--muted); }
.pricing-card .price-final {
  margin-top: 10px; font-size: .95rem; color: var(--salvia); font-weight: 700;
}
.pricing-card .price-final s { color: var(--muted); font-weight: 400; }

/* ---------- Riquadro codice sconto dinamico ---------- */
.discount-box {
  max-width: 560px; margin: 26px auto 0;
  background: linear-gradient(160deg, #fff, var(--paper2));
  border: 1.5px dashed var(--amber);
  border-radius: var(--radius); padding: 22px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: space-between;
}
.discount-box__left { display: flex; align-items: center; gap: 16px; }
.discount-box__gift {
  flex: none; width: 52px; height: 52px; border-radius: 14px;
  background: var(--amber); color: var(--ink); display: grid; place-items: center;
}
.discount-box__gift .ic { width: 26px; height: 26px; }
.discount-box__txt strong { display: block; font-size: 1rem; color: var(--ink); }
.discount-box__txt small { color: var(--muted); font-size: .86rem; }
.discount-box__right { display: flex; align-items: center; gap: 12px; }
.discount-code {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 800; letter-spacing: .1em; font-size: 1.1rem;
  color: var(--bosco); background: #fff; border: 1.5px solid var(--line);
  border-radius: 10px; padding: 10px 16px;
}
.copy-btn {
  border: none; background: var(--bosco); color: var(--paper);
  border-radius: 10px; padding: 11px 16px; font: inherit; font-weight: 700; font-size: .88rem;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: background .15s ease, transform .15s ease;
}
.copy-btn:hover { background: var(--salvia); }
.copy-btn:active { transform: scale(.96); }
.copy-btn.copied { background: var(--salvia); }
.discount-count {
  width: 100%; text-align: center; margin-top: 4px;
  font-size: .84rem; color: var(--muted);
}
.discount-count b { color: var(--terra); font-variant-numeric: tabular-nums; letter-spacing: .02em; }
@media (max-width: 520px) {
  .discount-box { flex-direction: column; align-items: stretch; text-align: center; }
  .discount-box__left { flex-direction: column; text-align: center; }
  .discount-box__right { justify-content: center; }
}

/* ---------- Checkout reassurance (vicino alla CTA finale) ---------- */
.reassure {
  display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: center;
  max-width: 620px; margin: 22px auto 0;
}
.reassure li {
  list-style: none; display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 600;
}
.section--bosco .reassure li { color: rgba(247, 242, 232, .9); }
.reassure .ic { color: var(--amber); width: 18px; height: 18px; }

/* ---------- Sezione Garanzia dedicata ---------- */
.guarantee {
  display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center;
  max-width: 820px; margin: 40px auto 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 40px 44px; box-shadow: var(--shadow);
}
@media (max-width: 640px) { .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
.guarantee__seal {
  width: 132px; height: 132px; border-radius: 50%;
  border: 3px solid var(--amber); color: var(--amber-d);
  display: grid; place-items: center; text-align: center; flex: none;
  background: radial-gradient(circle at 50% 35%, #fff, var(--paper));
  position: relative;
}
.guarantee__seal::after {
  content: ""; position: absolute; inset: 8px; border-radius: 50%;
  border: 1px dashed var(--amber);
}
.guarantee__seal b { font-family: var(--serif); font-size: 2rem; line-height: 1; display: block; }
.guarantee__seal span { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.guarantee h3 { font-size: 1.5rem; margin-bottom: 10px; }
.guarantee p { color: var(--muted); }

/* ---------- FAQ: due colonne su desktop ---------- */
@media (min-width: 861px) {
  .faq--cols { max-width: 920px; column-gap: 40px; }
}

/* ---------- Header: bottone menu mobile ---------- */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--bosco); padding: 6px;
}
.nav-toggle .ic { width: 26px; height: 26px; }
@media (max-width: 720px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    position: fixed; inset: 0 0 auto; top: 0;
    background: var(--paper); flex-direction: column; align-items: stretch;
    gap: 4px; padding: 84px 24px 28px; transform: translateY(-100%);
    transition: transform .3s cubic-bezier(.22, 1, .36, 1);
    box-shadow: var(--shadow); border-bottom: 1px solid var(--line); z-index: 40;
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a:not(.btn) {
    display: block; padding: 14px 8px; font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }
  .site-nav .btn { margin-top: 12px; }
}

/* ---------- Footer esteso ---------- */
.footer-main { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
@media (max-width: 780px) { .footer-main { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .footer-main { grid-template-columns: 1fr; } }
.footer-main h4 {
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--paper);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: grid; gap: 9px; }
.footer-col a { color: rgba(247, 242, 232, .78); text-decoration: none; font-size: .92rem; }
.footer-col a:hover { color: var(--paper); text-decoration: underline; }
.footer-brand p { margin-top: 10px; max-width: 320px; font-size: .88rem; line-height: 1.6; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 16px; }
.footer-badges span { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; color: rgba(247, 242, 232, .7); }
.footer-badges .ic { width: 16px; height: 16px; color: var(--amber); }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(247, 242, 232, .15);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .82rem; color: rgba(247, 242, 232, .6);
}

/* ---------- Sticky CTA mobile ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  background: rgba(247, 242, 232, .96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line); padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  transform: translateY(120%); transition: transform .3s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta__price { font-size: .84rem; line-height: 1.2; }
.sticky-cta__price s { color: var(--muted); }
.sticky-cta__price strong { display: block; font-size: 1.15rem; font-family: var(--serif); color: var(--bosco); }
.sticky-cta .btn { padding: 13px 22px; font-size: .92rem; white-space: nowrap; }
@media (max-width: 720px) { .sticky-cta { display: flex; } }

/* ---------- Rifiniture responsive generali ---------- */
@media (max-width: 560px) {
  .section { padding: 68px 0; }
  .btn { padding: 15px 26px; }
  .hero { padding: 40px 0 64px !important; }
  .pricing-card { padding: 32px 24px !important; }
}
