/* YOYO Website - Base Styles */

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

:root {
    /* Colors inspired by Siro.ai and modern AI companies */
    --primary-color: #6366f1; /* Indigo - tech/AI feel */
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b; /* Amber - energy/innovation */
    --accent-color: #10b981; /* Emerald - success/growth */
    --text-primary: #1f2937; /* Dark gray */
    --text-secondary: #6b7280; /* Medium gray */
    --text-light: #ffffff;
    --background-light: #ffffff;
    --background-dark: #111827; /* Very dark gray */
    --background-section: #f9fafb; /* Light gray */
    --border-color: #e5e7eb;
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale */
.h1, h1 { font-size: 2.25rem; font-weight: 800; line-height: 1.2; }
.h2, h2 { font-size: 1.875rem; font-weight: 700; line-height: 1.3; }
.h3, h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.4; }
.h4, h4 { font-size: 1.25rem; font-weight: 600; line-height: 1.4; }
.h5, h5 { font-size: 1.125rem; font-weight: 500; line-height: 1.5; }
.h6, h6 { font-size: 1rem; font-weight: 500; line-height: 1.5; }

@media (max-width: 768px) {
    .h1, h1 { font-size: 1.875rem; }
    .h2, h2 { font-size: 1.5rem; }
    .h3, h3 { font-size: 1.25rem; }
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}
.section-testimonials {
    padding: 40px 0 ;
}

.section-sm {
    padding: 60px 0;
}

.section-lg {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-sm { padding: 40px 0; }
    .section-lg { padding: 80px 0; }
}

/* Navigation Styles - Modern Design */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.5px;
}

.nav-logo:hover {
    transform: translateY(-1px);
    color: var(--primary-dark);
}

.nav-logo i {
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu > .nav-item:last-child {
    margin-left: 1.5rem;
    padding-left: 0.5rem;
    isolation: isolate;
}

.nav-item {
    position: relative;
    isolation: isolate;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.375rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.08);
}

.nav-link:not(.nav-cta):hover {
    z-index: 1;
}

.nav-item:not(:last-child) .nav-link:hover {
    z-index: 5;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-chevron {
    font-size: 0.625rem;
    margin-left: 0.25rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
}

@media (min-width: 769px) {
    .nav-chevron {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-item.active .nav-chevron {
        transform: rotate(180deg);
    }
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 0.5rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(229, 231, 235, 0.5);
    overflow: hidden;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav-dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin: 0.125rem 0;
}

.nav-dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 0;
    background: var(--primary-color);
    border-radius: 0 2px 2px 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown-link:hover {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.05));
    color: var(--primary-color);
    padding-left: 1.25rem;
    transform: translateX(2px);
}

.nav-dropdown-link:hover::before {
    transform: translateY(-50%) scaleY(1);
    height: 60%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 10;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: middle;
    margin: 0;
}

.nav-cta::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 ease;
}

.nav-cta:hover {
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35);
    z-index: 2;
}

.nav-item:last-child {
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:active {
    transform: translateY(0);
}

.nav-cta,
.nav-cta:hover {
    pointer-events: auto;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-toggle:hover {
    background: rgba(99, 102, 241, 0.1);
}

.nav-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 968px) {
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .nav-cta {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 1rem 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        border-top: 1px solid rgba(229, 231, 235, 0.5);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(229, 231, 235, 0.5);
        border-radius: 0;
        justify-content: space-between;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(99, 102, 241, 0.05);
        border-radius: 0;
        margin-top: 0;
        padding: 0.5rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .nav-item.active .nav-dropdown {
        max-height: 500px;
        padding: 0.5rem 0;
    }
    
    .nav-dropdown-link {
        padding-left: 3rem;
        margin: 0.25rem 0;
    }
    
    .nav-dropdown-link::before {
        display: none;
    }
    
    .nav-cta {
        margin: 1rem 1.5rem;
        text-align: center;
        display: block;
        width: calc(100% - 3rem);
    }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    line-height: 1;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.hidden-industry {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

/* Grid Systems */
.grid {
    display: grid;
    gap: 2rem;
}

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

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

@media (max-width: 768px) {
    .grid-5, .grid-4, .grid-3, .grid-2 { 
        grid-template-columns: 1fr; 
        gap: 1.5rem;
    }
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--text-secondary); }
.text-white { color: white; }
.bg-primary { background: var(--primary-color); }
.bg-secondary { background: var(--background-section); }
.bg-dark { background: var(--background-dark); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Modern Hero Section Styles */
.hero {
    padding: 180px 0 140px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #7c3aed 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="rgba(255,255,255,0.1)" cx="200" cy="200" r="100"/><circle fill="rgba(255,255,255,0.08)" cx="800" cy="300" r="120"/><circle fill="rgba(255,255,255,0.06)" cx="500" cy="700" r="150"/><polygon fill="rgba(255,255,255,0.05)" points="100,600 300,500 250,700 50,800"/></svg>');
    background-size: 1200px 1200px;
    animation: float 25s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.25) 0%, transparent 65%);
    animation: pulse 18s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    33% { transform: translate(40px, -40px) scale(1.08); opacity: 0.92; }
    66% { transform: translate(-30px, 30px) scale(0.96); opacity: 0.96; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.12); }
}

/* Hero Split Layout */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero h1 {
    /* font-size: 4rem; */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.75rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.92) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .text-gradient {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Badge */
.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-badge-modern i {
    color: #fbbf24;
    font-size: 1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value.stat-number {
    transition: none;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.85;
    font-weight: 500;
}

/* Dashboard Mockup */
.hero-dashboard-mockup {
    position: relative;
    perspective: 1000px;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 3;
}

.dashboard-card:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-5px);
}

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

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
}

.dashboard-title i {
    color: #6366f1;
    font-size: 1.25rem;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 500;
}

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Conversation Timeline */
.conversation-timeline {
    margin-bottom: 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(99, 102, 241, 0.04);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.timeline-item.active {
    background: rgba(99, 102, 241, 0.08);
    transform: translateX(5px);
}

.timeline-time {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    min-width: 45px;
    font-family: 'JetBrains Mono', monospace;
}

.timeline-label {
    flex: 1;
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
}

.timeline-bar {
    height: 6px;
    border-radius: 3px;
    min-width: 0;
}

.timeline-bar.sound-wave {
    height: 20px;
    width: 100%;
    border-radius: 0;
    display: block;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 0.75rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: white;
    font-size: 0.9375rem;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.metric-label {
    font-size: 0.6875rem;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.3;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
    animation: floatBadge 3s ease-in-out infinite;
}

.badge-success {
    background: rgba(16, 185, 129, 0.9);
    color: white;
    top: -20px;
    right: -50px;
    animation-delay: 0s;
}

.badge-info {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    bottom: 60px;
    left: -90px;
    animation-delay: 1s;
}

.badge-warning {
    background: rgba(245, 158, 11, 0.9);
    color: white;
    top: 50%;
    right: -40px;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

/* Audio Waveform */
.audio-waveform {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
    z-index: 5;
}

.wave-bar {
    width: 4px;
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 2px;
    animation: wavePulse 1.5s ease-in-out infinite;
}

@keyframes wavePulse {
    0%, 100% { height: 20%; }
    50% { height: 100%; }
}

/* Conversation Bubble */
.conversation-bubble {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bubblePulse 2s ease-in-out infinite;
}

.bubble-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bubble-content::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(255, 255, 255, 0.95);
}

.bubble-content i {
    color: #6366f1;
    font-size: 1rem;
}

@keyframes bubblePulse {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.hero p {
    font-size: 1.375rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.hero-btn-primary {
    background: rgba(255, 255, 255, 0.98);
    color: #6366f1;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22), 0 4px 12px rgba(99, 102, 241, 0.25);
    color: #4f46e5;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.hero-btn-secondary::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 ease;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.hero-btn-secondary:hover::before {
    left: 100%;
}
.primary-text {
    font-size: 1.2rem;
}
/* Floating particles effect */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) scale(1);
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .dashboard-card {
        transform: none;
    }
    
    .floating-badge {
        display: none;
    }
    
    .audio-waveform {
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 100px;
    }
    
    .hero-split {
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-card {
        padding: 1.25rem;
    }
    
    .timeline-item {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .timeline-bar {
        width: 100% !important;
        margin-top: 0.5rem;
    }
    
    .timeline-bar.sound-wave {
        height: 20px;
    }

    .conversation-bubble {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-badge-modern {
        font-size: 0.8125rem;
        padding: 0.625rem 1.25rem;
    }
    
    .dashboard-card {
        padding: 1rem;
    }
}

/* Problem & Solution Section */
.problem-solution-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Get Started Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

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

.modal-container {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.28);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #6b7280;
    font-size: 1.1rem;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
    color: #1f2937;
}

.modal-content-split {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    min-height: 520px;
    max-height: 85vh;
    overflow: hidden;
}

/* Form Side */
.modal-form-side {
    padding: 2rem;
    overflow-y: auto;
    background: #ffffff;
}

.modal-header { margin-bottom: 1rem; }
.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6366f1;
}
.modal-badge i { font-size: 1rem; }
.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.modal-header p { font-size: 0.95rem; color: #6b7280; line-height: 1.6; }

.get-started-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.75rem; font-weight: 600; color: #374151; }
.input-wrapper { position: relative; display: flex; align-items: center; }
.input-wrapper i { position: absolute; left: 1rem; color: #9ca3af; font-size: 1rem; z-index: 1; pointer-events: none; }
.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    color: #1f2937;
    background: #ffffff;
    transition: all 0.3s ease;
}
.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus { outline: none; border-color: #6366f1; box-shadow: 0 0 0 4px rgba(99,102,241,0.1); }
.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder { color: #9ca3af; }
.input-wrapper textarea { resize: vertical; min-height: 90px; padding-left: 0.75rem !important; }
.input-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.75rem;  background: #f9fafb; border-radius: 12px; }
.form-checkbox input[type="checkbox"] { width: 20px; height: 20px; margin-top: 2px; cursor: pointer; accent-color: #6366f1; flex-shrink: 0; }
.form-checkbox label { font-size: 0.875rem; color: #6b7280; cursor: pointer; line-height: 1.5; }
.form-submit-btn {
    width: 100%;
    padding: 0.95rem 1.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none; border-radius: 12px; font-size: 0.9375rem; font-weight: 600;
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    cursor: pointer; transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3); margin-top: 0.5rem;
}
.form-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99,102,241,0.4); }
.form-submit-btn:active { transform: translateY(0); }

/* Visual Side */
.modal-visual-side { background: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #7c3aed 100%); padding: 2rem; position: relative; overflow: hidden; display: flex; align-items: center; }
.modal-visual-side::before { content: ''; position: absolute; top:0; left:0; right:0; bottom:0; background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%); pointer-events: none; }
.modal-visual-content { width: 100%; position: relative; z-index: 1; color: white; }
.visual-header { text-align: center; margin-bottom: 2rem; }
.visual-icon-wrapper { width: 64px; height: 64px; background: rgba(255,255,255,0.2); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 20px; display:flex; align-items:center; justify-content:center; margin:0 auto 1.5rem; font-size:2rem; color:white; box-shadow:0 8px 32px rgba(0,0,0,0.2); }
.visual-header h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.visual-benefits { display:flex; flex-direction:column; gap:1.25rem; margin-bottom:2.5rem; }
.visual-benefit-item { display:flex; align-items:flex-start; gap:1rem; padding:1rem; background:rgba(255,255,255,0.1); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-radius:14px; border:1px solid rgba(255,255,255,0.2); transition:all 0.3s ease; }
.visual-benefit-item:hover { background: rgba(255,255,255,0.15); transform: translateX(5px); }
.benefit-icon { width:40px; height:40px; background: rgba(255,255,255,0.2); border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:1.25rem; color:white; }
.benefit-content h4 { font-size:0.95rem; font-weight:600; margin-bottom:0.25rem; color:white; }
.benefit-content p { font-size:0.8125rem; opacity:0.9; line-height:1.5; color: rgba(255,255,255,0.95); }
.visual-stats { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:2rem; padding:1.25rem; background:rgba(255,255,255,0.1); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-radius:16px; border:1px solid rgba(255,255,255,0.2); }
.visual-stat { text-align:center; }
.stat-number-large { font-size:1.75rem; font-weight:800; margin-bottom:0.5rem; background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.stat-text { font-size:0.75rem; opacity:0.9; font-weight:500; }
.visual-testimonial { padding:1.25rem; background:rgba(255,255,255,0.1); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-radius:16px; border:1px solid rgba(255,255,255,0.2); }
.testimonial-content { position:relative; }
.testimonial-icon { position:absolute; top:-10px; left:-10px; width:40px; height:40px; background:rgba(255,255,255,0.2); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.25rem; color:#fbbf24; }
.testimonial-content p { font-size:1rem; line-height:1.7; margin-bottom:1rem; font-style:italic; color:rgba(255,255,255,0.95); padding-top:1rem; }
.testimonial-author { display:flex; flex-direction:column; gap:0.25rem; }
.testimonial-author strong { font-size:0.9375rem; color:white; }
.testimonial-author span { font-size:0.8125rem; opacity:0.8; color: rgba(255,255,255,0.9); }

@media (max-width: 1024px) {
    .modal-content-split { grid-template-columns: 1fr; max-height: none; }
    .modal-visual-side { order: -1; padding: 2rem; }
    .modal-form-side { padding: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .visual-benefits { margin-bottom: 1.5rem; }
}

@media (max-width: 768px) {
    .modal-container { border-radius: 16px; margin: 1rem; max-height: 95vh; }
    .modal-close { top: 1rem; right: 1rem; width: 36px; height: 36px; }
    .modal-header h2 { font-size: 1.75rem; }
    .modal-form-side, .modal-visual-side { padding: 1.5rem; }
    .modal-visual-side { display: none; }
    .visual-header h3 { font-size: 1.5rem; }
    .visual-stats { grid-template-columns: 1fr; }
}

.problem-solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #6366f1;
}

.section-badge i {
    font-size: 1rem;
}

.text-gradient-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* Problem Card */
.problem-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #fee2e2;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ef4444, #f87171);
    border-radius: 24px 24px 0 0;
}

.problem-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 0 20px 60px rgba(239, 68, 68, 0.15);
    border-color: #fecaca;
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.25);
}

.problem-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(239, 68, 68, 0.08);
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.problem-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.problem-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
}

.problem-pain-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pain-point-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: #fef2f2;
    border-radius: 12px;
    font-size: 0.9375rem;
    color: #7f1d1d;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pain-point-item:hover {
    background: #fee2e2;
    transform: translateX(5px);
}

.pain-point-item i {
    color: #ef4444;
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* Solution Card */
.solution-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #dbeafe;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    border-radius: 24px 24px 0 0;
}

.solution-card:hover {
    transform: translateY(-8px) rotateX(-2deg);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
    border-color: #bfdbfe;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
}

.solution-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(99, 102, 241, 0.08);
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.solution-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.solution-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
}

.solution-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: #eff6ff;
    border-radius: 12px;
    font-size: 0.9375rem;
    color: #1e3a8a;
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #dbeafe;
    transform: translateX(5px);
}

.benefit-item i {
    color: #3b82f6;
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* Device Showcase */
.device-showcase {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.device-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.device-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.device-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.device-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(99, 102, 241, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.device-card:hover::after {
    opacity: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.device-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.device-container-3d {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-icon-wrapper {
    width: 160px;
    height: 160px;
    position: relative;
    z-index: 3;
    animation: floatDevice 4s ease-in-out infinite;
}

.device-icon-inner {
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 5rem;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
}

.device-icon-inner::before {
    display: none;
}

.device-icon-wrapper:hover .device-icon-inner {
    transform: scale(1.1);
    color: #8b5cf6;
}

.device-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-radius: 50%;
    opacity: 0.3;
    animation: ringPulse 2s ease-in-out infinite;
}

.device-ring-1 {
    width: 180px;
    height: 180px;
    border-color: #6366f1;
    animation-delay: 0s;
}

.device-ring-2 {
    width: 220px;
    height: 220px;
    border-color: #8b5cf6;
    animation-delay: 0.4s;
}

.device-ring-3 {
    width: 260px;
    height: 260px;
    border-color: #ec4899;
    animation-delay: 0.8s;
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
}

@keyframes floatDevice {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-12px) rotate(2deg);
    }
    50% {
        transform: translateY(-8px) rotate(0deg);
    }
    75% {
        transform: translateY(-12px) rotate(-2deg);
    }
}

.device-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(139, 92, 246, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 1;
    filter: blur(20px);
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.3);
        opacity: 0.3;
    }
}

.device-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.device-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.8);
    animation: particleFloat 6s ease-in-out infinite;
}

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

.device-particles span:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.device-particles span:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.device-particles span:nth-child(4) {
    top: 40%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) translateX(20px);
        opacity: 1;
    }
}

.device-content {
    position: relative;
    z-index: 2;
}

.device-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.device-badge i {
    font-size: 0.75rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.device-content h4 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1f2937 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.device-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.device-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    flex-wrap: wrap;
}

.device-feature {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4b5563;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.device-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.device-feature:hover::before {
    left: 100%;
}

.device-feature:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
    color: #6366f1;
}

.feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 10px;
    color: #6366f1;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.device-feature:hover .feature-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

/* Modern Problem-Solution Split */
.ps-modern {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 4rem;
}

.ps-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(229, 231, 235, 0.8);
    box-shadow: 0 8px 28px rgba(17, 24, 39, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ps-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(17, 24, 39, 0.12);
}

.ps-problem {
    border-color: #fee2e2;
    background: linear-gradient(180deg, #ffffff 0%, rgba(254, 242, 242, 0.6) 100%);
}

.ps-solution {
    border-color: #dbeafe;
    background: linear-gradient(180deg, #ffffff 0%, rgba(219, 234, 254, 0.6) 100%);
}

.ps-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ps-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: white;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.ps-problem .ps-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }
.ps-solution .ps-icon { background: linear-gradient(135deg, #6366f1, #3b82f6); }

.ps-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.06);
}

.ps-problem .ps-label { color: #991b1b; background: #fee2e2; }
.ps-solution .ps-label { color: #1e3a8a; background: #dbeafe; }

.ps-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.ps-text {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.ps-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    padding-left: 0;
}

.ps-bullet {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 0.875rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    background: rgba(255,255,255,0.7);
    color: #7f1d1d;
    font-weight: 600;
    transition: transform 0.25s ease, background 0.25s ease;
}

.ps-bullet i { font-size: 1rem; }
.ps-bullet.ok { color: #1e3a8a; }
.ps-bullet:hover { transform: translateX(4px); background: rgba(255,255,255,0.9); }
.ps-problem .ps-bullet i { color: #ef4444; }
.ps-solution .ps-bullet i { color: #3b82f6; }

.ps-divider {
    position: relative;
    width: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(180deg, #ef4444 0%, #f59e0b 50%, #3b82f6 100%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5), 0 8px 24px rgba(99, 102, 241, 0.15);
    opacity: 0.9;
}

.ps-chip {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-weight: 700;
    font-size: 0.8rem;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    color: #374151;
}

@media (max-width: 1024px) {
    .ps-modern {
        grid-template-columns: 1fr;
    }
    .ps-divider {
        width: 100%;
        height: 56px;
        margin: 0.5rem 0 1rem 0;
    }
    .ps-divider::before {
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #ef4444 0%, #f59e0b 50%, #3b82f6 100%);
    }
}

@media (max-width: 1024px) {
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .device-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 2rem;
        gap: 3rem;
    }
    
    .device-visual {
        min-height: 240px;
    }
    
    .device-icon-wrapper {
        width: 140px;
        height: 140px;
    }
    
    .device-icon-inner {
        font-size: 4rem;
    }
    
    .device-features {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .problem-solution-section {
        padding: 4rem 0;
    }
    
    .problem-card,
    .solution-card {
        padding: 2rem;
    }
    
    .problem-number,
    .solution-number {
        font-size: 3rem;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .device-card {
        padding: 2rem 1.5rem;
        gap: 2rem;
        border-radius: 24px;
    }
    
    .device-visual {
        min-height: 200px;
    }
    
    .device-icon-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .device-icon-inner {
        font-size: 4rem;
    }
    
    .device-ring-1 {
        width: 140px;
        height: 140px;
    }
    
    .device-ring-2 {
        width: 170px;
        height: 170px;
    }
    
    .device-ring-3 {
        width: 200px;
        height: 200px;
    }
    
    .device-glow {
        width: 250px;
        height: 250px;
    }
    
    .device-content h4 {
        font-size: 1.75rem;
    }
    
    .device-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .device-features {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .device-feature {
        padding: 0.875rem 1rem;
        font-size: 0.8125rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
    border-color: #c7d2fe;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

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

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-quote-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 1.25rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
    opacity: 1;
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Trust Indicators */
.testimonials-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.trust-item {
    text-align: center;
    position: relative;
}

.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent, #e5e7eb, transparent);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.trust-label {
    font-size: 0.9375rem;
    color: #6b7280;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .trust-item:not(:last-child)::after {
        display: none;
    }
    
    .trust-item:nth-child(2)::after {
        display: block;
        right: -1rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonials-trust {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
    
    .trust-item:not(:last-child)::after {
        display: none;
    }
    
    .trust-item::after {
        content: '';
        position: absolute;
        bottom: -1rem;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 1px;
        background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    }
    
    .trust-item:last-child::after {
        display: none;
    }
    
    .trust-number {
        font-size: 2rem;
    }
}

/* Rotating Word Animation */
.rotating-word {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 50px;
    background: linear-gradient(135deg, #fbbf24 0%, #e2a335 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

   
}

@keyframes fadeOutIn {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    45% {
        opacity: 0;
        transform: translateY(-10px);
    }
    55% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.rotating-word.fade {
    animation: fadeOutIn 1s ease-in-out;
}

/* Brand Logos Section */
.brand-logos-section {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  padding: 3rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

.brand-logos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.brand-logos-section .container {
    position: relative;
    z-index: 1;
    overflow: visible;
}

.logo-carousel-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: visible;
 
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: white;
  
    background-size: 200% 100%;
 
    border-top: 1px solid rgba(229, 231, 235, 0.5);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);

}

.logo-carousel-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
 
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.logo-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
    padding-left: 1rem;
    margin: -0.5rem 0;
    z-index: 1;
}

.logo-carousel-track {
    display: inline-flex;
    align-items: center;
    gap: 0;
    will-change: transform;
    padding: 0.5rem 0;
    width: max-content;
    min-width: 100%;
}

.logo-row-1 {
    animation: scrollLogosRight 25s linear infinite;
    animation-play-state: paused;
}

.logo-row-1.animate,
.logo-carousel-track.logo-row-1.animate {
    animation-play-state: running !important;
}



.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 130px;
    padding: 1.25rem 2rem;
    margin: 0.75rem 1rem;
    background: white;
  
  
   
    position: relative;
    overflow: visible;
    z-index: 1;
    pointer-events: auto;
    transform-origin: center center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.logo-item::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
    pointer-events: none;
}

.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.5s ease;
    border-radius: 12px;
    pointer-events: none;
    z-index: 1;
}

.logo-item img {
    max-width: 100%;
    height: 85px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease-out;
    display: block;
    pointer-events: none;
    transform-origin: center center;
    position: relative;
    z-index: 2;
}

@keyframes scrollLogosRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



/* Responsive Design for Logo Carousel */
@media (max-width: 1024px) {
    .logo-carousel-wrapper {
        padding: 2.5rem 0 3rem;
        gap: 1.25rem;
    }
    
    .logo-carousel {
        padding: 0.75rem 0;
        padding-left: 1rem;
    }
    
    .logo-item {
        width: 200px;
        height: 110px;
        padding: 1.1rem 1.75rem;
        margin: 0.75rem 0.75rem;
    }
    
    .logo-item img {
        height: 70px;
    }
    
    .logo-carousel-track {
        gap: 0;
    }
    
  
}

@media (max-width: 768px) {
    .brand-logos-section {
        padding: 3rem 0 0;
    }
    
    .logo-carousel-wrapper {
        padding: 2rem 0 2.5rem;
        gap: 1rem;
    }
    
    .logo-carousel {
        padding: 0.5rem 0;
        padding-left: 0.75rem;
    }
    
    .logo-item {
        width: 160px;
        height: 90px;
        padding: 1rem 1.5rem;
        margin: 0.625rem 0.75rem;
    }
    
    .logo-item img {
        height: 60px;
    }
    
    .logo-carousel-track {
        gap: 0;
    }
    
  
}

@media (max-width: 480px) {
    .logo-carousel-wrapper {
        padding: 1.5rem 0 2rem;
        gap: 0.75rem;
    }
    
    .logo-carousel {
        padding: 0.5rem 0;
        padding-left: 0.75rem;
    }
    
    .logo-item {
        width: 130px;
        height: 80px;
        padding: 0.875rem 1.25rem;
        margin: 0.5rem 0.625rem;
    }
    
    .logo-item img {
        height: 52px;
    }
    
    .logo-carousel-track {
        gap: 0;
    }
    
  
}
