  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ivory:     #F7F3EE;
    --ivory-mid: #EDE7DE;
    --copper:    #B87D5B;
    --copper-lt: #D4A882;
    --lavender:  #8385B4;
    --dark:      #3B3736;
    --dark-mid:  #5C5453;
    --white:     #FFFFFF;
    --serif: 'Playfair Display', Georgia, serif;
    --sans:  'Montserrat', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--ivory);
    color: var(--dark);
    font-weight: 400;
    line-height: 1.75;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 4rem;
    background: rgba(247,243,238,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184,125,91,0.15);
    transition: padding 0.3s;
  }
  nav .nav-logo svg { height: 48px; width: auto; display: block; }
  nav .nav-cta {
    font-family: var(--sans); font-weight: 500; font-size: .8rem;
    letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
    color: var(--white); background: var(--copper);
    padding: .6rem 1.6rem; border-radius: 0;
    transition: background .25s;
  }
  nav .nav-cta:hover { background: var(--dark); }

  /* ─── HERO ─── */
  .hero {
    height: 100vh;
    min-height: fit-content;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
  }
  .hero-visual {
    position: relative;
    overflow: hidden;
    background: var(--ivory-mid);
  }
  .hero-visual-inner {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 60% 40%, rgba(184,125,91,0.18) 0%, transparent 60%),
      radial-gradient(ellipse at 20% 80%, rgba(131,133,180,0.12) 0%, transparent 50%),
      linear-gradient(160deg, #EDE7DE 0%, #DDD3C6 100%);
  }
  /* Decorative botanical shapes */
  .hero-visual-inner::before {
    content: '';
    position: absolute; top: 10%; right: 8%;
    width: 38%; padding-bottom: 55%;
    border: 1px solid rgba(184,125,91,0.3);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(-12deg);
  }
  .hero-visual-inner::after {
    content: '';
    position: absolute; bottom: 15%; left: 12%;
    width: 26%; padding-bottom: 38%;
    border: 1px solid rgba(131,133,180,0.25);
    border-radius: 50%;
  }
  .hero-placeholder-label {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--dark-mid); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
    gap: .5rem;
  }
  .hero-placeholder-label span { font-size: 2.5rem; opacity: .3; }

  .hero-content {
    display: flex; flex-direction: column; justify-content: center;
    padding: 3.5rem 5rem 3.5rem 4.5rem;
    position: relative;
  }
  .hero-content::before {
    content: '';
    position: absolute; top: 12%; left: 0;
    width: 3px; height: 40%;
    background: linear-gradient(to bottom, transparent, var(--copper), transparent);
    opacity: .4;
  }
  .hero-eyebrow {
    font-family: var(--sans); font-weight: 400; font-size: .72rem;
    letter-spacing: .2em; text-transform: uppercase; color: var(--copper);
    margin-bottom: 1.4rem;
    display: flex; align-items: center; gap: .8rem;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 28px; height: 1px;
    background: var(--copper);
  }
  .hero-headline {
    font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 500; line-height: 1.25;
    color: var(--dark);
    margin-bottom: 1.6rem;
  }
  .hero-headline em { font-style: italic; color: var(--copper); }
  .hero-sub {
    font-size: 1rem; color: var(--dark-mid); line-height: 1.75;
    max-width: 420px; margin-bottom: 2.4rem;
  }
  @keyframes offer-shimmer {
    0%   { background-position: 0% 0%; }
    50%  { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
  }
  .hero-offer-box {
    background: linear-gradient(160deg, #8385b4 0%, #b8badc 45%, #e8eaf5 100%);
    background-size: 100% 250%;
    animation: offer-shimmer 6s ease infinite;
    border: none;
    padding: 1.5rem 1.8rem;
    margin-bottom: 2.4rem;
    max-width: 420px;
    box-shadow: 0 6px 32px rgba(131,133,180,.3);
    position: relative; overflow: hidden;
  }
  .hero-offer-box .offer-tag {
    display: inline-block;
    font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--white); background: var(--lavender);
    padding: .2rem .7rem; margin-bottom: .8rem;
  }
  .hero-offer-box .offer-main {
    font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
    color: var(--dark); margin-bottom: .35rem; line-height: 1.35;
  }
  .hero-offer-box .offer-note {
    font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
    color: var(--dark-mid); font-weight: 400;
  }
  .hero-offer-box .offer-spots {
    font-size: .8rem; color: var(--dark); margin-top: .75rem;
    display: flex; align-items: center; gap: .5rem;
    padding-top: .75rem; border-top: 1px solid rgba(131,133,180,.25);
    font-weight: 500;
  }
  .hero-offer-box .offer-spots::before {
    content: ''; display: block; width: 7px; height: 7px; flex-shrink: 0;
    background: var(--lavender); border-radius: 50%;
    animation: pulse 1.8s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.4); }
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: .7rem;
    font-family: var(--sans); font-weight: 500; font-size: .82rem;
    letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
    color: var(--white); background: var(--dark);
    padding: 1rem 2.4rem;
    transition: background .25s;
    align-self: flex-start;
  }
  .btn-primary svg { transition: transform .3s ease; }
  .btn-primary:hover { background: var(--copper); }
  .btn-primary:hover svg { transform: translateX(5px); }

  /* ─── STRIP ─── */
  .strip {
    background: var(--dark);
    display: flex; justify-content: center; align-items: center;
    gap: 3rem; padding: 1.2rem 4rem;
    flex-wrap: wrap;
  }
  .strip-item {
    font-family: var(--sans); font-size: .72rem; font-weight: 400;
    letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6);
    display: flex; align-items: center; gap: .6rem;
  }
  .strip-item .dot { width: 4px; height: 4px; background: var(--copper); border-radius: 50%; }

  /* ─── SECTION COMMON ─── */
  section { padding: 7rem 0; }
  .container { max-width: 1100px; margin: 0 auto; padding: 0 3rem; }

  .section-label {
    font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--copper); margin-bottom: .9rem;
  }
  .section-title {
    font-family: var(--serif); font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 500; line-height: 1.3; color: var(--dark);
    margin-bottom: 1.6rem;
  }
  .section-title em { font-style: italic; color: var(--lavender); }
  .divider {
    width: 40px; height: 2px;
    background: linear-gradient(to right, var(--copper), var(--lavender));
    margin-bottom: 1.8rem;
  }

  /* ─── S2 – DIFFERENZIAZIONE ─── */
  .s-diff {
    background: var(--white);
  }
  .s-diff .inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  }
  .s-diff .visual-block {
    position: relative;
    aspect-ratio: 4/5; background: var(--ivory-mid);
    overflow: hidden;
  }
  .s-diff .visual-block::before {
    content: ''; position: absolute; inset: 1.2rem;
    border: 1px solid rgba(184,125,91,0.25);
    pointer-events: none;
  }
  .video-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1rem; color: var(--dark-mid);
    background:
      radial-gradient(ellipse at 30% 70%, rgba(131,133,180,0.15) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 20%, rgba(184,125,91,0.12) 0%, transparent 50%);
  }
  .video-placeholder p { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }

  /* Wrapper cliccabile che copre tutta l'area video */
  .video-clickable {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1rem; cursor: pointer;
    z-index: 5;
    background: transparent;
    border: none;
    padding: 0;
  }
  /* Overlay scuro al hover sull'intera area */
  .video-clickable::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(30,26,25,.18);
    opacity: 0;
    transition: opacity .35s;
  }
  .video-clickable:hover::before { opacity: 1; }

  /* Play button unificato */
  .play-btn {
    position: relative; z-index: 2;
    width: 68px; height: 68px;
    border: 2px solid rgba(255,255,255,.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transform: scale(1);
    transition: transform .4s cubic-bezier(.34,1.56,.64,1), background .3s, border-color .3s;
    box-shadow: 0 4px 24px rgba(0,0,0,.2);
  }
  .video-clickable:hover .play-btn,
  .play-btn:hover {
    transform: scale(1.18);
    background: rgba(255,255,255,.28);
    border-color: var(--white);
  }
  .play-btn svg { margin-left: 4px; } /* ottico per centrare il triangolo */
  .video-label {
    position: relative; z-index: 2;
    font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
    color: rgba(255,255,255,.8);
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .3s, transform .3s;
  }
  .video-clickable:hover .video-label { opacity: 1; transform: translateY(0); }

  .benefit-list { list-style: none; margin: 1.8rem 0 2.4rem; }
  .benefit-list li {
    display: flex; align-items: flex-start; gap: .9rem;
    padding: .8rem 0; border-bottom: 1px solid rgba(59,55,54,.07);
    font-size: 1rem; color: var(--dark-mid);
  }
  .benefit-list li:last-child { border-bottom: none; }
  .benefit-list .icon {
    width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
    color: var(--copper);
  }
  .benefit-list strong { color: var(--dark); font-weight: 500; }

  /* ─── S3 – PER TE SE ─── */
  .s-foryou {
    background: var(--ivory);
  }
  .s-foryou .inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .s-foryou .content-side { order: 1; }
  .s-foryou .visual-side { order: 2; position: relative; }
  .s-foryou .img-frame {
    aspect-ratio: 3/4; background: var(--ivory-mid);
    position: relative;
  }

  .s-foryou .stat-badge {
    position: absolute; bottom: 2.5rem; left: -2rem;
    z-index: 10;
    display: flex; align-items: center; gap: 1rem;
    background: linear-gradient(135deg, var(--copper) 0%, var(--copper-lt) 100%);
    padding: 1rem 1.4rem 1rem 1rem;
    box-shadow: 0 8px 32px rgba(184,125,91,.4);
  }
  .s-foryou .stat-badge::before {
    content: '';
    display: block; flex-shrink: 0;
    width: 3px; height: 2.8rem;
    background: rgba(255,255,255,.35);
    border-radius: 2px;
  }
  .s-foryou .stat-badge .num {
    font-family: var(--serif); font-size: 2.2rem; font-weight: 500;
    line-height: 1; color: var(--white);
    letter-spacing: -.02em;
  }
  .s-foryou .stat-badge .lbl {
    font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
    color: rgba(255,255,255,.85); margin-top: .3rem; line-height: 1.4;
  }
  .s-foryou .stat-badge .badge-text { display: flex; flex-direction: column; }
  .check-list { list-style: none; margin: 1.6rem 0 2.4rem; }
  .check-list li {
    display: flex; align-items: flex-start; gap: .8rem;
    margin-bottom: .9rem; font-size: 1rem; color: var(--dark-mid);
  }
  .check-list .check-icon {
    width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--lavender);
  }

  /* ─── S4 – STEP PROCESSO ─── */
  .s-steps { background: var(--dark); }
  .s-steps .section-label { color: var(--copper-lt); }
  .s-steps .section-title { color: var(--white); }
  .steps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    margin-top: 3.5rem;
  }
  .step-card {
    background: rgba(255,255,255,.04);
    padding: 2.4rem 2rem;
    position: relative;
    transition: background .25s;
  }
  .step-card:hover { background: rgba(255,255,255,.07); }
  .step-num {
    font-family: var(--serif); font-size: 3.5rem; font-weight: 400;
    line-height: 1; color: rgba(184,125,91,.25);
    margin-bottom: 1.2rem;
  }
  .step-title {
    font-family: var(--serif); font-size: 1.1rem; color: var(--white);
    margin-bottom: .8rem;
  }
  .step-body { font-size: .95rem; color: rgba(255,255,255,.55); line-height: 1.7; }
  .step-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: linear-gradient(to right, var(--copper), transparent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s;
  }
  .step-card:hover::after { transform: scaleX(1); }

  /* ─── S5 – METODO / IRENE ─── */
  .s-method { background: var(--ivory-mid); }
  .s-method .inner {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center;
  }
  .quote-block {
    position: relative; padding: 2.4rem 2.4rem 2.4rem 3rem;
    background: var(--white); border-left: 3px solid var(--lavender);
    margin: 2rem 0;
  }
  .quote-block::before {
    content: '"';
    position: absolute; top: .6rem; left: 1.2rem;
    font-family: var(--serif); font-size: 4rem; line-height: 1;
    color: var(--lavender); opacity: .25;
  }
  .quote-text {
    font-family: 'Montserrat', sans-serif; font-style: italic; font-size: 1rem;
    line-height: 1.7; color: var(--dark-mid);
  }
  .quote-author {
    margin-top: .8rem; font-size: .8rem; letter-spacing: .1em;
    text-transform: uppercase; color: var(--copper);
  }
  .method-video {
    position: relative; aspect-ratio: 3/4; background: var(--ivory);
    overflow: hidden;
  }
  .method-video::before {
    content: ''; position: absolute;
    top: -1.5rem; left: -1.5rem;
    width: 60%; height: 60%;
    border: 1px solid var(--copper); opacity: .2; z-index: 0;
  }
  .method-values {
    display: flex; flex-direction: column; gap: .8rem; margin-top: 2rem;
  }
  .method-value {
    display: flex; align-items: center; gap: 1rem;
    font-size: .88rem; color: var(--dark-mid);
  }
  .method-value .mv-dot {
    width: 30px; height: 1px; background: var(--copper); flex-shrink: 0;
  }

  /* ─── S6 – FORM ─── */
  .s-form { background: var(--ivory); }
  .s-form .inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
  }
  .form-wrapper {
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 4px 40px rgba(59,55,54,.06);
  }
  .urgency-pill {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(184,125,91,.1); color: var(--copper);
    font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
    padding: .45rem 1rem; margin-bottom: 1.6rem;
  }
  .urgency-pill .pulse { width: 6px; height: 6px; background: var(--copper); border-radius: 50%; animation: pulse 1.8s infinite; }
  .form-title {
    font-family: var(--serif); font-size: 1.6rem; margin-bottom: .5rem; color: var(--dark);
  }
  .form-sub { font-size: .88rem; color: var(--dark-mid); margin-bottom: 2rem; }
  .form-grid { display: flex; flex-direction: column; gap: 1rem; }
  .form-field { display: flex; flex-direction: column; gap: .4rem; }
  .form-field label {
    font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--dark-mid); font-weight: 500;
  }
  .form-field input, .form-field textarea, .form-field select {
    font-family: var(--sans); font-size: .92rem; font-weight: 300;
    color: var(--dark); background: var(--ivory);
    border: 1px solid rgba(59,55,54,.15);
    padding: .85rem 1rem;
    outline: none; transition: border-color .2s;
    resize: none;
  }
  .form-field input:focus, .form-field textarea:focus, .form-field select:focus {
    border-color: var(--copper);
    background: var(--white);
  }
  .form-field input::placeholder, .form-field textarea::placeholder { color: rgba(59,55,54,.35); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .btn-submit {
    width: 100%; padding: 1.1rem;
    font-family: var(--sans); font-weight: 500; font-size: .85rem;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--white); background: var(--dark);
    border: none; cursor: pointer;
    transition: background .25s;
    margin-top: .5rem;
  }
  .btn-submit:hover { background: var(--copper); }
  .form-note {
    font-size: .72rem; color: var(--dark-mid); text-align: center;
    margin-top: .8rem; opacity: .6;
  }
  .form-required-note {
    font-size: .72rem; color: var(--dark-mid); margin-bottom: -.2rem;
  }
  .req-star { color: var(--copper); font-weight: 600; }
  .form-field-privacy { margin-top: .4rem; }
  .privacy-label {
    display: flex; align-items: flex-start; gap: .6rem;
    font-size: .82rem; color: var(--dark-mid); cursor: pointer; line-height: 1.5;
  }
  .privacy-label input[type="checkbox"] {
    width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
    accent-color: var(--copper); cursor: pointer;
    border: 1px solid rgba(59,55,54,.25); background: var(--ivory);
  }
  .privacy-label a { color: var(--copper); text-decoration: underline; }
  .privacy-label a:hover { color: var(--dark); }
  .form-content-side { padding-top: 1rem; }
  .highlights-list {
    list-style: none; margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.6rem;
  }
  .highlights-list li {
    display: flex; align-items: flex-start; gap: 1.2rem;
  }
  .hl-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--white); display: flex; align-items: center; justify-content: center;
    color: var(--copper);
  }
  .hl-text strong { display: block; font-weight: 500; font-size: .92rem; margin-bottom: .2rem; color: var(--dark); }
  .hl-text span { font-size: .85rem; color: var(--dark-mid); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark); color: rgba(255,255,255,.4);
    text-align: center; padding: 2.4rem;
    font-size: .75rem; letter-spacing: .06em;
  }
  footer strong { color: rgba(255,255,255,.7); }

  /* ─── ANIMATIONS ─── */
  .fade-up {
    opacity: 0; transform: translateY(28px);
    transition: opacity .7s, transform .7s;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up-d1 { transition-delay: .1s; }
  .fade-up-d2 { transition-delay: .2s; }
  .fade-up-d3 { transition-delay: .3s; }
  .fade-up-d4 { transition-delay: .4s; }

  /* ─── S7 – RECENSIONI ─── */
  .s-reviews { background: var(--ivory-mid); }
  .reviews-carousel-wrap { position: relative; margin-top: 3rem; }
  .reviews-track-outer { overflow: hidden; }
  .reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
  }
  .review-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    background: var(--white);
    padding: 1.8rem;
    display: flex; flex-direction: column; gap: 1rem;
    box-shadow: 0 2px 16px rgba(59,55,54,.05);
  }
  .review-card-header {
    display: flex; align-items: center; gap: .9rem;
  }
  .review-avatar {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--sans); font-weight: 600; font-size: .85rem;
    color: var(--white); letter-spacing: .02em;
    overflow: hidden;
  }
  .review-avatar img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .review-info { flex: 1; min-width: 0; }
  .review-name {
    font-size: .88rem; font-weight: 500; color: var(--dark);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .review-date { font-size: .72rem; color: var(--dark-mid); margin-top: .1rem; }
  .review-google-icon { flex-shrink: 0; }
  .review-stars { display: flex; gap: 2px; }
  .review-text {
    font-size: .875rem; color: var(--dark-mid); line-height: 1.7; flex: 1;
  }
  .review-more {
    background: none; border: none; padding: 0;
    color: var(--copper); cursor: pointer;
    font-family: var(--sans); font-size: .875rem;
    white-space: nowrap;
  }
  .review-more:hover { text-decoration: underline; }
  /* Carousel controls */
  .reviews-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 1.2rem; margin-top: 2.4rem;
  }
  .reviews-arrow {
    width: 42px; height: 42px; flex-shrink: 0;
    border: 1px solid rgba(59,55,54,.18);
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--dark-mid);
    transition: background .2s, border-color .2s, color .2s;
  }
  .reviews-arrow:hover:not(:disabled) {
    background: var(--copper); border-color: var(--copper); color: var(--white);
  }
  .reviews-arrow:disabled { opacity: .3; cursor: default; }
  .reviews-dots { display: flex; gap: .6rem; align-items: center; }
  .reviews-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(59,55,54,.2);
    cursor: pointer; border: none; padding: 0;
    transition: background .25s, transform .25s;
  }
  .reviews-dot.active { background: var(--copper); transform: scale(1.5); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 860px) {
    nav { padding: 1rem 1.5rem; }
    nav .nav-logo svg { height: 40px; }
    nav .nav-cta { padding: .5rem 1.0rem; }
    .hero { grid-template-columns: 1fr; min-height: fit-content; padding-top: 70px; }
    .hero-visual { height: 56vw; min-height: 280px; max-height: 420px; }
    .hero-content { padding: 3rem 1.5rem; }
    .s-diff .inner,
    .s-foryou .inner,
    .s-method .inner,
    .s-form .inner { grid-template-columns: 1fr; gap: 3rem; }
    .s-diff .visual-block { aspect-ratio: 4/3; }
    .s-foryou .img-frame  { aspect-ratio: 4/3; }
    .method-video         { aspect-ratio: 4/3; }
    .s-foryou .visual-side { order: -1; }
    .s-foryou .stat-badge { left: 1rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .container { padding: 0 1.5rem; }
    section { padding: 4.5rem 0; }
    .form-wrapper { padding: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .strip { gap: 1.5rem; padding: 1.8rem 1.5rem; justify-content: left; }
    .review-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
  }
  @media (max-width: 540px) {
    .review-card { flex: 0 0 100%; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .fade-up { opacity: 1; transform: none; }
  }

  :focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 3px;
  }
  :focus:not(:focus-visible) { outline: none; }

  .skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: var(--dark); color: var(--white);
    padding: .6rem 1.2rem; font-size: .85rem;
    z-index: 9999; text-decoration: none;
    transition: top .2s;
  }
  .skip-link:focus { top: 1rem; }

  .sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }

  /* ─── VIDEO MODAL ─── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(30,26,25,.85);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
  }
  .modal-overlay.open {
    opacity: 1; pointer-events: all;
  }
  .modal-box {
    position: relative;
    width: min(860px, 92vw);
    background: var(--dark);
    box-shadow: 0 24px 80px rgba(0,0,0,.6);
    transform: translateY(20px) scale(.97);
    transition: transform .35s ease, opacity .35s ease;
    opacity: 0;
  }
  .modal-overlay.open .modal-box {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  .modal-video-wrap {
    position: relative; width: 100%; padding-bottom: 56.25%; /* 16:9 */
    background: #000;
  }
  .modal-video-wrap iframe,
  .modal-video-wrap .modal-placeholder {
    position: absolute; inset: 0; width: 100%; height: 100%;
  }
  .modal-placeholder {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 1rem;
    background: linear-gradient(160deg, #2a2625, #1a1615);
    color: rgba(255,255,255,.4);
    font-family: var(--sans); font-size: .8rem;
    letter-spacing: .12em; text-transform: uppercase;
  }
  .modal-placeholder svg { opacity: .25; }
  .modal-caption {
    padding: 1rem 1.4rem;
    font-family: var(--sans); font-size: .8rem;
    color: rgba(255,255,255,.45); letter-spacing: .06em;
  }
  .modal-close {
    position: absolute; top: -2.4rem; right: 0;
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,.7); font-size: .75rem;
    font-family: var(--sans); letter-spacing: .1em; text-transform: uppercase;
    display: flex; align-items: center; gap: .4rem;
    padding: .3rem 0;
    transition: color .2s;
  }
  .modal-close:hover { color: var(--white); }
  .modal-close svg { width: 14px; height: 14px; }

  /* ── Hero: immagine reale ── */
  .hero-img-wrap {
    width: 100%; height: 100%;
    position: relative;
    overflow: hidden;
  }
  .hero-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
    transform: scale(1);
    transition: transform .7s cubic-bezier(.25,.46,.45,.94);
  }
  .hero-img-wrap:hover img {
    transform: scale(1.04);
  }
  /* Overlay sfumato sul hover */
  .hero-img-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(184,125,91,.12) 0%, rgba(131,133,180,.08) 100%);
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
  }
  .hero-img-wrap:hover::after { opacity: 1; }
