/* Ultra-Modern CSS for Knobly - Gen Z Edition */

/* CSS Reset & Modern Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Sophisticated Red-Based Color Palette */
    --primary: #e74425;
    --primary-dark: #c5361e;
    --primary-light: #f87171;
    --primary-ultralight: #fef2f2;
    --secondary: #dc2626;
    --accent: #ea580c;
    --accent-dark: #c2410c;
    --accent-light: #fed7aa;
    --complement: #f59e0b;
    --neutral: #6b7280;
    --neutral-light: #f3f4f6;
    --neutral-dark: #374151;
    --success: #059669;
    --warning: #d97706;
    --red-accent: #e74425;

    /* Light Theme Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #fefefe;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-glass: rgba(255, 255, 255, 0.8);

    /* Light Theme Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;

    /* Sophisticated Red-Based Gradients */
    --gradient-primary: #e74425;
    --gradient-secondary: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --gradient-accent: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-neutral: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    --gradient-red-orange: linear-gradient(135deg, #e74425 0%, #ea580c 100%);
    --gradient-complement: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    --gradient-subtle: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    --gradient-hero: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    /* Light Theme Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-neon: 0 0 20px rgba(231, 68, 37, 0.3);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    /* Dark Theme Backgrounds */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: rgba(30, 41, 59, 0.8);
    --bg-glass: rgba(15, 23, 42, 0.9);

    /* Dark Theme Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;

    /* Dark Theme Gradients */
    --gradient-subtle: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);

    /* Dark Theme Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-neon: 0 0 20px rgba(231, 68, 37, 0.4);
}

/* Professional light theme body */
body {
    font-family: var(--font-secondary);
    background: var(--gradient-hero);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Professional Navigation */
.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 75px;
}

.nav-logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-image {
    height: 45px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Logo loading and error states */
.logo-image[alt]:empty::before {
    content: attr(alt);
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fallback text logo styling (kept for reference) */
.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-nav {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    border: none;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(231, 68, 37, 0.3);
}

.theme-toggle {
    background: var(--bg-glass);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .theme-toggle {
    border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .floating-nav {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .nav-link {
    color: var(--text-primary);
}

[data-theme="dark"] .nav-link:hover {
    color: white;
}

[data-theme="dark"] .slide-overlay {
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.9) 0%,
            rgba(30, 41, 59, 0.8) 50%,
            rgba(231, 68, 37, 0.15) 100%);
}

[data-theme="dark"] .slide-title,
[data-theme="dark"] .hero-title {
    color: var(--text-primary);
}

[data-theme="dark"] .slide-subtitle,
[data-theme="dark"] .hero-subtitle {
    color: var(--text-secondary);
}

[data-theme="dark"] .badge-text {
    color: var(--text-primary);
}

[data-theme="dark"] .hero-badge {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .theme-toggle::before {
    content: "◯";
    font-size: 0.9rem;
}

[data-theme="light"] .theme-toggle::before {
    content: "●";
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 75px);
    display: flex;
    align-items: center;
    padding: 4rem 0;
    margin-top: 75px;
    background: var(--bg-primary);
}

.hero-content {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.hero-eyebrow {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-title .title-line {
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(231, 68, 37, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--neutral-light);
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
    color: var(--primary);
}

.hero-proof {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.proof-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(50px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero-slide.active .slide-image {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(248, 250, 252, 0.8) 50%,
            rgba(231, 68, 37, 0.05) 100%);
    z-index: 2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.float-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.float-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.float-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {

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

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

.slide-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.hero-slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-2xl);
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    animation: slideUp 1s ease-out;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-separator {
    color: var(--text-muted);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: slideUp 1s ease-out 0.2s both;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-text {
    background: var(--gradient-red-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: slideUp 1s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: slideUp 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    animation: slideUp 1s ease-out 0.8s both;
}

/* Slider-specific styles */
.slide-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.slide-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.slide-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 5rem;
}

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

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.nav-dot {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    color: var(--text-secondary);
    font-family: var(--font-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    letter-spacing: -0.01em;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
}

.nav-dot.active {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-neon);
}

.dot-label {
    font-size: 0.875rem;
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    color: var(--text-primary);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.slider-control:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.slider-control.prev {
    left: 2rem;
}

.slider-control.next {
    right: 2rem;
}

/* Auto-play Progress Bar */
.autoplay-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.1s linear;
}

.cta-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    letter-spacing: -0.01em;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

.cta-secondary {
    background: var(--gradient-complement);
    color: white;
    border: 2px solid var(--complement);
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    letter-spacing: -0.01em;
}

.cta-secondary:hover {
    border-color: var(--accent-dark);
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 163, 231, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    z-index: 4;
    animation: bounce 2s infinite;
    opacity: 0.7;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 24px;
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

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

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

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

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

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.service-card li::before {
    content: "✓";
    color: var(--success);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-link {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
}

/* Products Section */
.products {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.product-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
}

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

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

.product-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.product-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.product-card ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.product-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.product-card li::before {
    content: "✓";
    color: var(--success);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.product-pricing {
    background: var(--bg-secondary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    color: var(--primary);
    margin: 1.5rem 0;
    text-align: center;
}

.product-link {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: var(--primary-dark);
}

/* Video Showcase Section */
.video-showcase {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.video-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.video-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.main-video .video-container {
    height: 300px;
}

.video-container video,
.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.video-info p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--text-primary);
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-block {
    text-align: center;
    background: var(--bg-card);
    padding: 2rem 1rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
}

.stat-block .stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-block .stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Daily Pulse Section */
.daily-pulse {
    padding: 4rem 0;
    background: var(--bg-secondary);
    position: relative;
}

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

.section-title {
    font-family: var(--text-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    letter-spacing: -0.02em;
}

.live-indicator {
    background: var(--danger);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px var(--danger);
    }

    to {
        box-shadow: 0 0 20px var(--danger), 0 0 30px var(--danger);
    }
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.pulse-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pulse-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.pulse-card.trending::before {
    background: var(--gradient-warm);
}

.pulse-card.market::before {
    background: var(--gradient-accent);
}

.pulse-card.innovation::before {
    background: var(--gradient-secondary);
}

.pulse-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.card-badge {
    background: var(--bg-glass);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
}

.update-time {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pulse-card h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.pulse-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.card-engagement {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.card-engagement span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.market-chart {
    height: 120px;
    background: var(--bg-glass);
    border-radius: var(--radius-md);
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.innovation-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.feature-pill {
    background: var(--bg-glass);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.try-now-btn {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.try-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.quick-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    background: var(--bg-glass);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.action-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* AI Transformation Section */
.transformation {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.transformation-showcase {
    margin-top: 4rem;
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.transformation-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.transformation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.transformation-card h3,
.platform-card h3,
.tool-card h3,
.spaced-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.transformation-card p,
.platform-card p,
.tool-card p,
.spaced-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.transformation-stat,
.platform-stat,
.tool-stat,
.spaced-stat {
    background: var(--primary-ultralight);
    color: var(--primary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid rgba(231, 68, 37, 0.2);
}

/* Cream Platform Section */
.cream-platform {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.platform-showcase {
    margin-top: 4rem;
}

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

.platform-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.platform-card.featured {
    border: 2px solid var(--primary);
    position: relative;
}

.platform-card.featured::before {
    content: "Featured";
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
}

.platform-card:hover,
.tool-card:hover,
.spaced-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.platform-features,
.spaced-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature {
    background: rgba(231, 68, 37, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 500;
}

/* AI Tools Section */
.ai-tools {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.tools-showcase {
    margin-top: 4rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* SpaceD Products Section */
.spaced-products {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.spaced-showcase {
    margin-top: 4rem;
}

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

.spaced-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.spaced-card.featured {
    border: 2px solid var(--primary);
    position: relative;
}

.spaced-card.featured::before {
    content: "Available";
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Bru Personal AI Assistant Section */
.bru-assistant {
    padding: 8rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.bru-assistant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 68, 37, 0.02) 0%, rgba(37, 163, 231, 0.02) 100%);
    pointer-events: none;
}

.bru-showcase {
    margin-top: 4rem;
    position: relative;
}

.bru-hero {
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.bru-device {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.device-mockup {
    width: 200px;
    height: 300px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 2rem;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 2px solid #333;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ai-pulse {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-bottom: 1rem;
    animation: ai-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(231, 68, 37, 0.5);
}

@keyframes ai-pulse {

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

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

.bru-logo {
    color: white;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.bru-content h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.bru-content>p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.bru-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.bru-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.bru-feature .feature-icon {
    font-size: 2rem;
    margin-top: 0.25rem;
}

.feature-content h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.bru-status {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.status-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.bru-status p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

/* Ecosystem Section */
.ecosystem {
    padding: 4rem 0;
    background: var(--gradient-subtle);
}

/* Transformation Flow */
.transformation-flow {
    margin: 4rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
}

.flow-step {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(231, 68, 37, 0.15);
    border-color: var(--primary);
}

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

.step-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    position: relative;
    color: var(--primary);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.step-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.flow-step:last-child .step-connector {
    display: none;
}

.step-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.capability {
    background: rgba(231, 68, 37, 0.05);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    border: 1px solid rgba(231, 68, 37, 0.1);
}

/* Interactive Solutions Showcase */
.solutions-showcase {
    margin: 4rem 0;
}

.showcase-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.showcase-tab {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.showcase-tab:hover {
    color: var(--text-primary);
    border-color: var(--primary);
}

.showcase-tab.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(231, 68, 37, 0.3);
}

.showcase-content {
    position: relative;
}

.showcase-panel {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.showcase-panel.active {
    display: block;
}

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

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

.solution-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-xl);
    padding: 3rem;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.solution-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.solution-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.solution-details h3 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-details p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.solution-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.solution-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.solution-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

/* Products Ecosystem */
.products-ecosystem {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
}

.product-spotlight h3 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-spotlight p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.feature i {
    color: var(--primary);
    font-size: 1.25rem;
}

.product-pricing-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-note {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Global Impact Section */
.global-impact {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.world-map-container {
    margin: 4rem 0;
    position: relative;
    height: 400px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.world-map {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/World_map_blank_without_borders.svg/1920px-World_map_blank_without_borders.svg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-pulse {
    position: absolute;
    cursor: pointer;
    transform: translate(-50%, -50%);

}

.pulse-dot {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 0 rgba(255, 91, 91, 0.7);

}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-dot {

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

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

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

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

}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 91, 91, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 91, 91, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 91, 91, 0);
    }
}

.location-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.location-pulse:hover .location-info {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.location-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.location-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
}

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

.metric-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.metric-card:nth-child(2)::before {
    background: var(--gradient-accent);
}

.metric-card:nth-child(3)::before {
    background: var(--gradient-warm);
}

.metric-card:nth-child(4)::before {
    background: var(--gradient-secondary);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.metric-value {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.metric-growth {
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Innovation Lab Section */
.innovation-lab {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.lab-icon {
    font-size: 2rem;
}

.beta-badge {
    background: var(--gradient-warm);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 1rem;
}

.lab-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.demo-area {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.demo-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.demo-tab,
.demo-tab1 {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.demo-tab.active,
.demo-tab1.active,
.demo-tab:hover,
.demo-tab1:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.demo-content1 {
    display: none;
}

.demo-content1.active {
    display: block;
}

.demo-interface {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    min-height: 200px;
    position: relative;
}

.typing-demo {
    display: flex;
    align-items: center;
}

.typing-text {
    font-family: 'Monaco', monospace;
    font-size: 1rem;
    line-height: 1.5;
}

.cursor {
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.upcoming-features {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.upcoming-features h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.feature-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.timeline-date {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

/* Social Proof Section */
.social-proof {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.testimonial-carousel {
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 3rem;
    max-width: 600px;
    position: relative;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-mark {
    font-size: 4rem;
    color: var(--primary);
    font-family: serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.social-metrics {
    display: flex;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    justify-content: center;
}

.social-metrics span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 36px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-brand h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.link-group a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .lab-showcase {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .transformation-flow {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solution-highlight {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .solution-metrics {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        top: 0rem;
        left: 0rem;
        right: 0rem;
        transform: none;
        padding: 0.5rem 1rem;
        height: 75px;
    }

    .nav-menu {
        position: fixed;
        top: 95px;
        left: -100%;
        width: calc(100% - 2rem);
        background: var(--bg-glass);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: var(--radius-xl);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        left: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .logo-image {
        height: 160px;
        max-width: 320px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .container {
        padding: 0 1rem;
    }

    .hero-slider {
        margin-top: 75px;
        height: 70vh;
    }

    .slide-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .slide-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .slide-cta {
        flex-direction: column;
    }

    .slider-nav {
        bottom: 140px;
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-dot {
        padding: 0.5rem 1rem;
        justify-content: center;
    }

    .slider-control {
        width: 50px;
        height: 50px;
    }

    .slider-control.prev {
        left: 1rem;
    }

    .slider-control.next {
        right: 1rem;
    }

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .nav-menu {
        background: var(--bg-card);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow-xl);
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .main-video .video-container {
        height: 250px;
    }

    .showcase-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .showcase-tab {
        padding: 0.75rem 1.5rem;
    }

    .solution-highlight {
        padding: 2rem;
    }

    .solution-metrics {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .step-connector {
        display: none;
    }
}

@media (max-width: 480px) {
    .floating-nav {
        height: 75px;
        padding: 0.25rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .impact-metrics {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .demo-tabs {
        flex-direction: column;
    }

    .flow-step {
        padding: 1.5rem;
    }

    .products-ecosystem {
        padding: 2rem;
    }

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

    .slider-nav {
        bottom: 120px;
    }

    .nav-dot .dot-label {
        display: none;
    }

    .nav-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        padding: 0;
        min-width: auto;
    }

    .slider-control {
        display: none;
    }

    .logo-image {
        height: 120px;
        max-width: 120px;
    }

    .hero-slider {
        margin-top: 75px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .service-card,
    .product-card {
        padding: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Custom animations for scroll triggers */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Particle effects */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 50%;
    animation: particle-float 20s linear infinite;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Utility classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}


@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .bru-assistant {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Stack layout on mobile */
    .bru-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    /* Mobile device mockup */
    .device-mockup {
        width: 220px;
        height: 320px;
        padding: 15px;
    }

    .ai-pulse {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .bru-logo {
        font-size: 2rem;
    }

    .bru-content h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .bru-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .bru-features {
        gap: 20px;
        margin-bottom: 30px;
    }

    .bru-feature {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .feature-icon {
        font-size: 1.5rem;
        min-width: auto;
    }

    .feature-content h4 {
        font-size: 1.1rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    .bru-status {
        padding: 20px;
    }
}

/* Desktop view (768px and up) */
@media (min-width: 768px) {
    .bru-features {
        flex-direction: row;
        /* Side by side */
        justify-content: space-between;
    }

    .bru-feature {
        flex: 1;
        /* Evenly distribute width */
        max-width: 30%;
        /* Optional: control max width */
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .bru-assistant {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .device-mockup {
        width: 180px;
        height: 280px;
        padding: 12px;
    }

    .ai-pulse {
        width: 50px;
        height: 50px;
    }

    .bru-logo {
        font-size: 1.5rem;
    }

    .bru-content h3 {
        font-size: 1.3rem;
    }

    .bru-content p {
        font-size: 0.95rem;
    }

    .bru-feature {
        padding: 12px;
    }

    .feature-content h4 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.85rem;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .bru-hero {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .device-mockup {
        width: 160px;
        height: 240px;
    }

    .bru-content h3 {
        font-size: 1.3rem;
    }

    .bru-content p {
        font-size: 0.9rem;
    }
}


.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.card-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.card-description {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.solution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.solution-tag {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.client-info {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Testimonial Cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffb347);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.rating {
    color: #ffd700;
    font-size: 1.1rem;
}

.testimonial-date {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: #e8f4f8;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    color: #2c3e50;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.author-title {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.company-info {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.company-size,
.industry {
    background: #ecf0f1;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #5a6c7d;
}

.social-metrics {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.social-metrics span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.trending {
    color: #e74c3c !important;
    font-weight: bold;
}

/* Insight Cards */
.insight-card {
    background: var(--bg-card);
    border: 1px solid rgba(74, 69, 69, 0.1);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.insight-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.insight-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.insight-text {
    color: #5a6c7d;
    line-height: 1.5;
}

/* Emerging Cards */
.emerging-card {
    background:var(--bg-card);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.emerging-status {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #3498db;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
}

.emerging-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.emerging-title {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.emerging-text {
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-card   );
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 8px;
}

.stat-label {
    color: #7f8c8d;
    font-size: 1rem;
}

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

    .section-title {
        font-size: 2rem;
    }
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    /* Black background with opacity */
}

.research-lab {
    background-color: var(--bg-card);
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    border-radius: 8px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

a {
    text-decoration: none;
}