
        :root {
            --primary-color: #FFD700;
            --secondary-color: #FF6B35;
            --bg-dark: #0a0a0a;
            --bg-card: #1a1a1a;
            --bg-card-hover: #252525;
            --text-light: #ffffff;
            --text-muted: #b0b0b0;
            --accent-gradient: linear-gradient(135deg, #FFD700 0%, #FF6B35 100%);
            --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.8;
            font-size: 18px;
        }

        /* Header */
        .header {
            background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(10,10,10,1) 100%);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }

        .header-cta {
            background: var(--accent-gradient);
            color: var(--bg-dark);
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .header-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-gold);
        }

        /* Article Container */
        .article-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* Breadcrumb */
        .breadcrumb {
            margin-bottom: 30px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        /* Article Header */
        .article-header {
            margin-bottom: 50px;
        }

        .article-category {
            display: inline-block;
            background: var(--accent-gradient);
            color: var(--bg-dark);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 20px;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Article Content */
        .article-content h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 50px 0 25px;
            color: var(--primary-color);
            border-left: 4px solid var(--primary-color);
            padding-left: 20px;
        }

        .article-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 35px 0 20px;
            color: var(--text-light);
        }

        .article-content p {
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .article-content ul, .article-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }

        .article-content li {
            margin-bottom: 12px;
            color: var(--text-light);
        }

        .article-content strong {
            color: var(--primary-color);
        }

        /* Price Cards */
        .price-cards {
            display: grid;
            gap: 25px;
            margin: 30px 0;
        }

        .price-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .price-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-gold);
        }

        .price-card.featured {
            border: 2px solid var(--primary-color);
            position: relative;
        }

        .price-card.featured::before {
            content: "Consigliato";
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-gradient);
            color: var(--bg-dark);
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .price-card-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-light);
        }

        .price-card-price {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }

        .price-card-features {
            list-style: none;
            padding: 0;
        }

        .price-card-features li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .price-card-features li:last-child {
            border-bottom: none;
        }

        .price-card-features li::before {
            content: "✓";
            color: var(--primary-color);
            font-weight: bold;
        }

        /* Info Box */
        .info-box {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
        }

        .info-box-title {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Tips List */
        .tips-list {
            background: var(--bg-card);
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
        }

        .tips-list li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .tips-list li:last-child {
            border-bottom: none;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .stat-item {
            background: var(--bg-card);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 5px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
            border: 2px solid var(--primary-color);
            border-radius: 25px;
            padding: 40px;
            margin: 50px 0;
            text-align: center;
        }

        .cta-section h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--text-light);
        }

        .cta-section p {
            color: var(--text-muted);
            margin-bottom: 25px;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #25D366;
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        }

        .cta-button svg {
            width: 28px;
            height: 28px;
        }

        /* Internal Links */
        .related-links {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 30px;
            margin: 40px 0;
        }

        .related-links h3 {
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .related-links ul {
            list-style: none;
            padding: 0;
        }

        .related-links li {
            margin-bottom: 10px;
        }

        .related-links a {
            color: var(--text-light);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 15px;
            background: var(--bg-card-hover);
            border-radius: 10px;
            transition: background 0.3s, transform 0.3s;
        }

        .related-links a:hover {
            background: rgba(255, 215, 0, 0.1);
            transform: translateX(5px);
        }

        .related-links a::before {
            content: "→";
            color: var(--primary-color);
        }

        /* Footer */
        .footer {
            background: var(--bg-card);
            padding: 40px 20px;
            text-align: center;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 215, 0, 0.2);
        }

        .footer p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .footer a {
            color: var(--primary-color);
            text-decoration: none;
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            z-index: 1000;
            transition: transform 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        .whatsapp-float svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        /* Table of Contents */
        .toc {
            background: var(--bg-card);
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            border-left: 4px solid var(--primary-color);
        }

        .toc-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .toc ul {
            list-style: none;
            padding: 0;
        }

        .toc li {
            margin-bottom: 8px;
        }

        .toc a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
        }

        .toc a:hover {
            color: var(--primary-color);
        }

        /* Klarna Badge */
        .klarna-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #FFB3C7;
            color: #0A0A0A;
            padding: 8px 15px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 10px 0;
        }
    
        /* ===== NAVBAR ===== */
        .site-nav {
            position: sticky; top: 0; z-index: 1000;
            background: rgba(11, 15, 25, 0.95);
            border-bottom: 1px solid rgba(234, 191, 17, 0.2);
            backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
        }
        .site-nav-inner {
            max-width: 900px; margin: 0 auto; padding: 12px 20px;
            display: flex; align-items: center; justify-content: space-between;
        }
        .site-nav .brand-link {
            display: flex; align-items: center; gap: 10px;
            text-decoration: none; color: #ecf2ff;
        }
        .site-nav .brand-link img { height: 36px; width: auto; border-radius: 6px; }
        .site-nav .brand-link span { font-weight: 700; font-size: 1rem; }
        .nav-right { display: flex; align-items: center; gap: 10px; }
        .nav-wa {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 8px 16px; border-radius: 999px;
            background: linear-gradient(45deg, #25D366, #128C7E);
            color: #fff; font-weight: 700; font-size: 0.85rem;
            text-decoration: none; transition: transform 0.2s;
        }
        .nav-wa:hover { transform: translateY(-1px); }
        .nav-menu-btn {
            display: flex; align-items: center; justify-content: center;
            width: 40px; height: 40px; border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.14);
            background: transparent; cursor: pointer; color: #fff;
        }
        .nav-menu-btn:hover { background: rgba(255,255,255,0.06); }
        .nav-dropdown {
            display: none; background: rgba(11, 15, 25, 0.98);
            border-bottom: 1px solid rgba(234, 191, 17, 0.2); padding: 8px 0;
        }
        .nav-dropdown.open { display: block; }
        .nav-dropdown a {
            display: block; padding: 12px 24px; color: #ecf2ff;
            text-decoration: none; font-weight: 500; transition: background 0.2s;
            max-width: 900px; margin: 0 auto;
        }
        .nav-dropdown a:hover { background: rgba(255,255,255,0.06); }
        @media (max-width: 600px) {
            .nav-wa span { display: none; }
            .nav-wa { padding: 8px 12px; }
        }
    