:root {
    --color-primary: #2D1B54;
    --color-accent: #0055FF;
    --color-bg-light: #FFFFFF;
    --color-bg-alt: #FFFFFF;
    --color-text-dark: #1F2937;
    --color-text-light: #6B7280;
    --color-border: #E5E7EB;
    --border-radius: 8px;
    --font-main: 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Base Styles */
h1, h2, h3, h4 {
    color: var(--color-primary);
    font-weight: 800;
}

/* Animations */
.observer-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}
.observer-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
}
.btn-primary {
    background-color: var(--color-accent);
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
    background-color: #0044cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 85, 255, 0.4);
}
.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-outline:hover {
    background-color: var(--color-primary);
    color: #fff;
}
.full-width {
    width: 100%;
}
.mt-auto {
    margin-top: auto;
}
.shadow {
    box-shadow: var(--shadow-md);
}
.position-relative {
    position: relative;
}
.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #0055FF, #00d2ff);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 85, 255, 0.3);
    z-index: 5;
    text-transform: uppercase;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.brand-logo {
    height: 40px;
    border-radius: var(--border-radius);
    object-fit: cover;
}
.brand-name {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -0.025em;
}
.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--color-accent);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 1.5rem;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #1e1338 0%, #0f0a1c 100%);
}

/* Interactive Hero Canvas Background */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; /* Let the section handle hover */
}
.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}
.glass-effect {
    background: rgba(20, 15, 40, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.badge {
    background-color: rgba(0, 85, 255, 0.2);
    color: #80aaff;
    border: 1px solid rgba(0, 85, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
}
.hero h1 {
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.025em;
}
.subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 600px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.hero-actions .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}
.hero-actions .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Section Common */
.section-header {
    text-align: left;
    margin-bottom: 1.5rem;
}
.section-header.center {
    text-align: center;
}
.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}
.section-header p {
    color: var(--color-text-light);
}
.divider {
    height: 4px;
    width: 3rem;
    background-color: var(--color-accent);
    border-radius: 2px;
}
.section-header.center .divider {
    margin: 0 auto;
}

/* Services */
.services {
    padding: 5rem 2rem;
    background-color: var(--color-bg-light);
    max-width: 1200px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-card {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.icon-container {
    background-color: rgba(0, 85, 255, 0.1);
    color: var(--color-accent);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}
.icon-container span {
    font-size: 28px;
}
.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Pricing */
.pricing {
    padding: 3rem 2rem;
    background-color: var(--color-bg-alt);
}
#precios {
    position: relative;
    z-index: 60; /* Higher than FAQ section to allow sticky dropdowns to overflow downwards unclipped */
}
.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.pricing-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.pricing-card h4 {
    color: var(--color-text-light);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}
.pricing-card .price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}
.pricing-card .price span {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary);
}
.pricing-card .price small {
    color: var(--color-text-light);
}
.pricing-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.pricing-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-dark);
}
.material-symbols-outlined.check {
    color: #10B981;
}
.material-symbols-outlined.x {
    color: var(--color-border);
}

.pricing-card.pro {
    transform: scale(1.05);
    border: 2px solid var(--color-accent);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 10;
}
.pricing-card.pro h4 {
    color: var(--color-accent);
}
.recommend-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
}
.material-symbols-outlined.check-pro {
    color: var(--color-accent);
}
.pricing-card.pro li {
    font-weight: 600;
    color: var(--color-primary);
}

/* Footer */
.footer {
    background-color: #1c1035;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-logo img {
    height: 30px;
    border-radius: 5px;
}
.footer-logo span {
    font-size: 1.5rem;
    font-weight: 900;
}
.footer p {
    color: #9ca3af;
}
.copyright {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Chatbot Floating UI */
.chatbot-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    pointer-events: none; /* ¡LÍNEA MÁGICA! Permite que el clic pase a través de la caja invisible */
}
.chat-fab {
    background-color: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(0, 85, 255, 0.7);
    cursor: pointer;
    transition: transform 0.2s;
    animation: chatPulse 2s infinite;
    pointer-events: auto; /* Reactiva el clic solo para el botón */
}
.chat-fab:hover {
    transform: scale(1.1);
}
.chat-fab span {
    font-size: 28px;
}
@keyframes chatPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 85, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 85, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 85, 255, 0); }
}

.chat-window {
    width: 350px;
    height: 450px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: 1px solid var(--color-border);
    pointer-events: auto; /* Reactiva el clic solo para la ventana del chat */
}
.chat-window.hidden {
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
}
.chat-header {
    background-color: var(--color-primary);
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.close-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
}
.chat-messages {
    flex: 1;
    padding: 1rem;
    background-color: var(--color-bg-alt);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.message {
    padding: 0.75rem 1rem;
    border-radius: 16px;
    max-width: 85%;
    font-size: 0.9rem;
    line-height: 1.4;
}
.ai-message {
    background-color: #fff;
    color: var(--color-text-dark);
    border: 1px solid var(--color-border);
    align-self: flex-start;
    border-bottom-left-radius: 0;
}
.user-message {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}
.chat-input-area {
    padding: 1rem;
    background-color: #fff;
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 0.5rem;
    align-items: center; /* Vertical alignment fix */
}
.chat-input-area input {
    flex: 1;
    min-width: 0; /* Prevents flex burst overflow on mobile */
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 0.9rem;
}
.chat-input-area input:focus {
    outline: none;
    border-color: var(--color-accent);
}
.chat-input-area .send-btn {
    background-color: var(--color-accent);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}
.chat-input-area .send-btn:hover {
    background-color: #0044cc;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        flex-direction: column;
    }
    .pricing-card.pro {
        transform: scale(1);
    }
    .nav-links {
        display: none; /* simple mobile nav */
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Node Ecosystem Services Section */
.services {
    padding: 2rem 5% 5rem; /* Increased bottom padding to prevent nodes from overflowing into next section */
    margin: 0 auto;
}

.node-network-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.node-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.node-container {
    position: relative;
    width: 100%;
    max-width: 950px;
    height: 550px;
    z-index: 1;
}

.node-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.node-item.satellite {
    transform: translate(-50%, -50%);
}

.node-item:hover {
    transform: scale(1.1) translateY(-5px);
}

.node-icon {
    width: 80px;
    height: 80px;
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.node-item:hover .node-icon {
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(0, 85, 255, 0.4);
}

.node-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s ease;
}

.node-item:hover .node-icon img {
    opacity: 1;
    transform: scale(1.1);
}

.node-label {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-weight: 600;
    font-size: 0.9rem;
    color: #F3F4F6;
    background: rgba(10, 10, 30, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Center Hub Styling */
.center-hub {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}
.center-hub .node-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border: none;
    box-shadow: 0 0 30px rgba(0, 85, 255, 0.5);
    animation: pulseGlow 4s infinite alternate;
}
.center-hub .node-icon span {
    font-size: 3rem;
    color: #fff;
}
.center-hub .node-label {
    background: rgba(10, 10, 30, 0.95);
    border-color: var(--color-accent);
}
.center-hub:hover {
    transform: translate(-50%, -50%) scale(1.05);
}



.network-details {
    max-width: 600px;
    text-align: center;
    background: rgba(20, 15, 40, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    z-index: 10;
}

.network-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.network-details p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   Global Button Glow
   ========================================================================== */
.glow-btn {
    box-shadow: 0 0 15px rgba(0, 85, 255, 0.4);
    transition: all 0.3s ease;
}
.glow-btn:hover {
    box-shadow: 0 0 30px rgba(0, 85, 255, 0.7);
    transform: translateY(-2px);
}

/* ==========================================================================
   Features Micro UI Section
   ========================================================================== */
.features-micro {
    padding: 3rem 5%;
    background: #ffffff;
}

.micro-ui-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .micro-ui-grid {
        grid-template-columns: 1fr;
    }
}

.micro-card {
    background: #f8f9fa; /* Ultra claro */
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 2rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.micro-card:hover {
    box-shadow: 0 15px 30px rgba(0, 85, 255, 0.08); /* Glow suave */
    transform: translateY(-5px);
    border-color: rgba(0, 85, 255, 0.2);
}

.micro-content h3 {
    color: var(--color-primary); /* Púrpura */
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.micro-content p {
    color: var(--color-text-dark); /* Gris oscuro */
    font-size: 0.95rem;
}

/* Base Mockup UI */
.micro-mockup {
    height: 150px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Web Mockup (Video) */
.video-mockup-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--color-bg-alt, #f8f9fa);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.micro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    border-radius: 12px;
}


/* AI Interactive Demo Mockup */
.interactive-demo { padding: 1.5rem; justify-content: flex-start; align-items: stretch; display: flex; flex-direction: column; }
.mini-chat-ui {
    background: var(--color-bg-alt, #f8f9fa);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 220px;
    margin-top: 1rem;
}
.mini-chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
}
.msg { padding: 0.5rem 0.8rem; border-radius: 12px; max-width: 90%; line-height: 1.3; }
.ai-msg { background: #fff; border: 1px solid var(--color-border); align-self: flex-start; border-bottom-left-radius: 4px; }
.user-msg { background: var(--color-primary); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.mini-chat-input {
    display: flex;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: #fff;
}
.mini-chat-input input {
    flex: 1; border: none; padding: 0.75rem 1rem; outline: none; font-size: 0.85rem; font-family: inherit;
}
.mini-chat-input button {
    background: none; border: none; color: var(--color-accent); padding: 0 1rem; cursor: pointer; transition: transform 0.2s;
}
.mini-chat-input button:hover { transform: scale(1.1); }


/* ==========================================================================
   Metrics Proof Section
   ========================================================================== */
.metrics-section {
    padding: 3rem 5%;
    background: #f8f9fa; /* Ultra claro */
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

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

.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary); /* Púrpura oscuro */
    margin-bottom: 0.5rem;
    font-family: inherit;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark); /* Gris oscuro */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Process Timeline Section
   ========================================================================== */
.timeline-section {
    padding: 4rem 5%;
    background: #ffffff;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem 0;
}

.timeline-track {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    z-index: 0;
}

.timeline-progress {
    height: 100%;
    width: 0%;
    background: var(--color-accent); /* Azul eléctrico */
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.timeline-step {
    text-align: center;
}

.step-dot {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 3px solid #e5e7eb;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-text-dark);
    transition: all 0.4s ease;
}

.timeline-step.active .step-dot {
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: 0 0 15px rgba(0, 85, 255, 0.4);
}

.timeline-step h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.timeline-step p {
    font-size: 0.9rem;
    color: var(--color-text-dark);
}

@media (max-width: 768px) {
    .timeline-steps { grid-template-columns: 1fr; gap: 2.5rem; }
    .timeline-track { top: 0; left: 20px; width: 4px; height: 100%; }
    .timeline-progress { width: 100%; height: 0; }
    .timeline-step { text-align: left; display: flex; align-items: flex-start; gap: 1rem; }
    .step-dot { margin: 0; flex-shrink: 0; }
}

/* ==========================================================================
   FAQ Minimalist Accordion
   ========================================================================== */
.faq-section {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.03);
}

.faq-item summary {
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-primary);
    cursor: pointer;
    list-style: none; /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-dark);
    line-height: 1.6;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Scroll Animation (Handled via GSAP natively) */
.animate-on-scroll {
    opacity: 1; /* Fallback applied if JS disabled */
    transform: translateY(0);
}

/* ==========================================================================
   AI Marketing & CRM Module (Light Theme, Full Width Grid)
   ========================================================================== */
.ai-module-section {
    padding: 2.5rem 5%;
    position: relative;
    z-index: 10;
    background: #ffffff;
}

.ai-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 1.5rem auto 0;
}

@media (max-width: 1024px) {
    .ai-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ai-cards-grid {
        grid-template-columns: 1fr;
    }
}

.strategy-card {
    position: relative;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Animated Bottom Line */
.strategy-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--color-accent);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.strategy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 85, 255, 0.15);
}

.strategy-card:hover::after {
    width: 100%;
}

.strategy-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Icon 3D Flip Animation Wrapper */
.icon-wrapper {
    perspective: 1000px;
    display: inline-block;
}

.icon-wrapper > div {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.strategy-card:hover .icon-wrapper > div {
    transform: rotateY(180deg);
}

.ai-icon-group, .ai-icon.single {
    /* Keep the front face pointing outward during the flip */
    backface-visibility: visible; 
}

/* Fix inner contents orientation so they are readable during the flip backface */
.strategy-card:hover .ai-icon-group img, 
.strategy-card:hover .ai-icon.single span {
    transform: rotateY(180deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.ai-icon-group img, 
.ai-icon.single span {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-icon-group {
    display: flex;
    margin-bottom: 0.5rem;
}

.ai-icon-group img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: white;
    padding: 4px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.ai-icon-group img:not(:first-child) {
    margin-left: -12px;
}

.ai-icon.single {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 85, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(0, 85, 255, 0.1);
}

.ai-icon.single span {
    font-size: 28px;
}

.strategy-card h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin: 0;
    font-weight: 600;
}

.strategy-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Conversational Checkout - Accordions & Radio Buttons
   ========================================================================== */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.services-catalog {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accordion-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.accordion-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background: #f8fbff;
}

.accordion-title h4 {
    margin: 0 0 0.25rem 0;
    color: var(--color-primary);
    font-size: 1.15rem;
}

.accordion-title p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.accordion-icon {
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background: #fafafa;
}

.tier-options {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tier-label {
    display: block;
    cursor: pointer;
    position: relative;
}

.service-radio,
.service-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.tier-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08); /* Thinner B2B borders */
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02); /* Very soft shadow */
}


.premium-tier-card {
    border: 2px solid #eab308 !important;
    box-shadow: 0 4px 20px rgba(234, 179, 8, 0.15) !important;
    background: linear-gradient(145deg, #ffffff, #fffbeb) !important;
}
.service-radio:checked + .premium-tier-card {
    border-color: #ca8a04 !important;
    background: linear-gradient(145deg, #fffbeb, #fef3c7) !important;
    box-shadow: 0 8px 30px rgba(202, 138, 4, 0.25) !important;
}

.tier-card:hover {
    border-color: rgba(0, 85, 255, 0.3);
    background-color: #fcfdff;
}

.service-radio:checked + .tier-card,
.service-checkbox:checked + .tier-card {
    border-color: var(--color-accent);
    background-color: rgba(0, 85, 255, 0.03);
    box-shadow: 0 4px 12px rgba(0, 85, 255, 0.05); /* Softer highlight */
}

.tier-info strong {
    display: block;
    color: var(--color-primary);
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.tier-info span {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.2rem;
}

.tier-price {
    font-weight: 700;
    color: var(--color-text-dark);
    font-size: 1.1rem;
}

.static-card {
    cursor: default;
}

.static-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

/* Sticky Cart Panel */
.sticky-cart-panel {
    position: sticky;
    top: 100px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 99999; /* Extreme z-index to break free from sibling overlapping issues */
}

.cart-header h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.2rem;
    color: var(--color-primary);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 0.5rem;
}

.cart-items-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    min-height: 50px;
}

.cart-items-list li {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.empty-cart-msg {
    color: #9ca3af !important;
    font-style: italic;
    font-size: 0.85rem !important;
}

.cart-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
}

.currency-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    position: relative;
}

.custom-select-wrapper {
    position: relative;
    width: 140px;
    user-select: none;
}

.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0.6rem;
    background: #f9fafb;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    font-weight: 500;
    color: var(--color-text-dark);
    --color-border: #334155;
    --transition: all 0.3s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
}

/* Dynamic Service Objectives */
.tier-objective {
    display: none;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--color-primary);
    font-style: italic;
    animation: slideDown 0.3s ease-out;
}

.tier-label input:checked ~ .tier-card .tier-objective {
    display: block;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Cart Expansion Styles */
.cart-item-details-btn {
    font-size: 0.7rem;
    color: var(--color-primary);
    background: none;
    border: none;
    padding: 0;
    margin-top: 0.3rem;
    cursor: pointer;
    text-decoration: underline;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.cart-item-details-btn:hover {
    opacity: 1;
}

.cart-item-scope {
    display: none;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    list-style: none;
    border-left: 2px solid var(--color-primary);
}

.cart-item-scope.active {
    display: block;
    animation: fadeIn 0.2s ease-in;
}

.cart-item-scope li {
    margin-bottom: 0.3rem;
    padding-left: 1.2rem;
    position: relative;
}

.cart-item-scope li::before {
    content: "check";
    font-family: 'Material Symbols Outlined';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--color-primary);
}

.custom-select-trigger:hover {
    border-color: var(--color-accent);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;           /* Open downwards and align to right */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    width: 160px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.custom-select-wrapper.open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.custom-option {
    padding: 0.6rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background: rgba(0, 85, 255, 0.05);
    color: var(--color-accent);
}

.custom-option.selected {
    font-weight: 700;
    color: var(--color-accent);
    background: rgba(0, 85, 255, 0.08);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}
.cart-total-row strong {
    font-size: 1.3rem;
    color: var(--color-accent);
}

@media (max-width: 900px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    .sticky-cart-panel {
        position: relative;
        top: 0;
    }
}

/* ==========================================================================
   Chatbot Quick Replies
   ========================================================================== */
.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.quick-reply-btn {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: var(--color-text-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.quick-reply-btn:hover {
    background: rgba(0, 85, 255, 0.1);
    border-color: rgba(0, 85, 255, 0.3);
    color: var(--color-accent);
}

/* ==========================================================================
   App Development Chat UI (SRS Generator)
   ========================================================================== */
.srs-chat-container {
    background: #fdfdfd;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    margin-top: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.srs-chat-header {
    background: #ffffff;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.srs-chat-header .profile-circle {
    width: 42px;
    height: 42px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.srs-chat-header .profile-info {
    display: flex;
    flex-direction: column;
}

.srs-chat-header .profile-info strong {
    font-size: 1.05rem;
    color: var(--color-primary);
}

.srs-chat-header .profile-info span {
    font-size: 0.8rem;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.srs-chat-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 450px;
    overflow-y: auto;
    background: #f4f5f7;
}

.srs-msg {
    max-width: 80%;
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
    word-wrap: break-word;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.srs-ai {
    background: #ffffff;
    color: var(--color-text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(0,0,0,0.03);
}

.srs-user {
    background: var(--color-accent);
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

/* Typing Indicator Animation */
.typing-indicator {
    background: #ffffff;
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    margin-bottom: 0.5rem;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background-color: #9ca3af;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* GSAP Start State Helper */
.srs-msg.is-animating {
    opacity: 0;
    transform: translateY(10px);
}

.srs-input-group {
    display: flex;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.05);
    gap: 0.8rem;
    align-items: center;
}

.srs-input-group input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    background: #f9fafb;
    transition: all 0.2s ease;
}

.srs-input-group input:focus {
    border-color: var(--color-accent);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.1);
}

.srs-input-group button {
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.srs-input-group button:hover {
    transform: scale(1.05);
    background: #0044cc;
    box-shadow: 0 4px 12px rgba(0, 85, 255, 0.3);
}

.srs-action-area {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    background: #ffffff;
    text-align: center;
}

/* ==========================================================================
   Multimodal Chat UI (.multimodal-btn)
   ========================================================================== */
.multimodal-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0.5rem;
    border-radius: 50%;
}

.multimodal-btn:hover {
    color: var(--color-accent);
    background: rgba(0, 85, 255, 0.05);
}

.multimodal-btn.file-attached {
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
}

.multimodal-btn .material-symbols-outlined {
    font-size: 1.3rem;
}

/* ==========================================================================
   Checkout Grid Fix
   ========================================================================== */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
    width: 100%;
}

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

/* ==========================================================================
   App-Style Grid Interface
   ========================================================================== */
.services-catalog.left-panels-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 2rem;
    justify-items: center;
    background: #ffffff;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.app-icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100px;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 85, 255, 0.1), inset 0 2px 4px rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 85, 255, 0.1);
    animation: floatAppIcon 6s ease-in-out infinite;
}

.app-icon-btn:nth-child(even) .app-icon {
    animation-delay: -3s;
}

.app-icon .material-symbols-outlined {
    font-size: 2.5rem;
    color: var(--color-accent);
    transition: color 0.3s ease;
}

.app-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-align: center;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.app-icon-btn:hover {
    transform: translateY(-5px);
}

.app-icon-btn:hover .app-icon,
.app-icon-btn.active .app-icon {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 85, 255, 0.15);
    border: 2px solid var(--color-accent);
}

.app-icon-btn:hover .material-symbols-outlined,
.app-icon-btn.active .material-symbols-outlined {
    color: var(--color-accent);
    transform: scale(1.1);
}

.app-icon-btn:hover .app-label,
.app-icon-btn.active .app-label {
    color: var(--color-accent);
    font-weight: 600;
}

.services-catalog.left-panels-container .accordion-header {
    display: none !important;
}

.services-catalog.left-panels-container .app-panel {
    display: none !important;
    animation: fadeInSlideUp 0.4s ease forwards;
}

.services-catalog.left-panels-container .app-panel.active {
    display: block !important;
}

.services-catalog.left-panels-container .app-panel .accordion-content {
    max-height: none !important;
    padding-top: 0;
}

.services-catalog.left-panels-container .app-panel.active .accordion-content {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
}

@keyframes floatAppIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

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

/* ==========================================================================
   Responsive Framework Extensions
   ========================================================================== */
@media (max-width: 768px) {
    .node-container { height: 600px; }
    .node-icon { width: 60px; height: 60px; }
    .center-hub .node-icon { width: 100px; height: 100px; }
    
    .app-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem 1rem !important;
        padding: 1.5rem 1rem !important;
    }
    
    .app-icon-btn {
        width: 100% !important;
        gap: 0.5rem !important;
    }

    .app-icon {
        width: 65px !important;
        height: 65px !important;
    }

    .app-icon .material-symbols-outlined {
        font-size: 2rem !important;
    }

    .app-label {
        font-size: 0.75rem !important;
    }
}

/* ==========================================================================
   Embedded Pre-Sales AI Chat
   ========================================================================== */
.idea-chat-container {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.idea-chat-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 360px;
    overflow-y: auto;
    background: #fafbfc;
}
.idea-chat-input-area {
    display: flex;
    padding: 1rem;
    gap: 0.5rem;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.05);
    align-items: center;
}
.idea-chat-input-area input[type="text"] {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    outline: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}
.idea-chat-input-area input[type="text"]:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.1);
}
