/* =========================================
   WEDDING SMART PLANNER - PAGINA LAVORA CON NOI
   Landing page per acquisizione Wedding Planner
   ========================================= */

/* ===== DESIGN TOKENS ===== */
:root {
    --primary: #e6005c;
    --primary-dark: #c9004f;
    --pink-soft: #fff2f7;
    --pink-light: #ffe6f0;
    --text: #111827;
    --muted: #6b7280;
    --border: #ececf0;
    --success: #22a45d;
    --success-soft: #e7f6ee;
    --warning: #f59e0b;
    --warning-soft: #fff4e6;
    --purple: #7c3aed;
    --purple-soft: #f1e9ff;
    --teal: #0ea5e9;
    --teal-soft: #e0f2fe;
    --red: #dc2626;
    --red-soft: #fee2e2;
    --white: #ffffff;
    --bg: #fffbf7;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-pill: 999px;

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.10);
    --shadow-pink: 0 12px 30px rgba(230, 0, 92, 0.22);

    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-script: 'Dancing Script', cursive;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--text); font-weight: 800; }

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.94rem;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-pink);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline {
    background: var(--white);
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--pink-soft); }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ===== HEADER (uniform con resto sito) ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05); }
.site-header > .container { max-width: 1360px; }
.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 76px;
    padding: 0 24px;
    gap: 20px;
}
.header-inner > .logo,
.header-inner > a.logo { justify-self: start; grid-column: 1; }
.header-inner > .main-nav { justify-self: center; grid-column: 2; }
.header-inner > .header-actions { justify-self: end; grid-column: 3; }
.header-inner > .hamburger { justify-self: end; grid-column: 3; }

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    flex-shrink: 0;
    text-decoration: none;
    min-width: 175px;
    min-height: 40px;
}
.logo-script {
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    color: var(--primary);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
}
.logo-block { display: inline-flex; flex-direction: column; line-height: 1; gap: 1px; }
.logo-bold {
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1rem;
    color: var(--text);
    line-height: 1;
}
.logo-sub {
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: var(--muted);
    font-weight: 500;
    margin-top: 2px;
    line-height: 1;
}

/* Nav voci */
.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}
.main-nav a {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1;
    padding: 6px 0;
    white-space: nowrap;
    transition: color .2s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--primary); }

/* Header actions (Accedi + Prenota) */
.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}
.header-actions .btn,
.header-actions .btn-ghost,
.header-actions .btn-primary {
    padding: 11px 22px;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    border: 1.5px solid;
}
.header-actions .btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.header-actions .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}
.header-actions .btn-ghost {
    background: #fff;
    color: var(--text);
    border-color: var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header-actions .btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Hamburger */
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hamburger span {
    width: 22px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn-mini-mobile { display: none; }
.mobile-nav { display: none; }

/* ===== HERO ===== */
.hero {
    padding: 60px 0 80px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}
.hero-title {
    font-size: 2.65rem;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}
.hero-title .accent { color: var(--primary); }
.hero-text {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 560px;
}
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}
.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--muted);
}
.proof-avatars { display: inline-flex; }
.proof-avatars span {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    background: linear-gradient(135deg, #ffd1dc, #ffa6c1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.proof-avatars span:first-child { margin-left: 0; background: linear-gradient(135deg, #f4a4a4, #e87f7f); }
.proof-avatars span:nth-child(2) { background: linear-gradient(135deg, #ffd9b3, #ffb380); }
.proof-avatars span:nth-child(3) { background: linear-gradient(135deg, #d1c4e9, #b39ddb); }
.proof-avatars span:nth-child(4) { background: linear-gradient(135deg, #c8e6c9, #a5d6a7); }
.proof-stars { color: var(--warning); font-size: 1rem; letter-spacing: 1px; display: block; }
.proof-text strong { color: var(--text); font-weight: 700; }

/* Hero immagine + stats card flottante */
.hero-visual-wrap {
    position: relative;
}
.hero-visual {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe6f0 100%);
    box-shadow: var(--shadow-lg);
}
.hero-visual svg { width: 100%; height: 100%; }

.hero-stats-card {
    position: absolute;
    left: -24px;
    bottom: -28px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    max-width: 540px;
}
.hero-stat { text-align: left; }
.hero-stat-icon {
    display: inline-flex;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--pink-soft);
    color: var(--primary);
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.hero-stat strong { font-size: 1.4rem; font-weight: 800; color: var(--text); display: block; line-height: 1; }
.hero-stat span { font-size: 0.78rem; color: var(--muted); display: block; margin-top: 4px; line-height: 1.3; }

/* ===== SECTION GENERIC ===== */
.section { padding: 70px 0; }
.section-title {
    text-align: center;
    font-size: 2rem;
    line-height: 1.18;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.section-sub {
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto 48px;
}

/* ===== PERCHÉ ENTRARE — 5 colonne ===== */
.benefits-section { padding: 60px 0 70px; }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}
.benefit-item { text-align: center; }
.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--pink-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.benefit-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}
.benefit-item p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.55;
}

/* ===== COME GUADAGNI — 4 card ===== */
.earnings-section { padding: 60px 0 70px; }
.earnings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.earnings-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex;
    flex-direction: column;
}
.earnings-card.pink   { background: linear-gradient(180deg, var(--pink-soft), #fff); border: 1px solid var(--pink-light); }
.earnings-card.orange { background: linear-gradient(180deg, var(--warning-soft), #fff); border: 1px solid #ffe5c2; }
.earnings-card.green  { background: linear-gradient(180deg, var(--success-soft), #fff); border: 1px solid #cdebd9; }
.earnings-card.purple { background: linear-gradient(180deg, var(--purple-soft), #fff); border: 1px solid #e3d3ff; }
.earnings-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.earnings-icon {
    width: 52px; height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.earnings-card.pink   .earnings-icon { background: var(--pink-light); color: var(--primary); }
.earnings-card.orange .earnings-icon { background: #ffe2bc; color: var(--warning); }
.earnings-card.green  .earnings-icon { background: #c3e9d1; color: var(--success); }
.earnings-card.purple .earnings-icon { background: #ddc6ff; color: var(--purple); }

.earnings-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.3;
}
.earnings-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 18px;
    flex: 1;
}
.earnings-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    align-self: flex-start;
}
.earnings-link:hover { color: var(--primary-dark); }
.earnings-card.green .earnings-link { color: var(--success); }
.earnings-card.orange .earnings-link { color: var(--warning); }
.earnings-card.purple .earnings-link { color: var(--purple); }

/* ===== VANTAGGIO COMPETITIVO — 4 card ===== */
.advantages-section { padding: 60px 0 70px; }
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.advantage-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.advantage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--pink-light); }

.advantage-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--pink-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.advantage-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.3;
}
.advantage-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* ===== DASHBOARD SECTION ===== */
.dashboard-section { padding: 60px 0 80px; }
.dashboard-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
}
/* Mockup dashboard */
.dashboard-mockup {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 380px;
}
.mockup-sidebar {
    background: linear-gradient(180deg, var(--pink-soft), #fff);
    border-right: 1px solid var(--border);
    padding: 18px 14px;
}
.mockup-sidebar-logo {
    font-family: var(--font-script);
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding: 0 6px;
}
.mockup-sidebar ul { display: flex; flex-direction: column; gap: 2px; }
.mockup-sidebar li {
    font-size: 0.74rem;
    color: var(--muted);
    padding: 7px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.mockup-sidebar li::before {
    content: '';
    width: 12px; height: 12px;
    background: currentColor;
    border-radius: 3px;
    opacity: 0.4;
    flex-shrink: 0;
}
.mockup-sidebar li.active {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(230, 0, 92, 0.08);
}
.mockup-sidebar li.active::before { opacity: 1; }

.mockup-main { padding: 18px 22px; }
.mockup-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.mockup-head h4 { font-size: 0.98rem; }
.mockup-head .mockup-pic {
    width: 30px; height: 30px; border-radius: 50%;
    background: linear-gradient(135deg, #f4a4a4, #e87f7f);
}
.mockup-greet { color: var(--muted); font-size: 0.74rem; margin-bottom: 16px; }

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}
.mockup-stat {
    background: var(--bg);
    border-radius: 10px;
    padding: 10px 8px;
}
.mockup-stat-label { color: var(--muted); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; display: block; }
.mockup-stat-value { font-size: 1.1rem; font-weight: 800; }
.mockup-stat-delta { color: var(--success); font-size: 0.6rem; font-weight: 700; display: block; margin-top: 2px; }

.mockup-section-title { font-size: 0.78rem; font-weight: 700; margin-bottom: 8px; }
.mockup-list { display: flex; flex-direction: column; gap: 6px; }
.mockup-list li {
    display: grid;
    grid-template-columns: 18px 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 8px 10px;
    background: var(--bg);
    border-radius: 8px;
    font-size: 0.74rem;
}
.mockup-list .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--primary);
    justify-self: center;
}
.mockup-list .meta { color: var(--muted); font-size: 0.66rem; }

/* Dashboard checklist */
.dashboard-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.dashboard-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.96rem;
    color: var(--text);
    font-weight: 500;
}
.dashboard-checklist li .dash-dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--pink-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 60px 0 80px; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
}
.testimonial-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.testimonial-photo {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd1dc, #ffa6c1);
    flex-shrink: 0;
}
.testimonial-card.t1 .testimonial-photo { background: linear-gradient(135deg, #f4a4a4, #e87f7f); }
.testimonial-card.t2 .testimonial-photo { background: linear-gradient(135deg, #b39ddb, #7e57c2); }
.testimonial-card.t3 .testimonial-photo { background: linear-gradient(135deg, #ffd9b3, #ffb380); }
.testimonial-info strong { display: block; font-size: 0.96rem; }
.testimonial-info span { color: var(--muted); font-size: 0.82rem; }
.testimonial-stars { color: var(--warning); font-size: 1rem; letter-spacing: 1px; margin-bottom: 12px; display: block; }
.testimonial-text {
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.6;
    font-style: italic;
}

/* Testimonial slider mobile (controlli, nascosti su desktop) */
.testimonials-dots { display: none; }
.testimonials-controls { display: none; }

/* ===== CTA FINALE ===== */
.final-cta { padding: 0 0 50px; }
.cta-box {
    background: var(--pink-soft);
    border-radius: var(--radius-xl);
    padding: 56px 40px;
    text-align: center;
    border: 1px solid var(--pink-light);
}
.cta-box-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--pink-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.cta-box h2 {
    font-size: 1.7rem;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.cta-box p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 26px;
}
.cta-box-ctas {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== GARANZIE ===== */
.guarantees-section { padding: 20px 0 80px; }
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
}
.guarantee-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--pink-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.guarantee-text strong {
    display: block;
    font-size: 0.94rem;
    margin-bottom: 4px;
}
.guarantee-text span {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 30px;
    font-size: 0.88rem;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}
.footer-inner .logo-script { color: #ffb3d1; }
.footer-inner .logo-bold,
.footer-inner .logo-sub { color: var(--white); }
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.8rem; opacity: 0.7; }

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */

/* TABLET grande (1024-1100) */
@media (max-width: 1100px) {
    .hero-title { font-size: 2.2rem; }
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .earnings-grid,
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}

/* TABLET (1024) */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual-wrap { max-width: 560px; margin: 0 auto; width: 100%; }
    .hero-stats-card { left: 0; right: 0; max-width: none; }
    .dashboard-grid { grid-template-columns: 1fr; gap: 32px; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
    .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
}

/* MOBILE (≤768px) */
@media (max-width: 768px) {

    .container { padding: 0 18px; }

    .main-nav, .header-actions { display: none; }
    .hamburger { display: flex; }

    .hero { padding: 32px 0 50px; }
    .hero-title { font-size: 1.7rem; line-height: 1.2; }
    .hero-text { font-size: 0.92rem; margin-bottom: 22px; }
    .hero-ctas { flex-direction: column; gap: 10px; }
    .hero-ctas .btn { width: 100%; }
    .hero-visual { aspect-ratio: 4 / 4; }
    .hero-stats-card {
        position: static;
        margin-top: 18px;
        padding: 18px;
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: none;
    }
    .hero-proof { font-size: 0.82rem; gap: 10px; }

    .section { padding: 44px 0; }
    .section-title { font-size: 1.45rem; }
    .section-sub { font-size: 0.92rem; margin-bottom: 28px; }

    /* SEZIONI in accordion (Perché / Come guadagni / Vantaggio / Dashboard) */
    .accordion-section { padding: 18px 0; border-top: 1px solid var(--border); }
    .accordion-section:last-of-type { border-bottom: 1px solid var(--border); }
    .accordion-section > .container > .section-title {
        text-align: left;
        font-size: 1.15rem;
        margin-bottom: 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
    }
    .accordion-section .section-title::after {
        content: '+';
        font-size: 1.6rem;
        font-weight: 400;
        color: var(--primary);
        line-height: 1;
        margin-left: 12px;
    }
    .accordion-section.is-open .section-title::after { content: '−'; }
    .accordion-section .section-sub,
    .accordion-section .benefits-grid,
    .accordion-section .earnings-grid,
    .accordion-section .advantages-grid,
    .accordion-section .dashboard-grid {
        display: none;
    }
    .accordion-section.is-open .section-sub {
        display: block;
        text-align: left;
        margin: 14px 0 18px;
    }
    .accordion-section.is-open .benefits-grid,
    .accordion-section.is-open .earnings-grid,
    .accordion-section.is-open .advantages-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
    }
    .accordion-section.is-open .dashboard-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 12px;
    }
    .benefit-item, .advantage-card {
        text-align: left;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 14px;
        align-items: flex-start;
        padding: 14px 16px;
        background: var(--pink-soft);
        border: 0;
        border-radius: var(--radius-md);
    }
    .benefit-icon, .advantage-icon {
        margin: 0;
        width: 40px; height: 40px;
        background: var(--white);
    }
    .benefit-icon svg, .advantage-icon svg { width: 18px; height: 18px; }
    .benefit-item h3, .advantage-card h3 {
        font-size: 0.94rem;
        margin-bottom: 4px;
    }
    .benefit-item p, .advantage-card p {
        font-size: 0.82rem;
    }
    .earnings-card { padding: 20px 18px; }
    .earnings-card h3 { font-size: 0.98rem; }
    .earnings-card p { font-size: 0.86rem; }

    /* Dashboard mockup mobile compact */
    .dashboard-mockup { grid-template-columns: 1fr; min-height: auto; }
    .mockup-sidebar { display: none; }
    .dashboard-checklist li { font-size: 0.88rem; }

    /* Testimonials → slider singolo */
    .testimonials-section { padding: 40px 0 60px; }
    .testimonials-grid {
        grid-template-columns: 1fr;
        overflow: hidden;
        max-width: none;
        position: relative;
        gap: 0;
    }
    .testimonial-card { display: none; }
    .testimonial-card.is-active { display: block; }
    .testimonials-dots {
        display: flex;
        gap: 8px;
        justify-content: center;
        margin-top: 20px;
    }
    .testimonials-dots .dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        background: var(--border);
        cursor: pointer;
        transition: background .2s, transform .2s;
    }
    .testimonials-dots .dot.active {
        background: var(--primary);
        transform: scale(1.2);
    }

    /* CTA finale compatta */
    .cta-box { padding: 32px 20px; }
    .cta-box h2 { font-size: 1.3rem; }
    .cta-box p { font-size: 0.9rem; }
    .cta-box-ctas { flex-direction: column; gap: 10px; }
    .cta-box-ctas .btn { width: 100%; }

    /* Garanzie in lista verticale */
    .guarantees-section { padding: 10px 0 60px; }
    .guarantees-grid { grid-template-columns: 1fr; gap: 10px; }

    /* Footer */
    .footer-links { font-size: 0.82rem; gap: 14px 18px; }
}

/* ============ MOBILE FINAL OVERRIDE — Header + Drawer fisso ============ */
@media (max-width: 768px) {
    .header-inner {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        height: 60px !important;
        padding: 0 16px !important;
        gap: 12px !important;
        grid-template-columns: none !important;
    }
    .header-inner > * { grid-column: auto !important; grid-row: auto !important; justify-self: auto !important; }
    .header-inner > .logo { order: 0 !important; flex-shrink: 1 !important; }
    .header-inner > .hamburger { order: 99 !important; flex-shrink: 0 !important; }
    .header-inner > .main-nav,
    .header-inner > .header-actions { display: none !important; }
    .logo { min-width: auto !important; min-height: auto !important; }

    .mobile-nav {
        display: none !important;
        position: fixed !important;
        top: 60px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: calc(100vh - 60px) !important;
        max-height: calc(100vh - 60px) !important;
        background: #fff !important;
        z-index: 999 !important;
        padding: 14px 16px 20px !important;
        margin: 0 !important;
        gap: 2px !important;
        flex-direction: column !important;
        overflow: hidden !important;
        touch-action: none !important;
        -webkit-overflow-scrolling: auto !important;
        overscroll-behavior: none !important;
    }
    .mobile-nav.open { display: flex !important; }
    .mobile-nav::-webkit-scrollbar { display: none !important; width: 0 !important; height: 0 !important; }

    .mobile-nav a {
        padding: 10px 14px !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
        color: var(--text) !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 10px !important;
        text-decoration: none !important;
        display: block !important;
        width: 100% !important;
    }
    .mobile-nav a.active {
        background: rgba(230, 0, 92, 0.08) !important;
        color: var(--primary) !important;
    }
    .mobile-nav .btn,
    .mobile-nav .btn-ghost,
    .mobile-nav .btn-primary {
        padding: 11px 18px !important;
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
        border-radius: 999px !important;
        text-align: center !important;
        text-decoration: none !important;
        width: 100% !important;
        display: block !important;
        margin: 0 !important;
        box-shadow: none !important;
        font-weight: 700 !important;
    }
    .mobile-nav .btn-ghost {
        margin-top: 10px !important;
        background: #fff !important;
        color: var(--text) !important;
        border: 1.5px solid var(--border) !important;
    }
    .mobile-nav .btn-primary {
        margin-top: 6px !important;
        background: var(--primary) !important;
        color: #fff !important;
        border: 0 !important;
    }

    /* Lock body+html scroll quando menu aperto */
    html.menu-open,
    body.menu-open {
        overflow: hidden !important;
        height: 100% !important;
        width: 100% !important;
        position: fixed !important;
        touch-action: none !important;
        overscroll-behavior: none !important;
    }
}

:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}
