/* PERSONNN ECOSYSTEM VARIANT - Premium SpaceX/Tesla Style */
/* Extends base styles.css with ecosystem-specific overrides */

/* Essential Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #CCCCCC;
    background: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation Base Styles */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-icon-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.lang-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    color: #888888;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.lang-btn.active {
    background: #0066FF;
    color: #FFFFFF;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

/* Hero Base Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    font-size: 14px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.pulsing {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Preview Card */
.hero-preview {
    max-width: 600px;
    margin: 0 auto;
}

.preview-card {
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-dots {
    display: flex;
    gap: 0.5rem;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #888888;
}

.card-dots span:nth-child(1) {
    background: #ff5f57;
}

.card-dots span:nth-child(2) {
    background: #ffbd2e;
}

.card-dots span:nth-child(3) {
    background: #28ca42;
}

.card-title {
    font-weight: 600;
    font-size: 14px;
}

.soul-status {
    margin-bottom: 1.5rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00FF88;
}

.soul-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.soul-avatar {
    font-size: 2rem;
}

.soul-info {
    flex: 1;
}

.soul-name {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.soul-stage {
    display: block;
    font-size: 14px;
    opacity: 0.7;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

/* Product Section Styles */
.productos-section,
.casos-section,
.final-cta {
    background: #000000;
    color: #CCCCCC;
}

.productos-header,
.casos-header {
    text-align: center;
    margin-bottom: 4rem;
}

.productos-title,
.casos-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.productos-subtitle,
.casos-subtitle {
    font-size: 1.2rem;
    color: #888888;
    max-width: 800px;
    margin: 0 auto;
}

/* PersonnnOS Core */
.personnnos-core {
    text-align: center;
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 20px;
    position: relative;
}

.core-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.personnnos-core h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.personnnos-core h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #888888;
    margin-bottom: 1.5rem;
}

.personnnos-core p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Core Features */
.core-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-icon {
    font-size: 1.2rem;
}

.core-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.available {
    background: rgba(0, 255, 136, 0.2);
    color: #00FF88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.badge.b2b {
    background: rgba(0, 102, 255, 0.2);
    color: #0066FF;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

/* Product Grid */
.productos-category {
    margin: 4rem 0;
}

.productos-category h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 2rem;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.producto-card {
    background: var(--surface-primary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.producto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-secondary);
}

.producto-card.featured {
    border: 2px solid #0066FF;
    position: relative;
}

.producto-card.featured::before {
    content: 'FEATURED';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #0066FF;
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

.producto-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.producto-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.producto-card p {
    color: #888888;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.producto-status {
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.producto-status.available {
    background: rgba(0, 255, 136, 0.2);
    color: #00FF88;
}

/* Cases Grid */
.casos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.caso-card {
    background: var(--surface-primary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

.caso-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-secondary);
}

.caso-avatar {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.caso-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.caso-card p {
    color: #888888;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.caso-result {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 1rem;
    border-radius: 12px;
    color: #0066FF;
    font-weight: 600;
    font-size: 14px;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: #888888;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Ecosystem Paths - Consumer/Business Platform */
.ecosystem-paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.ecosystem-path {
    background: var(--surface-primary);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

.ecosystem-path:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-secondary);
}

.ecosystem-path.consumer {
    border-left: 4px solid #00FF88;
}

.ecosystem-path.business {
    border-left: 4px solid #0066FF;
}

.path-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.path-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
}

.path-badge {
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.path-badge.b2c {
    background: rgba(0, 255, 136, 0.2);
    color: #00FF88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.path-badge.b2b {
    background: rgba(0, 102, 255, 0.2);
    color: #0066FF;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

/* Ecosystem Items */
.ecosystem-items {
    display: grid;
    gap: 1.5rem;
}

.ecosystem-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.ecosystem-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
}

.ecosystem-item.main {
    border: 2px solid #0066FF;
    background: rgba(0, 102, 255, 0.05);
}

.ecosystem-item.main::before {
    content: 'CORE PLATFORM';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #0066FF;
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.item-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.ecosystem-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.ecosystem-item p {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.item-status {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.item-status.free {
    background: rgba(0, 255, 136, 0.2);
    color: #00FF88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.item-status.coming {
    background: rgba(255, 149, 0, 0.2);
    color: #FF9500;
    border: 1px solid rgba(255, 149, 0, 0.3);
}

.item-status.premium {
    background: rgba(255, 45, 146, 0.2);
    color: #FF2D92;
    border: 1px solid rgba(255, 45, 146, 0.3);
}

.ecosystem-item .btn-primary,
.ecosystem-item .btn-secondary {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 14px;
    padding: 0.75rem 1.5rem;
}

.ecosystem-item .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #CCCCCC;
}

.ecosystem-item .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.5);
    color: #0066FF;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-content {
        padding: 1rem;
        height: 60px;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .productos-grid,
    .casos-grid {
        grid-template-columns: 1fr;
    }

    .ecosystem-paths {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ecosystem-path {
        padding: 1.5rem;
    }

    .path-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .ecosystem-item {
        padding: 1.5rem;
    }

    .ecosystem-item h4 {
        font-size: 1.2rem;
    }
}

:root[data-theme="ecosystem"] {
    /* Premium Color Palette - SpaceX/Tesla Inspired */
    --primary-color: #0066FF;
    --secondary-color: #00FF88;
    --accent-color: #FFFFFF;
    --success-color: #00FF88;
    --warning-color: #FFA500;
    --error-color: #FF3B30;

    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    --gradient-secondary: linear-gradient(135deg, #00FF88 0%, #00CC66 100%);
    --gradient-accent: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
    --gradient-hero: radial-gradient(circle at 30% 40%, rgba(0, 102, 255, 0.1) 0%, transparent 70%);

    /* Premium Surfaces */
    --surface-primary: rgba(17, 17, 17, 0.9);
    --surface-secondary: rgba(0, 0, 0, 0.8);
    --surface-accent: rgba(0, 102, 255, 0.05);

    /* Premium Shadows */
    --shadow-primary: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-secondary: 0 4px 16px rgba(0, 102, 255, 0.2);
    --shadow-accent: 0 16px 48px rgba(0, 102, 255, 0.3);
}

/* Hero Section - Premium Dark */
.hero[data-theme="ecosystem"] {
    background: #000000;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero[data-theme="ecosystem"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero[data-theme="ecosystem"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

/* Navigation - Premium Style */
.nav-bar[data-theme="ecosystem"] {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

.nav-item[data-theme="ecosystem"] {
    color: #888888;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-item[data-theme="ecosystem"]:hover {
    color: #0066FF;
}

.nav-cta[data-theme="ecosystem"] {
    background: var(--gradient-primary);
    color: #FFFFFF;
    border: 1px solid rgba(0, 102, 255, 0.5);
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-cta[data-theme="ecosystem"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

/* Badge Styling */
.hero-badge[data-theme="ecosystem"] {
    background: var(--surface-primary);
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: #0066FF;
    font-weight: 700;
    backdrop-filter: blur(10px);
    font-family: 'Inter', sans-serif;
}

/* Title Styling - Premium Typography */
.hero-title[data-theme="ecosystem"] {
    color: #FFFFFF;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.title-highlight[data-theme="ecosystem"] {
    color: #00FF88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    font-weight: 700;
}

/* Button Styling - Tesla Inspired */
.btn-primary[data-theme="ecosystem"] {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-secondary);
    border: 1px solid rgba(0, 102, 255, 0.5);
    color: #FFFFFF;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary[data-theme="ecosystem"]:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
    background: #0052CC;
}

.btn-primary[data-theme="ecosystem"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary[data-theme="ecosystem"]:hover::before {
    left: 100%;
}

/* Description Styling */
.hero-description[data-theme="ecosystem"] {
    color: #CCCCCC;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    background: var(--surface-primary);
    padding: 24px;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 102, 255, 0.1);
    max-width: 600px;
    margin: 24px auto;
}

/* Preview Card */
.preview-card[data-theme="ecosystem"] {
    border: 1px solid rgba(0, 102, 255, 0.2);
    background: var(--surface-primary);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-primary);
    border-radius: 16px;
}

.card-title[data-theme="ecosystem"] {
    color: #FFFFFF;
    font-weight: 600;
}

/* Status Elements */
.status-dot[data-theme="ecosystem"] {
    background: #00FF88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.soul-avatar[data-theme="ecosystem"] {
    color: #0066FF;
    font-size: 2rem;
}

.status-item[data-theme="ecosystem"] {
    color: #CCCCCC;
}

/* PersonnnOS Core Section */
.personnnos-core[data-theme="ecosystem"] {
    background: var(--surface-primary);
    border: 1px solid rgba(0, 102, 255, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.core-icon[data-theme="ecosystem"] {
    color: #0066FF;
    filter: none;
}

/* Ecosystem Paths - Premium Grid */
.ecosystem-paths[data-theme="ecosystem"] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.ecosystem-path[data-theme="ecosystem"] {
    background: var(--surface-primary);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.ecosystem-path[data-theme="ecosystem"]:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-secondary);
    border-color: rgba(0, 102, 255, 0.4);
}

.ecosystem-path.consumer[data-theme="ecosystem"] {
    border-left: 4px solid #00FF88;
}

.ecosystem-path.business[data-theme="ecosystem"] {
    border-left: 4px solid #0066FF;
}

/* Ecosystem Items */
.ecosystem-item[data-theme="ecosystem"] {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.ecosystem-item[data-theme="ecosystem"]:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary);
    border-color: rgba(0, 102, 255, 0.4);
}

.ecosystem-item.main[data-theme="ecosystem"] {
    border: 2px solid #0066FF;
    background: rgba(0, 102, 255, 0.1);
}

/* Item Status Badges */
.item-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.item-status.free {
    background: #00FF88;
    color: #000000;
}

.item-status.premium {
    background: #FFA500;
    color: #000000;
}

.item-status.coming {
    background: #888888;
    color: #FFFFFF;
}

.item-status.enterprise {
    background: #0066FF;
    color: #FFFFFF;
}

/* Hardware Showcase */
.hardware-showcase[data-theme="ecosystem"] {
    background: var(--surface-primary);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid rgba(0, 102, 255, 0.2);
    backdrop-filter: blur(20px);
}

.hardware-device[data-theme="ecosystem"] {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: var(--shadow-secondary);
    animation: hardwareFloat 3s ease-in-out infinite;
}

@keyframes hardwareFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Product Grid */
.productos-grid[data-theme="ecosystem"] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.producto-card[data-theme="ecosystem"] {
    background: var(--surface-primary);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.producto-card[data-theme="ecosystem"]:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-secondary);
}

.producto-card.featured[data-theme="ecosystem"] {
    border: 2px solid #0066FF;
    background: rgba(0, 102, 255, 0.1);
}

/* Feature Pills */
.feature-pill[data-theme="ecosystem"] {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: #0066FF;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.feature-pill[data-theme="ecosystem"]:hover {
    background: rgba(0, 102, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-secondary);
}

/* Text Colors */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #FFFFFF;
}

p,
span,
div {
    color: #CCCCCC;
}

.path-header h3 {
    color: #FFFFFF;
}

.item-icon {
    color: #0066FF;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .ecosystem-paths[data-theme="ecosystem"] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hardware-device[data-theme="ecosystem"] {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .productos-grid[data-theme="ecosystem"] {
        grid-template-columns: 1fr;
    }
}

/* Dark Mode Enhancements */
body[data-theme="ecosystem"] {
    background: #000000;
    color: #CCCCCC;
}

.container {
    background: transparent;
}

/* Section Backgrounds */
.productos-section,
.casos-section,
.final-cta {
    background: #000000;
    color: #CCCCCC;
}

.productos-title,
.casos-title {
    color: #FFFFFF;
}

.productos-subtitle,
.casos-subtitle {
    color: #CCCCCC;
}

/* Enhanced Hero Styles */
.hero-main-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    display: block;
}

.title-highlight {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 600;
    color: #00FF88;
    margin-bottom: 1rem;
    display: block;
}

.title-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #CCCCCC;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

/* Hero Device Showcase */
.hero-device-showcase {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.device-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qbug-device {
    width: 200px;
    height: 250px;
    position: relative;
    z-index: 2;
}

.device-screen {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    border: 3px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.screen-content {
    text-align: center;
    color: #FFFFFF;
}

.ai-face {
    font-size: 3rem;
    color: #00FF88;
    margin-bottom: 0.5rem;
    animation: aiPulse 2s ease-in-out infinite;
}

.ai-status {
    font-size: 0.9rem;
    color: #CCCCCC;
    font-weight: 500;
}

.ai-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid #00FF88;
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 2s ease-out infinite;
}

.device-base {
    width: 120px;
    height: 40px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    top: -10px;
}

.device-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: deviceGlow 3s ease-in-out infinite;
}

@keyframes aiPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes deviceGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(0, 102, 255, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFFFFF;
}

/* Enhanced Buttons */
.btn-large {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
}

.btn-subtitle {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
    margin-top: 0.25rem;
}

.btn-icon {
    margin-right: 0.5rem;
}

/* Hero Social Proof */
.hero-social-proof {
    margin-top: 3rem;
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00FF88;
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    font-size: 0.9rem;
    color: #CCCCCC;
    margin-top: 0.25rem;
}

/* Ecosystem Section Styles */
.ecosystem-section {
    padding: 6rem 0;
    background: #000000;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #CCCCCC;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ecosystem Flow */
.ecosystem-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.flow-card {
    background: rgba(17, 17, 17, 0.9);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.flow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.2);
}

.flow-card.primary {
    border-color: #00FF88;
    background: rgba(0, 255, 136, 0.05);
}

.flow-card.secondary {
    border-color: #0066FF;
    background: rgba(0, 102, 255, 0.05);
}

.flow-card.tertiary {
    border-color: #FFA500;
    background: rgba(255, 165, 0, 0.05);
}

.flow-visual {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.personnn-brain {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brain-core {
    font-size: 3rem;
    color: #00FF88;
    animation: brainPulse 2s ease-in-out infinite;
}

.brain-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid #00FF88;
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes brainPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.qbug-device-mini {
    width: 60px;
    height: 75px;
    position: relative;
}

.device-screen-mini {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 10px;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-face {
    font-size: 1.5rem;
    color: #0066FF;
}

.device-base-mini {
    width: 30px;
    height: 15px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
    top: -5px;
}

.device-ecosystem {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    width: 80px;
    height: 80px;
    position: relative;
}

.eco-device {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.sync-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 1px dashed #FFA500;
    border-radius: 50%;
    opacity: 0.5;
    animation: syncRotate 4s linear infinite;
}

@keyframes syncRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.flow-content {
    flex: 1;
}

.flow-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.flow-content p {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.flow-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.flow-features .feature {
    background: rgba(0, 102, 255, 0.1);
    color: #0066FF;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.flow-arrow {
    text-align: center;
    font-size: 2rem;
    color: #0066FF;
    margin: 1rem 0;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: #111111;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(17, 17, 17, 0.9);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.2);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0066FF;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-demo {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.demo-conversation {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.message {
    padding: 0.75rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message.user {
    background: rgba(0, 102, 255, 0.2);
    color: #FFFFFF;
    align-self: flex-end;
    max-width: 80%;
}

.message.ai {
    background: rgba(0, 255, 136, 0.2);
    color: #FFFFFF;
    align-self: flex-start;
    max-width: 80%;
}

.hardware-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.spec {
    background: rgba(0, 102, 255, 0.1);
    color: #0066FF;
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.sync-devices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sync-device {
    background: rgba(0, 102, 255, 0.1);
    color: #0066FF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.sync-arrow {
    font-size: 1.2rem;
    color: #0066FF;
}

.smart-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.device-icon {
    font-size: 1.5rem;
    padding: 0.75rem;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

/* Journey Section */
.journey-section {
    padding: 6rem 0;
    background: #000000;
}

.journey-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-time {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00FF88;
    font-family: 'JetBrains Mono', monospace;
    min-width: 100px;
    text-align: center;
}

.step-device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
}

.device-icon.large {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    background: rgba(0, 102, 255, 0.1);
    border: 2px solid rgba(0, 102, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066FF;
}

.device-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #CCCCCC;
    text-align: center;
}

.step-content {
    flex: 1;
    background: rgba(17, 17, 17, 0.9);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.step-context {
    font-size: 0.8rem;
    color: #888888;
    background: rgba(0, 102, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    display: inline-block;
}

.timeline-connector {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #0066FF, transparent);
    z-index: 1;
}

/* Stories Section */
.stories-section {
    padding: 6rem 0;
    background: #111111;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: rgba(17, 17, 17, 0.9);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.2);
}

.story-card.featured {
    border: 2px solid #00FF88;
    background: rgba(0, 255, 136, 0.05);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-avatar {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 102, 255, 0.3);
}

.story-info {
    flex: 1;
}

.story-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.story-setup {
    font-size: 0.9rem;
    color: #888888;
    font-family: 'JetBrains Mono', monospace;
}

.story-rating {
    font-size: 1.2rem;
}

.story-content p {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-highlight {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-metric {
    font-size: 2rem;
    font-weight: 700;
    color: #00FF88;
    font-family: 'JetBrains Mono', monospace;
}

.highlight-text {
    color: #FFFFFF;
    font-weight: 500;
}

/* Final CTA Enhanced */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #CCCCCC;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-option {
    background: rgba(17, 17, 17, 0.9);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.2);
}

.cta-option.primary {
    border-color: #00FF88;
    background: rgba(0, 255, 136, 0.05);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.option-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
}

.option-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00FF88;
    font-family: 'JetBrains Mono', monospace;
}

.cta-option p {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #CCCCCC;
    font-size: 0.9rem;
}

.guarantee-icon {
    color: #00FF88;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #111111;
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 102, 255, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content.large {
    max-width: 800px;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #888888;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 102, 255, 0.1);
    color: #0066FF;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 2rem;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
}

/* Demo Interface */
.demo-interface {
    background: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #111111;
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

.demo-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot.active {
    background: #00FF88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.demo-sync-status {
    display: flex;
    gap: 0.5rem;
}

.sync-device {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(0, 102, 255, 0.1);
    color: #0066FF;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.sync-device.active {
    background: rgba(0, 255, 136, 0.2);
    color: #00FF88;
    border-color: rgba(0, 255, 136, 0.3);
}

.demo-chat {
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: #111111;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.chat-message.user {
    background: rgba(0, 102, 255, 0.1);
    margin-left: 2rem;
    border-color: rgba(0, 102, 255, 0.3);
}

.chat-message.ai {
    background: rgba(0, 255, 136, 0.1);
    margin-right: 2rem;
    border-color: rgba(0, 255, 136, 0.3);
}

.message-author {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: #0066FF;
    margin-bottom: 0.5rem;
}

.chat-message.ai .message-author {
    color: #00FF88;
}

.message-text {
    color: #CCCCCC;
    line-height: 1.5;
}

.demo-input {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: #111111;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
}

.demo-text-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 8px;
    background: #0a0a0a;
    color: #FFFFFF;
    font-size: 0.9rem;
}

.demo-text-input:focus {
    outline: none;
    border-color: #0066FF;
}

.demo-send-btn {
    background: #0066FF;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.demo-send-btn:hover {
    background: #0052CC;
}

/* QBug Product Modal */
.qbug-product {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-image {
    flex-shrink: 0;
}

.qbug-device-large {
    width: 120px;
    height: 150px;
    position: relative;
}

.device-screen-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    border: 3px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-face-large {
    font-size: 2rem;
    color: #00FF88;
}

.device-base-large {
    width: 60px;
    height: 20px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
    top: -5px;
}

.product-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #00FF88;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 1rem;
}

.product-features {
    margin-bottom: 1.5rem;
}

.product-features .feature {
    display: block;
    color: #CCCCCC;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.shipping-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shipping-item {
    color: #888888;
    font-size: 0.9rem;
}

.preorder-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #CCCCCC;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 8px;
    background: #0a0a0a;
    color: #FFFFFF;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066FF;
}

.full-width {
    width: 100%;
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: #111111;
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left: 4px solid #00FF88;
}

.toast.error {
    border-left: 4px solid #FF3B30;
}

.toast.info {
    border-left: 4px solid #0066FF;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-icon {
    font-size: 1.2rem;
}

.toast-message {
    color: #CCCCCC;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .hero-features {
        gap: 1rem;
    }

    .feature-highlight {
        padding: 0.5rem 1rem;
    }

    .proof-stats {
        gap: 1.5rem;
    }

    .flow-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .timeline-step:nth-child(even) {
        flex-direction: column;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .cta-options {
        grid-template-columns: 1fr;
    }

    .cta-guarantee {
        flex-direction: column;
        gap: 1rem;
    }

    .qbug-product {
        flex-direction: column;
        text-align: center;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
    }
}

/* Conversion System Popups Styling */
.floating-scroll-capture {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    max-width: 350px;
    z-index: 9998;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.capture-content {
    text-align: center;
    position: relative;
    color: #FFFFFF;
}

.capture-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.capture-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.capture-content p {
    font-size: 0.9rem;
    color: #CCCCCC;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.capture-content .email-capture-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0;
}

.capture-content .email-capture-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
}

.capture-content .email-capture-form input:focus {
    outline: none;
    border-color: #0066FF;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.2);
}

.capture-content .email-capture-form input::placeholder {
    color: #888888;
}

.capture-content .email-capture-form button {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.capture-content .email-capture-form button:hover {
    background: linear-gradient(135deg, #0052CC 0%, #003d99 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.capture-dismiss {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: #888888;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
}

.capture-dismiss:hover {
    background: #FF3B30;
    transform: scale(1.1);
}

/* Exit Intent Modal */
.exit-intent-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exit-intent-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.exit-intent-modal .modal-content {
    background: rgba(17, 17, 17, 0.95);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 102, 255, 0.3);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px);
}

.exit-intent-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

.exit-intent-modal .modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.exit-intent-modal .modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #888888;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.exit-intent-modal .modal-close:hover {
    background: rgba(255, 59, 48, 0.2);
    color: #FF3B30;
}

.exit-intent-modal .modal-subtitle {
    color: #CCCCCC;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #FFFFFF;
    padding: 0.75rem;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(0, 102, 255, 0.2);
    transform: translateX(5px);
}

.exit-intent-modal .email-capture-form {
    margin-bottom: 1rem;
}

.exit-intent-modal .form-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.exit-intent-modal .form-group input {
    flex: 1;
    padding: 1rem;
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
}

.exit-intent-modal .form-group input:focus {
    outline: none;
    border-color: #0066FF;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.2);
}

.exit-intent-modal .form-group input::placeholder {
    color: #888888;
}

.exit-intent-modal .form-group button {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.exit-intent-modal .form-group button:hover {
    background: linear-gradient(135deg, #0052CC 0%, #003d99 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.form-note {
    font-size: 0.8rem;
    color: #888888;
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
}

.social-proof {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
}

.proof-text {
    font-size: 0.85rem;
    color: #888888;
    font-style: italic;
}

/* Payment Modal Styles */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.payment-modal .modal-content {
    background: rgba(17, 17, 17, 0.95);
    border-radius: 20px;
    padding: 0;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 102, 255, 0.3);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px);
}

.payment-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

.payment-modal .modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.payment-modal .modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #888888;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.payment-modal .modal-close:hover {
    background: rgba(255, 59, 48, 0.2);
    color: #FF3B30;
}

.payment-modal .modal-body {
    padding: 2rem;
}

.product-info {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

.product-description {
    color: #CCCCCC;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00FF88;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 0.5rem;
}

.deposit-info {
    font-size: 1rem;
    color: #0066FF;
    font-weight: 500;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    color: #CCCCCC;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #00FF88;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-form label {
    color: #CCCCCC;
    font-weight: 500;
    font-size: 0.9rem;
}

.payment-form input {
    padding: 0.75rem;
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    font-size: 0.9rem;
}

.payment-form input:focus {
    outline: none;
    border-color: #0066FF;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.2);
}

.card-element {
    padding: 1rem;
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
}

.card-errors {
    color: #FF3B30;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
}

.payment-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00FF88 0%, #00CC66 100%);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.payment-submit:hover {
    background: linear-gradient(135deg, #00CC66 0%, #009944 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.payment-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.payment-security {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
}

.payment-security span {
    color: #888888;
    font-size: 0.85rem;
}

/* Email Success Styling */
.email-success {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #00FF88, #00CC66);
    color: #000000;
    border-radius: 15px;
    animation: successSlide 0.5s ease;
}

@keyframes successSlide {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.email-success h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.email-success p {
    color: #000000;
    margin-bottom: 1rem;
}

.next-steps {
    background: rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.next-steps p {
    font-size: 0.9rem;
    margin: 0;
}

/* Form Error Styling */
.form-error {
    color: #FF3B30;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
    background: rgba(255, 59, 48, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 59, 48, 0.3);
}

/* Progressive Email Capture Modal */
.progressive-email-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progressive-email-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.progressive-email-modal .modal-content {
    background: rgba(17, 17, 17, 0.95);
    border-radius: 20px;
    padding: 2rem;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 102, 255, 0.3);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px);
    text-align: center;
}

/* Mobile Responsive for Popups */
@media (max-width: 768px) {
    .floating-scroll-capture {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }

    .capture-content .email-capture-form {
        flex-direction: column;
        gap: 1rem;
    }

    .exit-intent-modal .form-group {
        flex-direction: column;
        gap: 1rem;
    }

    .exit-intent-modal .modal-content,
    .payment-modal .modal-content,
    .progressive-email-modal .modal-content {
        width: 95%;
        margin: 1rem;
        padding: 1.5rem;
    }

    .timeline-step {
        flex-direction: column;
        text-align: center;
    }

    .timeline-step:nth-child(even) {
        flex-direction: column;
    }
}

/* Mo
dal and Alert Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--surface-primary);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: var(--shadow-accent);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-content.large {
    max-width: 800px;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #888888;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Demo Interface Styles */
.demo-interface {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.demo-header {
    padding: 1rem;
    background: rgba(0, 102, 255, 0.1);
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFFFFF;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00FF88;
    animation: pulse 2s ease-in-out infinite;
}

.demo-sync-status {
    display: flex;
    gap: 0.5rem;
}

.sync-device {
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: #888888;
}

.sync-device.active {
    background: rgba(0, 255, 136, 0.2);
    color: #00FF88;
}

.demo-chat {
    padding: 1rem;
    min-height: 300px;
    max-height: 400px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 12px;
    max-width: 80%;
}

.chat-message.ai {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    margin-right: auto;
}

.chat-message.user {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    margin-left: auto;
}

.message-author {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.message-text {
    line-height: 1.5;
    color: #CCCCCC;
}

.demo-input {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 0.5rem;
}

.demo-text-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    font-size: 0.9rem;
}

.demo-text-input:focus {
    outline: none;
    border-color: #0066FF;
}

.demo-send-btn {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-send-btn:hover {
    background: #0052CC;
    transform: translateY(-1px);
}

/* QBug Product Styles */
.qbug-product {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qbug-device-large {
    width: 150px;
    height: 180px;
    position: relative;
}

.device-screen-large {
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.screen-face-large {
    font-size: 2.5rem;
    color: #00FF88;
    animation: aiPulse 2s ease-in-out infinite;
}

.device-base-large {
    width: 80px;
    height: 30px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
    top: -8px;
}

.product-details {
    flex: 1;
}

.product-details h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #00FF88;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

.product-features {
    margin-bottom: 1.5rem;
}

.product-features .feature {
    display: block;
    padding: 0.5rem 0;
    color: #CCCCCC;
    font-size: 0.9rem;
}

.shipping-info {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
}

.shipping-item {
    display: block;
    padding: 0.25rem 0;
    color: #0066FF;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Form Styles */
.preorder-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066FF;
}

/* Alert Styles */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--surface-primary);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: #FFFFFF;
    font-weight: 500;
    z-index: 10001;
    transform: translateX(400px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-secondary);
    backdrop-filter: blur(10px);
}

.alert.show {
    transform: translateX(0);
}

.alert.success {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.1);
    color: #00FF88;
}

.alert.error {
    border-color: rgba(255, 59, 48, 0.3);
    background: rgba(255, 59, 48, 0.1);
    color: #FF3B30;
}

.alert.warning {
    border-color: rgba(255, 149, 0, 0.3);
    background: rgba(255, 149, 0, 0.1);
    color: #FF9500;
}

/* Reading Progress Alert */
.reading-progress-alert {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--surface-primary);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    max-width: 350px;
    z-index: 10001;
    transform: translateY(100px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-accent);
    backdrop-filter: blur(20px);
}

.reading-progress-alert.show {
    transform: translateY(0);
}

.alert-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.alert-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.alert-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #888888;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.alert-close:hover {
    color: #FFFFFF;
}

.alert-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.alert-message {
    color: #CCCCCC;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.alert-actions {
    display: flex;
    gap: 0.5rem;
}

.alert-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.alert-btn.primary {
    background: var(--gradient-primary);
    color: #FFFFFF;
}

.alert-btn.primary:hover {
    background: #0052CC;
    transform: translateY(-1px);
}

.alert-btn.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #CCCCCC;
}

.alert-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

/* Mobile Responsive for Modals */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }

    .qbug-product {
        flex-direction: column;
        text-align: center;
    }

    .demo-chat {
        min-height: 250px;
        max-height: 300px;
    }

    .chat-message {
        max-width: 90%;
    }

    .alert,
    .reading-progress-alert {
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .reading-progress-alert {
        bottom: 10px;
    }
}

/* Animation Keyframes */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

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

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #0066FF;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}