        /* === CSS VARIABLES === */
        :root {
            --primary: #5061ff;
            --secondary: #ada5db;
            --dark: #1c1a27;
            --accent: #6bbaa3;
            --white: #ffffff;
            --primary-hover: #4050dd;
            --font-family: 'Inter', system-ui, -apple-system, sans-serif;
            --border-radius: 8px;
            --border-radius-lg: 16px;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
            --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --max-width: 1400px;
            
            /* Blog text colors */
            --text-dark: #1c1a27;
            --text-light: #4b5563;
            --text-muted: #9ca3af;
            --primary-light: rgba(80, 97, 255, 0.1);
            --primary-dark: #4050dd;
            --border-color: #e5e7eb;
            --bg-light: #f9fafb;
        }

        /* === RESET & BASE === */
        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: var(--font-family);
            line-height: 1.6;
            color: var(--dark);
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background: #fafafa;
        }

        img { max-width: 100%; height: auto; }
        a { text-decoration: none; color: inherit; }

        /* === UTILITY CLASSES === */
        .container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
        .text-center { text-align: center; }
        .mb-24 { margin-bottom: 24px; }
        .mb-48 { margin-bottom: 48px; }
        .mt-24 { margin-top: 24px; }
        .mt-48 { margin-top: 48px; }

        /* === TYPOGRAPHY === */
        .h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.2; margin-bottom: 24px; }
        .h2 { font-size: clamp(32px, 4vw, 42px); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
        .h3 { font-size: clamp(24px, 3vw, 32px); font-weight: 600; line-height: 1.3; margin-bottom: 16px; }
        .subtitle { font-size: clamp(18px, 2.5vw, 22px); font-weight: 400; opacity: 0.9; margin-bottom: 32px; line-height: 1.6; }

        /* === BUTTONS === */
        .btn {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 16px 32px; border-radius: var(--border-radius);
            font-size: 17px; font-weight: 600; border: none; cursor: pointer;
            transition: var(--transition); text-decoration: none; white-space: nowrap;
        }
        .btn-primary { background: var(--primary); color: var(--white); }
        .btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 8px 16px rgba(80, 97, 255, 0.3); }
        .btn-secondary { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
        .btn-secondary:hover { background: var(--accent); color: var(--white); box-shadow: 0 8px 16px rgba(107, 186, 163, 0.3); }
        .btn-white { background: var(--white); color: var(--primary); }
        .btn-white:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); }
        .cta-group { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

        /* === HERO SECTION === */
        .hero {
            background: 
                radial-gradient(at 18% 99%, #1c1a27 0px, transparent 50%),
                radial-gradient(at 97% 14%, #1a1825 0px, transparent 50%),
                radial-gradient(at 80% 100%, #2a2638 0px, transparent 50%),
                radial-gradient(at 0% 0%, #1c1a27 0px, transparent 50%),
                radial-gradient(at 40% 50%, #5061ff44 0px, transparent 50%),
                radial-gradient(at 80% 50%, #6bbaa333 0px, transparent 50%),
                linear-gradient(135deg, #0f0e1a 0%, #1c1a27 100%);
            background-size: 200% 200%;
            animation: ambient-move 20s ease-in-out infinite alternate;
            color: var(--white);
            padding: 160px 0 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 90vh;
            display: flex;
            align-items: center;
            z-index: 1;
        }

        @keyframes ambient-move {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-grid {
            position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
            z-index: 0;
            pointer-events: none;
        }

        .hero-content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }

        .hero-stats {
            display: inline-flex; align-items: center; gap: 24px;
            background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50px;
            padding: 12px 28px; margin-bottom: 32px;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
            animation: gentle-float 6s ease-in-out infinite;
        }
        @keyframes gentle-float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }

        .hero-stat-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
        .hero-stat-number { font-size: 18px; font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

        .hero-title {
            font-size: clamp(38px, 5.5vw, 64px); 
            font-weight: 900; 
            line-height: 1.1; 
            margin-bottom: 24px;
            background: linear-gradient(180deg, #ffffff 0%, #c7d2fe 100%);
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
            background-clip: text;
            letter-spacing: -1px;
        }

        .hero-highlight { 
            /* SOLUZIONE: Resetta il gradient del parent */
            background: linear-gradient(135deg, var(--accent), #8ed4bc) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
            position: relative;
            z-index: 1;
        }
        

        .hero-subtitle { font-size: clamp(18px, 2.5vw, 24px); font-weight: 400; opacity: 0.9; margin-bottom: 48px; line-height: 1.6; max-width: 800px; margin-left: auto; margin-right: auto; opacity: 0; animation: slideUpFade 0.8s ease-out forwards 0.4s; }
        .hero-cta-group { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; opacity: 0; animation: slideUpFade 0.8s ease-out forwards 0.6s; }
        @keyframes slideUpFade { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

        .hero-btn { display: inline-flex; align-items: center; gap: 10px; padding: 18px 36px; border-radius: 12px; font-size: 18px; font-weight: 700; border: none; cursor: pointer; transition: all 0.3s ease; text-decoration: none; }
        .hero-btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 8px 20px -5px rgba(80, 97, 255, 0.5); }
        .hero-btn-primary:hover { transform: translateY(-4px); box-shadow: 0 12px 25px -5px rgba(80, 97, 255, 0.6); }
        .hero-btn-secondary { background: rgba(255, 255, 255, 0.05); border: 2px solid var(--accent); color: var(--white); backdrop-filter: blur(10px); }
        .hero-btn-secondary:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 25px -5px rgba(107, 186, 163, 0.4); color: var(--white); }

        .hero-trust { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; opacity: 0.7; font-size: 13px; animation: slideUpFade 0.8s ease-out forwards 0.8s; opacity: 0;}
        .hero-trust-item { display: flex; align-items: center; gap: 8px; }
        .hero-trust-icon { color: var(--accent); font-size: 16px; }

        .hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); animation: scroll-bounce 2s ease-in-out infinite; cursor: pointer; z-index: 2; opacity: 0.7; transition: opacity 0.3s; }
        .hero-scroll:hover { opacity: 1; }
        @keyframes scroll-bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }
        .hero-scroll-icon { width: 30px; height: 50px; border: 2px solid rgba(255, 255, 255, 0.5); border-radius: 20px; position: relative; }
        .hero-scroll-icon::before { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--white); border-radius: 2px; animation: scroll-wheel 2s ease-in-out infinite; }
        @keyframes scroll-wheel { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 24px; } }

        .hero-floating-icon { position: absolute; font-size: 48px; opacity: 0.06; animation: icon-float 12s ease-in-out infinite alternate; z-index: 1; pointer-events: none; }
        .hero-floating-icon:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
        .hero-floating-icon:nth-child(2) { top: 25%; right: 12%; animation-delay: -4s; font-size: 36px;}
        .hero-floating-icon:nth-child(3) { bottom: 25%; left: 12%; animation-delay: -8s; }
        .hero-floating-icon:nth-child(4) { bottom: 35%; right: 8%; animation-delay: -12s; font-size: 40px;}
        @keyframes icon-float { 0% { transform: translate(0, 0) rotate(0deg); } 100% { transform: translate(20px, -20px) rotate(15deg); } }

        /* === FEATURES & VIDEO === */
        .features-container { overflow-x: auto; padding-bottom: 16px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--primary) var(--secondary); }
        .features-container::-webkit-scrollbar { height: 6px; }
        .features-container::-webkit-scrollbar-track { background: rgba(173, 165, 219, 0.2); border-radius: 10px; }
        .features-container::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
        .features-row { display: flex; gap: 24px; min-width: min-content; }
        .feature-card { background: var(--white); border: 1px solid var(--secondary); border-radius: var(--border-radius-lg); padding: 32px; transition: var(--transition); min-width: 280px; max-width: 320px; flex: 1; }
        .feature-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
        .feature-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--white); margin-bottom: 20px; }
        .feature-title { font-size: 20px; font-weight: 600; color: var(--dark); margin-bottom: 12px; }
        .feature-text { color: var(--dark); opacity: 0.85; line-height: 1.6; font-size: 15px; }

        /* VIDEO CONTAINER */
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            max-width: 900px;
            margin: 0 auto 48px auto;
            border-radius: var(--border-radius-lg);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            background: #000;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* === SECTIONS === */
        .section { padding: 80px 0; position: relative; z-index: 2; background-color: var(--white); }
        .section-dark { background: var(--dark); color: var(--white); }
        .section-light { background: var(--white); }
        .section-gradient { background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); }
        .section-subtle { background: linear-gradient(180deg, rgba(173, 165, 219, 0.08), rgba(255, 255, 255, 1)); }

        /* === PRICING === */
        .pricing-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; border-bottom: 1px solid rgba(173, 165, 219, 0.2); padding-bottom: 0; }
        .pricing-tab { padding: 16px 32px; cursor: pointer; border-bottom: 3px solid transparent; font-weight: 600; font-size: 17px; transition: var(--transition); color: var(--dark); opacity: 0.5; }
        .pricing-tab.active { border-bottom-color: var(--primary); color: var(--primary); opacity: 1; }
        .pricing-tab:hover { opacity: 1; }
        .pricing-period-menu { display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; background: rgba(173, 165, 219, 0.08); padding: 8px; border-radius: 12px; width: fit-content; margin-left: auto; margin-right: auto; }
        .pricing-period-btn { padding: 12px 32px; border-radius: 8px; cursor: pointer; font-weight: 600; font-size: 15px; transition: var(--transition); color: var(--dark); opacity: 0.6; background: transparent; border: none; }
        .pricing-period-btn.active { background: var(--primary); color: var(--white); opacity: 1; box-shadow: 0 4px 12px rgba(80, 97, 255, 0.3); }
        .pricing-period-btn:hover { opacity: 1; }
        .pricing-content-section { display: none; }
        .pricing-content-section.active { display: block; }
        .pricing-cards-wrapper { display: flex; justify-content: center; gap: 28px; max-width: 1300px; margin: 0 auto; flex-wrap: wrap; }
        .pricing-plan-card { background: var(--white); border-radius: var(--border-radius-lg); overflow: hidden; position: relative; width: 100%; max-width: 280px; transition: var(--transition); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); display: flex; flex-direction: column; }
        .pricing-plan-card:hover { transform: translateY(-8px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15); }
        
        /* IMPROVED UX: Highlight the Recommended Plan by Default */
        .pricing-plan-card.plus {
            border: 2px solid var(--accent); /* Visual cue */
            transform: scale(1.02); /* Slight prominence */
            z-index: 1;
        }
        .pricing-plan-card.plus:hover {
            transform: scale(1.02) translateY(-8px);
        }

        .pricing-top-badge { position: absolute; top: 16px; right: 16px; background: var(--accent); color: var(--white); padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; z-index: 2; }
        .pricing-card-header { padding: 48px 32px 32px 32px; text-align: center; background: linear-gradient(180deg, rgba(173, 165, 219, 0.03), transparent); }
        .pricing-plan-card.plus .pricing-card-header { background: linear-gradient(180deg, rgba(107, 186, 163, 0.08), transparent); }
        .pricing-plan-name { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
        .pricing-amount { font-size: 52px; font-weight: 800; line-height: 1; color: var(--dark); margin-bottom: 8px; }
        .pricing-plan-card.free .pricing-amount { color: #6b7280; }
        .pricing-plan-card.basic .pricing-amount { color: var(--secondary); }
        .pricing-plan-card.plus .pricing-amount { color: var(--accent); }
        .pricing-plan-card.pro .pricing-amount { color: var(--primary); }
        .pricing-period-label { font-size: 14px; color: var(--dark); opacity: 0.6; font-weight: 500; }
        .pricing-features-list { padding: 0 32px 32px 32px; flex-grow: 1; }
        .pricing-feature-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; font-size: 14px; line-height: 1.5; }
        .pricing-feature-icon { flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; }
        .pricing-feature-icon.included { color: var(--accent); }
        .pricing-feature-icon.excluded { color: #e5e7eb; }
        .pricing-feature-text { color: var(--dark); }
        .pricing-feature-item.excluded .pricing-feature-text { opacity: 0.4; }
        .pricing-card-cta { padding: 0 32px 32px 32px; }
        .pricing-cta-btn { width: 100%; padding: 16px; border-radius: 10px; font-weight: 700; font-size: 15px; border: none; cursor: pointer; transition: var(--transition); text-transform: uppercase; letter-spacing: 0.5px; }
        .pricing-plan-card.free .pricing-cta-btn { background: #f3f4f6; color: #6b7280; border: 2px solid #e5e7eb; }
        .pricing-plan-card.free .pricing-cta-btn:hover { background: #e5e7eb; transform: translateY(-2px); }
        .pricing-plan-card.basic .pricing-cta-btn { background: linear-gradient(135deg, var(--secondary), #9088c9); color: var(--white); }
        .pricing-plan-card.basic .pricing-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(173, 165, 219, 0.4); }
        .pricing-plan-card.plus .pricing-cta-btn { background: linear-gradient(135deg, var(--accent), #5aa089); color: var(--white); box-shadow: 0 4px 12px rgba(107, 186, 163, 0.3); }
        .pricing-plan-card.plus .pricing-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(107, 186, 163, 0.4); }
        .pricing-plan-card.pro .pricing-cta-btn { background: linear-gradient(135deg, var(--primary), #4050dd); color: var(--white); }
        .pricing-plan-card.pro .pricing-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(80, 97, 255, 0.4); }

        /* === TIMELINE === */
        .timeline-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: 1100px; margin: 0 auto; }
        .timeline { position: relative; padding-left: 40px; }
        .timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--primary), rgba(80, 97, 255, 0.3)); border-radius: 10px; }
        .timeline.accent::before { background: linear-gradient(180deg, var(--accent), rgba(107, 186, 163, 0.3)); }
        .timeline-item { position: relative; margin-bottom: 40px; }
        .timeline-item::before { content: ''; position: absolute; left: -48px; top: 6px; width: 18px; height: 18px; border-radius: 50%; background: var(--primary); border: 4px solid var(--dark); box-shadow: 0 0 0 4px rgba(80, 97, 255, 0.2); }
        .timeline.accent .timeline-item::before { background: var(--accent); box-shadow: 0 0 0 4px rgba(107, 186, 163, 0.2); }
        .timeline-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--primary); border-radius: 10px; color: var(--white); margin-right: 12px; margin-bottom: 12px; }
        .timeline.accent .timeline-icon { background: var(--accent); }
        .timeline-title { font-weight: 600; margin-bottom: 8px; font-size: 17px; }
        .timeline-text { opacity: 0.85; line-height: 1.6; font-size: 15px; }

        /* === STATS === */
        .stats { display: flex; justify-content: space-around; gap: 32px; flex-wrap: wrap; text-align: center; margin-bottom: 64px; }
        .stat { flex: 1; min-width: 200px; }
        .stat-number { font-size: 56px; font-weight: 800; margin-bottom: 8px; line-height: 1; }
        .stat-number.primary { background: linear-gradient(135deg, var(--primary), #7b89ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .stat-number.accent { background: linear-gradient(135deg, var(--accent), #8ed4bc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .stat-label { font-size: 17px; opacity: 0.85; }

        /* === TESTIMONIALS === */
        .testimonials { display: flex; gap: 28px; overflow-x: auto; padding-bottom: 16px; -webkit-overflow-scrolling: touch; }
        .testimonial { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: var(--border-radius-lg); padding: 32px; backdrop-filter: blur(10px); min-width: 340px; max-width: 400px; flex: 1; }
        .testimonial-text { font-style: italic; margin-bottom: 24px; line-height: 1.7; font-size: 15px; }
        .testimonial-author { display: flex; align-items: center; gap: 14px; }
        .testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 18px; }
        .testimonial-name { font-weight: 600; font-size: 16px; }
        .testimonial-title { opacity: 0.8; font-size: 14px; }
        .testimonial-stars { color: #ffd700; margin-top: 6px; font-size: 14px; }

        /* === FAQ === */
        .faq-container { max-width: 1000px; margin: 0 auto; }
        .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
        .faq-section h3 { color: var(--primary); margin-bottom: 32px; font-size: 28px; }
        .faq-section.musicians h3 { color: var(--accent); }
        .faq-item { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(173, 165, 219, 0.2); }
        .faq-item:last-child { border-bottom: none; }
        .faq-question { font-weight: 600; font-size: 17px; margin-bottom: 10px; color: var(--dark); line-height: 1.4; }
        .faq-answer { opacity: 0.8; line-height: 1.7; font-size: 15px; }

        /* === FOOTER === */
        .footer { background: var(--dark); color: var(--white); padding: 64px 0 32px; }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
        .footer-brand { max-width: 320px; }
        .footer-logo { font-size: 26px; font-weight: 800; margin-bottom: 16px; background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .footer-tagline { opacity: 0.75; margin-bottom: 24px; line-height: 1.6; font-size: 15px; }
        .footer-social { display: flex; gap: 12px; }
        .footer-social a { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 10px; background: rgba(80, 97, 255, 0.1); color: var(--primary); transition: var(--transition); }
        .footer-social a:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
        .footer-section h4 { font-size: 17px; font-weight: 700; margin-bottom: 20px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { opacity: 0.75; transition: var(--transition); font-size: 15px; }
        .footer-links a:hover { opacity: 1; color: var(--primary); padding-left: 4px; }
        .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 14px; opacity: 0.65; }

        /* === CALLOUT === */
        .callout { background: linear-gradient(135deg, rgba(107, 186, 163, 0.12), rgba(80, 97, 255, 0.12)); border-left: 4px solid var(--accent); padding: 28px 32px; border-radius: 12px; margin-top: 48px; max-width: 900px; margin-left: auto; margin-right: auto; line-height: 1.7; }
        .callout-icon { font-size: 24px; margin-right: 12px; }

        /* === ANIMATIONS === */
        .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }
        .scroll-hint { text-align: center; margin-top: 16px; font-size: 14px; opacity: 0.6; display: none; }

        /* === RESPONSIVE === */
        @media (max-width: 1200px) {
            .pricing-cards-wrapper { max-width: 900px; }
            .pricing-plan-card { max-width: 260px; }
            .timeline-grid { grid-template-columns: 1fr; gap: 48px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 1024px) { .scroll-hint { display: block; } }
        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .section { padding: 60px 0; }
            .hero { padding: 120px 0 80px; min-height: auto; }
            .hero-stats { flex-direction: column; gap: 12px; padding: 16px 24px; width: 100%; border-radius: 24px; }
            .hero-cta-group, .cta-group { flex-direction: column; align-items: stretch; }
            .hero-btn, .btn { width: 100%; justify-content: center; }
            .hero-trust { flex-direction: column; gap: 16px; }
            .hero-scroll, .hero-floating-icon { display: none; }
            .pricing-cards-wrapper { flex-direction: column; align-items: center; }
            .pricing-plan-card { max-width: 100%; transform: none !important; } /* Reset transform on mobile */
            .pricing-period-menu { flex-direction: column; width: 100%; }
            .pricing-period-btn { width: 100%; }
            .faq-grid { grid-template-columns: 1fr; gap: 40px; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
            .stat { min-width: 140px; }
            .stat-number { font-size: 42px; }
        }

      .navbar { width: 100%; background: var(--white); position: fixed; top: 0; left: 0; z-index: 9999; box-shadow: 0 2px 10px rgba(80,97,255,0.07);}
      .navbar-container { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 32px; height: 70px; }
      .navbar-logo { font-size: 22px; font-weight: 700; color: var(--primary); letter-spacing: -1px; }
      .navbar-menu { list-style: none; display: flex; gap: 36px; align-items: center; margin: 0; }
      .navbar-menu li a { color: var(--dark); font-weight: 500; font-size: 16px; transition: color .2s;}
      .navbar-menu li a:hover, .navbar-menu li a:focus { color: var(--primary);}
      .navbar-login-btn { border:1.5px solid var(--primary); padding:7px 20px; border-radius:8px; color:var(--primary); background: none; font-weight: 600;}
      .navbar-login-btn:hover{background:var(--primary);color:#fff;}
      .navbar-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--primary);}
      @media (max-width: 900px) { .navbar-menu { gap:18px; } }
      @media (max-width: 768px) {
        .navbar-container {padding:0 12px;}
        .navbar-menu { 
          position: fixed; top:70px; left:0; width:100%; background: var(--white); flex-direction: column; align-items: flex-start; padding:28px 0 12px 24px; gap: 28px;
          box-shadow:0 10px 35px rgba(0,0,0,0.07); transition: .3s; transform: translateY(-200%); pointer-events: none; opacity: 0;
        }
        .navbar-menu.active { transform: translateY(0); pointer-events: auto; opacity: 1; }
        .navbar-toggle { display:block; }


      }

      /* HERO INTRO */
      .hero-intro {
          text-align: center;
          margin-bottom: 4rem;
          animation: fadeInDown 0.8s ease-out;
      }

      .hero-main-title {
          font-size: 3rem;
          font-weight: 900;
          line-height: 1.2;
          margin-bottom: 1rem;
          color: white;
      }

      .hero-gradient-text {
          background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          position: relative;
      }

      .hero-main-subtitle {
          font-size: 1.25rem;
          color: rgba(255, 255, 255, 0.7);
          font-weight: 400;
      }

      /* HERO SPLIT LAYOUT */
      .hero-split {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 3rem;
          max-width: 1400px;
          margin: 0 auto;
          animation: fadeInUp 0.8s ease-out 0.2s both;
      }

      .hero-side {
          position: relative;
          background: rgba(255, 255, 255, 0.02);
          border: 2px solid rgba(255, 255, 255, 0.08);
          border-radius: 24px;
          overflow: hidden;
          transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .hero-side-inner {
          position: relative;
          z-index: 2;
          padding: 3rem;
      }

      /* GLOW EFFECT */
      .hero-side-glow {
          position: absolute;
          top: -50%;
          left: -50%;
          width: 200%;
          height: 200%;
          background: radial-gradient(
              circle at center,
              rgba(99, 102, 241, 0.15) 0%,
              transparent 70%
          );
          opacity: 0;
          transition: all 0.6s ease;
          pointer-events: none;
      }

      .hero-musician .hero-side-glow {
          background: radial-gradient(
              circle at center,
              rgba(236, 72, 153, 0.15) 0%,
              transparent 70%
          );
      }

      .hero-side:hover {
          transform: translateY(-8px) scale(1.02);
          border-color: rgba(255, 255, 255, 0.2);
          box-shadow: 
              0 20px 60px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.1) inset;
      }

      .hero-side:hover .hero-side-glow {
          opacity: 1;
          animation: pulse 3s ease-in-out infinite;
      }

      .hero-orchestra:hover {
          border-color: var(--primary);
          box-shadow: 
              0 20px 60px rgba(99, 102, 241, 0.3),
              0 0 0 1px var(--primary) inset;
      }

      .hero-musician:hover {
          border-color: var(--accent);
          box-shadow: 
              0 20px 60px rgba(236, 72, 153, 0.3),
              0 0 0 1px var(--accent) inset;
      }

      /* BADGE */
      .hero-badge {
          display: inline-flex;
          align-items: center;
          gap: 0.5rem;
          background: linear-gradient(135deg, var(--primary), #667eea);
          color: white;
          padding: 0.5rem 1.25rem;
          border-radius: 50px;
          font-size: 0.8125rem;
          font-weight: 700;
          margin-bottom: 1.5rem;
          text-transform: uppercase;
          letter-spacing: 1px;
          box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
          animation: slideInLeft 0.6s ease-out;
      }

      .hero-badge-musician {
          background: linear-gradient(135deg, var(--accent), #f093fb);
          box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
          animation: slideInRight 0.6s ease-out;
      }

      /* ICON LARGE */
      .hero-icon-large {
          width: 80px;
          height: 80px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.05));
          border: 2px solid rgba(99, 102, 241, 0.2);
          border-radius: 20px;
          margin-bottom: 1.5rem;
          transition: all 0.3s ease;
      }

      .hero-icon-large i {
          font-size: 2.5rem;
          color: var(--primary);
          transition: all 0.3s ease;
      }

      .hero-musician .hero-icon-large {
          background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(236, 72, 153, 0.05));
          border-color: rgba(236, 72, 153, 0.2);
      }

      .hero-musician .hero-icon-large i {
          color: var(--accent);
      }

      .hero-side:hover .hero-icon-large {
          transform: scale(1.1) rotate(5deg);
      }

      .hero-side:hover .hero-icon-large i {
          transform: scale(1.1);
      }

      /* TITLES */
      .hero-side-title {
          font-size: 2rem;
          font-weight: 800;
          line-height: 1.2;
          margin-bottom: 1rem;
          color: white;
      }

      .hero-side-subtitle {
          font-size: 1.0625rem;
          line-height: 1.6;
          color: rgba(255, 255, 255, 0.75);
          margin-bottom: 2rem;
      }

      /* BENEFITS LIST */
      .hero-benefits {
          list-style: none;
          padding: 0;
          margin: 0 0 2rem 0;
      }

      .hero-benefits li {
          display: flex;
          align-items: flex-start;
          gap: 1rem;
          padding: 0.875rem 0;
          font-size: 1rem;
          color: rgba(255, 255, 255, 0.9);
          border-bottom: 1px solid rgba(255, 255, 255, 0.05);
          transition: all 0.3s ease;
      }

      .hero-benefits li:hover {
          padding-left: 0.5rem;
          color: white;
      }

      .hero-benefits li:last-child {
          border-bottom: none;
      }

      .benefit-icon {
          width: 24px;
          height: 24px;
          min-width: 24px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: linear-gradient(135deg, var(--accent), #f093fb);
          border-radius: 6px;
          transition: all 0.3s ease;
      }

      .hero-orchestra .benefit-icon {
          background: linear-gradient(135deg, var(--primary), #667eea);
      }

      .benefit-icon i {
          color: white;
          font-size: 0.75rem;
      }

      .hero-benefits li:hover .benefit-icon {
          transform: scale(1.15) rotate(360deg);
      }

      /* BUTTONS */
      .hero-side .hero-btn {
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 0.75rem;
          padding: 1.125rem 2rem;
          font-size: 1.125rem;
          font-weight: 700;
          position: relative;
          overflow: hidden;
          transition: all 0.3s ease;
      }

      .hero-btn::before {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          width: 0;
          height: 0;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.2);
          transform: translate(-50%, -50%);
          transition: width 0.6s, height 0.6s;
      }

      .hero-btn:hover::before {
          width: 300px;
          height: 300px;
      }

      .hero-btn span {
          position: relative;
          z-index: 1;
      }

      .hero-btn i:last-child {
          transition: transform 0.3s ease;
      }

      .hero-btn:hover i:last-child {
          transform: translateX(5px);
      }

      /* TRUST INDICATORS */
      .hero-side-trust {
          display: flex;
          gap: 2rem;
          margin-top: 1.5rem;
          padding-top: 1.5rem;
          border-top: 1px solid rgba(255, 255, 255, 0.08);
      }

      .trust-item {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          color: rgba(255, 255, 255, 0.6);
          font-size: 0.875rem;
          transition: all 0.3s ease;
      }

      .trust-item:hover {
          color: rgba(255, 255, 255, 0.9);
          transform: translateY(-2px);
      }

      .trust-item i {
          color: var(--accent);
          font-size: 1rem;
      }

      .hero-orchestra .trust-item i {
          color: var(--primary);
      }

      /* ANIMATIONS */
      @keyframes fadeInDown {
          from {
              opacity: 0;
              transform: translateY(-30px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

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

      @keyframes slideInLeft {
          from {
              opacity: 0;
              transform: translateX(-20px);
          }
          to {
              opacity: 1;
              transform: translateX(0);
          }
      }

      @keyframes slideInRight {
          from {
              opacity: 0;
              transform: translateX(20px);
          }
          to {
              opacity: 1;
              transform: translateX(0);
          }
      }

      @keyframes pulse {
          0%, 100% {
              opacity: 0.5;
              transform: scale(1);
          }
          50% {
              opacity: 1;
              transform: scale(1.1);
          }
      }

      /* RESPONSIVE */
      @media (max-width: 1024px) {
          .hero-main-title {
              font-size: 2.5rem;
          }
          
          .hero-split {
              grid-template-columns: 1fr;
              gap: 2rem;
          }
          
          .hero-side:hover {
              transform: translateY(-5px) scale(1.01);
          }
      }

      @media (max-width: 768px) {
          .hero-intro {
              margin-bottom: 3rem;
          }
          
          .hero-main-title {
              font-size: 2rem;
          }
          
          .hero-main-subtitle {
              font-size: 1.125rem;
          }
          
          .hero-side-inner {
              padding: 2rem;
          }
          
          .hero-side-title {
              font-size: 1.75rem;
          }
          
          .hero-icon-large {
              width: 60px;
              height: 60px;
          }
          
          .hero-icon-large i {
              font-size: 2rem;
          }
          
          .hero-benefits li {
              font-size: 0.9375rem;
          }
          
          .hero-side-trust {
              flex-direction: column;
              gap: 0.75rem;
          }
      }

      /* STAT DESCRIPTIONS */
.stat-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    font-weight: 400;
}

.stat-number i {
    font-size: 3rem;
}

/* BETA BADGES */
.testimonial-beta,
.testimonial-vision {
    position: relative;
    padding-top: 3.5rem;
}

.beta-badge,
.vision-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.vision-badge {
    background: linear-gradient(135deg, var(--primary), #667eea);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.beta-badge i,
.vision-badge i {
    font-size: 0.875rem;
}

/* TESTIMONIAL UPDATES */
.testimonial-vision .testimonial-avatar {
    background: linear-gradient(135deg, var(--primary), #667eea);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-vision .testimonial-avatar i {
    font-size: 1.25rem;
    color: white;
}

/* EARLY ACCESS CTA BOX */
.early-access-cta {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-box {
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.1) 0%,
        rgba(236, 72, 153, 0.1) 100%
    );
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary) 0%,
        var(--accent) 50%,
        var(--primary) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.cta-box h3 {
    color: white;
    font-weight: 800;
}

.cta-box strong {
    color: var(--accent);
    font-weight: 800;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cta-box {
        padding: 2rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
    
    .beta-badge,
    .vision-badge {
        font-size: 0.6875rem;
        padding: 0.3rem 0.75rem;
    }
}

/* ENSEMBLE SECTION STYLES */
.ensemble-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .ensemble-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ensemble-benefits,
    .ensemble-features {
        padding: 1.5rem !important;
    }

    .faq-grid {
        grid-template-columns: 1fr !important;
    }

    .faq-section.ensemble {
        padding: 1.5rem !important;
    }
}

/* =====================================================
   BLOG STYLES
   ===================================================== */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    color: white;
}

.blog-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.blog-card-image i {
    opacity: 0.8;
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-category {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.blog-card-meta i {
    font-size: 0.75rem;
}

/* =====================================================
   ARTICLE STYLES
   ===================================================== */

/* Article Main Container */
.article-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 6rem;
}

/* Breadcrumb */
.article-breadcrumb {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.article-breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Article Header */
.article-header {
    margin-bottom: 2rem;
    text-align: center;
}

.article-category {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta i {
    color: var(--primary);
}

/* Featured Image */
.article-featured-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 16px;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
}

.article-featured-image i {
    opacity: 0.8;
}

/* Article Content */
.article-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    margin-bottom: 1.25rem;
}

.article-content a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.article-content a:hover {
    border-bottom-color: var(--primary);
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.75rem;
}

.article-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* Article Table */
.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    font-size: 0.9375rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.article-table thead {
    background: var(--primary);
    color: white;
}

.article-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.article-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.article-table tbody tr:last-child td {
    border-bottom: none;
}

.article-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.article-table tbody tr:hover {
    background: var(--primary-light);
}

/* Article Callout */
.article-callout {
    background: linear-gradient(135deg, var(--primary-light) 0%, #e8f4fc 100%);
    border-left: 4px solid var(--primary);
    padding: 1.25rem 1.5rem;
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

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

.article-callout i {
    margin-right: 0.5rem;
}

/* Article CTA Box */
.article-cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 2.5rem 0;
}

.article-cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.article-cta-box p {
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

.article-cta-box .btn {
    background: white;
    color: var(--primary);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.article-cta-box .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Related Articles */
.related-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.related-articles h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.related-articles .blog-card {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.related-articles .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: 3rem;
    align-items: flex-start;
}

.author-bio-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-bio strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.author-bio p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

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

@media (max-width: 768px) {
    .blog-hero {
        padding: 5rem 1.5rem 3rem;
    }

    .blog-hero h1 {
        font-size: 1.75rem;
    }

    .blog-hero p {
        font-size: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .blog-card-image {
        height: 160px;
        font-size: 3rem;
    }

    .article-main {
        padding: 1.5rem;
        padding-top: 5rem;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-meta {
        gap: 1rem;
        font-size: 0.8125rem;
    }

    .article-featured-image {
        height: 200px;
        font-size: 3.5rem;
        border-radius: 12px;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-content h2 {
        font-size: 1.25rem;
    }

    .article-content h3 {
        font-size: 1.125rem;
    }

    .article-table {
        font-size: 0.8125rem;
    }

    .article-table th,
    .article-table td {
        padding: 0.75rem 0.5rem;
    }

    .article-cta-box {
        padding: 1.5rem;
    }

    .article-cta-box h3 {
        font-size: 1.25rem;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .author-bio-avatar {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
}
