/* ==========================================================================
   PAGE AI-CHATBOTS
   Styles for: AI Чат-боти та голосові агенти
   ========================================================================== */

/* --- HERO CHATBOTS --- */

.hero--chatbots {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* --- CHATBOTS BROWSER MOCKUP --- */

.cb-interface {
    display: flex;
    height: 100%;
    background: #0c111c;
}

.cb-sidebar {
    width: 140px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    flex-shrink: 0;
}

.cb-sidebar-logo {
    height: 10px;
    width: 60%;
    background: var(--primary);
    opacity: 0.3;
    margin-bottom: 20px;
    border-radius: 4px;
}

.cb-sidebar-line {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 12px;
    width: 80%;
}

.cb-sidebar-line--med { width: 80%; }

.cb-sidebar-line:nth-child(3) { width: 70%; }

.cb-sidebar-line:nth-child(4) { width: 90%; }

.cb-main {
    flex: 1;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cb-header-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.cb-live-dots {
    display: flex;
    gap: 4px;
}

.cb-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #4ade80;
}

.cb-dot--dim1 { opacity: 0.5; }

.cb-dot--dim2 { opacity: 0.3; }

.cb-chat-bubbles {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.chat-bubble {
    padding: 8px 12px;
    border-radius: 12px;
    width: fit-content;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chat-bubble--left {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px 12px 12px 4px;
}

.chat-bubble--right {
    align-self: flex-end;
    background: var(--primary);
    opacity: 0.8;
    border-radius: 12px 12px 4px 12px;
}

.bubble-line {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.bubble-line--long { width: 90%; }

.bubble-line--med { width: 60%; }

.bubble-line--full { width: 95%; }

.bubble-line--short { width: 40%; }

.bubble-line--primary { width: 80%; background: rgba(255, 255, 255, 0.3); }

.cb-input-bar {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.cb-input-stub {
    height: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

/* --- TRANSFORMATION (Блок 1) --- */

.section-intro--alt {
    font-size: 18px;
    margin-top: 20px;
    color: var(--text-muted);
    line-height: 1.6;
}

.transformation-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.transformation-card {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 10px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.transformation-card:hover {
    transform: scale(1.01);
}

.pain-side {
    padding: 30px;
    background: rgba(255, 77, 77, 0.03);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.solution-side {
    padding: 30px;
    background: rgba(74, 222, 128, 0.03);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.pain-label {
    color: #ff4d4d;
    font-size: 14px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.solution-label {
    color: #4ade80;
    font-size: 14px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.transform-text {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.transform-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.transform-arrow-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 0 20px var(--primary-glow);
}

.accordion.sectors-nav {
    border-right: 1px solid var(--card-border);
    padding-right: 20px;
}

.accordion-item.active .arrow {
    opacity: 1;
}

.approach-panel.card {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.sector-content {
    display: none;
}

.sector-content.active {
    display: block;
}

.sector-big-num {
    font-size: 48px;
    font-weight: 800;
    opacity: 0.3;
}

.sector-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.web-feature-card.wfc-mini {
    padding: 16px;
    min-height: auto;
    border: 1px solid rgba(252, 96, 17, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.wfc-label {
    display: block;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 14px;
}

.wfc-value {
    font-size: 14px;
    opacity: 0.8;
    color: #fff;
}

/* --- BUSINESS VALUE (Блок 3) --- */

.bv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.bv-left {
    position: sticky;
    top: 100px;
}

.bv-desc {
    font-size: 18px;
    margin-top: 24px;
    color: var(--text-muted);
    line-height: 1.6;
}

.bv-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.bv-stat { text-align: left; }

.bv-stat-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    font-family: var(--font-heading);
}

.bv-stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.bv-right {
    display: flex;
    flex-direction: column;
}

.bv-item {
    margin-bottom: 60px;
}

.bv-item-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.bv-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.5;
    font-family: var(--font-heading);
}

.bv-title {
    font-size: 24px;
    color: #fff;
}

.bv-text {
    margin: 16px 0 0 50px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- SPHERE CARDS (Загальні) --- */

.sphere-cards-grid {
    display: grid;
    gap: 24px;
}

.sphere-cards-grid--2 { grid-template-columns: repeat(2, 1fr); }

.sphere-cards-grid--3 { grid-template-columns: repeat(3, 1fr); }

.sphere-cards-grid--mt { margin-top: 60px; }

.sphere-card {
    min-height: 280px;
    padding: 30px;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.sphere-card:hover {
    transform: translateY(-4px);
    border-color: rgba(252, 96, 17, 0.2);
}

.sphere-card.liquid-glass {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.06);
}

.sphere-card--featured {
    border-color: var(--primary) !important;
    box-shadow: 0 0 30px rgba(252, 96, 17, 0.1);
}

.card-badge {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary);
    background: rgba(252, 96, 17, 0.08);
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 20px;
}

.card-points {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-points li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-points li::before {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- SECTION CTA / ACTIONS --- */

.section-cta {
    margin-top: 50px;
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.section-header--mt80 {
    margin-top: 80px;
}

/* --- CHANNELS GRID --- */

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.channel-card {
    padding: 30px;
    text-align: left;
}

.channel-icon {
    color: var(--primary);
    margin-bottom: 15px;
}

.channel-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #fff;
}

.channel-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- CTA BANNER (Блок 6) --- */

.cta-section {
    overflow: hidden;
    position: relative;
}

.cta-glass {
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(252, 96, 17, 0.2);
    background: radial-gradient(circle at top right, rgba(252, 96, 17, 0.05), transparent);
    position: relative;
    z-index: 2;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-link:hover { color: #fff; }

/* --- COMPARISON TABLE (Блок 10) --- */

.comparison-table-wrap {
    margin-top: 40px;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.comparison-table th {
    padding: 20px 30px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table td {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
}

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

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

.comparison-best {
    font-weight: 600;
}

/* --- SECURITY NOTE --- */

.security-note {
    margin-top: 40px;
    padding: 24px;
    background: rgba(74, 222, 128, 0.03);
    border: 1px solid rgba(74, 222, 128, 0.1);
    border-radius: 16px;
    color: #4ade80;
    font-size: 15px;
    line-height: 1.6;
}

/* --- PROCESS MILESTONES (from ai-assistants) --- */

.section-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.6;
}

/* --- TECH TABS (shared patterns with ai-assistants) --- */

.section-title--lg {
    font-size: 48px;
    line-height: 1.1;
}

.section-intro {
    color: var(--text-muted);
    font-size: 18px;
    margin-top: 24px;
    line-height: 1.6;
}

.tech-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon-wrap img {
    max-width: 48px;
    max-height: 40px;
    object-fit: contain;
}

.tech-name-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

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

@media (max-width: 1200px) {
    .tech-tabs-container {
        grid-template-columns: 280px 1fr;
    }

    .sphere-cards-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-grid {
        grid-template-columns: 260px 1fr;
    }

    .bv-grid {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .channels-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   INLINE STYLES FROM ai-chatbots.html
   ========================================================================== */

/* LIQUID GLASS SYSTEM - PREMIUM VERSION */

.liquid-glass {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(40px) saturate(200%);
            -webkit-backdrop-filter: blur(40px) saturate(200%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden !important;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                        border-color 0.4s ease,
                        box-shadow 0.4s ease;
        }

.liquid-glass::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(252, 96, 17, 0.1), 
                transparent 40%
            );
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
            z-index: 0;
        }

.liquid-glass:hover::before {
            opacity: 1;
        }

.liquid-glass::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient(
                135deg, 
                rgba(255, 255, 255, 0.2), 
                rgba(255, 255, 255, 0.05) 50%, 
                rgba(255, 255, 255, 0.1)
            );
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            z-index: 2;
        }

.liquid-glass:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(252, 96, 17, 0.4);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(252, 96, 17, 0.15);
        }

.liquid-glass > * {
            position: relative;
            z-index: 1;
        }

/* SPHERE CARD PATTERN */

.sphere-card {
            min-height: 420px;
            display: flex;
            flex-direction: column;
            padding: 40px;
            border-radius: 24px;
        }

.sphere-card:hover .icon-wrap {
            background: var(--primary);
            color: white;
            box-shadow: 0 0 20px var(--primary-glow);
        }

.icon-wrap svg {
            width: 28px;
            height: 28px;
        }

.card-badge {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 12px;
        }

.sphere-card .card-title {
            font-size: 24px;
            margin-bottom: 16px;
            font-family: 'Manrope', sans-serif;
            color: #fff;
        }

.sphere-card .card-desc {
            font-size: 15px;
            line-height: 1.6;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

.card-points {
            margin-top: auto;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.card-points li {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 10px;
        }

.card-points li::before {
            content: "";
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
            flex-shrink: 0;
            opacity: 0.6;
        }

/* Specific Styles for AI Chatbots Page */

.breadcrumb-tag {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

.breadcrumb-tag a {
            color: var(--text-muted);
            transition: color 0.3s;
        }

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

.tag-pill {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 13px;
            color: var(--text-main);
            white-space: nowrap;
        }

/* Hero Chat Mockup */

.chat-dashboard {
            display: flex;
            height: 100%;
            background: #0f172a;
        }

.chat-sidebar {
            width: 80px;
            border-right: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-direction: column;
            padding: 15px 0;
            gap: 15px;
            align-items: center;
        }

.chat-sidebar-item {
            width: 40px;
            height: 40px;
            position: relative;
            cursor: pointer;
        }

.chat-avatar {
            width: 100%;
            height: 100%;
            background: rgba(252, 96, 17, 0.2);
            border-radius: 10px;
        }

.chat-sidebar-item.active .chat-avatar {
            background: var(--primary);
        }

.chat-status-dot {
            position: absolute;
            bottom: -2px;
            right: -2px;
            width: 10px;
            height: 10px;
            background: #4ade80;
            border: 2px solid #0f172a;
            border-radius: 50%;
        }

.chat-main {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

.chat-header {
            height: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

.chat-status-label {
            font-size: 10px;
            color: #4ade80;
            margin-top: 4px;
        }

.chat-messages {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

.msg {
            display: flex;
        }

.msg--outgoing {
            justify-content: flex-end;
        }

.msg-bubble {
            max-width: 80%;
            padding: 12px 16px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
        }

.msg--outgoing .msg-bubble {
            background: var(--primary);
            border-bottom-right-radius: 2px;
        }

.msg--incoming .msg-bubble {
            border-bottom-left-radius: 2px;
        }

.msg-bubble--ai {
            border: 1px solid rgba(252, 96, 17, 0.3);
            background: rgba(252, 96, 17, 0.05);
        }

.chat-input-area {
            height: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

.chat-input-stub {
            flex: 1;
            height: 36px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 18px;
        }

.chat-send-btn {
            width: 36px;
            height: 36px;
            background: var(--primary);
            border-radius: 50%;
        }

.stub-line {
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
        }

.stub-med { width: 60px; }

.stub-short { width: 30px; }

.stub-long { width: 100px; }

.ai-typing {
            display: flex;
            gap: 4px;
            margin-bottom: 8px;
        }

.ai-typing span {
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            animation: typing 1.4s infinite ease-in-out;
        }

.ai-typing span:nth-child(1) { animation-delay: 0s; }

.ai-typing span:nth-child(2) { animation-delay: 0.2s; }

.ai-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
            0%, 60%, 100% { transform: translateY(0); }
            30% { transform: translateY(-4px); }
        }

.ai-pulse-mini {
            width: 12px;
            height: 12px;
            background: #4ade80;
            border-radius: 50%;
            position: relative;
        }

.ai-pulse-mini::after {
            content: '';
            position: absolute;
            inset: -4px;
            background: #4ade80;
            border-radius: 50%;
            opacity: 0.3;
            animation: pulse-mini 2s infinite;
        }

@keyframes pulse-mini {
            0% { transform: scale(1); opacity: 0.3; }
            100% { transform: scale(2); opacity: 0; }
        }

/* Overview */

.lead-text-block {
            margin-top: 40px;
            padding: 40px;
            background: rgba(252, 96, 17, 0.03);
            border-left: 4px solid var(--primary);
            border-radius: 0 24px 24px 0;
        }

.lead-quote {
            font-size: 24px;
            font-weight: 500;
            line-height: 1.5;
            color: var(--text-main);
            font-style: italic;
        }

.overview-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

.icon-arrow {
            color: var(--primary);
            font-size: 20px;
            font-weight: bold;
        }

.bot-types-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

.type-card--ai {
            border-color: var(--primary-glow);
            background: rgba(252, 96, 17, 0.05);
        }

/* Business Value */

.value-layout {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            margin-top: 60px;
            align-items: center;
        }

.big-num {
            font-size: 120px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            font-family: var(--font-heading);
        }

.big-num small {
            font-size: 60px;
        }

.big-num-label {
            margin-top: 20px;
        }

.big-num-label strong {
            display: block;
            font-size: 24px;
            margin-bottom: 8px;
        }

.benefit-check-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

.check-icon {
            width: 32px;
            height: 32px;
            background: var(--primary-glow);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

.roi-bar-block {
            margin-top: 60px;
            padding: 30px;
            background: var(--bg-alt);
            border-radius: 16px;
            text-align: left;
            border: 1px solid var(--card-border);
        }

/* Channels Grid */

.channels-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

.channel-icon {
            font-size: 32px;
            margin-bottom: 20px;
        }

/* Voice Lead */

.voice-lead {
            text-align: left;
            max-width: 800px;
            margin: 40px auto 0;
        }

.voice-lead h3 {
            font-size: 32px;
            margin-bottom: 16px;
        }

.voice-icon {
            font-size: 40px;
            margin-bottom: 24px;
        }

/* Features */

.features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 40px;
        }

.feature-icon {
            font-size: 24px;
            margin-bottom: 16px;
        }

/* Architecture */

.architecture-layout {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            margin-top: 40px;
        }

.arch-pills {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 30px;
        }

.arch-pills li {
            background: rgba(252, 96, 17, 0.1);
            color: var(--primary);
            padding: 10px 20px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 14px;
            display: inline-block;
            width: fit-content;
        }

.arch-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

/* Comparison Table */

.comparison-table-wrap {
            margin-top: 40px;
            overflow-x: auto;
        }

.comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 24px;
            overflow: hidden;
        }

.comparison-table th {
            background: rgba(255, 255, 255, 0.05);
            padding: 24px;
            text-align: left;
            font-size: 13px;
            letter-spacing: 1px;
            color: var(--text-muted);
        }

.comparison-table td {
            padding: 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 16px;
        }

/* Security */

.security-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }

.security-icon-sec {
            font-size: 32px;
            margin-bottom: 24px;
        }

.security-note {
            margin-top: 40px;
            padding: 20px;
            background: rgba(74, 222, 128, 0.05);
            border-radius: 12px;
            text-align: left;
            border: 1px solid rgba(74, 222, 128, 0.2);
            color: #4ade80;
        }

/* Knowledge Base */

.knowledge-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 40px;
        }

.sources-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 24px;
        }

.sources-list li {
            padding-left: 24px;
            position: relative;
        }

.sources-list li::before {
            content: '•';
            color: var(--primary);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
