/* =========================================
   WEDDING SMART PLANNER - PAGINA WEDDING PLANNER
   Landing pubblica per gli sposi
   ========================================= */

: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;
    --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; }

.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, box-shadow .2s, background .2s;
    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-outline-success { background: var(--white); color: var(--success); border: 1.5px solid var(--success); }
.btn-outline-success:hover { background: var(--success-soft); }
.btn-outline-orange { background: var(--white); color: var(--warning); border: 1.5px solid var(--warning); }
.btn-outline-orange:hover { background: var(--warning-soft); }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

/* HEADER */
.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;
}
.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', 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; }

.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); }
/* IMPORTANTE: nessuna sottolineatura sulla voce attiva */
.main-nav a::before, .main-nav a::after,
.main-nav a.active::before, .main-nav a.active::after {
    content: none !important;
    display: none !important;
    background: transparent !important;
    border: 0 !important;
    height: 0 !important;
}

.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 {
    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); }

.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-eyebrow {
    display: inline-block; background: var(--pink-soft); color: var(--primary);
    padding: 6px 14px; border-radius: var(--radius-pill);
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em;
    margin-bottom: 22px; text-transform: uppercase;
}
.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-visual-wrap { position: relative; }
.hero-visual {
    aspect-ratio: 4 / 5; border-radius: var(--radius-xl);
    overflow: hidden; box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #fff5f8 0%, #ffe6f0 100%);
}
.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-title .accent { color: var(--primary); }
.section-sub { text-align: center; color: var(--muted); font-size: 1rem; max-width: 720px; margin: 0 auto 48px; }

/* RISCHI vs SOLUZIONI */
.risks-section { padding: 60px 0 70px; background: var(--bg); }
.risks-grid {
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 32px; align-items: stretch; max-width: 1100px; margin: 0 auto;
}
.risks-card {
    background: #fff; border-radius: var(--radius-xl);
    padding: 32px 28px; box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.risks-card.bad { border-top: 4px solid var(--red); }
.risks-card.good { border-top: 4px solid var(--success); }
.risks-card-icon {
    width: 48px; height: 48px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.risks-card.bad .risks-card-icon { background: var(--red-soft); color: var(--red); }
.risks-card.good .risks-card-icon { background: var(--success-soft); color: var(--success); }
.risks-card h3 { font-size: 1.2rem; margin-bottom: 18px; line-height: 1.3; }
.risks-list { display: flex; flex-direction: column; gap: 12px; }
.risks-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.92rem; line-height: 1.5;
}
.risks-card.bad .risks-list li::before {
    content: '✕'; flex-shrink: 0; color: var(--red);
    font-weight: 700; font-size: 0.9rem;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--red-soft);
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.risks-card.good .risks-list li::before {
    content: '✓'; flex-shrink: 0; color: var(--success);
    font-weight: 700; font-size: 0.9rem;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--success-soft);
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 2px;
}

.risks-arrow {
    align-self: center;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-pink);
}

/* VANTAGGI - 5 colonne */
.advantages-section { padding: 70px 0; }
.advantages-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.advantage-item { text-align: center; }
.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-bottom: 16px;
}
.advantage-item h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.advantage-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* TIMELINE CREDITO */
.credit-section { padding: 60px 0 70px; background: var(--pink-soft); }
.credit-steps {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px; position: relative; max-width: 1000px; margin: 40px auto 0;
}
.credit-steps::before {
    content: ''; position: absolute;
    top: 28px; left: 16.66%; right: 16.66%;
    height: 2px; border-top: 2px dashed var(--pink-light); z-index: 0;
}
.credit-step { text-align: center; position: relative; z-index: 1; }
.credit-step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--primary); color: #fff;
    font-weight: 800; font-size: 1.2rem;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px; box-shadow: 0 8px 20px rgba(230, 0, 92, 0.3);
}
.credit-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.credit-step p { font-size: 0.9rem; color: var(--muted); line-height: 1.5; max-width: 280px; margin: 0 auto; }

/* PACCHETTI */
.packages-section { padding: 70px 0; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.package-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px 28px 26px;
    display: flex; flex-direction: column;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--pink-light); }
.package-card.is-highlighted {
    border: 1.5px solid var(--warning);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.12);
}
.package-icon {
    width: 48px; height: 48px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.package-icon.green { background: var(--success-soft); color: var(--success); }
.package-icon.orange { background: var(--warning-soft); color: var(--warning); }
.package-icon.pink { background: var(--pink-soft); color: var(--primary); }
.package-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.package-subtitle { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }
.package-checks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; flex: 1; }
.package-checks li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.92rem; color: var(--text); line-height: 1.4;
}
.package-check-mark { flex-shrink: 0; color: var(--success); margin-top: 3px; }
.package-price {
    font-size: 1.7rem; font-weight: 800; margin-bottom: 16px;
    line-height: 1; letter-spacing: -0.01em;
}
.package-price.pink { color: var(--primary); }
.package-price.orange { color: var(--warning); }
.package-price.green { color: var(--success); }

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

.dashboard-mockup .mockup-main { padding: 22px 26px; }
.dashboard-mockup .mockup-head h4 { font-size: 1.05rem; }
.dashboard-mockup .mockup-greet { color: var(--muted); font-size: 0.78rem; display: block; margin-bottom: 16px; }
.dashboard-mockup .mockup-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 10px; margin-bottom: 18px;
}
.dashboard-mockup .mockup-stat {
    background: var(--bg); border-radius: 10px; padding: 12px 10px;
}
.dashboard-mockup .mockup-stat-label {
    color: var(--muted); font-size: 0.65rem;
    text-transform: uppercase; letter-spacing: 0.04em;
    margin-bottom: 4px; display: block;
}
.dashboard-mockup .mockup-stat-value { font-size: 1.2rem; font-weight: 800; }
.dashboard-mockup .mockup-stat-delta { color: var(--success); font-size: 0.65rem; font-weight: 700; display: block; margin-top: 3px; }
.dashboard-mockup .mockup-section-title { font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; }
.dashboard-mockup .mockup-list { display: flex; flex-direction: column; gap: 6px; }
.dashboard-mockup .mockup-list li {
    display: grid; grid-template-columns: 18px 1fr auto;
    gap: 10px; align-items: center;
    padding: 9px 12px; background: var(--bg); border-radius: 8px;
    font-size: 0.8rem;
}
.dashboard-mockup .mockup-list .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--primary); justify-self: center;
}
.dashboard-mockup .mockup-list .meta { color: var(--muted); font-size: 0.7rem; }

/* 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 */
@media (max-width: 1100px) {
    .hero-title { font-size: 2.2rem; }
    .advantages-grid { grid-template-columns: repeat(3, 1fr); }
    .packages-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
}
@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; }
    .risks-grid { grid-template-columns: 1fr; max-width: 540px; gap: 20px; }
    .risks-arrow { transform: rotate(90deg); width: 48px; height: 48px; margin: 0 auto; }
    .credit-steps { grid-template-columns: 1fr; max-width: 540px; gap: 32px; }
    .credit-steps::before { display: none; }
    .dashboard-mockup { grid-template-columns: 1fr; }
    .dashboard-mockup .mockup-sidebar { display: none; }
}
@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.65rem; line-height: 1.18; }
    .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;
    }

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

    .advantages-grid { grid-template-columns: 1fr; gap: 14px; }
    .advantage-item {
        text-align: left; display: grid; grid-template-columns: auto 1fr;
        gap: 14px; padding: 14px 16px;
        background: var(--pink-soft); border-radius: var(--radius-md);
    }
    .advantage-icon { width: 40px; height: 40px; margin: 0; background: #fff; }
    .advantage-icon svg { width: 18px; height: 18px; }
    .advantage-item h3 { font-size: 0.94rem; margin-bottom: 4px; }
    .advantage-item p { font-size: 0.82rem; }

    /* Accordion sezione rischi */
    .risks-section .risks-card {
        padding: 0;
    }
    .risks-card h3 {
        cursor: pointer; padding: 18px 20px; margin: 0;
        font-size: 1.05rem; display: flex;
        justify-content: space-between; align-items: center;
    }
    .risks-card h3::after {
        content: '+'; font-size: 1.6rem; font-weight: 400;
        color: var(--primary); line-height: 1;
    }
    .risks-card.is-open h3::after { content: '−'; }
    .risks-card .risks-list,
    .risks-card .risks-card-icon { display: none; }
    .risks-card.is-open .risks-list,
    .risks-card.is-open .risks-card-icon {
        display: flex; padding: 0 20px 20px;
    }
    .risks-card.is-open .risks-card-icon {
        display: inline-flex; margin: 0 20px 12px;
    }

    .credit-section { padding: 40px 0 50px; }
    .credit-step-num { width: 44px; height: 44px; font-size: 1rem; margin-bottom: 12px; }

    .package-card { padding: 22px 22px 20px; }
    .package-card h3 { font-size: 1.05rem; }
    .package-subtitle { font-size: 0.88rem; }

    .dashboard-section { padding: 40px 0 60px; }

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

/* MOBILE FINAL OVERRIDE */
@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; 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;
        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;
        overscroll-behavior: none !important;
    }
    .mobile-nav.open { display: flex !important; }
    .mobile-nav::-webkit-scrollbar { display: none !important; }
    .mobile-nav a {
        padding: 10px 14px !important; font-size: 0.95rem !important;
        font-weight: 600 !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-ghost, .mobile-nav .btn-primary {
        padding: 11px 18px !important; font-size: 0.9rem !important;
        border-radius: 999px !important; text-align: center !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;
    }

    html.menu-open, body.menu-open {
        overflow: hidden !important; height: 100% !important;
        width: 100% !important; position: fixed !important;
        touch-action: none !important;
    }
}

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