        :root {
            --brand-green: #10B981;
            --brand-green-hover: #059669;
            --brand-darkblue: #0F172A;
            --brand-purple: #4F46E5;
            --brand-red-accent: #EF4444;
            --bg-light: #F8FAFC;
            --text-main: #0F172A;
            --text-muted: #475569;
            --border-color: #E2E8F0;
            --border-radius-large: 20px;
            --border-radius-medium: 12px;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
            --shadow-premium-card: 0 10px 30px -5px rgba(15, 23, 42, 0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.02);
            --shadow-box-editor: 0 30px 60px -15px rgba(15, 23, 42, 0.12), 0 10px 20px -10px rgba(79, 70, 229, 0.05), 0 0 0 1px rgba(15, 23, 42, 0.04);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        html { scroll-behavior: smooth; }

        body {
            background-color: var(--bg-light);
            color: var(--text-main);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        body.fullscreen-active { overflow: hidden !important; }

        /* --- CLASSI PER ANIMAZIONE ALL'INGRESSO (SCROLL) --- */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .scroll-reveal-right {
            opacity: 0;
            transform: translateX(60px);
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .scroll-reveal.revealed, .scroll-reveal-right.revealed {
            opacity: 1;
            transform: translate(0);
        }

        .delay-100 { transition-delay: 0.1s; }
        .delay-200 { transition-delay: 0.2s; }
        .delay-300 { transition-delay: 0.3s; }
        .delay-400 { transition-delay: 0.4s; }

        @keyframes premiumFadeUp {
            from { opacity: 0; transform: translateY(14px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .anim-title { animation: premiumFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
        .anim-subtitle { animation: premiumFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0.1s; opacity: 0; }
        .anim-text { animation: premiumFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0.18s; opacity: 0; }
        .anim-cta { animation: premiumFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0.26s; opacity: 0; }
        .anim-image { animation: premiumFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0.12s; opacity: 0; }

        @keyframes aurora-animation {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        header {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-container { display: flex; align-items: center; }
        .logo-svg { height: 32px; width: auto; display: block; }

        .nav-links { display: flex; list-style: none; gap: 2.5rem; }
        .nav-links a { text-decoration: none; color: var(--text-muted); font-weight: 500; font-size: 0.95rem; transition: color 0.2s ease; }
        .nav-links a:hover { color: var(--brand-darkblue); }

        .nav-auth { display: flex; align-items: center; gap: 1.5rem; }
        .btn-text { text-decoration: none; color: var(--text-muted); font-weight: 600; font-size: 0.95rem; transition: color 0.2s ease; }
        .btn-text:hover { color: var(--brand-darkblue); }

        .btn-register {
            text-decoration: none;
            background-color: var(--brand-darkblue);
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: var(--border-radius-medium);
            font-weight: 600;
            font-size: 0.95rem;
            transition: background-color 0.2s ease, transform 0.2s ease;
        }
        .btn-register:hover { background-color: #1e293b; transform: translateY(-1px); }

        /* HERO CON AURORA BACKGROUND */
        .hero-container-fluid {
            width: 100%;
            position: relative;
            background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 30%, #f5f3ff 65%, #ffffff 100%);
            background-size: 200% 200%;
            animation: aurora-animation 12s ease infinite;
            overflow: hidden;
        }

        .hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2.5rem 2rem 4.5rem 2rem;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        @media (max-width: 968px) { .hero { grid-template-columns: 1fr; padding: 2rem 1.5rem 3.5rem 1.5rem; gap: 2.5rem; } }

        .hero-text-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(226, 232, 240, 0.8);
            padding: 3rem;
            border-radius: 24px;
            box-shadow: var(--shadow-premium-card);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        @media (max-width: 968px) { .hero-text-card { padding: 2rem; align-items: center; text-align: center; } }

        .hero-text-card h1 {
            font-size: 3.25rem;
            font-weight: 800;
            color: var(--brand-darkblue);
            line-height: 1.15;
            margin-bottom: 0.8rem;
            letter-spacing: -1.5px;
        }

        .title-badge {
            background-color: #ecfdf5;
            color: var(--brand-green);
            padding: 0.2rem 0.8rem;
            border-radius: 99px;
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 0.2rem;
            vertical-align: middle;
        }

        .hero-text-card h1 span.green-accent { color: var(--brand-green); }
        .hero-subtitle { font-size: 1.4rem; font-weight: 600; color: var(--brand-purple); margin-bottom: 1.2rem; line-height: 1.3; letter-spacing: -0.5px; }
        .hero-text-card p { font-size: 1.05rem; line-height: 1.65; color: var(--text-muted); margin-bottom: 2.2rem; font-weight: 400; }
        .highlight-blue { color: var(--brand-darkblue); font-weight: 600; }
        .highlight-purple { color: var(--brand-purple); font-weight: 600; }

        .cta-group { display: flex; align-items: center; gap: 2rem; }
        @media (max-width: 480px) { .cta-group { flex-direction: column; gap: 1rem; width: 100%; } .btn-cta-main { width: 100%; text-align: center; } }

        .btn-cta-main {
            display: inline-block;
            text-decoration: none;
            background-color: var(--brand-green);
            color: white;
            padding: 0.9rem 2rem;
            border-radius: var(--border-radius-medium);
            font-size: 1.05rem;
            font-weight: 600;
            box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
            transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }
        .btn-cta-main:hover { background-color: var(--brand-green-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4); }
        .btn-cta-secondary { font-size: 1.05rem; font-weight: 600; color: var(--text-main); text-decoration: none; position: relative; cursor: pointer; transition: color 0.2s ease; }
        .btn-cta-secondary:hover { color: var(--brand-purple); }

        .hero-right { display: flex; justify-content: center; align-items: center; }
        .hero-right img { width: 100%; max-width: 440px; height: auto; display: block; filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.06)); }

        /* --- SEZIONE EDITOR CON BACKGROUND AURORA --- */
        .generator-section {
            border-top: 1px solid var(--border-color);
            padding: 6rem 2rem;
            position: relative;
            background: linear-gradient(180deg, #ffffff 0%, #f5f3ff 40%, #f0fdf4 75%, #ffffff 100%);
            background-size: 200% 200%;
            animation: aurora-animation 14s ease infinite;
        }

        .generator-section.fullscreen-mode {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100vw !important;
            height: 100vh !important;
            z-index: 9999 !important;
            padding: 3rem 2rem !important;
            overflow-y: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 50%, #f5f3ff 100%) !important;
        }

        .generator-section.fullscreen-mode .generator-container { width: 100%; max-width: 1240px; }

        .close-fullscreen-btn {
            display: none;
            position: fixed;
            top: 30px;
            right: 40px;
            background: #ffffff;
            color: var(--text-main);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-md);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 1.1rem;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: all 0.2s ease;
        }
        .close-fullscreen-btn:hover { background: var(--bg-light); transform: scale(1.05); }
        .generator-section.fullscreen-mode .close-fullscreen-btn { display: flex; }

        .generator-container { max-width: 1140px; margin: 0 auto; }
        .generator-header-wrapper { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; margin-bottom: 0.5rem; }
        @media (max-width: 768px) { .generator-header-wrapper { flex-direction: column; align-items: center; text-align: center; gap: 1.2rem; } }

        .header-titles-stack { display: flex; flex-direction: column; flex: 1; }
        .generator-super-title { font-size: 2.2rem; color: var(--brand-darkblue); font-weight: 800; letter-spacing: -1px; margin-bottom: 0.4rem; }
        .generator-title-intermezzo { font-size: 1.25rem; color: var(--brand-purple); font-weight: 600; letter-spacing: -0.3px; margin-bottom: 0.6rem; }
        .generator-subtitle { font-size: 1rem; color: var(--text-muted); font-weight: 400; max-width: 760px; line-height: 1.6; margin-bottom: 3.5rem; }
        @media (max-width: 768px) { .generator-subtitle { text-align: center; } }

        .fullscreen-toggle-wrapper { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; flex-shrink: 0; }
        .fullscreen-toggle-btn {
            background: #ffffff;
            border: 1px solid var(--border-color);
            width: 48px;
            height: 48px;
            border-radius: var(--border-radius-medium);
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.2s ease;
        }
        .fullscreen-toggle-btn:hover { background: var(--bg-light); border-color: #cbd5e1; transform: translateY(-1px); }
        .fullscreen-toggle-btn.active { background: #eff6ff; border-color: #3b82f6; color: #3b82f6; }
        .fullscreen-caption { font-size: 0.7rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; white-space: nowrap; }

        .qr-horizontal-box {
            background: #ffffff;
            border-radius: var(--border-radius-large);
            border: 1px solid rgba(79, 70, 229, 0.15);
            box-shadow: var(--shadow-box-editor);
            display: flex;
            overflow: hidden;
            min-height: 540px;
            position: relative;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .qr-horizontal-box:focus-within {
            border-color: rgba(79, 70, 229, 0.3);
            box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(79, 70, 229, 0.1);
        }

        @media (max-width: 992px) { .qr-horizontal-box { flex-direction: column; } }

        .panel-inputs { flex: 1.35; padding: 3rem; display: flex; flex-direction: column; border-right: 1px solid var(--border-color); }
        @media (max-width: 992px) { .panel-inputs { border-right: none; border-bottom: 1px solid var(--border-color); padding: 2rem; } }

        .content-type-selector { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.5rem; margin-bottom: 2.5rem; background: #f1f5f9; padding: 0.4rem; border-radius: var(--border-radius-medium); }
        .type-pill { background: transparent; border: none; padding: 0.65rem 0.5rem; text-align: center; font-size: 0.85rem; font-weight: 600; border-radius: 8px; cursor: pointer; color: var(--text-muted); transition: all 0.2s ease; }
        .type-pill:hover { color: var(--text-main); background: rgba(255,255,255,0.5); }
        .type-pill.active { background: #ffffff; color: var(--text-main); box-shadow: var(--shadow-sm); }

        .dynamic-form-fields { min-height: 180px; }

        .design-accordion { margin-top: 2.5rem; border-top: 1px solid var(--border-color); padding-top: 2rem; }
        .accordion-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 1.2rem; color: var(--brand-purple); display: flex; align-items: center; gap: 0.5rem; letter-spacing: -0.3px; }
        .design-options-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.2rem; }

        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1rem; }
        @media (max-width: 600px) { .form-row { grid-template-columns: 1fr; gap: 1rem; } }

        .input-group { display: flex; flex-direction: column; margin-bottom: 1.2rem; }
        .input-group label { font-weight: 600; font-size: 0.85rem; margin-bottom: 0.5rem; color: var(--text-main); }

        .input-group input, .input-group textarea, .input-group select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-medium);
            font-size: 0.9rem;
            font-weight: 500;
            outline: none;
            background: #ffffff;
            color: var(--text-main);
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .input-group input:focus, .input-group textarea:focus, .input-group select:focus {
            border-color: var(--brand-purple);
            box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
        }

        .panel-preview { flex: 0.85; background: #f8fafc; padding: 3rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }

        .qr-frame {
            width: 240px;
            height: 240px;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-large);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            position: relative;
            padding: 15px;
        }

        #qrcode-canvas-target { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
        #qrcode-canvas-target img { max-width: 100%; height: auto; }

        .qr-placeholder-text { color: #94a3b8; font-size: 0.85rem; text-align: center; padding: 1.5rem; font-weight: 500; line-height: 1.4; position: absolute; }

        .btn-block-action {
            width: 100%;
            max-width: 240px;
            padding: 0.85rem;
            border: none;
            border-radius: var(--border-radius-medium);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .btn-generate { background: var(--brand-darkblue); color: white; box-shadow: var(--shadow-sm); }
        .btn-generate:hover { background-color: #1e293b; transform: translateY(-1px); box-shadow: var(--shadow-md); }

        .btn-download { background: var(--brand-green); color: white; box-shadow: var(--shadow-sm); }
        .btn-download:hover { background-color: var(--brand-green-hover); transform: translateY(-1px); }
        .btn-download:disabled { opacity: 0.35; cursor: not-allowed; transform: none !important; box-shadow: none; }

        /* --- STILE SEZIONE SEO INFORMATIVA --- */
        .seo-info-section {
            border-top: 1px solid var(--border-color);
            padding: 6rem 2rem;
            position: relative;
            background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 35%, #f0fdf4 70%, #ffffff 100%);
            background-size: 200% 200%;
            animation: aurora-animation 12s ease infinite;
        }

        .seo-info-container {
            max-width: 1140px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 5rem;
            align-items: center;
        }

        @media (max-width: 992px) {
            .seo-info-container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
        }

        .seo-info-left { display: flex; justify-content: center; align-items: center; }
        .seo-info-left img { width: 100%; max-width: 420px; height: auto; display: block; filter: drop-shadow(0 15px 30px rgba(15, 23, 42, 0.04)); }
        .seo-info-right h2 { font-size: 2.2rem; color: var(--brand-darkblue); font-weight: 800; letter-spacing: -1px; line-height: 1.2; margin-bottom: 0.5rem; }
        .seo-info-right h3 { font-size: 1.1rem; color: var(--text-muted); font-weight: 500; margin-bottom: 2.5rem; }

        .seo-accordion-group details {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-medium);
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .seo-accordion-group details:hover { border-color: #cbd5e1; }
        .seo-accordion-group details[open] { border-color: rgba(79, 70, 229, 0.4); box-shadow: var(--shadow-md); }

        .seo-accordion-group summary {
            padding: 1.2rem 1.5rem;
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--brand-darkblue);
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
        }

        .seo-accordion-group summary::after { content: '+'; font-size: 1.3rem; color: var(--brand-purple); font-weight: 400; transition: transform 0.2s ease; }
        .seo-accordion-group details[open] summary::after { content: '−'; }
        .seo-accordion-group summary::-webkit-details-marker { display: none; }

        .seo-accordion-content { padding: 0 1.5rem 1.5rem 1.5rem; color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }
        .seo-accordion-content p { margin-bottom: 1rem; }
        .seo-accordion-content p:last-child { margin-bottom: 0; }
        .seo-link-inline { color: var(--brand-purple); text-decoration: none; font-weight: 600; }
        .seo-link-inline:hover { text-decoration: underline; }

        /* --- BANDA DI CONVERSIONE PREMIUM IN INTONO AURORA ROSSO --- */
        .premium-conversion-section {
            padding: 4rem 2rem 5rem 2rem;
            background-color: #ffffff;
        }

        .premium-cta-band {
            max-width: 1140px;
            margin: 0 auto;
            border-radius: 28px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 35%, #7f1d1d 75%, #0f172a 100%);
            background-size: 200% 200%;
            animation: aurora-animation 10s ease infinite;
            padding: 4.5rem 4rem;
            display: flex;
            align-items: center;
            box-shadow: 0 25px 50px -12px rgba(127, 29, 29, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        @media (max-width: 992px) {
            .premium-cta-band { padding: 3.5rem 2rem; flex-direction: column; text-align: center; }
        }

        .premium-cta-left { flex: 1.2; z-index: 5; position: relative; }
        .premium-cta-band h2 { color: #ffffff; font-size: 2.25rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 0.6rem; line-height: 1.2; }
        .premium-cta-band p { color: #cbd5e1; font-size: 1.1rem; line-height: 1.6; margin-bottom: 2.2rem; max-width: 620px; }

        .premium-features-badges { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2.2rem; }
        @media (max-width: 992px) { .premium-features-badges { justify-content: center; } }

        .badge-pro {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #f1f5f9;
            padding: 0.4rem 0.9rem;
            border-radius: 99px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            backdrop-filter: blur(4px);
        }
        .badge-pro span { color: #f87171; }

        .btn-cta-premium {
            display: inline-block;
            text-decoration: none;
            background-color: #ef4444;
            color: white;
            padding: 1rem 2.2rem;
            border-radius: var(--border-radius-medium);
            font-size: 1.05rem;
            font-weight: 700;
            box-shadow: 0 4px 18px rgba(239, 68, 68, 0.4);
            transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }
        .btn-cta-premium:hover { background-color: #dc2626; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(239, 68, 68, 0.5); }

        .premium-cta-right {
            flex: 0.8;
            position: absolute;
            right: 0;
            bottom: -20px;
            height: 110%;
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            pointer-events: none;
            z-index: 2;
        }

        @media (max-width: 992px) { .premium-cta-right { position: relative; bottom: 0; height: auto; width: 100%; max-width: 320px; margin-top: 2.5rem; } }

        .premium-cta-right img { height: 100%; max-height: 380px; width: auto; object-fit: contain; display: block; filter: drop-shadow(-20px 10px 30px rgba(0,0,0,0.3)); }
        @media (max-width: 992px) { .premium-cta-right img { width: 100%; height: auto; max-height: 240px; } }


        /* --- NUOVA SEZIONE: FAQ IN SETTING GUIDA GRADUALE (AURORA PERLA / BIANCO) --- */
        .faq-steps-section {
            padding: 6rem 2rem 7rem 2rem;
            border-top: 1px solid var(--border-color);
            position: relative;
            /* Gradiente Aurora Perla / Bianco Seta con animazione morbida */
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 40%, #f1f5f9 70%, #ffffff 100%);
            background-size: 200% 200%;
            animation: aurora-animation 15s ease infinite;
        }

        .faq-steps-container {
            max-width: 1140px;
            margin: 0 auto;
        }

        .faq-steps-header {
            text-align: center;
            margin-bottom: 4.5rem;
        }

        .faq-steps-header h2 {
            font-size: 2.4rem;
            color: var(--brand-darkblue);
            font-weight: 800;
            letter-spacing: -1.2px;
            margin-bottom: 0.6rem;
        }

        .faq-steps-header p {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* Griglia dei passaggi didascalici */
        .steps-timeline-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            position: relative;
        }

        .step-educational-card {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            position: relative;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
        }

        .step-educational-card:hover {
            transform: translateY(-5px);
            border-color: rgba(79, 70, 229, 0.25);
            box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
        }

        /* Numero dello step fluttuante */
        .step-index-badge {
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 2.5rem;
            font-weight: 800;
            color: #f1f5f9;
            line-height: 1;
            user-select: none;
            transition: color 0.3s ease;
        }
        .step-educational-card:hover .step-index-badge {
            color: #e0e7ff;
        }

        /* Contenitore Icone SVG */
        .step-icon-wrapper {
            width: 54px;
            height: 54px;
            background-color: #f8fafc;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.8rem;
            border: 1px solid var(--border-color);
            color: var(--brand-purple);
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        .step-educational-card:hover .step-icon-wrapper {
            background-color: var(--brand-purple);
            color: #ffffff;
            border-color: var(--brand-purple);
        }

        .step-educational-card h3 {
            font-size: 1.2rem;
            color: var(--brand-darkblue);
            font-weight: 700;
            margin-bottom: 0.8rem;
            letter-spacing: -0.4px;
        }

        .step-educational-card p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* --- SEZIONE TIPOLOGIE QR GRATUITI (AURORA INDACO/SETA) --- */
        .free-types-section {
            padding: 6rem 2rem 7rem 2rem;
            border-top: 1px solid var(--border-color);
            position: relative;
            background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 50%, #f8fafc 100%);
            background-size: 200% 200%;
            animation: aurora-animation 16s ease infinite;
        }

        .free-types-container {
            max-width: 1140px;
            margin: 0 auto;
        }

        .free-types-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .free-types-header h2 {
            font-size: 2.3rem;
            color: var(--brand-darkblue);
            font-weight: 800;
            letter-spacing: -1.2px;
            margin-bottom: 0.8rem;
        }

        .free-types-header h3 {
            font-size: 1.05rem;
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto;
            font-weight: 400;
            line-height: 1.6;
        }

        .types-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.8rem;
        }

        @media (max-width: 768px) {
            .types-features-grid { grid-template-columns: 1fr; }
        }

        .type-feature-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(226, 232, 240, 0.9);
            border-radius: 16px;
            padding: 2.2rem 2rem;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .type-feature-card:hover {
            transform: translateY(-4px);
            border-color: rgba(79, 70, 229, 0.2);
            box-shadow: var(--shadow-md);
        }

        .card-icon-title-line {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1rem;
        }

        .feature-card-icon {
            font-size: 1.35rem;
        }

        .type-feature-card h4 {
            font-size: 1.15rem;
            color: var(--brand-darkblue);
            font-weight: 700;
            letter-spacing: -0.3px;
        }

        .type-feature-card p {
            font-size: 0.92rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* CARD PRO UPSELL PERSONALIZZATA IN SINTONIA CON LA BRAND IDENTITY */
        .type-feature-card.pro-upsell-card {
            background: linear-gradient(135deg, #4f46e5 0%, #1e1b4b 100%);
            border: none;
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .type-feature-card.pro-upsell-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 140%;
            height: 140%;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .type-feature-card.pro-upsell-card h4 {
            color: #ffffff;
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            margin-top: 0.4rem;
        }

        .type-feature-card.pro-upsell-card p {
            color: #e2e8f0;
            margin-bottom: 1.5rem;
        }

        .pro-inline-badge {
            background: #ef4444;
            color: #ffffff;
            font-size: 0.7rem;
            font-weight: 800;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            align-self: flex-start;
            letter-spacing: 0.5px;
        }

        .pro-card-link {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 700;
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            transition: opacity 0.2s ease;
        }

        .pro-card-link:hover {
            opacity: 0.85;
            text-decoration: underline;
        }

        /* --- SEZIONE VANTAGGI PRO (STILE ABOUT_QR) --- */
.pro-advantages-section {
    padding: 7rem 2rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    /* Aurora Gradient: Sfumatura morbida indaco/rosa per distaccarsi dalla sezione precedente */
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 40%, #f0fdf4 100%);
    background-size: 180% 180%;
    animation: aurora-animation 14s ease infinite;
    overflow: hidden;
}

.pro-advantages-container {
    max-width: 1140px;
    margin: 0 auto;
}

.pro-advantages-header {
    text-align: center;
    margin-bottom: 5rem;
}

.pro-advantages-header h2 {
    font-size: 2.4rem;
    color: var(--brand-darkblue);
    font-weight: 800;
    letter-spacing: -1.2px;
    margin-bottom: 0.8rem;
}

.pro-advantages-header h3 {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

.pro-advantages-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

@media (max-width: 992px) {
    .pro-advantages-content {
        flex-direction: column;
        gap: 3rem;
    }
    .pro-image-column, .pro-details-column {
        width: 100%;
    }
}

/* Colonna Immagine & Effetto Coriandoli */
.pro-image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pro-image-wrapper {
    position: relative;
    max-width: 100%;
}

.pro-image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Contenitore particelle coriandoli sopra l'immagine */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
    border-radius: 24px;
}

.confetti-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: burst-particle 0.6s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes burst-particle {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(1) rotate(var(--rot));
        opacity: 0;
    }
}

/* Colonna Dettagli ed Espandibili */
.pro-details-column {
    flex: 1.2;
}

.advantages-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.advantage-item.active {
    background: #ffffff;
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: var(--shadow-sm);
}

.advantage-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem;
    display: flex;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    gap: 1rem;
}

.advantage-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: color 0.25s ease;
}

.advantage-item.active .advantage-icon,
.advantage-trigger:hover .advantage-icon {
    color: var(--brand-purple);
}

.advantage-title {
    font-size: 1.1rem;
    color: var(--brand-darkblue);
    font-weight: 700;
    flex: 1;
}

.chevron-icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-right: 0.5rem;
}

.advantage-item.active .chevron-icon {
    transform: rotate(-135deg);
    border-color: var(--brand-indigo);
}

.advantage-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 1.4rem;
}

.advantage-item.active .advantage-panel {
    max-height: 150px; /* Abbondante per contenere il testo */
    padding-bottom: 1.4rem;
}

.advantage-panel p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.pro-cta-wrapper {
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 992px) {
    .pro-cta-wrapper {
        justify-content: center;
    }
}

/* =============================================
   EDITOR HP UPGRADE — NUOVI STILI
   ============================================= */

/* PRESET SWATCHES */
.preset-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.preset-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.preset-swatches {
    display: flex;
    gap: 0.5rem;
}

.preset-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
    padding: 0;
}

.preset-swatch:hover {
    transform: scale(1.15);
}

.preset-swatch.active {
    border-color: var(--brand-purple);
    transform: scale(1.1);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

/* COLOR PICKER ROW */
.color-pickers-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.color-picker-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.color-picker-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
}

.color-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-medium);
    padding: 0.4rem 0.6rem;
    transition: border-color 0.2s ease;
}

.color-picker-wrapper:focus-within {
    border-color: var(--brand-purple);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

input[type="color"] {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    background: none;
    flex-shrink: 0;
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
    border-radius: 6px;
}

input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 6px;
}

.color-hex-display {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: monospace;
    letter-spacing: 0.5px;
}

/* SLOT PRO BLOCCATI */
.pro-locked-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-top: 0.4rem;
}

@media (max-width: 600px) {
    .pro-locked-row { grid-template-columns: 1fr; }
}

.pro-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.9rem 0.5rem;
    border-radius: var(--border-radius-medium);
    border: 1px dashed var(--border-color);
    background: #fafafa;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.pro-slot:hover {
    border-color: var(--brand-purple);
    background: #f5f3ff;
}

.pro-slot-icon {
    font-size: 1.2rem;
    filter: grayscale(1);
    opacity: 0.5;
}

.pro-slot-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.pro-lock-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--brand-purple);
    background: #ede9fe;
    padding: 0.1rem 0.4rem;
    border-radius: 99px;
    letter-spacing: 0.3px;
}

/* PREVIEW ACTIONS */
.preview-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
}

.save-cta-link {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    text-align: center;
    transition: color 0.2s ease;
}

.save-cta-link:hover { color: var(--brand-purple); }
.save-cta-link strong { color: var(--brand-purple); }

/* MODAL PRO */
.pro-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.pro-modal-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 360px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    position: relative;
    animation: premiumFadeUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.pro-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.pro-modal-close:hover { background: var(--bg-light); }

.pro-modal-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.pro-modal-box h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--brand-darkblue);
    margin-bottom: 0.5rem;
}

.pro-modal-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.pro-modal-sub {
    margin-top: 0.8rem !important;
    font-size: 0.82rem !important;
}

.pro-modal-sub a {
    color: var(--brand-purple);
    font-weight: 600;
    text-decoration: none;
}

/* Pro advantages — CTA button (stile pro-upsell-card di free-types) */
.btn-primary.main-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #4f46e5 0%, #1e1b4b 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--border-radius-medium);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 18px 0 rgba(79, 70, 229, 0.35);
}

.btn-primary.main-cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px 0 rgba(79, 70, 229, 0.45);
}

/* =============================================
   EDITOR HIGHLIGHT
   ============================================= */

.generator-section.generator-accent {
    border-top: 3px solid var(--brand-green);
}

.generator-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-green);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
    margin-bottom: 0.8rem;
    letter-spacing: 0.2px;
}

.generator-intro-badge svg {
    flex-shrink: 0;
}

/* Gerarchia visiva — separatori sezione */
.seo-info-section {
    border-top: 1px solid var(--border-color);
}

.faq-steps-section {
    border-top: 1px solid var(--border-color);
}

.free-types-section {
    border-top: 1px solid var(--border-color);
}

/* =============================================
   SEZIONE PRICING
   ============================================= */

.pricing-section {
    padding: 7rem 1.5rem;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 10% 20%, rgba(79, 70, 229, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 90% 80%, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* HEADER */
.pricing-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.pricing-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--brand-darkblue);
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.pricing-header h3 {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
}

/* GRID TRE CARD */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr 1fr;
    gap: 1.2rem;
    align-items: start;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* CARD BASE */
.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* CARD EVIDENZIATA — PRO ANNUALE */
.pricing-card.highlighted {
    background: var(--brand-darkblue);
    border-color: var(--brand-darkblue);
    color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.3), 0 0 0 1px rgba(79, 70, 229, 0.2);
}

.pricing-card.highlighted:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 70px -15px rgba(15, 23, 42, 0.4);
}

/* BADGE MIGLIOR VALORE */
.pricing-highlight-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-green);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 99px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* TOP CARD */
.pricing-card-top {
    margin-bottom: 1.8rem;
}

/* BADGE TIER */
.pricing-tier-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    margin-bottom: 1.2rem;
}

.free-badge {
    background: #f1f5f9;
    color: var(--text-muted);
}

.pro-badge {
    background: rgba(79, 70, 229, 0.15);
    color: #a5b4fc;
}

.monthly-badge {
    background: rgba(79, 70, 229, 0.08);
    color: var(--brand-purple);
}

/* PREZZO */
.pricing-price-block {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
}

.pricing-amount {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--brand-darkblue);
    line-height: 1;
}

.pricing-card.highlighted .pricing-amount {
    color: #ffffff;
}

.pricing-frequency {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-card.highlighted .pricing-frequency {
    color: #94a3b8;
}

.pricing-frequency strong {
    color: var(--brand-green);
    font-weight: 700;
}

.pricing-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.pricing-card.highlighted .pricing-tagline {
    color: #94a3b8;
}

/* LISTA FEATURE */
.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.feature-included {
    color: var(--text-main);
}

.pricing-card.highlighted .feature-included {
    color: #e2e8f0;
}

.feature-included svg {
    color: var(--brand-green);
    flex-shrink: 0;
}

.pricing-card.highlighted .feature-included svg {
    color: var(--brand-green);
}

.feature-excluded {
    color: #cbd5e1;
}

.feature-excluded svg {
    color: #cbd5e1;
    flex-shrink: 0;
}

/* CTA BOTTONI */
.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    border-radius: var(--border-radius-medium);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
    text-align: center;
}

.pricing-cta-primary {
    background: var(--brand-green);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.pricing-cta-primary:hover {
    background: var(--brand-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.5);
}

.pricing-cta-secondary {
    background: transparent;
    color: var(--brand-purple);
    border: 1.5px solid var(--border-color);
}

.pricing-cta-secondary:hover {
    border-color: var(--brand-purple);
    background: rgba(79, 70, 229, 0.04);
    transform: translateY(-2px);
}

/* RIGA RASSICURANTE */
.pricing-reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.pricing-reassurance span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-reassurance svg {
    color: var(--brand-green);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .pricing-reassurance {
        gap: 1rem;
    }

    .pricing-section {
        padding: 5rem 1.2rem;
    }
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
    background: var(--brand-darkblue);
    color: #94a3b8;
    padding: 4rem 1.5rem 2rem;
    margin-top: 0;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* RIGA PRINCIPALE */
.footer-main {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 540px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
}

/* BRAND */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.footer-made {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #475569;
}

.footer-made svg {
    color: #ef4444;
    flex-shrink: 0;
}

.footer-made a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-made a:hover {
    color: var(--brand-green);
}

/* COLONNE NAV */
.footer-nav-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #e2e8f0;
    margin: 0 0 1rem 0;
}

.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav-col ul li a {
    font-size: 0.88rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-col ul li a:hover {
    color: #e2e8f0;
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
}

.footer-copyright {
    font-size: 0.82rem;
    color: #334155;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.82rem;
    color: #334155;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #94a3b8;
}
