/* CSS Variables */
:root {
    /* Color Palette */
    --primary-bg: #1C0033;
    --secondary-bg: #39055A;
    --accent-orange: #FF7133;
    --accent-purple: #8B42FB;
    --text-white: #FFFFFF;
    --text-light: #EAE6F9;
    --text-muted: #B8B5C7;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1C0033 0%, #39055A 100%);
    --gradient-button: linear-gradient(90deg, #8B42FB 0%, #FF7133 100%);
    --gradient-card: linear-gradient(135deg, rgba(139, 66, 251, 0.1) 0%, rgba(255, 113, 51, 0.1) 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-mono: 'Courier New', monospace;
    
    /* Spacing */
    --section-padding: clamp(3rem, 8vw, 6rem);
    --container-max-width: 1200px;
    
    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--gradient-primary);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-orange);
    border-radius: 50%;
    animation: floatParticle 6s infinite linear;
}

.particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.5);
        opacity: 1;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(28, 0, 51, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}


.logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 18px;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-white);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    position: relative;
    white-space: nowrap;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-button);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown > .nav-link {
    cursor: pointer;
}

.nav-dropdown-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 0.25rem;
}

.nav-dropdown:hover .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 1rem;
    background: rgba(28, 0, 51, 0.98);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-icon,
.nav-dropdown.active .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown-item {
    display: block;
    padding: 0.875rem 1.25rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-dropdown-item:last-child {
    border-bottom: none;
}

.nav-dropdown-item:hover {
    background: rgba(139, 66, 251, 0.15);
    color: var(--text-white);
    padding-left: 1.5rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.language-dropdown {
    position: relative;
    display: inline-block;
    z-index: 1000;
}

.language-selector {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.625rem 1rem;
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    outline: none;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
    z-index: 1000;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-purple);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.language-selector i {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.language-dropdown.active .language-selector i {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

.language-dropdown.active .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.language-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-option.active {
    background: rgba(139, 66, 251, 0.2);
}

.language-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-white);
}

.language-native {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(20px);
    gap: 4px;
    padding: 8px;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    touch-action: manipulation;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0 4rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(139, 66, 251, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 113, 51, 0.15) 0%, transparent 50%);
    overflow: hidden;
}

/* Animated background shapes */
.gradient-overlay::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 66, 251, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation: floatShape 20s ease-in-out infinite;
    filter: blur(60px);
}

.gradient-overlay::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 113, 51, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 15%;
    right: 10%;
    animation: floatShape 15s ease-in-out infinite reverse;
    filter: blur(60px);
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Geometric grid pattern */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-container.hero-two-column {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

/* Left Column - Text Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    max-width: 100%;
    width: 100%;
}

.hero-content-left {
    justify-self: start;
    padding-right: 2rem;
    max-width: 100%;
}

.hero-two-column .hero-content-left {
    max-width: 100%;
    padding-right: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.625rem 1.25rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    width: fit-content;
    color: var(--text-white);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hero-badge i {
    color: var(--accent-orange);
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.01em;
    max-width: 600px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 2rem 0;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.highlight {
    color: var(--accent-orange);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    max-width: 100%;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    min-width: 0;
    flex: 0 0 auto;
    text-align: left;
    max-width: 120px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-purple);
    line-height: 1;
}

.stat-number.stat-icon {
    font-size: 1.25rem;
}

.stat-number.stat-icon i {
    color: var(--accent-orange);
}

.stat-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: normal;
    text-align: left;
    word-break: break-word;
    line-height: 1.1;
    max-width: 120px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary {
    background: var(--gradient-button);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(139, 66, 251, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 66, 251, 0.4);
}

.cta-secondary {
    background: var(--glass-bg);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Right Column - Visual Elements */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
    max-width: 100%;
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow: visible;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Floating AI Agent Cards */
/* Hero Character - Waving GIF */
.hero-character {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    width: 100%;
    height: 100%;
}

.waving-hero {
    max-width: 100%;
    height: auto;
    width: 500px;
    border: none !important;
    outline: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.agent-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    padding: 2rem 2rem 2rem 3rem;
    justify-content: center;
}

.agent-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    width: 100%;
    max-width: 320px;
    z-index: 2;
    pointer-events: auto;
}

.agent-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(139, 66, 251, 0.3);
    border-color: var(--accent-orange);
    z-index: 3;
}

.card-1 {
    animation: floatCard 6s ease-in-out infinite;
    margin-left: 0;
}

.card-2 {
    animation: floatCard 6s ease-in-out infinite 2s;
    margin-left: 2rem;
}

.card-3 {
    animation: floatCard 6s ease-in-out infinite 4s;
    margin-left: 4rem;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-button);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 20px;
    margin-bottom: 1rem;
}

.card-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.status-badge.live .status-dot {
    background: #27CA3F;
}

.status-badge.processing .status-dot {
    background: #FFBD2E;
}

.status-badge.ready .status-dot {
    background: #667eea;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes terminalGlow {
    0% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 0 12px 40px rgba(139, 66, 251, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}





/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--gradient-button);
    animation: lineSlide 2s ease-in-out infinite;
}

@keyframes lineSlide {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* AI Agents Section */
.ai-section {
    padding: calc(var(--section-padding) * 0.6) 0;
    background: rgba(57, 5, 90, 0.3);
}

.section-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.agents-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title-premium {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.section-description-premium {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.agent-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}



.agent-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-purple);
}



.agent-item:hover .agent-avatar {
    transform: scale(1.1);
}

.agent-item:hover .agent-info h3 {
    color: var(--accent-orange);
}

/* Agent Chat Button Styles */
.agent-chat-btn {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    color: var(--text-white);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.agent-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-purple));
}

.agent-chat-btn.coming-soon {
    background: linear-gradient(135deg, #6c757d, #495057);
    cursor: not-allowed;
    opacity: 0.7;
}

.agent-chat-btn.coming-soon:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #6c757d, #495057);
}

    .agent-chat-btn i {
        font-size: 1rem;
    }

.agent-avatar {
    width: 64px;
    height: 64px;
    background: var(--gradient-button);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 20px;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
}

.agent-pfp {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}



.agent-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.agent-info p {
    color: var(--accent-orange);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.agent-info span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.agent-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00FF88;
    animation: pulse 2s infinite;
}

.status-indicator.online {
    background: #00FF88;
}

/* Services Section */
.premium-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    z-index: -1;
}

.section-header-premium {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    color: var(--text-white);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-badge i {
    color: var(--accent-orange);
}

.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card-premium {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: visible; /* Changed to visible for Luma to peek over */
}

/* Luma Peeking Over Card */
.luma-peek-card {
    overflow: visible;
}

.luma-peek {
    position: absolute;
    top: -164px; /* Higher up - more peeking */
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: auto;
    z-index: 10;
    pointer-events: none; /* Don't interfere with clicks */
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25)); /* Soft shadow */
    transition: transform 0.3s ease;
}

/* Hover Animation on Card */
.luma-peek-card:hover .luma-peek {
    animation: lumaPeekFloat 1.5s ease-in-out infinite;
}

@keyframes lumaPeekFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.service-card-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 66, 251, 0.05), rgba(255, 95, 86, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card-premium:hover::after {
    opacity: 1;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-button);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-premium:hover::before {
    transform: scaleX(1);
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-purple);
}

.service-icon-premium {
    margin-bottom: 1rem;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gradient-button);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 24px;
    margin: 0 auto;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.icon-wrapper img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    /* Keep icons visible in original colors - no filters */
    transition: var(--transition-smooth);
}

.icon-wrapper:hover img {
    /* Remove hover effects - keep original appearance */
    transform: none;
}

.icon-wrapper i {
    font-size: 24px;
    color: var(--text-white);
    transition: var(--transition-smooth);
}

.icon-wrapper:hover i {
    /* Remove hover effects - keep original appearance */
    transform: none;
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card-premium:hover .icon-wrapper {
    /* Remove all hover effects to keep icons visible */
    transform: none;
    box-shadow: none;
    background: var(--gradient-button);
}

.service-card-premium:hover .icon-wrapper::before {
    transform: translateX(100%);
}

.service-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-size: 0.85rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-tag {
    background: rgba(139, 66, 251, 0.2);
    color: var(--accent-purple);
    padding: 0.25rem 0.6rem;
    border-radius: 16px;
    font-size: 0.65rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.feature-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(139, 66, 251, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.service-card-premium:hover .feature-tag {
    background: rgba(139, 66, 251, 0.3);
    border-color: var(--accent-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 66, 251, 0.3);
}

.service-card-premium:hover .feature-tag::before {
    transform: translateX(100%);
}

/* Footer */
.footer {
    background: rgba(28, 0, 51, 0.8);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--text-white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.contact-item i {
    color: var(--accent-orange);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    margin-top: 3rem;
    padding-top: 2rem;
}

.footer-bottom-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-links-bottom {
    display: flex;
    gap: 2rem;
}

.footer-links-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.footer-links-bottom a:hover {
    color: var(--text-white);
}

.crafted {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Mobile menu styles moved to comprehensive 767px media query below */
    
    .hero-container,
    .hero-container.hero-two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content-left {
        justify-self: center;
    }
    
    .nav-dropdown {
        display: block;
        width: 100%;
    }
    
    .nav-dropdown .nav-link {
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        display: none;
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
    }
    
    .nav-dropdown-item {
        padding-left: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        height: 500px;
        flex-direction: column;
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .agent-cards {
        width: 100%;
        height: 60%;
        position: relative;
    }
    
    .agent-card {
        width: 220px;
        padding: 1.25rem;
    }
    
    .card-1 {
        top: 10px;
        left: 10px;
    }
    
    .card-2 {
        top: 120px;
        left: 30px;
    }
    
    .card-3 {
        top: 230px;
        left: 50px;
    }
    
    .services-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .agents-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }
    
    .service-card-premium {
        padding: 1.5rem;
    }
    
    .agents-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: center;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .icon-wrapper img {
        width: 28px;
        height: 28px;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .feature-tag {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    

}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }
    
    .stat {
        align-items: center;
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .agent-card {
        width: 180px;
        padding: 0.75rem;
    }
    
    .card-1 {
        top: 5px;
        left: 5px;
    }
    
    .card-2 {
        top: 100px;
        left: 20px;
    }
    
    .card-3 {
        top: 195px;
        left: 35px;
    }
    
    .service-card-premium {
        padding: 1.25rem;
    }
    
    .icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .icon-wrapper img {
        width: 24px;
        height: 24px;
    }
    
    .icon-wrapper i {
        font-size: 18px;
        color: var(--text-white);
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
        color: var(--text-light);
    }
    
    .contact-item span {
        color: var(--text-light) !important;
        text-decoration: none !important;
        font-size: 0.9rem;
    }
    
    .contact-item i {
        color: var(--text-light);
    }
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .hero-stats {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-actions {
    flex-direction: row-reverse;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    /* Override for clients section to ensure scrolling works */
    .clients-track {
        animation-duration: 180s !important;
        animation-iteration-count: infinite !important;
    }
}

/* Focus Styles */
button:focus,
input:focus,
a:focus {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Page Specific Styles */
.contact-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.contact-card {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    width: 280px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.contact-card:nth-child(1) {
    top: 0;
    right: 0;
    animation: floatCard 6s ease-in-out infinite;
}

.contact-card:nth-child(2) {
    top: 120px;
    right: 40px;
    animation: floatCard 6s ease-in-out infinite 2s;
}

.contact-card:nth-child(3) {
    top: 240px;
    right: 80px;
    animation: floatCard 6s ease-in-out infinite 4s;
}

.contact-method-card {
    position: relative;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 66, 251, 0.05), rgba(255, 95, 86, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-method-card:hover::before {
    opacity: 1;
}

.contact-method-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-button);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.contact-method-card:hover::after {
    transform: scaleX(1);
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.contact-button:hover::before {
    transform: translateX(100%);
}

.contact-button.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.contact-button.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.contact-button.email {
    background: linear-gradient(135deg, var(--glass-bg), rgba(255, 255, 255, 0.1));
    color: var(--text-white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.contact-button.email:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), var(--glass-bg));
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.contact-button.linkedin {
    background: linear-gradient(135deg, #0077B5, #005885);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(0, 119, 181, 0.3);
}

.contact-button.linkedin:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 119, 181, 0.5);
    background: linear-gradient(135deg, #005885, #0077B5);
}

.contact-button.phone {
    background: var(--gradient-button);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(139, 66, 251, 0.3);
}

.contact-button.phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 66, 251, 0.5);
    background: linear-gradient(135deg, rgba(255, 95, 86, 0.8), rgba(139, 66, 251, 0.8));
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.email-icon {
    background: linear-gradient(135deg, #EA4335, #D32F2F) !important;
    box-shadow: 0 4px 20px rgba(234, 67, 53, 0.3);
}

.linkedin-icon {
    background: linear-gradient(135deg, #0077B5, #005885) !important;
    box-shadow: 0 4px 20px rgba(0, 119, 181, 0.3);
}

.phone-icon {
    background: var(--gradient-button) !important;
    box-shadow: 0 4px 20px rgba(139, 66, 251, 0.3);
}

.contact-method-card:hover .whatsapp-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.contact-method-card:hover .email-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(234, 67, 53, 0.5);
}

.contact-method-card:hover .linkedin-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 119, 181, 0.5);
}

.contact-method-card:hover .phone-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(139, 66, 251, 0.5);
}

.contact-info-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-card {
        width: 240px;
        padding: 1rem;
    }
    
    .contact-cards {
        height: 300px;
    }
    
    .contact-card:nth-child(1) {
        top: 0;
        right: 0;
    }
    
    .contact-card:nth-child(2) {
        top: 80px;
        right: 20px;
    }
    
    .contact-card:nth-child(3) {
        top: 160px;
    }
    
    .contact-method-card {
        padding: 1.5rem;
        min-height: 250px;
    }
    
    .contact-button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .contact-card {
        width: 200px;
        padding: 1rem;
    }
    
    .contact-cards {
        height: 250px;
    }
    
    .contact-card:nth-child(1) {
        top: 0;
        right: 0;
    }
    
    .contact-card:nth-child(2) {
        top: 60px;
        right: 10px;
    }
    
    .contact-card:nth-child(3) {
        top: 120px;
        right: 20px;
    }
    
    .contact-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .contact-method-card {
        padding: 1.25rem;
        min-height: 220px;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .icon-wrapper img {
        width: 28px;
        height: 28px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Work Page Specific Styles */
.portfolio-preview {
    position: relative;
    width: 100%;
    height: 100%;
}

.preview-card {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    width: 280px;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.preview-card:nth-child(1) {
    top: 0;
    right: 0;
    animation: floatCard 6s ease-in-out infinite;
}

.preview-card:nth-child(2) {
    top: 120px;
    right: 40px;
    animation: floatCard 6s ease-in-out infinite 2s;
}

.preview-card:nth-child(3) {
    top: 240px;
    right: 80px;
    animation: floatCard 6s ease-in-out infinite 4s;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.portfolio-card:hover::before {
    opacity: 1;
}

.portfolio-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-purple);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-item .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-actions .cta-primary,
.cta-actions .cta-secondary {
    min-width: 200px;
    justify-content: center;
}

/* Responsive Design for Work Page */
@media (max-width: 768px) {
    .preview-card {
        width: 240px;
        padding: 1rem;
    }
    
    .portfolio-preview {
        height: 300px;
    }
    
    .preview-card:nth-child(1) {
        top: 0;
        right: 0;
    }
    
    .preview-card:nth-child(2) {
        top: 80px;
        right: 20px;
    }
    
    .preview-card:nth-child(3) {
        top: 160px;
        right: 40px;
    }
    
    .portfolio-image {
        height: 160px;
    }
    
    .portfolio-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .cta-primary,
    .cta-actions .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .preview-card {
        width: 200px;
        padding: 1rem;
    }
    
    .portfolio-preview {
        height: 250px;
    }
    
    .preview-card:nth-child(1) {
        top: 0;
        right: 0;
    }
    
    .preview-card:nth-child(2) {
        top: 60px;
        right: 10px;
    }
    
    .preview-card:nth-child(3) {
        top: 120px;
        right: 20px;
    }
    
    .stat-item .stat-number {
        font-size: 1.25rem;
    }
    
    .portfolio-image {
        height: 140px;
    }
    
    .stat-item .stat-label {
        font-size: 0.625rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section Premium Styling */
.contact-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card-premium {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.contact-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 66, 251, 0.1) 0%, rgba(255, 113, 51, 0.1) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.contact-card-premium:hover::before {
    opacity: 1;
}

.contact-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-icon-premium {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
}

.contact-icon-premium img {
    width: 48px;
    height: 48px;
    transition: var(--transition-smooth);
    object-fit: contain;
}

.contact-card-premium:hover .contact-icon-premium img {
    transform: scale(1.1);
}

.contact-content-premium {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.contact-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-button-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    margin-top: 1rem;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-white);
    backdrop-filter: blur(20px);
}

.contact-button-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.contact-button-premium.whatsapp:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-color: #25D366;
}

.contact-button-premium.instagram:hover {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 100%);
    border-color: #E4405F;
}

.contact-button-premium.email:hover {
    background: linear-gradient(135deg, #EA4335 0%, #D93025 100%);
    border-color: #EA4335;
}

.contact-button-premium.phone:hover {
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
    border-color: #0077B5;
}

/* Work Section Premium Styling */
.work-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.work-card-premium {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    position: relative;
}

.work-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.work-image-premium {
    width: 100%;
    height: 200px;
    background: var(--gradient-card);
    position: relative;
    overflow: hidden;
}

.work-image-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.work-card-premium:hover .work-image-premium img {
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 66, 251, 0.8) 0%, rgba(255, 113, 51, 0.8) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-card-premium:hover .work-overlay {
    opacity: 1;
}

.work-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.work-content-premium {
    padding: 2rem;
}

.work-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.work-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.work-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.work-card-premium:hover .feature-tag {
    background: rgba(139, 66, 251, 0.2);
    border-color: rgba(139, 66, 251, 0.5);
    color: var(--text-white);
}

.work-link-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.work-link-premium:hover {
    color: var(--accent-orange);
    transform: translateX(4px);
}

/* Why Us Section Premium Styling */
.why-us-card-premium {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.why-us-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 66, 251, 0.1) 0%, rgba(255, 113, 51, 0.1) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.why-us-card-premium:hover::before {
    opacity: 1;
}

.why-us-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.why-us-icon-premium {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    color: var(--accent-orange);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.why-us-card-premium:hover .why-us-icon-premium {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(139, 66, 251, 0.2) 0%, rgba(255, 113, 51, 0.2) 100%);
}

.why-us-content-premium {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-us-content-premium h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.why-us-content-premium p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Why Us Grid Premium Styling */
.why-us-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-us-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.why-us-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Social Links Styling */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-link:hover {
    opacity: 0.8;
}

/* Language Selector Premium Styling */
.language-selector {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: var(--text-white);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.language-selector::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--text-white);
    transition: var(--transition-smooth);
}

.language-selector:hover::after {
    transform: rotate(180deg);
}

.lang-select {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: var(--text-white);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
    outline: none;
}

.lang-select:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 2px rgba(139, 66, 251, 0.2);
}

.lang-select option {
    background: var(--secondary-bg);
    color: var(--text-white);
}

/* Social Media Icons */
.social-link img {
    width: 24px;
    height: 24px;
    transition: var(--transition-smooth);
}

.social-link:hover img {
    transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.faq-section.alt {
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.faq-item:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: rgba(139, 66, 251, 0.05);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1rem;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    opacity: 1;
}

/* Testimonials Page */
.testimonials-featured-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.featured-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.featured-testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.featured-testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.client-logo img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.testimonial-meta h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
}

.client-company {
    font-size: 1rem;
    color: var(--accent-orange);
    font-weight: 500;
}

.testimonial-stars {
    margin-top: 0.5rem;
}

.testimonial-stars i {
    color: var(--accent-orange);
    margin-right: 0.25rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
    margin: 0 0 2rem 0;
    padding: 0;
    border: none;
}

.testimonial-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item {
    text-align: center;
}

.result-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.result-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

.testimonials-grid-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.testimonials-stats-section {
    padding: 4rem 0;
    background: var(--bg-primary);
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-purple);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Button Icons */
.cta-icon img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}

.cta-icon span {
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.cta-primary:hover .cta-icon img,
.cta-secondary:hover .cta-icon img {
    transform: scale(1.1);
}

.cta-primary:hover .cta-icon span {
    transform: scale(1.1);
}

/* Responsive Design for Premium Sections */
@media (max-width: 768px) {
    .contact-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .work-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-us-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card-premium,
    .work-card-premium,
    .why-us-card-premium {
        padding: 1.5rem;
    }
    
    .contact-icon-premium,
    .why-us-icon-premium {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon-premium img,
    .why-us-icon-premium img {
        width: 36px;
        height: 36px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .contact-grid-premium,
    .work-grid-premium,
    .why-us-grid-premium {
        gap: 1rem;
    }
    
    .contact-card-premium,
    .work-card-premium,
    .why-us-card-premium {
        padding: 1rem;
    }
    
    .contact-title,
    .work-title,
    .why-us-title {
        font-size: 1.125rem;
    }
    
    .contact-description,
    .work-description,
    .why-us-description {
        font-size: 0.875rem;
    }
    
    .contact-button-premium,
    .work-link-premium {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-link img {
        width: 18px;
        height: 18px;
    }
    
    .contact-icon-premium img,
    .why-us-icon-premium img {
        width: 28px;
        height: 28px;
    }
}

/* Clients Section - Clean Infinite Scroll */
.clients-section {
    padding: var(--section-padding) 0;
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.clients-wrapper {
    overflow: hidden;
    margin-top: 3rem;
    position: relative;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: scrollClients 8s linear infinite;
    width: max-content;
    will-change: transform;
    padding: 0 2rem;
    filter: saturate(1.1) contrast(1.05);
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-item {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    margin: 0 1rem;
}

.client-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-primary);
}

.client-item img {
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: var(--transition-smooth);
}

.client-item:hover img {
    filter: grayscale(0%) brightness(1);
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive styles for clients section */
@media (max-width: 768px) {
    .clients-wrapper {
        height: 100px;
    }
    
    .clients-track {
        gap: 1.5rem;
        animation-duration: 180s;
    }
    
    .client-item {
        width: 100px;
        height: 70px;
        margin: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .clients-wrapper {
        height: 90px;
    }
    
    .clients-track {
        gap: 1rem;
        animation-duration: 240s;
    }
    
    .client-item {
        width: 80px;
        height: 60px;
        margin: 0 0.5rem;
    }
}

/* Enhanced Kora Chatbot Modal Styles */
.kora-chatbot-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.kora-chat-container {
    width: 90%;
    max-width: 800px;
    height: 85%;
    max-height: 700px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideIn 0.4s ease;
}

.kora-chat-header {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.kora-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kora-bot-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.kora-avatar-container {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
}

.kora-bot-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.kora-status-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: #27CA3F;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.kora-bot-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.kora-bot-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.kora-bot-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.kora-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.kora-message-counter {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: white;
    font-weight: 500;
}

.kora-close-chat {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kora-close-chat:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.kora-chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.kora-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    scroll-behavior: smooth;
}

.kora-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.kora-chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.kora-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.kora-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 80%;
    animation: fadeIn 0.3s ease;
}

.kora-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.kora-message.bot {
    align-self: flex-start;
}

.kora-message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.kora-message-avatar.user-avatar {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.kora-message-avatar.bot-avatar {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
}

.kora-message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kora-message-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    font-size: 0.95rem;
    line-height: 1.6;
    color: white;
    position: relative;
    word-wrap: break-word;
    max-width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.kora-message-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
    border-radius: 20px;
}

.kora-message.user .kora-message-content {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.3), 0 4px 16px rgba(255, 165, 0, 0.2);
}

.kora-message.user .kora-message-content::after {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.kora-message.bot .kora-message-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(255, 255, 255, 0.05);
}

.kora-message-content::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 8px solid transparent;
}

.kora-message.user .kora-message-content::before {
    right: -8px;
    border-left-color: var(--accent-purple);
}

.kora-message.bot .kora-message-content::before {
    left: -8px;
    border-right-color: rgba(255, 255, 255, 0.1);
}

.kora-typing-indicator {
    display: none;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    animation: fadeIn 0.3s ease;
}

.kora-typing-indicator.active {
    display: flex;
}

.kora-typing-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kora-typing-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 0.5rem;
}

.kora-typing-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: typingDot 1.4s infinite ease-in-out;
}

.kora-typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.kora-typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.kora-chat-input {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.kora-input-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.kora-input-wrapper {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.kora-input-wrapper:focus-within {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.2);
}

.kora-message-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.95rem;
    border-radius: 25px;
}

.kora-message-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.kora-send-btn {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.kora-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.kora-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.kora-send-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.kora-send-btn:hover svg {
    transform: translateX(2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .kora-chat-container {
        width: 95%;
        height: 90%;
        max-height: none;
    }
    
    .kora-chat-header {
        padding: 1rem 1.5rem;
    }
    
    .kora-avatar-container {
        width: 50px;
        height: 50px;
    }
    
    .kora-bot-name {
        font-size: 1.1rem;
    }
    
    .kora-chat-messages {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .kora-message {
        max-width: 90%;
    }
    
    .kora-message-avatar {
        width: 35px;
        height: 35px;
    }
    
    .kora-message-content {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .kora-chat-input {
        padding: 1rem 1.5rem;
    }
    
    .kora-message-input {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .kora-send-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .kora-chat-container {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    
    .kora-chat-header {
        padding: 0.875rem 1rem;
    }
    
    .kora-bot-info {
        gap: 0.75rem;
    }
    
    .kora-avatar-container {
        width: 45px;
        height: 45px;
    }
    
    .kora-bot-name {
        font-size: 1rem;
    }
    
    .kora-bot-subtitle {
        font-size: 0.8rem;
    }
    
    .kora-chat-messages {
        padding: 1rem;
    }
    
    .kora-message {
        max-width: 95%;
        gap: 0.75rem;
    }
    
    .kora-message-avatar {
        width: 32px;
        height: 32px;
    }
    
    .kora-message-content {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .kora-chat-input {
        padding: 0.875rem 1rem;
    }
    
    .kora-message-input {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .kora-send-btn {
        width: 40px;
        height: 40px;
    }
}

/* Kora CTA Styles */
.kora-cta-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.kora-cta-content h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.kora-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.kora-cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.kora-cta-button {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kora-cta-button.primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    color: white;
}

.kora-cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.kora-cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.kora-cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive styles for Kora CTA */
@media (max-width: 768px) {
    .kora-cta-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .kora-cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .kora-cta-container {
        padding: 1rem;
    }
    
    .kora-cta-content h3 {
        font-size: 1rem;
    }
    
    .kora-cta-content p {
        font-size: 0.8rem;
    }
    
    .kora-cta-button {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }
}

/* Responsive styles for Lina, Jay, and Byte CTAs */
@media (max-width: 768px) {
    .lina-cta-buttons,
    .jay-cta-buttons,
    .byte-cta-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .lina-cta-button,
    .jay-cta-button,
    .byte-cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .lina-cta-container,
    .jay-cta-container,
    .byte-cta-container {
        padding: 1rem;
    }
    
    .lina-cta-content h3,
    .jay-cta-content h3,
    .byte-cta-content h3 {
        font-size: 1rem;
    }
    
    .lina-cta-content p,
    .jay-cta-content p,
    .byte-cta-content p {
        font-size: 0.8rem;
    }
    
    .lina-cta-button,
    .jay-cta-button,
    .byte-cta-button {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }
}

/* View Project Button Styling */
.view-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}

.view-project-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    color: white;
    text-decoration: none;
}

.view-project-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.view-project-btn:hover i {
    transform: translateX(2px);
}

/* Responsive styles for view project button */
@media (max-width: 768px) {
    .view-project-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .view-project-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .view-project-btn i {
        font-size: 0.7rem;
    }
}

/* ===== MOBILE-FIRST OPTIMIZATIONS ===== */

/* Desktop Language Dropdown - Ensure it works properly */
@media (min-width: 768px) {
  .language-dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    margin-top: 0.5rem !important;
  }
  
  .language-dropdown.active .language-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }
}

/* Mobile-First Base Styles */
@media (max-width: 767px) {
  /* Root Mobile Variables */
  :root {
    --mobile-padding: 1rem;
    --mobile-gap: 1rem;
    --mobile-border-radius: 12px;
    --mobile-font-size-base: 16px;
    --mobile-line-height: 1.5;
    --mobile-touch-target: 44px;
  }

  /* Mobile Typography Scale */
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: clamp(1rem, 4vw, 1.125rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .section-title-premium {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    line-height: 1.2;
  }

  .section-description-premium {
    font-size: clamp(0.875rem, 3.5vw, 1rem);
    line-height: 1.6;
  }

  .service-title {
    font-size: clamp(1.1rem, 4vw, 1.25rem);
    line-height: 1.3;
  }

  .service-description {
    font-size: clamp(0.875rem, 3.5vw, 1rem);
    line-height: 1.5;
  }

  /* Mobile Navigation */
  .navbar {
    padding: 0.75rem var(--mobile-padding);
  }

  .nav-container {
    padding: 0;
    gap: 1rem;
  }

  .nav-logo {
    gap: 0.5rem;
    margin-right: 0;
  }

  .nav-menu {
    gap: 1.5rem;
  }

  .nav-actions {
    gap: 0.75rem;
  }

  .logo-text {
    font-size: 1rem;
  }



  /* Mobile Hero Section */
  .hero {
    min-height: 100vh;
    padding: 2rem var(--mobile-padding);
    padding-top: 6rem; /* Add top padding to account for fixed navbar */
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
    padding: 0;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    gap: 1.5rem;
  }

  .hero-badge {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    margin: 0 auto;
  }

  .hero-stats {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat {
    text-align: center;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .cta-primary, .cta-secondary {
    min-height: var(--mobile-touch-target);
    min-width: 200px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    border-radius: var(--mobile-border-radius);
  }

  /* Mobile Hero Visual */
  .hero-visual {
    height: auto;
    min-height: 200px;
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
    justify-content: center;
    align-items: center;
  }

  /* Hide agent cards and code window on mobile */
  .agent-cards {
    display: none !important;
  }

  .code-content {
    padding: 0.75rem;
  }

  .code-content pre {
    font-size: 0.7rem;
  }

  /* Mobile Services Section */
  .premium-section {
    padding: 3rem var(--mobile-padding);
  }

  .section-container {
    padding: 0;
  }

  .section-header-premium {
    margin-bottom: 2rem;
  }

  .services-grid-premium {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card-premium {
    padding: 1.5rem;
    margin: 0;
  }

  .icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .icon-wrapper img {
    width: 28px;
    height: 28px;
  }
  
  .icon-wrapper i {
    font-size: 20px;
    color: var(--text-white);
  }

  .service-features {
    gap: 0.4rem;
    flex-wrap: wrap;
  }

  .feature-tag {
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
  }

  /* Mobile AI Agents Section */
  .ai-section {
    padding: 3rem var(--mobile-padding);
  }

  .agents-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .agent-item {
    padding: 1.25rem;
    margin: 0;
  }

  .agent-avatar {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }

  .agent-pfp {
    width: 100%;
    height: 100%;
  }

  .agent-info h3 {
    font-size: 1rem;
  }

  .agent-info p {
    font-size: 0.875rem;
  }

  .agent-info span {
    font-size: 0.8rem;
  }

  .agent-chat-btn {
    min-height: var(--mobile-touch-target);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  /* Mobile Clients Section */
  .clients-section {
    padding: 3rem var(--mobile-padding);
  }

  .clients-wrapper {
    height: 80px;
  }

  .clients-track {
    gap: 1rem;
    animation-duration: 180s;
  }

  .client-item {
    width: 100px;
    height: 70px;
    margin: 0 0.5rem;
  }

  /* Mobile Footer */
  .footer {
    padding: 3rem var(--mobile-padding) 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .social-links {
    justify-content: center;
    gap: 0.75rem;
  }

  .social-link {
    width: 35px;
    height: 35px;
  }

  .social-link img {
    width: 20px;
    height: 20px;
  }

  /* Mobile Contact Page */
  .contact-methods-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-method-card {
    padding: 1.5rem;
  }

  .contact-button {
    min-height: var(--mobile-touch-target);
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .contact-info-item {
    padding: 1.5rem;
  }

  /* Mobile Work Page */
  .work-grid-premium {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-card {
    padding: 1.5rem;
  }

  .portfolio-image {
    height: 160px;
  }

  .portfolio-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .view-project-btn {
    min-height: var(--mobile-touch-target);
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  /* Mobile Why Us Page */
  .why-us-grid-premium {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-us-card-premium {
    padding: 1.5rem;
  }

  .why-us-icon-premium {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .contact-grid-premium {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-card-premium {
    padding: 1.5rem;
  }

  .contact-icon-premium {
    width: 50px;
    height: 50px;
  }

  .contact-icon-premium img {
    width: 36px;
    height: 36px;
  }

  .contact-button-premium {
    min-height: var(--mobile-touch-target);
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  /* Mobile Language Selector */
  .language-selector {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .language-dropdown-menu {
    min-width: 160px;
    right: 0;
  }

  .language-option {
    padding: 0.5rem 0.75rem;
  }

  .language-name {
    font-size: 0.8rem;
  }

  .language-native {
    font-size: 0.7rem;
  }

  /* Mobile Performance Optimizations */
  .particles::before,
  .particles::after {
    display: none;
  }

  .gradient-overlay {
    background: linear-gradient(135deg, rgba(139, 66, 251, 0.1) 0%, rgba(255, 113, 51, 0.1) 100%);
  }

  .service-card-premium {
    backdrop-filter: blur(10px);
  }

  /* Mobile Scroll Indicator */
  .scroll-indicator {
    bottom: 1rem;
  }

  .scroll-line {
    height: 30px;
  }

  .scroll-text {
    font-size: 0.7rem;
  }
}

/* Tablet Optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .services-grid-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .contact-methods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .work-grid-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .why-us-grid-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .contact-grid-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
  .service-card-premium:active {
    transform: scale(0.98);
  }

  .cta-primary:active,
  .cta-secondary:active {
    transform: scale(0.95);
  }

  .agent-chat-btn:active {
    transform: scale(0.95);
  }

  .contact-button:active {
    transform: scale(0.95);
  }

  .view-project-btn:active {
    transform: scale(0.95);
  }

  .contact-button-premium:active {
    transform: scale(0.95);
  }

  /* Remove hover effects on mobile */
  .service-card-premium:hover {
    transform: none;
  }

  .cta-primary:hover,
  .cta-secondary:hover {
    transform: none;
  }

  .agent-chat-btn:hover {
    transform: none;
  }

  .contact-button:hover {
    transform: none;
  }

  .view-project-btn:hover {
    transform: none;
  }

  .contact-button-premium:hover {
    transform: none;
  }
}

/* Mobile Accessibility */
@media (max-width: 767px) {
  /* Focus indicators for mobile */
  button:focus,
  input:focus,
  a:focus {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
  }

  /* Improved contrast for mobile */
  .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
  }

  /* Better touch feedback */
  .nav-link:active {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
  }

  /* Language Selector Mobile - Complete Override */
  .language-selector {
    min-height: 48px !important;
    min-width: 48px !important;
    padding: 0.75rem 1rem !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(139, 66, 251, 0.3) !important;
    position: relative !important;
    z-index: 1100 !important;
    cursor: pointer !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    pointer-events: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }
  
  .language-selector * {
    pointer-events: none !important;
  }
  
  .language-selector:active,
  .language-selector:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    outline: 2px solid rgba(139, 66, 251, 0.5) !important;
  }
  
  .language-dropdown {
    z-index: 1100 !important;
    position: relative !important;
  }
  
  .language-dropdown-menu {
    position: fixed !important;
    right: 1rem !important;
    top: 70px !important;
    min-width: 200px !important;
    max-width: 90vw !important;
    z-index: 9999 !important;
    background: rgba(28, 0, 51, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(139, 66, 251, 0.3) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-10px) !important;
    transition: all 0.2s ease-out !important;
  }
  
  .language-dropdown.active .language-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .language-option {
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    padding: 1rem 1.5rem !important;
    background: transparent !important;
    cursor: pointer !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  
  .language-option:last-child {
    border-bottom: none !important;
  }
  
  .language-option:active {
    background: rgba(139, 66, 251, 0.4) !important;
  }
  
  .language-option.active {
    background: rgba(139, 66, 251, 0.2) !important;
  }
}

/* Mobile Loading States */
@media (max-width: 767px) {
  .loading {
    opacity: 0.8;
  }

  /* Mobile-specific loading animations */
  @keyframes mobilePulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
  }

  .mobile-loading {
    animation: mobilePulse 1.5s ease-in-out infinite;
  }
}

/* Mobile Chatbot Optimizations */
@media (max-width: 767px) {
  .kora-chat-container {
    width: 100%;
    height: 100vh;
    border-radius: 0;
    max-width: none;
    max-height: none;
  }

  .kora-chat-header {
    padding: 1rem;
  }

  .kora-bot-info {
    gap: 0.75rem;
  }

  .kora-avatar-container {
    width: 45px;
    height: 45px;
  }

  .kora-bot-name {
    font-size: 1rem;
  }

  .kora-bot-subtitle {
    font-size: 0.8rem;
  }

  .kora-header-actions {
    gap: 0.75rem;
  }

  .kora-message-counter {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .kora-close-chat {
    width: 36px;
    height: 36px;
  }

  .kora-chat-messages {
    padding: 1.5rem;
    gap: 1rem;
  }

  .kora-message {
    max-width: 95%;
    gap: 0.75rem;
  }

  .kora-message-avatar {
    width: 32px;
    height: 32px;
  }

  .kora-message-content {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .kora-chat-input {
    padding: 1rem;
  }

  .kora-message-input {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .kora-send-btn {
    width: 40px;
    height: 40px;
  }

  .kora-cta-container {
    padding: 1rem;
  }

  .kora-cta-content h3 {
    font-size: 1rem;
  }

  .kora-cta-content p {
    font-size: 0.875rem;
  }

  .kora-cta-button {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

/* Mobile Menu Implementation */
@media (max-width: 767px) {
  .nav-menu {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(28, 0, 51, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Mobile Navigation Layout - Translation left, Menu right */
  .nav-actions {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 0.75rem;
    order: 2;
  }
  
  .language-dropdown {
    order: 1;
  }

  .mobile-menu-toggle {
    display: flex !important;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
    cursor: pointer;
    transition: all 0.2s ease;
    order: 2;
  }

  .mobile-menu-toggle:active {
    transform: scale(0.95);
  }
  
  .cta-button-small {
    display: none;
  }

  .nav-link {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
    color: var(--text-white);
    text-decoration: none;
    display: block;
    width: 100%;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
  }

  .nav-link:active,
  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0.98);
  }
  
  .nav-link::after {
    display: none;
  }
}

/* Mobile Floating CTA - DISABLED */
@media (max-width: 767px) {
  .mobile-floating-cta {
    display: none !important;
  }
}

/* Mobile Content Optimization */
@media (max-width: 767px) {
  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  /* Mobile-specific content */
  .mobile-hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .mobile-hero-description {
    font-size: clamp(1rem, 4vw, 1.125rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .mobile-cta-text {
    font-size: 0.9rem;
    font-weight: 600;
  }
}

/* Mobile Performance Enhancements */
@media (max-width: 767px) {
  /* Reduce animation complexity */
  * {
    animation-duration: 0.3s !important;
  }

  /* Optimize transforms */
  .service-card-premium:hover {
    transform: none;
  }

  .agent-item:hover {
    transform: none;
  }

  .portfolio-card:hover {
    transform: none;
  }

  .contact-method-card:hover {
    transform: none;
  }

  .why-us-card-premium:hover {
    transform: none;
  }

  .contact-card-premium:hover {
    transform: none;
  }

  /* Mobile-specific hover states */
  .service-card-premium:active {
    transform: scale(0.98);
  }

  .agent-item:active {
    transform: scale(0.98);
  }

  .portfolio-card:active {
    transform: scale(0.98);
  }

  .contact-method-card:active {
    transform: scale(0.98);
  }

  .why-us-card-premium:active {
    transform: scale(0.98);
  }

  .contact-card-premium:active {
    transform: scale(0.98);
  }
}

/* Mobile Image Optimization */
@media (max-width: 767px) {
  .portfolio-image img {
    object-fit: cover;
  }

  .agent-pfp {
    object-fit: cover;
  }

  .logo-image {
    object-fit: contain;
  }

  .social-link img {
    object-fit: contain;
  }
}

/* Mobile Form Optimization */
@media (max-width: 767px) {
  input, textarea, select {
    font-size: 16px !important; /* Prevents zoom on iOS */
    min-height: 44px;
    padding: 0.75rem 1rem;
  }

  button {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Mobile Print Styles */
@media print {
  .navbar,
  .mobile-floating-cta,
  .kora-chatbot-modal {
    display: none !important;
  }
}

/* Mobile High Contrast Mode */
@media (prefers-contrast: high) {
  .service-card-premium,
  .agent-item,
  .portfolio-card,
  .contact-method-card,
  .why-us-card-premium,
  .contact-card-premium {
    border: 2px solid var(--text-white);
  }
}

/* Mobile Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .clients-track {
    animation-duration: 180s !important;
  }
}

/* Mobile Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --primary-bg: #1C0033;
    --secondary-bg: #39055A;
  }
}

/* Mobile Landscape Orientation */
@media (max-width: 767px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 1rem var(--mobile-padding);
  }

  .hero-container {
    gap: 1rem;
  }

  .hero-stats {
    flex-direction: row;
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: row;
    gap: 0.75rem;
  }
}

/* Mobile Ultra-Wide Support */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
}

/* Mobile Loading States */
.mobile-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: var(--text-muted);
}

.mobile-loading::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid var(--glass-border);
  border-top: 2px solid var(--accent-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 0.5rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Mobile Error States */
.mobile-error {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  color: #ff6b6b;
  text-align: center;
}

/* Mobile Success States */
.mobile-success {
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  color: #51cf66;
  text-align: center;
}

/* Mobile Offline Support */
.mobile-offline {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ff6b6b;
  color: white;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
  z-index: 10000;
}

/* Mobile Network Status */
.mobile-network-status {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #51cf66;
  color: white;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
  z-index: 10000;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-network-status.show {
  transform: translateY(0);
}

/* Desktop-only: Show agent cards */
@media (min-width: 768px) {
  .agent-cards {
    display: flex !important;
  }
}

/* Lina Chatbot Styles */
.lina-chatbot-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.lina-chat-container {
    width: 90%;
    max-width: 800px;
    height: 85%;
    max-height: 700px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideIn 0.4s ease;
}

.lina-chat-header {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.lina-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lina-bot-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lina-avatar-container {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
}

.lina-bot-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.lina-status-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: #27CA3F;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lina-bot-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lina-bot-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.lina-bot-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.lina-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lina-message-counter {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: white;
    font-weight: 500;
}

.lina-close-chat {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lina-close-chat:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lina-chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.lina-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    scroll-behavior: smooth;
}

.lina-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.lina-chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.lina-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.lina-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 80%;
    animation: fadeIn 0.3s ease;
}

.lina-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.lina-message.bot {
    align-self: flex-start;
}

.lina-message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.lina-message-avatar.user-avatar {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.lina-message-avatar.bot-avatar {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
}

.lina-message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lina-message-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    font-size: 0.95rem;
    line-height: 1.6;
    color: white;
    position: relative;
    word-wrap: break-word;
    max-width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.lina-message-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
    border-radius: 20px;
}

.lina-message.user .lina-message-content {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.3), 0 4px 16px rgba(255, 165, 0, 0.2);
}

.lina-message.user .lina-message-content::after {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.lina-message.bot .lina-message-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(255, 255, 255, 0.05);
}

.lina-message-content::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 8px solid transparent;
}

.lina-message.user .lina-message-content::before {
    right: -8px;
    border-left-color: var(--accent-purple);
}

.lina-message.bot .lina-message-content::before {
    left: -8px;
    border-right-color: rgba(255, 255, 255, 0.1);
}

.lina-typing-indicator {
    display: none;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    animation: fadeIn 0.3s ease;
}

.lina-typing-indicator.active {
    display: flex;
}

.lina-typing-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lina-typing-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 0.5rem;
}

.lina-typing-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: typingDot 1.4s infinite ease-in-out;
}

.lina-typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.lina-typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.lina-chat-input {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lina-input-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lina-input-wrapper {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.lina-input-wrapper:focus-within {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.2);
}

.lina-message-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.95rem;
    border-radius: 25px;
}

.lina-message-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.lina-send-btn {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lina-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.lina-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.lina-send-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.lina-send-btn:hover svg {
    transform: translateX(2px);
}

/* Lina Mobile Responsive */
@media (max-width: 768px) {
    .lina-chat-container {
        width: 98%;
        max-width: 550px;
        max-height: 90vh;
        margin: 10px;
    }
    
    .lina-chat-header {
        padding: 16px;
    }
    
    .lina-bot-info {
        gap: 8px;
    }
    
    .lina-bot-name {
        font-size: 16px;
    }
    
    .lina-chat-messages {
        padding: 16px;
    }
    
    .lina-message {
        gap: 8px;
    }
    
    .lina-message-avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .lina-message-content {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .lina-chat-input {
        padding: 16px;
    }
    
    .lina-message-input {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .lina-send-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .lina-chat-container {
        width: 100%;
        height: 100vh;
        max-height: none;
        border-radius: 0;
    }
    
    .lina-chat-header {
        padding: 12px;
    }
    
    .lina-bot-info {
        gap: 6px;
    }
    
    .lina-bot-name {
        font-size: 14px;
    }
    
    .lina-bot-subtitle {
        font-size: 11px;
    }
    
    .lina-chat-messages {
        padding: 12px;
    }
    
    .lina-message-content {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .lina-chat-input {
        padding: 12px;
    }
    
    .lina-message-input {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .lina-send-btn {
        width: 36px;
        height: 36px;
    }
}

/* Lina CTA Styles */
.lina-cta-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.lina-cta-content h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.lina-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.lina-cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.lina-cta-button {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lina-cta-button.primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    color: white;
}

.lina-cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.lina-cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lina-cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Jay Chatbot Styles */
.jay-chatbot-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.jay-chat-container {
    width: 90%;
    max-width: 800px;
    height: 85%;
    max-height: 700px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideIn 0.4s ease;
}

.jay-chat-header {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.jay-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jay-bot-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.jay-avatar-container {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
}

.jay-bot-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.jay-status-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: #27CA3F;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.jay-bot-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.jay-bot-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.jay-bot-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.jay-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.jay-message-counter {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: white;
    font-weight: 500;
}

.jay-close-chat {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jay-close-chat:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.jay-chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.jay-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    scroll-behavior: smooth;
}

.jay-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.jay-chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.jay-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.jay-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 80%;
    animation: fadeIn 0.3s ease;
}

.jay-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.jay-message.bot {
    align-self: flex-start;
}

.jay-message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.jay-message-avatar.user-avatar {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.jay-message-avatar.bot-avatar {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
}

.jay-message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jay-message-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    font-size: 0.95rem;
    line-height: 1.6;
    color: white;
    position: relative;
    word-wrap: break-word;
    max-width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.jay-message-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
    border-radius: 20px;
}

.jay-message.user .jay-message-content {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.3), 0 4px 16px rgba(255, 165, 0, 0.2);
}

.jay-message.user .jay-message-content::after {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.jay-message.bot .jay-message-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(255, 255, 255, 0.05);
}

.jay-message-content::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 8px solid transparent;
}

.jay-message.user .jay-message-content::before {
    right: -8px;
    border-left-color: var(--accent-purple);
}

.jay-message.bot .jay-message-content::before {
    left: -8px;
    border-right-color: rgba(255, 255, 255, 0.1);
}

.jay-typing-indicator {
    display: none;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    animation: fadeIn 0.3s ease;
}

.jay-typing-indicator.active {
    display: flex;
}

.jay-typing-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.jay-typing-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 0.5rem;
}

.jay-typing-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: typingDot 1.4s infinite ease-in-out;
}

.jay-typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.jay-typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.jay-chat-input {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.jay-input-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.jay-input-wrapper {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.jay-input-wrapper:focus-within {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.2);
}

.jay-message-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.95rem;
    border-radius: 25px;
}

.jay-message-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.jay-send-btn {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.jay-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.jay-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.jay-send-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.jay-send-btn:hover svg {
    transform: translateX(2px);
}

/* Jay Mobile Responsive */
@media (max-width: 768px) {
    .jay-chat-container {
        width: 98%;
        max-width: 550px;
        max-height: 90vh;
        margin: 10px;
    }
    
    .jay-chat-header {
        padding: 16px;
    }
    
    .jay-bot-info {
        gap: 8px;
    }
    
    .jay-bot-name {
        font-size: 16px;
    }
    
    .jay-chat-messages {
        padding: 16px;
    }
    
    .jay-message {
        gap: 8px;
    }
    
    .jay-message-avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .jay-message-content {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .jay-chat-input {
        padding: 16px;
    }
    
    .jay-message-input {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .jay-send-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .jay-chat-container {
        width: 100%;
        height: 100vh;
        max-height: none;
        border-radius: 0;
    }
    
    .jay-chat-header {
        padding: 12px;
    }
    
    .jay-bot-info {
        gap: 6px;
    }
    
    .jay-bot-name {
        font-size: 14px;
    }
    
    .jay-bot-subtitle {
        font-size: 11px;
    }
    
    .jay-chat-messages {
        padding: 12px;
    }
    
    .jay-message-content {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .jay-chat-input {
        padding: 12px;
    }
    
    .jay-message-input {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .jay-send-btn {
        width: 36px;
        height: 36px;
    }
}

/* Jay CTA Styles */
.jay-cta-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.jay-cta-content h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.jay-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.jay-cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.jay-cta-button {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.jay-cta-button.primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    color: white;
}

.jay-cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.jay-cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.jay-cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Byte Chatbot Styles */
.byte-chatbot-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.byte-chat-container {
    width: 90%;
    max-width: 800px;
    height: 85%;
    max-height: 700px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideIn 0.4s ease;
}

.byte-chat-header {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.byte-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.byte-bot-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.byte-avatar-container {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
}

.byte-bot-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.byte-status-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: #27CA3F;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.byte-bot-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.byte-bot-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.byte-bot-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.byte-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.byte-message-counter {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: white;
    font-weight: 500;
}

.byte-close-chat {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.byte-close-chat:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.byte-chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.byte-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    scroll-behavior: smooth;
}

.byte-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.byte-chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.byte-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.byte-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 80%;
    animation: fadeIn 0.3s ease;
}

.byte-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.byte-message.bot {
    align-self: flex-start;
}

.byte-message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.byte-message-avatar.user-avatar {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.byte-message-avatar.bot-avatar {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
}

.byte-message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.byte-message-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    font-size: 0.95rem;
    line-height: 1.6;
    color: white;
    position: relative;
    word-wrap: break-word;
    max-width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.byte-message-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
    border-radius: 20px;
}

.byte-message.user .byte-message-content {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.3), 0 4px 16px rgba(255, 165, 0, 0.2);
}

.byte-message.user .byte-message-content::after {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.byte-message.bot .byte-message-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(255, 255, 255, 0.05);
}

.byte-message-content::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 8px solid transparent;
}

.byte-message.user .byte-message-content::before {
    right: -8px;
    border-left-color: var(--accent-purple);
}

.byte-message.bot .byte-message-content::before {
    left: -8px;
    border-right-color: rgba(255, 255, 255, 0.1);
}

.byte-typing-indicator {
    display: none;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    animation: fadeIn 0.3s ease;
}

.byte-typing-indicator.active {
    display: flex;
}

.byte-typing-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.byte-typing-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 0.5rem;
}

.byte-typing-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: typingDot 1.4s infinite ease-in-out;
}

.byte-typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.byte-typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.byte-chat-input {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.byte-input-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.byte-input-wrapper {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.byte-input-wrapper:focus-within {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.2);
}

.byte-message-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.95rem;
    border-radius: 25px;
}

.byte-message-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.byte-send-btn {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.byte-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.byte-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.byte-send-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.byte-send-btn:hover svg {
    transform: translateX(2px);
}

/* Byte Mobile Responsive */
@media (max-width: 768px) {
    .byte-chat-container {
        width: 98%;
        max-width: 550px;
        max-height: 90vh;
        margin: 10px;
    }
    
    .byte-chat-header {
        padding: 16px;
    }
    
    .byte-bot-info {
        gap: 8px;
    }
    
    .byte-bot-name {
        font-size: 16px;
    }
    
    .byte-chat-messages {
        padding: 16px;
    }
    
    .byte-message {
        gap: 8px;
    }
    
    .byte-message-avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .byte-message-content {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .byte-chat-input {
        padding: 16px;
    }
    
    .byte-message-input {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .byte-send-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .byte-chat-container {
        width: 100%;
        height: 100vh;
        max-height: none;
        border-radius: 0;
    }
    
    .byte-chat-header {
        padding: 12px;
    }
    
    .byte-bot-info {
        gap: 6px;
    }
    
    .byte-bot-name {
        font-size: 14px;
    }
    
    .byte-bot-subtitle {
        font-size: 11px;
    }
    
    .byte-chat-messages {
        padding: 12px;
    }
    
    .byte-message-content {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .byte-chat-input {
        padding: 12px;
    }
    
    .byte-message-input {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .byte-send-btn {
        width: 36px;
        height: 36px;
    }
}

/* Byte CTA Styles */
.byte-cta-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.byte-cta-content h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.byte-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.byte-cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.byte-cta-button {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.byte-cta-button.primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    color: white;
}

.byte-cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.byte-cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.byte-cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Typing animation for chatbots */
@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Reviews Section Styles */
.reviews-section {
    margin-top: 4rem;
    padding: 2rem 0;
}

            .reviews-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 1.5rem;
                margin-top: 2rem;
            }

.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 66, 251, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
}

.review-stars i {
    color: #FFD700;
    font-size: 1.1rem;
}

.review-rating {
    background: linear-gradient(135deg, #8B42FB, #6B46C1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        margin-top: 3rem;
        padding: 1rem 0;
    }
    
    .reviews-grid {
        gap: 1rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .review-header {
        margin-bottom: 1rem;
    }
    
    .review-stars i {
        font-size: 1rem;
    }
    
    .review-rating {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .review-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
}

/* Clients: hard mobile overrides placed at end for cascade win */
@media (max-width: 768px) {
  .clients-track {
    animation-duration: 120s !important;
    animation-timing-function: linear !important;
    animation-name: scrollClients !important;
    animation-iteration-count: infinite !important;
  }
}
@media (max-width: 480px) {
  .clients-track {
    animation-duration: 150s !important;
    animation-timing-function: linear !important;
    animation-name: scrollClients !important;
    animation-iteration-count: infinite !important;
  }
}

/* Ensure reduced motion never accelerates logos on mobile */
@media (prefers-reduced-motion: reduce) {
  @media (max-width: 768px) {
    .clients-track { animation-duration: 120s !important; }
  }
  @media (max-width: 480px) {
    .clients-track { animation-duration: 150s !important; }
  }
}

/* Normalize auto-detected phone links (mobile browsers may wrap them) */
.contact-item a[href^="tel"],
.contact-item a[href^="tel"]:link,
.contact-item a[href^="tel"]:visited {
  color: var(--text-light) !important;
  text-decoration: none !important;
  font-weight: 500;
}

/* ========== NEW COMPONENTS FOR REBUILD ========== */

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulseFloat 2s ease-in-out infinite;
}

.floating-whatsapp img {
    width: 32px;
    height: 32px;
    filter: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulseFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* CTA Button Small for Header */
.cta-button-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--gradient-button);
    color: var(--text-white);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 12px rgba(139, 66, 251, 0.3);
    white-space: nowrap;
}

.cta-button-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(139, 66, 251, 0.4);
}

/* Trust Strip Section */
.trust-strip-section {
    padding: 3rem 0;
    background: transparent;
}

.trust-strip-section.mini {
    padding: 2rem 0;
}

.trust-heading {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.clients-wrapper .clients-track .client-item img {
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.clients-wrapper .clients-track .client-item img:hover {
    filter: grayscale(0%) opacity(1);
}

/* Demo Section */
.demo-section {
    padding: 4rem 0;
    position: relative;
}

.demo-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.demo-button {
    min-width: 250px;
    justify-content: center;
}

/* Process Section - Enhanced with Timeline Graphics */
.process-section {
    padding: 4rem 0;
    background: transparent;
    position: relative;
}

.process-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.process-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    overflow: visible;
}

/* Luma Peeking Over Process Steps */
.luma-step-peek {
    position: absolute;
    top: -160px; /* Same as AI Agents card positioning */
    right: 1rem; /* Positioned on the right side */
    width: 90px; /* Made smaller */
    height: auto;
    z-index: 10;
    pointer-events: none; /* Don't interfere with clicks */
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25)); /* Soft shadow */
    transition: transform 0.3s ease;
}

/* Individual positioning for each Luma step */
.luma-step-1 .luma-step-peek {
    top: -118px; /* Discover - adjust this value */
}

.luma-step-2 .luma-step-peek {
    top: -93px; /* Design - adjust this value */
}

.luma-step-3 .luma-step-peek {
    top: -75px; /* Build - adjust this value */
}

.luma-step-4 .luma-step-peek {
    top: -90px; /* Growth - adjust this value */
}

/* Hover Animation on Process Steps */
.luma-step-1:hover .luma-step-peek,
.luma-step-2:hover .luma-step-peek,
.luma-step-3:hover .luma-step-peek,
.luma-step-4:hover .luma-step-peek {
    animation: lumaPeekFloat 1.5s ease-in-out infinite;
}

.process-icon-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-button);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 30px rgba(139, 66, 251, 0.4);
    position: relative;
    z-index: 2;
}

.process-connector {
    width: 3px;
    height: 80px;
    background: linear-gradient(180deg, var(--accent-purple), transparent);
    margin-top: 1rem;
}

.process-step:last-child .process-connector {
    display: none;
}

.process-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.process-content:hover {
    transform: translateX(10px);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.process-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.process-step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.process-step-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-step {
        grid-template-columns: 80px 1fr;
        gap: 1.5rem;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-connector {
        height: 60px;
    }
    
    .process-content {
        padding: 1.5rem;
    }
    
    .process-step-title {
        font-size: 1.5rem;
    }
}

/* Deployments Grid */
.deployments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.deployment-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.deployment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.deployment-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.deployment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.deployment-card:hover .deployment-image img {
    transform: scale(1.05);
}

.deployment-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.deployment-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.deployment-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.deployment-link:hover {
    gap: 0.75rem;
}

/* View All Projects Button */
.view-all-projects {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
}

.view-all-btn:hover {
    background: var(--gradient-button);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 66, 251, 0.4);
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

/* CTA Band Section */
.cta-band-section {
    padding: 4rem 0;
    background: rgba(139, 66, 251, 0.05);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cta-band-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.cta-band-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Location */
.footer-location {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Service Detail Section */
.service-detail-section {
    padding: 4rem 0;
}

.service-detail-section.alt {
    background: rgba(255, 255, 255, 0.02);
}

.service-detail-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-button);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.service-detail-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-lead {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.capabilities-list,
.integrations-section {
    margin: 3rem 0;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.capabilities-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.capabilities-items {
    list-style: none;
    padding: 0;
}

.capabilities-items li {
    padding: 1rem 0;
    color: var(--text-light);
    font-size: 1.05rem;
    position: relative;
    padding-left: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.capabilities-items li:last-child {
    border-bottom: none;
}

.capabilities-items li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.25rem;
}

.integrations-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.integration-category {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
}

.integration-category h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.integration-category p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.ideal-for-box {
    background: rgba(139, 66, 251, 0.15);
    border-left: 4px solid var(--accent-purple);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin: 3rem 0 2rem;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.ideal-for-box strong {
    color: var(--text-white);
    font-weight: 700;
}

/* Pricing Grid Detailed */
.pricing-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Remove hard 4-column enforcement to avoid skinny cards */

/* Make cards consistent height and premium layout */
.pricing-grid-detailed .pricing-card-detailed {
    display: flex;
    flex-direction: column;
}

.pricing-card-detailed {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    position: relative;
    text-align: left;
}

.pricing-card-detailed.featured {
    border-color: var(--accent-purple);
    box-shadow: 0 10px 40px rgba(139, 66, 251, 0.3);
}

.pricing-card-detailed:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card-detailed .price-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0 0.5rem;
}

.pricing-includes {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.pricing-includes li {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-includes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
}

.pricing-note-detailed {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note-detailed strong {
    color: var(--text-white);
}

.integrations-list,
.deliverables-list {
    margin: 2rem 0;
}

.integrations-title,
.deliverables-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.integration-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.integration-tag {
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
}

.deliverables-items {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.deliverables-items li {
    padding: 0.75rem 0;
    color: var(--text-light);
    font-size: 1rem;
    position: relative;
    padding-left: 2rem;
}

.deliverables-items li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.service-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-button);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 2rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(139, 66, 251, 0.3);
}

.service-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 66, 251, 0.4);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: var(--transition-smooth);
}

.service-link:hover {
    gap: 0.75rem;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: rgba(139, 66, 251, 0.03);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent-purple);
    box-shadow: 0 10px 40px rgba(139, 66, 251, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-button);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
}

.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.pricing-card-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-from,
.price-to {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-purple);
}

.pricing-card-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 2rem;
}

/* Portfolio Filter Chips */
.portfolio-filter-chips {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.filter-chip {
    padding: 0.625rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-chip:hover,
.filter-chip.active {
    background: var(--gradient-button);
    border-color: transparent;
    color: white;
}

/* Featured Project Cards */
.featured-projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.featured-project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.featured-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.featured-project-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 16px;
    overflow: hidden;
}

.featured-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-project-card:hover .featured-project-image img {
    transform: scale(1.05);
}

.featured-project-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-project-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.project-section {
    margin-bottom: 1.5rem;
}

.project-section-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.project-section-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.project-impact {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(139, 66, 251, 0.1);
    border-left: 4px solid var(--accent-purple);
    border-radius: 8px;
}

.impact-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.project-link:hover {
    gap: 0.75rem;
}

/* Portfolio Grid Section */
.portfolio-grid-section {
    padding: 4rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-grid-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.portfolio-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.portfolio-grid-image {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.portfolio-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-grid-card:hover .portfolio-grid-image img {
    transform: scale(1.05);
}

.portfolio-grid-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.portfolio-grid-problem,
.portfolio-grid-solution,
.portfolio-grid-impact {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.portfolio-grid-impact {
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
}

.portfolio-grid-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.portfolio-grid-link:hover {
    gap: 0.75rem;
}

/* Pillars Section (Why Us) */
.pillars-section {
    padding: 4rem 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    text-align: center;
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-purple);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-button);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.pillar-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.pillar-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials Section (Why Us) */
.testimonials-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    text-align: center;
}

.testimonial-card .client-logo {
    margin-bottom: 1.5rem;
}

.testimonial-card .client-logo img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    margin: 0 auto;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    margin-top: 1.5rem;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.author-company {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Approach Section */
.approach-section {
    padding: 4rem 0;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.approach-description {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 1.5rem;
}

/* Contact Paths Section */
.contact-paths-section {
    padding: 4rem 0;
}

.contact-paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-path-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    text-align: center;
    transition: var(--transition-smooth);
}

.contact-path-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-path-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-button);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.contact-path-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.contact-path-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-path-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.path-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.path-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-purple);
}

.path-button.whatsapp {
    background: #25D366;
    border-color: #25D366;
}

.path-button.whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

.path-button img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.lead-form {
    max-width: 700px;
    margin: 3rem auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(139, 66, 251, 0.2);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23EAE6F9' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-group select option {
    background: #1C0033;
    color: var(--text-white);
    padding: 1rem;
}

.form-group select option:hover,
.form-group select option:checked {
    background: var(--accent-purple);
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-privacy-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 1.5rem 0;
}

.form-submit-button {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-button);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(139, 66, 251, 0.3);
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 66, 251, 0.4);
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    text-align: center;
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-button);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.info-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.info-card-value {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.info-card-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.info-card-link:hover {
    color: var(--accent-purple);
}

.info-card-note {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Mobile Responsive Styles for New Components */
@media (max-width: 768px) {
    .floating-whatsapp {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        width: 56px;
        height: 56px;
        z-index: 999;
        transform: none !important;
    }
    
    .cta-button-small {
        display: none;
    }
    
    .featured-project-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-project-image {
        min-height: 250px;
    }
    
    .process-grid,
    .pillars-grid,
    .testimonials-grid,
    .contact-paths-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid,
    .deployments-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-band-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-band-buttons .cta-primary,
    .cta-band-buttons .cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp img {
        width: 28px;
        height: 28px;
    }
    
    .process-number {
        font-size: 2.5rem;
    }
    
    .featured-project-title,
    .pillar-title,
    .contact-path-title {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CUSTOM POPUP SYSTEM
   ============================================ */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-popup {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    margin: 2rem;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
}

.custom-popup.success {
    border: 2px solid #10b981;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 20px 60px rgba(16, 185, 129, 0.6);
    }
}

.popup-overlay.active .custom-popup {
    transform: scale(1) translateY(0);
}

.custom-popup-content {
    padding: 2rem;
    text-align: center;
}

.custom-popup-header {
    margin-bottom: 1.5rem;
}

.custom-popup-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.custom-popup-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.custom-popup-body {
    margin-bottom: 2rem;
}

.custom-popup-message {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 600;
}

.custom-popup-details {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.custom-popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.custom-popup-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.custom-popup-btn.primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
    color: white;
}

.custom-popup-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 66, 251, 0.3);
}

.custom-popup-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-popup-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Form Button States */
.form-submit-button.success {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    border-color: #10b981 !important;
}

.form-submit-button.error {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    border-color: #ef4444 !important;
}

.form-submit-button.loading {
    opacity: 0.8;
    cursor: not-allowed;
}

.form-loading {
    pointer-events: none;
}

/* ============================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ============================================ */

/* Tablet and Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(28, 0, 51, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 998;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-menu .nav-link {
        padding: 1rem 0;
        width: 100%;
        text-align: left;
        font-size: 1.125rem;
        border-bottom: 1px solid rgba(234, 230, 249, 0.1);
    }
    
    .nav-menu .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        margin-top: 0.5rem;
        border-radius: 12px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 500px;
    }
    
    .nav-dropdown-item {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-button-small {
        display: none;
    }
    
    /* Header */
    .header {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    /* Hero Sections - Fixed for Mobile */
    .hero,
    .hero-section {
        padding: 10rem 0 4rem !important; /* Increased top padding to prevent navbar cutout */
        min-height: auto;
        overflow-x: hidden;
    }
    
    .hero-container {
        padding: 0 1.5rem;
        max-width: 100%;
        overflow: visible;
    }
    
    .hero-two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content-left {
        max-width: 100%;
        text-align: center;
        padding-right: 0 !important;
    }
    
    .hero-title {
        font-size: 2.25rem !important;
        line-height: 1.2;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .mobile-hero-title {
        font-size: 2rem !important;
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 1.5rem 0;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Fixed Hero Stats for Mobile */
    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        justify-content: center;
        margin: 2rem auto !important;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .stat {
        text-align: center;
        min-width: 0 !important;
        max-width: 100%;
        padding: 1rem 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
        line-height: 1.2;
        white-space: nowrap;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
        line-height: 1.3;
        word-wrap: break-word;
        max-width: 100%;
        white-space: normal;
    }
    
    /* Floating Cards in Hero */
    .hero-cards,
    .agent-cards {
        display: none !important;
    }
    
    /* Hero Character Mobile */
    .hero-character {
        padding: 1rem;
        margin: 2rem 0;
    }
    
    .waving-hero {
        width: 100%;
        max-width: 350px;
    }
    
    /* Trust Strip */
    .trust-strip {
        padding: 2rem 0;
    }
    
    .clients-carousel {
        padding: 0 1rem;
    }
    
    /* Section Containers */
    .section-container {
        padding: 0 1.5rem;
    }
    
    /* Section Headers */
    .section-header-premium {
        text-align: center;
    }
    
    .section-title-premium {
        font-size: 2rem;
    }
    
    .section-description-premium {
        font-size: 1rem;
    }
    
    /* Core Solutions / Service Cards */
    .solutions-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card-premium {
        padding: 2rem;
    }
    
    /* Luma Peek Mobile - AI Agents Card */
    .luma-peek {
        width: 66px; /* Smaller for mobile */
        top: -79px; /* Better positioning for mobile */
    }
    
    .service-icon-premium {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .service-title-premium {
        font-size: 1.5rem;
    }
    
    .service-description-premium {
        font-size: 0.95rem;
    }
    
    /* Process Section */
    .process-container {
        padding: 0 1.5rem;
    }
    
    .process-step {
        display: block; /* Changed from flex */
        text-align: left; /* Changed from center */
        padding: 2.5rem 2rem;
        width: 100%;
        max-width: 100%;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        backdrop-filter: blur(20px);
        box-shadow: var(--glass-shadow);
        margin-bottom: 2rem;
    }
    
    /* Hide process icons on mobile */
    .process-icon-wrapper {
        display: none !important;
    }
    
    /* Luma Step Peek Mobile */
    .luma-step-peek {
        width: 60px; /* Made smaller for mobile */
        top: -100px;
        right: 0.5rem;
    }
    
    /* Individual mobile positioning for each Luma step - ADJUSTABLE */
    .luma-step-1 .luma-step-peek {
        top: -79px; /* Discover mobile - adjust this value */
    }
    
    .luma-step-2 .luma-step-peek {
        top: -63px; /* Design mobile - adjust this value */
    }
    
    .luma-step-3 .luma-step-peek {
        top: -50px; /* Build mobile - adjust this value */
    }
    
    .luma-step-4 .luma-step-peek {
        top: -60px; /* Growth mobile - adjust this value */
    }
    
    .process-content {
        width: 100%;
        max-width: 100%;
    }
    
    .process-number {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .process-step-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .process-step-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .process-connector {
        display: none;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
    }
    
    .process-icon i {
        font-size: 1.5rem;
    }
    
    .process-content {
        margin-left: 0;
        margin-top: 1.5rem;
    }
    
    .process-number {
        font-size: 2rem;
    }
    
    .process-step-title {
        font-size: 1.5rem;
    }
    
    .process-step-description {
        font-size: 0.95rem;
    }
    
    /* Deployments / Portfolio Grid */
    .deployments-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .deployment-card,
    .project-card {
        padding: 1.5rem;
    }
    
    /* Pricing Section */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card-header {
        padding: 2rem 1.5rem;
    }
    
    /* Forms */
    .lead-form,
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
    
    .form-submit-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        margin-top: 1.5rem;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 2rem 1.5rem 1rem;
    }
    
    /* CTA Bands */
    .cta-band-section {
        padding: 3rem 0;
    }
    
    .cta-band-title {
        font-size: 1.75rem;
    }
    
    .cta-band-description {
        font-size: 1rem;
    }
    
    .cta-band-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-band-buttons .cta-primary,
    .cta-band-buttons .cta-secondary {
        width: 100%;
    }
    
    /* Service Detail Pages */
    .service-detail-section {
        padding: 3rem 0;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-capabilities-list,
    .service-integrations-list {
        grid-template-columns: 1fr;
    }
    
    /* FAQ Section */
    .faq-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* FAQ Section - Fixed for Mobile */
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding-right: 2rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
        max-height: none !important;
    }
    
    .faq-item.active .faq-answer {
        max-height: 1000px !important;
        overflow: visible;
        padding-right: 2rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .featured-testimonials-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Stats Section */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    /* Contact Info */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    /* Service Badges */
    .service-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Hide desktop-only elements */
    .desktop-only {
        display: none !important;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    /* Typography */
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .mobile-hero-title {
        font-size: 1.625rem !important;
    }
    
    .section-title-premium {
        font-size: 1.75rem;
    }
    
    .service-title-premium {
        font-size: 1.25rem;
    }
    
    .process-step-title,
    .pillar-title {
        font-size: 1.25rem;
    }
    
    /* Spacing */
    .hero-section {
        padding: 5rem 0 3rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    /* Buttons */
    .cta-primary,
    .cta-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .cta-icon {
        width: 32px;
        height: 32px;
    }
    
    /* Cards */
    .service-card-premium,
    .deployment-card,
    .pricing-card,
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    /* Forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    /* Navigation */
    .nav-menu {
        padding: 1.5rem;
        top: 70px;
    }
    
    .nav-menu .nav-link {
        font-size: 1rem;
        padding: 0.875rem 0;
    }
    
    /* Logo */
    .logo-text {
        font-size: 0.875rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    /* Stats */
    .stat {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-section {
        padding: 1rem 0;
    }
    
    /* Floating WhatsApp */
    .floating-whatsapp {
        width: 50px !important;
        height: 50px !important;
        bottom: 15px;
        right: 15px;
    }
    
    .floating-whatsapp img {
        width: 28px !important;
        height: 28px !important;
    }
    
    /* CTA Band */
    .cta-band-title {
        font-size: 1.5rem;
    }
    
    .cta-band-description {
        font-size: 0.95rem;
    }
    
    /* Process Numbers */
    .process-number {
        font-size: 1.75rem;
    }
    
    /* Icons */
    .service-icon-premium,
    .process-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Grid Gaps */
    .solutions-grid,
    .services-grid,
    .deployments-grid,
    .portfolio-grid,
    .pricing-grid,
    .testimonials-grid {
        gap: 1.5rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        padding: 4rem 0 2rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin: 1rem 0;
    }
    
    .hero-stats {
        margin: 1.5rem 0;
        gap: 1rem;
    }
    
    .nav-menu {
        max-height: calc(100vh - 60px);
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .nav-link,
    .cta-primary,
    .cta-secondary,
    .form-submit-button,
    button,
    a {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .service-card-premium:hover,
    .deployment-card:hover,
    .testimonial-card:hover,
    .pricing-card:hover {
        transform: none;
    }
    
    /* Make dropdowns easier to tap */
    .nav-dropdown {
        -webkit-tap-highlight-color: rgba(139, 66, 251, 0.2);
    }
    
    /* Improve form interactions */
    .form-group input,
    .form-group select,
    .form-group textarea {
        -webkit-appearance: none;
        appearance: none;
    }
    
    /* Better button feedback */
    .cta-primary:active,
    .cta-secondary:active,
    .form-submit-button:active {
        transform: scale(0.98);
    }
}

/* Print Styles */
@media print {
    .header,
    .floating-whatsapp,
    .nav-menu,
    .mobile-menu-toggle,
    .cta-primary,
    .cta-secondary,
    .scroll-indicator,
    .footer {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-container {
        max-width: 100%;
        padding: 0;
    }
}

/* Modern Popup System */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
}

.popup-overlay.active .popup-container {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 1.2rem;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

.popup-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.popup-message {
    font-size: 1.1rem;
    color: #a0a0a0;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.popup-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-width: 120px;
    text-align: center;
}

.popup-btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
}

.popup-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.popup-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.popup-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-details h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.popup-details p {
    color: #a0a0a0;
    margin: 0;
    font-size: 0.9rem;
}

.popup-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.popup-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Success Popup Styles */
.popup-success .popup-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.popup-success .popup-icon::before {
    content: "✓";
}

/* Error Popup Styles */
.popup-error .popup-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.popup-error .popup-icon::before {
    content: "✕";
}

/* Warning Popup Styles */
.popup-warning .popup-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.popup-warning .popup-icon::before {
    content: "⚠";
}

/* Info Popup Styles */
.popup-info .popup-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.popup-info .popup-icon::before {
    content: "ℹ";
}

/* Mobile Popup Styles */
@media (max-width: 768px) {
    .popup-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .popup-title {
        font-size: 1.5rem;
    }
    
    .popup-message {
        font-size: 1rem;
    }
    
    .popup-actions {
        flex-direction: column;
    }
    
    .popup-btn {
        width: 100%;
    }
    
    .popup-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* Form Validation Styles */
.form-field {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-field.error input,
.form-field.error select,
.form-field.error textarea {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.form-field.success input,
.form-field.success select,
.form-field.success textarea {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-error::before {
    content: "⚠";
    font-size: 0.875rem;
}

.form-success {
    color: #10b981;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-success::before {
    content: "✓";
    font-size: 0.875rem;
}

/* Loading State */
.form-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.form-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Blog Styles */
.blog-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.blog-posts-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.featured-post {
    grid-row: span 2;
}

.blog-post {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.featured-post .post-image {
    height: 300px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #a0a0a0;
}

.post-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.featured-post .post-title {
    font-size: 1.5rem;
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #6366f1;
}

.post-excerpt {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.read-more {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 0.75rem;
}

.blog-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.blog-cta p {
    color: #a0a0a0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Article Styles */
.article-header {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #a0a0a0;
}

.breadcrumb a {
    color: #6366f1;
    text-decoration: none;
}

.breadcrumb span {
    color: #666;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.article-category {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.article-date,
.article-read-time {
    color: #a0a0a0;
    font-size: 0.875rem;
}

.article-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.25rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
}

.article-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.article-content {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-body {
    max-width: none;
}

.article-image {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.lead {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #6366f1;
}

.cost-breakdown,
.implementation-costs {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cost-breakdown h3,
.implementation-costs h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.cost-breakdown ul,
.implementation-costs ul {
    list-style: none;
    padding: 0;
}

.cost-breakdown li,
.implementation-costs li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
}

.cost-breakdown li:last-child,
.implementation-costs li:last-child {
    border-bottom: none;
    font-weight: 600;
    color: #ffffff;
}

.ai-benefits {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #a0a0a0;
    margin-bottom: 1rem;
}

.savings {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.case-study {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-header {
    margin-bottom: 1.5rem;
}

.case-study-header h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: #a0a0a0;
}

.case-study-results {
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.case-study-results h4 {
    color: #10b981;
    margin-bottom: 1rem;
}

.case-study-results ul {
    list-style: none;
    padding: 0;
}

.case-study-results li {
    padding: 0.5rem 0;
    color: #a0a0a0;
}

.roi-calculator {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-section {
    margin-bottom: 2rem;
}

.input-group {
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
}

.input-group input:focus {
    outline: none;
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.15);
}

.savings-breakdown {
    display: grid;
    gap: 0.75rem;
}

.savings-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.savings-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 8px;
    font-weight: 600;
}

.savings-label {
    color: #a0a0a0;
}

.savings-total .savings-label {
    color: #ffffff;
}

.savings-amount {
    color: #ffffff;
    font-weight: 600;
}

.payback-analysis {
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.payback-analysis h4 {
    color: #10b981;
    margin-bottom: 1rem;
}

.payback-analysis p {
    color: #a0a0a0;
    margin-bottom: 0.5rem;
}

.additional-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.benefit-card .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.action-steps {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #a0a0a0;
    margin: 0;
}

.article-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

.article-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.article-cta p {
    color: #a0a0a0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-widget h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.sidebar-widget p {
    color: #a0a0a0;
    margin-bottom: 1rem;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-article:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.related-article img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-content h5 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.related-date {
    color: #a0a0a0;
    font-size: 0.75rem;
}

.social-share {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn.linkedin {
    background: rgba(0, 119, 181, 0.1);
    color: #0077b5;
    border: 1px solid rgba(0, 119, 181, 0.2);
}

.share-btn.linkedin:hover {
    background: rgba(0, 119, 181, 0.2);
}

.share-btn.twitter {
    background: rgba(29, 161, 242, 0.1);
    color: #1da1f2;
    border: 1px solid rgba(29, 161, 242, 0.2);
}

.share-btn.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
}

.share-btn.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
    border: 1px solid rgba(24, 119, 242, 0.2);
}

.share-btn.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
}

/* Custom Package Section */
.custom-package-section {
    margin: 4rem 0;
    padding: 0 2rem;
}

.custom-package-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.custom-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #f59e0b);
}

.custom-header {
    margin-bottom: 2rem;
}

.custom-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.custom-badge {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.custom-content p {
    color: #a0a0a0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.custom-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.custom-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-feature i {
    color: #10b981;
    font-size: 1.2rem;
}

.custom-feature span {
    color: #ffffff;
    font-weight: 500;
}

.custom-cta {
    margin-top: 2rem;
}

.custom-note {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Pricing Caveat Styling */
.pricing-caveat {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
}

.pricing-caveat small {
    color: #f59e0b;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Mobile Custom Package */
@media (max-width: 768px) {
    .custom-package-section {
        padding: 0 1rem;
        margin: 3rem 0;
    }
    
    .custom-package-card {
        padding: 2rem 1.5rem;
    }
    
    .custom-header h3 {
        font-size: 1.5rem;
    }
    
    .custom-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .custom-feature {
        padding: 0.75rem;
    }
}

/* Careers mobile optimizations */
@media (max-width: 768px) {
    body.careers-page .hero-container.hero-two-column { grid-template-columns: 1fr; }
    body.careers-page .agent-cards { margin-top: 1rem; }
    body.careers-page .blog-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    body.careers-page .post-img { height: 220px; object-fit: cover; }

    body.career-detail-page .hero-container.hero-two-column { grid-template-columns: 1fr; }
    body.career-detail-page .post-img { height: 220px; object-fit: cover; }
}

/* Ensure all sections have proper styling */
.section-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-premium {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle-premium {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ensure form elements are properly styled */
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-field label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-field select option {
    background: #1a1a2e;
    color: #ffffff;
}

/* Button styling */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Blog Page Styles */
.blog-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.blog-posts-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-grid .blog-post:first-child {
    grid-row: 1 / 3;
}

.blog-post {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-button);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.post-content {
    padding: 1.5rem;
}

.post-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-excerpt {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #888;
}

.post-date {
    color: #888;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ffffff;
}

.featured-post .post-title {
    font-size: 1.5rem;
}

.featured-post .post-excerpt {
    font-size: 1rem;
}

.blog-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.blog-cta p {
    color: #a0a0a0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Additional Blog Styles for Complete Coverage */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 66, 251, 0.3) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 30%;
    animation-delay: 2s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 50%;
    animation-delay: 4s;
}

.geometric-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.9);
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-button);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--accent-orange);
}

.post-read-time {
    color: #888;
}

.tag {
    background: rgba(139, 66, 251, 0.2);
    color: var(--accent-purple);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.read-more {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: #ffffff;
    gap: 0.75rem;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}
