/* ADICIS™ Lab — Panel: panel-framework */
#adicisFrameworkFullscreen {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            overflow-y: auto;
            background: linear-gradient(135deg, #020B1F 0%, #0C1B2A 50%, #1e3c72 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            color: #ffffff;
            padding: 60px 20px;
            line-height: 1.8;
        }
        #adicisFrameworkFullscreen.adicis-open { opacity: 1; }

        #adicisFrameworkCloseBtn {
            position: fixed;
            top: 20px;
            right: 25px;
            z-index: 10000;
            width: 48px;
            height: 48px;
            border: 2px solid rgba(42, 82, 152, 0.8);
            border-radius: 50%;
            background: rgba(2,11,31,0.9);
            backdrop-filter: blur(10px);
            color: #2a5298;
            font-size: 1.8em;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-family: inherit;
            line-height: 1;
            padding: 0;
        }
        #adicisFrameworkCloseBtn.adicis-open { display: flex; }
        #adicisFrameworkCloseBtn:hover {
            transform: rotate(90deg) scale(1.1);
            background: #2a5298;
            color: #020B1F;
            box-shadow: 0 5px 20px rgba(42,82,152,0.5);
        }

        #adicisFrameworkFullscreen .framework-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 80px 40px;
            animation: fadeInUp 1s ease;
        }
        #adicisFrameworkFullscreen .framework-header {
            text-align: center;
            margin-bottom: 70px;
        }
        #adicisFrameworkFullscreen .section-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(42, 82, 152, 0.15);
            border: 1px solid #2a5298;
            border-radius: 20px;
            color: #2a5298;
            font-size: 0.85em;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 25px;
            text-transform: uppercase;
        }
        #adicisFrameworkFullscreen .framework-title {
            font-size: 3.5em;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #2a5298 50%, #4a7bc8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        #adicisFrameworkFullscreen .framework-subtitle {
            font-size: 1.5em;
            font-weight: 300;
            opacity: 0.9;
            color: #4a7bc8;
        }
        #adicisFrameworkFullscreen .main-definition {
            background: linear-gradient(135deg, rgba(42,82,152,0.15), rgba(74,123,200,0.08));
            border-left: 5px solid #2a5298;
            border-radius: 15px;
            padding: 40px 45px;
            margin: 50px 0;
            font-size: 1.25em;
            line-height: 1.9;
            box-shadow: 0 15px 50px rgba(0,0,0,0.3);
            position: relative;
        }
        #adicisFrameworkFullscreen .main-definition strong { color: #4a7bc8; font-weight: 700; }
        #adicisFrameworkFullscreen .highlight-term {
            color: #FFD95A;
            font-weight: 700;
            padding: 2px 6px;
            background: rgba(255,217,90,0.1);
            border-radius: 4px;
        }
        #adicisFrameworkFullscreen .features-section { margin: 70px 0; }
        #adicisFrameworkFullscreen .features-section h3 {
            font-size: 2em;
            color: #4a7bc8;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 700;
        }
        #adicisFrameworkFullscreen .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        #adicisFrameworkFullscreen .feature-card {
            background: rgba(42,82,152,0.1);
            border: 2px solid rgba(42,82,152,0.3);
            border-radius: 20px;
            padding: 35px;
            transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        #adicisFrameworkFullscreen .feature-card:hover {
            transform: translateY(-8px);
            border-color: #2a5298;
            box-shadow: 0 20px 60px rgba(42,82,152,0.4);
        }
        #adicisFrameworkFullscreen .feature-icon { font-size: 2.5em; margin-bottom: 20px; display: block; }
        #adicisFrameworkFullscreen .feature-title { font-size: 1.4em; font-weight: 700; color: #4a7bc8; margin-bottom: 15px; }
        #adicisFrameworkFullscreen .feature-description { font-size: 1.05em; opacity: 0.9; line-height: 1.8; }
        #adicisFrameworkFullscreen .text-block {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 40px;
            margin: 50px 0;
            backdrop-filter: blur(10px);
        }
        #adicisFrameworkFullscreen .text-block p { font-size: 1.15em; line-height: 1.9; margin-bottom: 20px; opacity: 0.95; }
        #adicisFrameworkFullscreen .text-block p:last-child { margin-bottom: 0; }
        #adicisFrameworkFullscreen .not-do-section {
            background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(255,107,107,0.05));
            border: 2px solid rgba(255,107,107,0.3);
            border-radius: 25px;
            padding: 45px;
            margin: 60px 0;
        }
        #adicisFrameworkFullscreen .not-do-section h3 {
            font-size: 2em;
            color: #FF6B6B;
            margin-bottom: 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        #adicisFrameworkFullscreen .not-do-section h3::before { content: '△'; font-size: 1.2em; }
        #adicisFrameworkFullscreen .not-do-list { list-style: none; margin: 0; }
        #adicisFrameworkFullscreen .not-do-list li {
            font-size: 1.2em;
            margin: 18px 0;
            padding-left: 40px;
            position: relative;
            line-height: 1.8;
        }
        #adicisFrameworkFullscreen .not-do-list li::before {
            content: '✗';
            position: absolute;
            left: 0;
            color: #FF6B6B;
            font-weight: 900;
            font-size: 1.5em;
        }
        #adicisFrameworkFullscreen .not-do-explanation {
            margin-top: 30px;
            padding: 25px;
            background: rgba(0,0,0,0.2);
            border-radius: 15px;
            font-size: 1.15em;
            line-height: 1.8;
            border-left: 4px solid #FF6B6B;
        }
        #adicisFrameworkFullscreen .not-do-explanation strong { color: #FF6B6B; }
        #adicisFrameworkFullscreen .llm-integration {
            background: linear-gradient(135deg, rgba(118,75,162,0.1), rgba(118,75,162,0.05));
            border: 2px solid rgba(118,75,162,0.3);
            border-radius: 25px;
            padding: 45px;
            margin: 60px 0;
        }
        #adicisFrameworkFullscreen .llm-integration h3 { font-size: 2em; color: #AB47BC; margin-bottom: 25px; font-weight: 700; }
        #adicisFrameworkFullscreen .llm-integration p { font-size: 1.15em; line-height: 1.9; margin-bottom: 15px; opacity: 0.95; }
        #adicisFrameworkFullscreen .llm-role {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 30px;
            margin: 30px 0;
            align-items: center;
        }
        #adicisFrameworkFullscreen .llm-box {
            padding: 25px;
            background: rgba(118,75,162,0.1);
            border-radius: 15px;
            border: 1px solid rgba(118,75,162,0.3);
            text-align: center;
        }
        #adicisFrameworkFullscreen .llm-box-title { font-weight: 700; color: #AB47BC; margin-bottom: 10px; font-size: 1.1em; }
        #adicisFrameworkFullscreen .llm-arrow { font-size: 2.5em; color: #AB47BC; }
        #adicisFrameworkFullscreen .new-category {
            background: linear-gradient(135deg, rgba(255,217,90,0.15), rgba(255,183,77,0.1));
            border: 3px solid #FFD95A;
            border-radius: 25px;
            padding: 50px;
            margin: 70px 0;
            text-align: center;
            box-shadow: 0 25px 80px rgba(255,217,90,0.3);
        }
        #adicisFrameworkFullscreen .new-category h3 { font-size: 2.5em; color: #FFD95A; margin-bottom: 30px; font-weight: 900; }
        #adicisFrameworkFullscreen .new-category p { font-size: 1.3em; line-height: 1.9; margin-bottom: 20px; }
        #adicisFrameworkFullscreen .new-category p:last-child { margin-bottom: 0; }
        #adicisFrameworkFullscreen .new-category strong { color: #FFD95A; font-weight: 700; }

        @media (max-width: 968px) {
            #adicisFrameworkFullscreen .framework-section { padding: 50px 25px; }
            #adicisFrameworkFullscreen .framework-title { font-size: 2.5em; }
            #adicisFrameworkFullscreen .features-grid { grid-template-columns: 1fr; }
            #adicisFrameworkFullscreen .llm-role { grid-template-columns: 1fr; }
            #adicisFrameworkFullscreen .new-category { padding: 35px 25px; }
            #adicisFrameworkFullscreen .new-category h3 { font-size: 1.8em; }
        }
        @media (max-width: 640px) {
            #adicisFrameworkFullscreen .framework-title { font-size: 2em; }
            #adicisFrameworkFullscreen .main-definition { font-size: 1em; }
            #adicisFrameworkFullscreen .feature-card { padding: 25px; }
            #adicisFrameworkFullscreen .not-do-section,
            #adicisFrameworkFullscreen .llm-integration { padding: 30px 20px; }
            #adicisFrameworkFullscreen .new-category p { font-size: 1.1em; }
        }
