/* ========== RAG Demo Page Styles ========== */

/* Hero */
.demo-hero {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #f0f9ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.demo-hero::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.demo-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

/* Demo Section */
.demo-section {
    padding: 64px 0;
    background: #f8fafc;
}
.demo-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

/* Demo Panel (terminal-style) */
.demo-panel {
    background: #0F172A;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.demo-panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: #1E293B;
    border-bottom: 1px solid #334155;
}
.demo-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
}
.demo-dot.red    { background: #EF4444; }
.demo-dot.yellow { background: #F59E0B; }
.demo-dot.green  { background: #10B981; }
.demo-panel-title {
    margin-left: 8px;
    color: #94A3B8;
    font-size: 0.85rem;
    font-weight: 500;
}
.demo-search-wrap {
    display: flex;
    gap: 10px;
    padding: 24px 24px 0;
}
.demo-input {
    flex: 1;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #334155;
    background: #1E293B;
    color: #F1F5F9;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}
.demo-input::placeholder { color: #64748B; }
.demo-input:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}
.demo-btn {
    padding: 14px 22px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.35);
}

/* Suggestion chips */
.demo-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 16px 24px;
}
.suggestion-label {
    color: #64748B;
    font-size: 0.8rem;
    font-weight: 500;
}
.suggestion-chip {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #334155;
    background: #1E293B;
    color: #94A3B8;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.suggestion-chip:hover {
    border-color: #2563EB;
    color: #60A5FA;
    background: #1e3a5f;
}

/* Result */
.demo-result {
    margin: 16px 24px 24px;
    background: #1E293B;
    border-radius: 14px;
    border: 1px solid #334155;
    padding: 20px;
    animation: fadeSlide 0.3s ease;
}
.demo-result.hidden, .demo-loader.hidden { display: none; }

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.result-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.result-icon {
    color: #7C3AED;
    font-size: 1rem;
}
.result-label {
    color: #94A3B8;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.result-time {
    margin-left: auto;
    color: #10B981;
    font-size: 0.78rem;
    font-weight: 600;
}
.result-text {
    color: #E2E8F0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 14px;
}
.result-source {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748B;
    font-size: 0.78rem;
    border-top: 1px solid #334155;
    padding-top: 12px;
}
.result-source i { color: #2563EB; }

/* Loader */
.demo-loader {
    margin: 16px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #64748B;
    font-size: 0.85rem;
    align-items: center;
}
.loader-bar {
    width: 100%;
    height: 4px;
    background: #1E293B;
    border-radius: 4px;
    overflow: hidden;
}
.loader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
    border-radius: 4px;
    animation: loadAnim 1.4s ease forwards;
}
@keyframes loadAnim {
    to { width: 90%; }
}

/* How It Works */
.how-it-works {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.hiw-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 24px;
}
.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hiw-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.hiw-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hiw-step strong {
    display: block;
    color: #0F172A;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.hiw-step p {
    color: #64748B;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Benefits */
.benefits-section {
    padding: 80px 0;
    background: white;
}
.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #0F172A;
    margin: 16px 0 12px;
    letter-spacing: -0.02em;
}
.section-sub {
    color: #64748B;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.benefit-card {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: "";
    position: absolute;
    top: 0; left: 12px; right: 12px;
    height: 3px;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
    opacity: 0;
    transition: opacity 0.3s;
}
.benefit-card:hover::before { opacity: 1; }
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.07);
    border-color: #BFDBFE;
    background: white;
}
.benefit-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.3rem;
}
.benefit-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 8px;
}
.benefit-card p {
    color: #64748B;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0 0 16px;
}
.benefit-stat {
    display: inline-block;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    color: #1E40AF;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid #BFDBFE;
}

/* Proof Stats */
.proof-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0F172A, #1E1B4B);
}
.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.proof-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #60A5FA, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}
.proof-label {
    color: #94A3B8;
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA */
.demo-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #EFF6FF, #F0F9FF);
}
.cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.cta-inner h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}
.cta-inner p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 32px;
}
.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-actions .btn {
    padding: 16px 32px;
    border-radius: 14px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}
.cta-actions .btn.primary {
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    color: white;
    box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}
.cta-actions .btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37,99,235,0.4);
}
.cta-actions .btn:not(.primary) {
    background: white;
    color: #475569;
    border: 1px solid #E2E8F0;
}
.cta-actions .btn:not(.primary):hover {
    background: #F1F5F9;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1024px) {
    .demo-layout { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 640px) {
    .demo-hero { padding: 120px 0 40px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
    .demo-search-wrap { flex-direction: column; }
}

/* ── Back link ── */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748B;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.2s;
}
.back-link:hover { color: #2563EB; }

/* ── Chat Widget ── */
.chat-window {
    display: flex;
    flex-direction: column;
    height: 420px;
}
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chat-msg { display: flex; }
.chat-msg.user { justify-content: flex-end; }
.chat-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
}
.chat-msg.bot .chat-bubble {
    background: #1E293B;
    color: #E2E8F0;
    border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    color: white;
    border-bottom-right-radius: 4px;
}
.typing-dots { display: flex; gap: 5px; align-items: center; padding: 14px 18px; }
.typing-dots span {
    width: 8px; height: 8px;
    background: #64748B;
    border-radius: 50%;
    animation: typingBounce 1s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce {
    0%,60%,100% { transform: translateY(0); }
    30%          { transform: translateY(-6px); }
}
.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px 12px;
}
.chat-input-row {
    display: flex;
    gap: 8px;
    padding: 12px 16px 20px;
    border-top: 1px solid #1E293B;
}
.chat-input-row input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #334155;
    background: #1E293B;
    color: #F1F5F9;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}
.chat-input-row input:focus { outline: none; border-color: #2563EB; }
.chat-input-row button {
    padding: 12px 16px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    color: white;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}
.chat-input-row button:hover { transform: translateY(-1px); }

/* ── Lead Form Demo ── */
.lead-form-demo {
    padding: 20px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}
.lfd-label { color: #E2E8F0; font-size: 0.95rem; font-weight: 600; margin: 0; }
.lfd-step { display: none; flex-direction: column; gap: 12px; }
.lfd-step.active { display: flex; animation: fadeSlide 0.3s ease; }
.lfd-options { display: flex; flex-direction: column; gap: 8px; }
.lfd-opt {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #334155;
    background: #1E293B;
    color: #E2E8F0;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.lfd-opt:hover { border-color: #2563EB; background: #1e3a5f; color: #60A5FA; }
.lfd-result { display: flex; gap: 20px; align-items: flex-start; }
.lfd-score-wrap { text-align: center; flex-shrink: 0; }
.lfd-score {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60A5FA, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.lfd-score-label { color: #64748B; font-size: 0.75rem; margin-top: 4px; }
.lfd-result-text p { color: #E2E8F0; font-size: 0.9rem; line-height: 1.6; margin: 0 0 12px; }
.lfd-actions-triggered { display: flex; flex-direction: column; gap: 6px; }
.lfd-action { display: flex; align-items: center; gap: 8px; color: #10B981; font-size: 0.82rem; font-weight: 500; }
.lfd-progress {
    height: 4px;
    background: #1E293B;
    border-radius: 4px;
    overflow: hidden;
    margin-top: auto;
}
.lfd-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
    border-radius: 4px;
    transition: width 0.4s ease;
}

/* ── Product Recommendation Demo ── */
.product-rec-demo { padding-bottom: 20px; }
.rec-products {
    display: flex;
    gap: 12px;
    padding: 12px 20px 16px;
    flex-wrap: wrap;
}
.rec-product {
    flex: 1;
    min-width: 100px;
    background: #1E293B;
    border: 1px solid #334155;
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}
.rec-product:hover, .rec-product.active {
    border-color: #2563EB;
    background: #1e3a5f;
    transform: translateY(-2px);
}
.rec-prod-icon { font-size: 2rem; margin-bottom: 8px; }
.rec-prod-name { color: #E2E8F0; font-size: 0.8rem; font-weight: 600; margin-bottom: 4px; }
.rec-prod-price { color: #60A5FA; font-size: 0.85rem; font-weight: 700; }
.rec-result {
    margin: 0 20px 20px;
    background: #1E293B;
    border: 1px solid #334155;
    border-radius: 14px;
    padding: 16px;
    animation: fadeSlide 0.3s ease;
}
.rec-result.hidden { display: none; }
.rec-result-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94A3B8;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.rec-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.rec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0F172A;
    border-radius: 10px;
    padding: 10px 12px;
}
.rec-item-icon { font-size: 1.2rem; }
.rec-item-name { flex: 1; color: #E2E8F0; font-size: 0.875rem; font-weight: 500; }
.rec-item-price { color: #60A5FA; font-weight: 700; font-size: 0.875rem; }
.rec-add {
    padding: 5px 12px;
    border-radius: 8px;
    border: 1px solid #334155;
    background: transparent;
    color: #94A3B8;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.rec-add:hover { border-color: #10B981; color: #10B981; }
.rec-upsell {
    background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(124,58,237,0.15));
    border: 1px solid rgba(37,99,235,0.3);
    border-radius: 10px;
    padding: 10px 14px;
    color: #93C5FD;
    font-size: 0.82rem;
    line-height: 1.5;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.rec-upsell i { color: #2563EB; margin-top: 2px; flex-shrink: 0; }

/* ── Automation Demo ── */
.automation-demo { padding: 0 0 20px; }
.auto-triggers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 20px 16px;
}
.auto-trigger {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #334155;
    background: #1E293B;
    color: #E2E8F0;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.auto-trigger:hover, .auto-trigger.active { border-color: #2563EB; background: #1e3a5f; color: #60A5FA; }
.auto-flow { margin: 0 20px 0; }
.auto-flow.hidden { display: none; }
.auto-flow-title { color: #64748B; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.auto-steps { display: flex; flex-direction: column; gap: 8px; max-height: 260px; overflow-y: auto; }
.auto-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #1E293B;
    border-radius: 10px;
    padding: 12px 14px;
    border-left: 3px solid #2563EB;
    transition: all 0.3s ease;
}
.auto-step.entering { opacity: 0; transform: translateX(-10px); }
.auto-step-icon {
    width: 28px; height: 28px;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    color: white;
}
.auto-step-body { display: flex; flex-direction: column; gap: 2px; }
.auto-step-body strong { color: #E2E8F0; font-size: 0.875rem; }
.auto-step-body span { color: #64748B; font-size: 0.8rem; }

/* ── Local / Ecom / Content shared tabs ── */
.local-demo, .ecom-demo, .content-demo { padding-bottom: 20px; }
.local-tabs {
    display: flex;
    gap: 4px;
    padding: 16px 20px 0;
    border-bottom: 1px solid #1E293B;
    margin-bottom: 0;
}
.local-tab {
    padding: 10px 16px;
    border-radius: 10px 10px 0 0;
    border: none;
    background: transparent;
    color: #64748B;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.local-tab.active { background: #1E293B; color: #E2E8F0; }
.local-tab-content { padding: 16px 20px 0; }
.local-panel { display: none; }
.local-panel.active { display: block; animation: fadeSlide 0.25s ease; }
.local-options { display: flex; flex-direction: column; gap: 8px; }
.local-opt {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #334155;
    background: #1E293B;
    color: #E2E8F0;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.local-opt:hover { border-color: #2563EB; background: #1e3a5f; color: #60A5FA; }
.local-result {
    margin: 16px 20px 0;
    background: #1E293B;
    border: 1px solid #334155;
    border-radius: 14px;
    padding: 16px;
    animation: fadeSlide 0.3s ease;
}
.local-result.hidden { display: none; }
.local-result-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94A3B8;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.local-result-header i { color: #7C3AED; }
.local-result-text {
    color: #E2E8F0;
    font-size: 0.875rem;
    line-height: 1.7;
    white-space: pre-wrap;
}

/* ── Demos Hub Page ── */
.demos-hub-section {
    padding: 64px 0 80px;
    background: #f8fafc;
}
.demos-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}
.demo-hub-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.demo-hub-card::before {
    content: "";
    position: absolute;
    top: 0; left: 12px; right: 12px;
    height: 3px;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
    opacity: 0;
    transition: opacity 0.3s;
}
.demo-hub-card:hover::before { opacity: 1; }
.demo-hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: #BFDBFE;
}
.demo-hub-card.featured { border-color: #BFDBFE; background: linear-gradient(135deg, #fafcff, #f0f6ff); }
.dhc-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.dhc-body { flex: 1; }
.dhc-tag {
    display: inline-block;
    background: #F1F5F9;
    color: #475569;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.dhc-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 8px;
}
.dhc-body p {
    color: #64748B;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0 0 12px;
}
.dhc-body ul { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 5px; }
.dhc-body ul li { display: flex; align-items: center; gap: 8px; color: #475569; font-size: 0.82rem; font-weight: 500; }
.dhc-body ul li i { color: #10B981; font-size: 0.7rem; }
.dhc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
    align-self: flex-start;
}
.dhc-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.3); }

/* ── Responsive additions ── */
@media (max-width: 768px) {
    .demos-hub-grid { grid-template-columns: 1fr; }
    .rec-products { flex-direction: column; }
    .lfd-result { flex-direction: column; }
    .local-tabs { flex-wrap: wrap; }
}
