/* ============================================================================
 * Soul Contact — Landing "Promozione 12 Anni"
 * Adattato dal wireframe. TUTTE le regole sono scoped sotto .sc-landing per
 * non collidere con Enfold (header/footer usano .container, .section, .btn…).
 * Font: Montserrat (già caricato dal sito). Spectral/Hanken si aggiungono dopo
 * sostituendo le variabili --serif / --sans.
 * ========================================================================== */

.sc-landing {
  --cream: #e9ede6; --cream-2: #fcf9f2; --card: #ffffff;   /* base = bg salvia del sito; card bianche per stacco */
  --ink: #261f17; --ink-2: #574e42; --muted: #92897a;
  --band-dark: #2a241d;                                    /* banda scura (CTA finale + buybox): espresso caldo */
  --line: #e3d9c6; --line-strong: #d4c8b0;
  --terra: #bb5a37; --terra-deep: #9c4527; --terra-soft: #f3e2d6;
  --sage: #4e5b43; --sage-2: #647154; --sage-soft: #f1ece0; /* banda alternata: sabbia calda abbinata alla salvia */
  --ochre: #bb8a3e; --gold-soft: #f0e6cf;
  --maxw: 1180px; --radius: 16px; --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(38,31,23,0.04), 0 12px 32px -16px rgba(38,31,23,0.18);
  --shadow-soft: 0 1px 2px rgba(38,31,23,0.03), 0 8px 24px -18px rgba(38,31,23,0.16);
  /* Font del sito per ora; in futuro: 'Spectral' per --serif, 'Hanken Grotesk' per --sans */
  --serif: 'Montserrat', system-ui, sans-serif;
  --sans: 'Montserrat', system-ui, sans-serif;

  background: var(--cream); color: var(--ink); font-family: var(--sans);
  font-size: 18px; line-height: 1.62; -webkit-font-smoothing: antialiased;
}
.sc-landing * { box-sizing: border-box; }
.sc-landing img { max-width: 100%; display: block; }
.sc-landing a { color: inherit; text-decoration: none; }
.sc-landing h1, .sc-landing h2, .sc-landing h3, .sc-landing h4 { margin: 0; font-family: var(--serif); font-weight: 700; letter-spacing: -0.01em; }
.sc-landing p { margin: 0; }

.sc-landing .container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.sc-landing .section { padding: 92px 0; position: relative; }
.sc-landing .section--tight { padding: 60px 0; }
.sc-landing .section--sage { background: var(--sage-soft); }
.sc-landing .section--ink { background: var(--band-dark); color: var(--cream-2); }

/* Placeholder immagini/video — sostituire con <img>/<iframe> reali */
.sc-landing .img-ph {
  position: relative; overflow: hidden;
  background: var(--sage-soft); border: 1px dashed var(--line-strong);
  display: grid; place-items: center; text-align: center;
  color: var(--muted); font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  padding: 16px; border-radius: inherit; line-height: 1.4;
}
/* img in absolute: riempie il box e resta immune all'height:auto di Enfold */
.sc-landing .img-ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
/* con foto reale: niente bordo tratteggiato/sfondo da segnaposto */
.sc-landing .img-ph:has(img) { border: 0; background: none; }

/* Type */
.sc-landing .eyebrow { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra-deep); display: inline-flex; align-items: center; gap: 10px; }
.sc-landing .eyebrow::before { content: ''; width: 26px; height: 1.5px; background: var(--terra); display: inline-block; }
.sc-landing .eyebrow.center::after { content: ''; width: 26px; height: 1.5px; background: var(--terra); display: inline-block; }
.sc-landing .eyebrow.sage { color: var(--sage); }
.sc-landing .eyebrow.sage::before, .sc-landing .eyebrow.sage.center::after { background: var(--sage-2); }
.sc-landing .eyebrow.light { color: var(--gold-soft); }
.sc-landing .display { font-size: clamp(40px, 6vw, 70px); line-height: 1.02; letter-spacing: -0.02em; }
.sc-landing .h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.08; }
.sc-landing .h3 { font-size: clamp(21px, 2.4vw, 26px); line-height: 1.18; }
.sc-landing .lead { font-size: clamp(18px, 2.1vw, 21px); line-height: 1.6; color: var(--ink-2); max-width: 60ch; }
.sc-landing .body { color: var(--ink-2); max-width: 62ch; }
.sc-landing .section-head { max-width: 64ch; }
.sc-landing .section-head .h2 { margin: 14px 0 0; }
.sc-landing .section-head .lead { margin-top: 18px; }
.sc-landing .center { text-align: center; }
.sc-landing .center .eyebrow, .sc-landing .center.section-head { margin-left: auto; margin-right: auto; }
.sc-landing .center .lead { margin-left: auto; margin-right: auto; }

/* Buttons */
.sc-landing .btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--sans); font-weight: 600; font-size: 16px; padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer; transition: transform .14s ease, background .14s ease, color .14s ease; line-height: 1; white-space: nowrap; }
.sc-landing .btn:hover { transform: translateY(-1px); }
.sc-landing .btn .arrow { transition: transform .14s ease; }
.sc-landing .btn:hover .arrow { transform: translateX(3px); }
.sc-landing .btn--primary { background: var(--terra); color: #fff !important; box-shadow: 0 8px 20px -10px rgba(187,90,55,0.7); }
.sc-landing .btn--primary:hover { background: var(--terra-deep); color: #fff !important; }
.sc-landing .btn--dark { background: var(--ink); color: var(--cream-2) !important; }
.sc-landing .btn--dark:hover { background: #3a3128; }
.sc-landing .btn--outline { border-color: var(--line-strong); color: var(--ink) !important; background: transparent; }
.sc-landing .btn--outline:hover { border-color: var(--ink); background: rgba(38,31,23,0.03); }
.sc-landing .btn--ghost { color: var(--terra-deep) !important; padding-left: 4px; padding-right: 4px; }
.sc-landing .btn--ghost:hover { color: var(--terra) !important; }
.sc-landing .btn--light { background: var(--cream-2); color: var(--ink) !important; }
.sc-landing .btn--light:hover { background: #fff; }
.sc-landing .btn--sage { background: var(--sage); color: var(--cream-2) !important; }
.sc-landing .btn--sage:hover { background: var(--sage-2); }
.sc-landing .btn--lg { padding: 17px 30px; font-size: 17px; }
.sc-landing .btn--block { width: 100%; }
.sc-landing .btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.sc-landing .svg-ic { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* Anniversary seal */
.sc-landing .seal { position: relative; width: var(--seal, 116px); height: var(--seal, 116px); border-radius: 50%; display: grid; place-items: center; text-align: center; color: var(--terra-deep); background: var(--cream-2); border: 1.5px solid var(--terra); box-shadow: inset 0 0 0 4px var(--cream-2), inset 0 0 0 5.5px rgba(187,90,55,0.35); transform: rotate(-8deg); flex: none; }
.sc-landing .seal .num { font-family: var(--serif); font-weight: 700; font-size: calc(var(--seal,116px) * 0.36); line-height: 0.9; }
.sc-landing .seal .lab { font-family: var(--sans); font-size: calc(var(--seal,116px) * 0.092); font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 2px; }
.sc-landing .seal .yrs { font-family: var(--sans); font-size: calc(var(--seal,116px) * 0.082); letter-spacing: 0.14em; color: var(--terra); margin-top: 3px; }

/* Hero */
.sc-landing .hero { padding: 64px 0 84px; position: relative; overflow: hidden; }
.sc-landing .hero-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 56px; align-items: center; }
.sc-landing .hero-copy .display { margin: 18px 0 0; }
.sc-landing .hero-copy .display .accent { color: var(--terra-deep); font-style: italic; font-weight: 500; }
.sc-landing .hero-sub { font-family: var(--serif); font-size: clamp(20px, 2.6vw, 26px); font-weight: 500; font-style: italic; color: var(--sage); margin: 16px 0 0; }
.sc-landing .hero-copy .body { margin: 22px 0 0; font-size: 18px; }
.sc-landing .price-chips { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 4px; }
.sc-landing .price-chip { display: flex; flex-direction: column; gap: 2px; background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 18px; box-shadow: var(--shadow-soft); }
.sc-landing .price-chip .pc-label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.sc-landing .price-chip .pc-prices { display: flex; align-items: baseline; gap: 9px; }
.sc-landing .price-chip .pc-now { font-family: var(--serif); font-size: 25px; font-weight: 700; color: var(--terra-deep); }
.sc-landing .price-chip .pc-was { font-size: 15px; color: var(--muted); text-decoration: line-through; }
.sc-landing .hero .btn-row { margin-top: 30px; }
.sc-landing .hero-note { margin-top: 18px; font-size: 14.5px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.sc-landing .hero-visual { position: relative; }
.sc-landing .hero-visual .img-ph { width: 100%; height: 540px; border-radius: 18px; box-shadow: var(--shadow); }
.sc-landing .hero-seal-float { position: absolute; left: -34px; bottom: 34px; --seal: 132px; box-shadow: 0 16px 40px -18px rgba(38,31,23,0.45), inset 0 0 0 4px var(--cream-2), inset 0 0 0 5.5px rgba(187,90,55,0.35); }
.sc-landing .hero-bg-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.sc-landing .hero-bg-deco::before { content:''; position:absolute; top: -120px; right: -80px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(187,90,55,0.10), transparent 70%); }
.sc-landing .hero .container { position: relative; z-index: 1; }

/* Quick choice */
.sc-landing .choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 44px; }
.sc-landing .choice-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-soft); position: relative; overflow: hidden; transition: transform .16s ease, box-shadow .16s ease, border-color .16s; }
.sc-landing .choice-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.sc-landing .choice-card .idx { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--terra); letter-spacing: 0.1em; }
.sc-landing .choice-card .ct { margin: 14px 0 0; }
.sc-landing .choice-card .cd { margin: 12px 0 0; color: var(--ink-2); font-size: 16.5px; }
.sc-landing .choice-card .price-block { padding: 16px 0 0; border-top: 1px dashed var(--line-strong); margin-top: 22px; }
.sc-landing .choice-card .pb-now { font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--ink); }
.sc-landing .choice-card .pb-now .cur { font-size: 19px; }
.sc-landing .choice-card .pb-was { font-size: 15px; color: var(--muted); }
.sc-landing .choice-card .pb-meta { font-size: 14px; color: var(--muted); margin-top: 2px; }
.sc-landing .choice-card .btn { margin-top: 18px; }
.sc-landing .tag-feature { position: absolute; top: 16px; right: -34px; transform: rotate(38deg); background: var(--terra); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 40px; }
.sc-landing .choice-note { margin: 30px auto 0; text-align: center; color: var(--ink-2); font-size: 16.5px; max-width: 70ch; }
.sc-landing .choice-note b { color: var(--ink); }

/* Macro */
.sc-landing .macro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sc-landing .macro-tag { font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.sc-landing .macro h2 { margin: 14px 0 0; }
.sc-landing .macro .body { margin: 20px 0 0; }
.sc-landing .macro-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.sc-landing .macro-list li { display: grid; grid-template-columns: 22px 1fr; gap: 13px; align-items: start; font-size: 16.5px; color: var(--ink-2); }
.sc-landing .macro-list li .tick { width: 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: var(--sage-soft); display: grid; place-items: center; flex: none; }
.sc-landing .macro-list li .tick svg { width: 12px; height: 12px; stroke: var(--sage); fill: none; stroke-width: 2.2; }
.sc-landing .macro-list li b { color: var(--ink); font-weight: 600; }
.sc-landing .macro .btn-row { margin-top: 30px; }
.sc-landing .macro-visual { position: relative; min-width: 0; }
.sc-landing .course-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sc-landing .course-card { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-soft); }
.sc-landing .course-card .img-ph { width: 100%; height: 122px; border-radius: 0; }
.sc-landing .course-card .cc-body { padding: 14px 15px 16px; }
.sc-landing .course-card .cc-name { font-family: var(--serif); font-size: 18px; font-weight: 600; line-height: 1.2; }
.sc-landing .course-card .cc-meta { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

/* Soul Contact Massage */
.sc-landing .scm-video { position: relative; margin-top: 40px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.sc-landing .scm-video .img-ph { width: 100%; height: 520px; border-radius: 0; }
.sc-landing .video-embed { position: relative; aspect-ratio: 16 / 9; background: #000; }
.sc-landing .video-embed iframe, .sc-landing .video-embed embed, .sc-landing .video-embed object, .sc-landing .video-embed video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* Video self-hosted via [av_video] (Enfold): a filo nei contenitori arrotondati. */
.sc-landing .scm-video .avia-video, .sc-landing .testi-video .avia-video { margin: 0; width: 100%; }
/* Pillarbox: qualsiasi rapporto sorgente (4:3, 9:16…) sta nel box 16:9 senza
   tagli né distorsioni; le bande appaiono sul fondo nero del contenitore. */
.sc-landing .scm-video .avia-video video, .sc-landing .testi-video .avia-video video,
.sc-landing .video-embed video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #000; display: block; }

/* Blocco recensioni (widget Trustindex) */
.sc-landing .scp-reviews { margin-top: 44px; }
.sc-landing .scm-play { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.sc-landing .scm-play .play-btn { width: 84px; height: 84px; border-radius: 50%; background: rgba(252,249,242,0.94); display: grid; place-items: center; box-shadow: 0 12px 30px -10px rgba(0,0,0,0.45); }
.sc-landing .scm-play .play-btn svg { width: 30px; height: 30px; margin-left: 5px; fill: var(--terra-deep); }
.sc-landing .scm-play .play-cap { position: absolute; bottom: 22px; left: 24px; color: #fff; font-weight: 600; font-size: 15px; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.sc-landing .scm-cols { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; margin-top: 52px; align-items: start; }
.sc-landing .scm-features { display: grid; gap: 22px; }
.sc-landing .scm-feature { display: grid; grid-template-columns: 44px 1fr; gap: 16px; }
.sc-landing .scm-feature .fi { width: 44px; height: 44px; border-radius: 12px; background: var(--cream-2); display: grid; place-items: center; flex: none; }
.sc-landing .scm-feature .fi svg { width: 21px; height: 21px; stroke: var(--sage); fill: none; stroke-width: 1.7; }
.sc-landing .scm-feature h4 { font-size: 18px; }
.sc-landing .scm-feature p { color: var(--ink-2); font-size: 16px; margin-top: 4px; }
.sc-landing .scm-buybox { background: var(--band-dark); color: var(--cream-2); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); position: sticky; top: 24px; }
.sc-landing .scm-buybox .bb-label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); }
.sc-landing .scm-buybox .bb-prices { display: flex; align-items: baseline; gap: 12px; margin: 12px 0 4px; }
.sc-landing .scm-buybox .bb-now { font-family: var(--serif); font-size: 46px; font-weight: 700; }
.sc-landing .scm-buybox .bb-was { font-size: 18px; text-decoration: line-through; color: rgba(252,249,242,0.55); }
.sc-landing .scm-buybox .bb-save { display: inline-block; margin-top: 4px; background: var(--terra); color: #fff; font-size: 13px; font-weight: 700; padding: 4px 11px; border-radius: 999px; }
.sc-landing .scm-buybox ul { list-style: none; padding: 18px 0; margin: 18px 0; border-top: 1px solid rgba(252,249,242,0.16); border-bottom: 1px solid rgba(252,249,242,0.16); display: grid; gap: 11px; }
.sc-landing .scm-buybox ul li { display: flex; gap: 11px; align-items: start; font-size: 15.5px; color: rgba(252,249,242,0.85); }
.sc-landing .scm-buybox ul li svg { width: 16px; height: 16px; stroke: var(--ochre); fill: none; stroke-width: 2; flex: none; margin-top: 3px; }
.sc-landing .scm-testi { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 16px; }

/* Percorsi / Diplomi (lista a righe) */
.sc-landing .dipl-list { margin-top: 40px; border-top: 1px solid var(--line); }
.sc-landing .dipl-row { display: grid; grid-template-columns: 56px 1fr auto auto; gap: 24px; align-items: center; padding: 22px 8px; border-bottom: 1px solid var(--line); transition: background .14s; }
.sc-landing .dipl-row:hover { background: var(--cream-2); }
.sc-landing .dipl-row .dr-n { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--terra); }
.sc-landing .dipl-row .dr-name { font-family: var(--serif); font-size: clamp(19px, 2vw, 23px); font-weight: 600; display: block; }
.sc-landing .dipl-row .dr-desc { font-size: 15.5px; color: var(--ink-2); margin-top: 3px; max-width: 56ch; display: block; }
.sc-landing .dipl-row .dr-price { font-size: 14px; color: var(--terra-deep); font-weight: 600; margin-top: 4px; display: block; }
.sc-landing .dipl-row .dr-price s { color: var(--muted); font-weight: 400; }
/* Blocco prezzo promo vs pieno (scp_price_block) */
.sc-landing .scp-price { display: inline-flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.sc-landing .scp-price__was { color: var(--muted); text-decoration: line-through; font-weight: 400; }
.sc-landing .scp-price__now { color: var(--terra-deep); font-weight: 700; }
.sc-landing .dipl-row .dr-hours { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--ink); white-space: nowrap; text-align: right; }
.sc-landing .dipl-row .dr-hours small { display: block; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.sc-landing .dipl-row .dr-go { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; transition: all .14s; }
.sc-landing .dipl-row:hover .dr-go { border-color: var(--terra); background: var(--terra); }
.sc-landing .dipl-row:hover .dr-go svg { stroke: #fff; }
.sc-landing .dipl-row .dr-go svg { width: 16px; height: 16px; stroke: var(--ink); fill: none; stroke-width: 1.7; transition: stroke .14s; }
.sc-landing .dipl-cta { margin-top: 36px; }

/* Sedi / why */
.sc-landing .sedi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.sc-landing .sede-card { display: block; background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .16s ease, box-shadow .16s ease, border-color .16s; }
.sc-landing a.sede-card.is-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.sc-landing .sede-card .img-ph { width: 100%; height: 168px; border-radius: 0; }
.sc-landing .sede-card .sc-body { padding: 20px 22px 22px; }
.sc-landing .sede-card .sc-city { font-family: var(--serif); font-size: 23px; font-weight: 600; display: flex; align-items: center; gap: 9px; }
.sc-landing .sede-card .sc-city svg { width: 18px; height: 18px; stroke: var(--terra); fill: none; stroke-width: 1.7; }
.sc-landing .sede-card .sc-note { color: var(--ink-2); font-size: 15.5px; margin-top: 6px; }
.sc-landing .why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px 40px; margin-top: 40px; }
.sc-landing .why-item { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 8px 0; }
.sc-landing .why-item .wi { width: 48px; height: 48px; border-radius: 13px; background: var(--cream-2); border: 1px solid var(--line); display: grid; place-items: center; flex: none; }
.sc-landing .why-item .wi svg { width: 23px; height: 23px; stroke: var(--terra-deep); fill: none; stroke-width: 1.7; }
.sc-landing .why-item h4 { font-size: 19px; }
.sc-landing .why-item p { color: var(--ink-2); font-size: 16px; margin-top: 5px; }

/* Testimonials */
.sc-landing .testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 44px; }
.sc-landing .testi-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.sc-landing .testi-video { position: relative; }
.sc-landing .testi-video .img-ph { width: 100%; height: 220px; border-radius: 0; }
.sc-landing .testi-video .mini-play { position: absolute; left: 16px; bottom: 16px; width: 46px; height: 46px; border-radius: 50%; background: rgba(252,249,242,0.94); display: grid; place-items: center; box-shadow: 0 8px 18px -8px rgba(0,0,0,0.5); }
.sc-landing .testi-video .mini-play svg { width: 17px; height: 17px; fill: var(--terra-deep); margin-left: 3px; }
.sc-landing .testi-card .tc-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.sc-landing .testi-card .tag-mini { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); }
.sc-landing .testi-card .tc-quote { font-family: var(--serif); font-size: 18.5px; font-style: italic; line-height: 1.45; margin: 10px 0 0; color: var(--ink); }
.sc-landing .testi-card .tc-who { margin-top: 16px; font-size: 14.5px; color: var(--muted); }
.sc-landing .testi-card .tc-who b { color: var(--ink); font-weight: 600; font-style: normal; }

/* FAQ — <details> accordion, no JS */
.sc-landing .faq-wrap { max-width: 860px; margin: 44px auto 0; }
.sc-landing .faq { border-top: 1px solid var(--line); }
.sc-landing .faq-item { border-bottom: 1px solid var(--line); }
.sc-landing .faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 20px; padding: 24px 4px; font-family: var(--serif); font-size: clamp(18px, 2.1vw, 21px); font-weight: 600; color: var(--ink); }
.sc-landing .faq-item summary::-webkit-details-marker { display: none; }
.sc-landing .faq-item summary .q-icon { margin-left: auto; width: 26px; height: 26px; flex: none; position: relative; }
.sc-landing .faq-item summary .q-icon::before, .sc-landing .faq-item summary .q-icon::after { content:''; position: absolute; background: var(--terra); border-radius: 2px; transition: transform .22s ease, opacity .2s; }
.sc-landing .faq-item summary .q-icon::before { left: 50%; top: 4px; width: 2px; height: 18px; transform: translateX(-50%); }
.sc-landing .faq-item summary .q-icon::after { top: 50%; left: 4px; height: 2px; width: 18px; transform: translateY(-50%); }
.sc-landing .faq-item[open] summary .q-icon::before { transform: translateX(-50%) scaleY(0); opacity: 0; }
.sc-landing .faq-a-inner { padding: 0 4px 24px; color: var(--ink-2); font-size: 17px; max-width: 70ch; }
.sc-landing .faq-a-inner p { margin: 0 0 12px; }
.sc-landing .faq-a-inner > :last-child { margin-bottom: 0; }
.sc-landing .faq-a-inner ul, .sc-landing .faq-a-inner ol { margin: 0 0 12px; padding-left: 1.25em; }
.sc-landing .faq-a-inner li { margin: 4px 0; }
.sc-landing .faq-a-inner a { color: var(--terra-deep); text-decoration: underline; }
.sc-landing .faq-a-inner a:hover { color: var(--terra); }

/* Final CTA */
.sc-landing .final-cta { text-align: center; }
.sc-landing .final-cta .display { margin: 18px auto 0; max-width: 18ch; }
.sc-landing .final-cta .display .accent { color: var(--ochre); font-style: italic; }
.sc-landing .final-cta .lead { margin: 22px auto 0; color: rgba(252,249,242,0.82); }
.sc-landing .final-cta .btn-row { justify-content: center; margin-top: 36px; }
.sc-landing .final-deadline { margin-top: 26px; display: inline-flex; align-items: center; gap: 10px; font-size: 15px; color: var(--gold-soft); border: 1px solid rgba(240,230,207,0.3); border-radius: 999px; padding: 9px 18px; }

/* Responsive */
@media (max-width: 980px) {
  .sc-landing .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .sc-landing .hero-visual .img-ph { height: 380px; }
  .sc-landing .hero-seal-float { --seal: 104px; left: auto; right: 18px; bottom: 18px; }
  .sc-landing .macro { grid-template-columns: 1fr; gap: 34px; }
  .sc-landing .scm-cols { grid-template-columns: 1fr; gap: 32px; }
  .sc-landing .scm-buybox { position: static; }
  .sc-landing .choice-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .sc-landing { font-size: 17px; }
  .sc-landing .section { padding: 64px 0; }
  .sc-landing .container { padding: 0 20px; }
  .sc-landing .price-chip { flex: 1 1 calc(50% - 7px); min-width: 0; }
  .sc-landing .price-chip .pc-now, .sc-landing .price-chip .pc-was { white-space: nowrap; }
  /* Sedi e "perché": impilate (per non nasconderle) */
  .sc-landing .sedi-grid, .sc-landing .why-grid { grid-template-columns: 1fr; }
  /* Corsi 16h e testimonianze: slider orizzontale (scroll-snap, no JS) */
  .sc-landing .course-cards, .sc-landing .testi-grid, .sc-landing .scm-testi {
    display: flex; grid-template-columns: none; gap: 14px;
    overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0; padding: 6px 0 18px; min-width: 0;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .sc-landing .course-cards::-webkit-scrollbar,
  .sc-landing .testi-grid::-webkit-scrollbar,
  .sc-landing .scm-testi::-webkit-scrollbar { display: none; }
  .sc-landing .course-cards > *, .sc-landing .testi-grid > *, .sc-landing .scm-testi > * {
    flex: 0 0 82%; scroll-snap-align: start;
  }
  .sc-landing .dipl-row { grid-template-columns: 40px auto 1fr; gap: 10px 14px; align-items: start; }
  .sc-landing .dipl-row .dr-n { grid-column: 1; grid-row: 1; }
  .sc-landing .dipl-row > span:nth-of-type(2) { grid-column: 2 / -1; grid-row: 1; }
  .sc-landing .dipl-row .dr-hours { grid-column: 2; grid-row: 2; text-align: left; align-self: center; }
  .sc-landing .dipl-row .dr-go { display: grid; grid-column: 4; grid-row: 2; justify-self: start; align-self: center; width: 36px; height: 36px; border-color: var(--terra); }
  .sc-landing .dipl-row .dr-go svg { stroke: var(--terra-deep); }
  .sc-landing .btn-row .btn { flex: 1 1 100%; }
  .sc-landing .btn { white-space: normal; }
  .sc-landing .hero-seal-float { --seal: 88px; }
}
