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

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

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

section {
    padding: 80px 0;
}
section:before {
    content: '';
    display: block;
    height: 2px;
    margin: 0 auto 40px;
    max-width: 1200px;
    background: linear-gradient(90deg, transparent, rgba(102,126,234,0.5), rgba(118,75,162,0.5), transparent);
    opacity: 0.35;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.7),
        0px 0px 20px rgba(255, 255, 255, 0.3),
        0px 0px 40px rgba(255, 255, 255, 0.1);
}

.glitch-text {
    position: relative;
    text-shadow: none;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    color: #fff;
    clip-path: inset(0 0 0 0);
    opacity: 0.7;
}

.glitch-text::before {
    transform: translate(2px, 0);
    color: #00e5ff;
    mix-blend-mode: screen;
    animation: glitchShift 3s infinite ease-in-out alternate;
}

.glitch-text::after {
    transform: translate(-2px, 0);
    color: #ff00e1;
    mix-blend-mode: screen;
    animation: glitchShift 2.6s infinite ease-in-out alternate-reverse;
}

@keyframes glitchShift {
    0% { clip-path: inset(0 0 85% 0); }
    10% { clip-path: inset(0 0 0 0); transform: translate(0,0); }
    20% { clip-path: inset(80% 0 0 0); transform: translate(1px,-1px); }
    30% { clip-path: inset(0 0 70% 0); transform: translate(-1px,1px); }
    40% { clip-path: inset(50% 0 0 0); transform: translate(2px,0); }
    50% { clip-path: inset(0 0 60% 0); transform: translate(-2px,0); }
    60% { clip-path: inset(40% 0 0 0); transform: translate(0,1px); }
    70% { clip-path: inset(30% 0 0 0); transform: translate(0,-1px); }
    80% { clip-path: inset(20% 0 0 0); transform: translate(1px,0); }
    90% { clip-path: inset(10% 0 0 0); transform: translate(-1px,0); }
    100% { clip-path: inset(0 0 0 0); }
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: #2d3748;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #4a5568;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #667eea;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #667eea;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

#ai-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.35;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(600px 260px at 20% 80%, rgba(255,255,255,0.12), transparent 70%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.9;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 80px;
    flex: 1;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    line-height: 1.5;
}

.stat-line {
    display: inline-flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    color: #f0f2ff;
}

.stat-line span {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.trust-badges {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.trust-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.trust-badges .badge i {
    color: #80e5ff;
}

.primary-btn,
.secondary-btn,
.service-btn,
.submit-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.primary-btn {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background: white;
    color: #667eea;
}

.link-btn {
    align-self: center;
    color: #ffffff;
    opacity: 0.9;
    text-decoration: underline;
}

.link-btn:hover {
    opacity: 1;
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.lead-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 22px;
    color: #fff;
}

.lead-card h3 {
    margin-bottom: 8px;
}

.lead-card p {
    color: #e6e8ff;
    margin-bottom: 14px;
}

.lead-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.lead-form input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.lead-form input::placeholder {
    color: #e6e8ff;
}

.lead-card .submit-btn {
    width: 100%;
}

.lead-card small {
    display: block;
    margin-top: 6px;
    color: #dde1ff;
    opacity: 0.8;
}

.partner-logos {
    margin-top: 12px;
}

.partner-logos > span {
    display: inline-block;
    color: #dde1ff;
    font-size: 0.85rem;
    margin-right: 8px;
}

.partner-logos .logos {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.partner-logos i {
    color: #ffffff;
    opacity: 0.9;
}

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

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Features Section */
.why-us {
    background: #f8fafc;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #2d3748;
}

.feature-card p {
    color: #718096;
    line-height: 1.6;
}

/* Services Section */
.services {
    background: white;
}

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

.service-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.service-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.1);
}

.service-card.featured {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.service-card.featured::before {
    content: 'ПОПУЛЯРНО';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.service-features i {
    color: #48bb78;
    flex-shrink: 0;
}

.service-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.service-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    width: 100%;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(102,126,234,0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(118,75,162,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-top: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 350px;
    overflow: hidden;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    width: 100%;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.testimonial-card.active {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.testimonial-content {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    text-align: center;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card.active .testimonial-content::before {
    opacity: 0.1;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(255,193,7,0.3));
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #2d3748;
    font-style: italic;
    position: relative;
    quotes: """ """ "'" "'";
}

.testimonial-content blockquote::before {
    content: open-quote;
    position: absolute;
    left: -30px;
    top: -10px;
    font-size: 3rem;
    color: #667eea;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    text-align: left;
}

.author-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(102,126,234,0.3);
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 5px;
}

.author-info span {
    display: block;
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.company-metrics {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.metric {
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(34,211,238,0.3);
}

.testimonials-navigation {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.3);
    box-shadow: 0 5px 15px rgba(102,126,234,0.4);
}

.nav-btn:hover {
    background: #94a3b8;
    transform: scale(1.1);
}

/* Client Logos Section */
.client-logos {
    background: white;
    padding: 30px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}



.logos-marquee {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: logoFloat 20s ease-in-out infinite;
}

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

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    transition: all 0.3s ease;
    min-width: 140px;
    height: 80px;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.logo-placeholder {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2d3748;
    text-align: center;
}

/* Advantages Section */
.advantages {
    background: #f8fafc;
}

.advantage-proof {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 600;
    background: rgba(102,126,234,0.1);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}

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

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

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.advantage-item h3 {
    color: #2d3748;
    font-size: 1.2rem;
}

/* Enhanced Process Section */
.process {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.process-guarantee {
    text-align: center;
    margin-top: 30px;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(16,185,129,0.3);
    animation: guaranteePulse 3s ease-in-out infinite;
}

@keyframes guaranteePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(16,185,129,0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(16,185,129,0.4);
    }
}

/* Process Progress Bar */
.process-progress-container {
    margin: 60px 0 80px;
    position: relative;
}

.process-progress-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #22d3ee 100%);
    border-radius: 4px;
    width: 20%;
    transition: width 1s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(300px); }
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding: 0 10px;
}

.progress-labels span {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.progress-labels span.active {
    color: #667eea;
    transform: scale(1.1);
}

/* Enhanced Step Cards for 3-Column Layout */
.step-card.enhanced {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 2px solid #e2e8f0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step-card.enhanced:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: #667eea;
    z-index: 10;
}

.step-card.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #22d3ee 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card.enhanced:hover::before {
    opacity: 1;
}

/* Timeline Step Numbers */
.process-step::before {
    content: attr(data-step);
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 4px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(102,126,234,0.3);
    transition: all 0.3s ease;
}

.process-step:hover::before {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 12px 35px rgba(102,126,234,0.4);
}

.step-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    gap: 15px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
    box-shadow: 0 10px 25px rgba(102,126,234,0.3);
    transition: all 0.3s ease;
}

.step-card.enhanced:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(102,126,234,0.4);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: #22d3ee;
    color: #0b1020;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(34,211,238,0.4);
    border: 2px solid white;
}

.step-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(102,126,234,0.3);
    text-align: center;
}

.step-card.enhanced:nth-child(1) .step-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

.step-card.enhanced h3 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 15px;
    color: #2d3748;
    line-height: 1.4;
}

.step-description {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
}

/* Step Deliverables - Compact Version */
.step-deliverables {
    background: #f8fafc;
    border-radius: 12px;
    padding: 18px;
    margin: 15px 0;
    border-left: 3px solid #667eea;
    flex-grow: 1;
}

.step-deliverables h4 {
    color: #2d3748;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.step-deliverables h4::before {
    content: '📋';
    font-size: 1rem;
    margin-right: 5px;
}

.step-deliverables ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-deliverables li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    color: #374151;
    line-height: 1.4;
    font-size: 0.85rem;
}

.step-deliverables li i {
    color: #10b981;
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 0.8rem;
}

/* Step Metrics - Compact Version */
.step-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 15px 0;
}

.metric-item {
    text-align: center;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 10px;
    transition: all 0.3s ease;
    height: 85px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 85px;
    max-height: 85px;
}

.metric-item:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102,126,234,0.1);
}

.metric-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    flex-shrink: 0;
}

.metric-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    word-break: break-word;
    hyphens: auto;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}



/* Enhanced CTA Section */
.process-cta-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 50px;
    color: white;
    box-shadow: 0 30px 80px rgba(102,126,234,0.3);
    position: relative;
    overflow: hidden;
}

.process-cta-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: ctaFloat 6s ease-in-out infinite;
}

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.cta-left h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-left p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-feature i {
    color: #22d3ee;
    font-size: 1.3rem;
    width: 25px;
}

.cta-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-offer {
    background: white;
    color: #2d3748;
    padding: 40px 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    width: 100%;
}

.offer-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(239,68,68,0.3);
    animation: offerPulse 2s ease-in-out infinite;
}

@keyframes offerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-offer h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1f2937;
    font-weight: 700;
}

.offer-value {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #6b7280;
}

.striked {
    text-decoration: line-through;
    color: #9ca3af;
    position: relative;
}

.primary-btn.large {
    font-size: 1.2rem;
    padding: 18px 40px;
    margin-bottom: 15px;
}

.cta-offer small {
    color: #9ca3af;
    font-size: 0.85rem;
    text-align: left;
    display: block;
    margin-top: 10px;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102,126,234,0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118,75,162,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 40px;
    padding: 40px 0;
    align-items: stretch;
}

.timeline-line {
    position: absolute;
    top: 120px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #22d3ee 100%);
    border-radius: 2px;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(102,126,234,0.3);
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    border-radius: 2px;
    animation: timelineShine 3s ease-in-out infinite;
}

@keyframes timelineShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

.process-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    max-width: 300px;
    margin: 0 auto;
}

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

.step-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 15px 30px rgba(102,126,234,0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #22d3ee;
    color: #0b1020;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(34,211,238,0.4);
}

.step-card h3 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.step-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-duration {
    display: inline-block;
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(34,211,238,0.3);
}

.process-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    color: white;
    box-shadow: 0 30px 60px rgba(102,126,234,0.3);
}

.process-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.process-cta .primary-btn {
    background: white;
    color: #667eea;
    font-weight: 600;
    padding: 15px 40px;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.process-cta .primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.outline-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.outline-btn:hover {
    background: white;
    color: #667eea;
}

/* Contact Section */
.contact {
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-item i {
    color: #667eea;
    font-size: 1.5rem;
    width: 30px;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 100%;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 40px 0 20px;
}

/* FAQ */
.faq {
    background: white;
}

.faq .faq-list {
    max-width: 900px;
    margin: 2rem auto 0;
}

.faq details {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 12px;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    color: #2d3748;
    list-style: none;
}

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

.faq details[open] {
    background: #ffffff;
}

.faq p {
    margin-top: 0.5rem;
    color: #4a5568;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 12px 16px 20px;
}

.mobile-menu a {
    padding: 12px 8px;
    text-decoration: none;
    color: #2d3748;
}

.mobile-menu.open {
    transform: translateY(0);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #667eea;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* Tech Stack Section */
.tech-stack {
    background: #f8fafc;
    padding: 80px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-category {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.tech-category h3 {
    color: #2d3748;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-category h3 i {
    color: #667eea;
    font-size: 1.2rem;
}

.tech-category ul {
    list-style: none;
    padding: 0;
}

.tech-category li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 20px;
}

.tech-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* ROI Calculator Section */
.roi-calculator {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.roi-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(102,126,234,0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(118,75,162,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.calculator-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.calculator-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-top: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.calculator-inputs {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 1rem;
}

.input-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 10px;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(102,126,234,0.3);
}

.input-group input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(102,126,234,0.3);
    border: none;
}

.input-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.input-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.input-value {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(102,126,234,0.3);
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.result-card {
    background: white;
    padding: 30px 25px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.result-card.highlight {
    border-color: #667eea;
    box-shadow: 0 20px 40px rgba(102,126,234,0.2);
}

.result-card.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.result-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.result-info h3 {
    color: #2d3748;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin: 0;
    text-shadow: 0 2px 4px rgba(102,126,234,0.1);
}

.result-card.highlight .result-value {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calculator-cta {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(102,126,234,0.3);
    position: relative;
    z-index: 2;
}

.calculator-cta p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.95;
    font-weight: 500;
}

.calculator-cta .primary-btn {
    background: white;
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.calculator-cta .primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Platform Solutions Section */
.platform-solutions {
    background: white;
    padding: 80px 0;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.platform-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(102,126,234,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(102,126,234,0.4);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.platform-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.platform-card ul {
    list-style: none;
    padding: 0;
}

.platform-card li {
    padding: 8px 0;
    opacity: 0.9;
    position: relative;
    padding-left: 20px;
}

.platform-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Enhanced Gateway Section */
.gateway {
    background: 
        radial-gradient(800px 600px at 50% 0%, rgba(102,126,234,0.25) 0%, transparent 70%),
        radial-gradient(1200px 800px at 20% 100%, rgba(34,211,238,0.15) 0%, transparent 60%),
        radial-gradient(600px 400px at 80% 20%, rgba(118,75,162,0.20) 0%, transparent 50%),
        linear-gradient(135deg, #0b1020 0%, #1e293b 100%);
    color: #e2e8f0;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.gateway .container { 
    position: relative; 
    z-index: 2;
}

/* Floating Background Elements */
.gateway-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(34,211,238,0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(102,126,234,0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(118,75,162,0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(34,211,238,0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(102,126,234,0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
    opacity: 0.6;
}

.gateway-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(34,211,238,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,211,238,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridShift 15s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(10px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

@keyframes gridShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(25px) translateY(25px); }
}

/* Enhanced Layout */
.gateway-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced Title Section */
.gateway-title { 
    text-align: center;
    margin-bottom: 30px;
}

.title-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.gateway-title h2 { 
    color: #ffffff; 
    margin-bottom: 20px;
    font-size: 3rem;
    line-height: 1.2;
}

.title-accent {
    font-size: 3.5rem;
    animation: rocketFloat 3s ease-in-out infinite;
}

.title-main {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-ai {
    background: linear-gradient(135deg, #22d3ee 0%, #667eea 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(34,211,238,0.5);
    animation: aiGlow 2s ease-in-out infinite alternate;
}

.title-subtitle {
    font-size: 1.3rem;
    color: #94a3b8;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.feature-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature-badge {
    background: rgba(34,211,238,0.1);
    border: 1px solid rgba(34,211,238,0.3);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #22d3ee;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: badgeFloat 4s ease-in-out infinite;
}

.feature-badge:nth-child(2) { animation-delay: 0.5s; }
.feature-badge:nth-child(3) { animation-delay: 1s; }

.feature-badge:hover {
    transform: translateY(-3px);
    background: rgba(34,211,238,0.2);
    box-shadow: 0 10px 25px rgba(34,211,238,0.3);
}

@keyframes rocketFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes aiGlow {
    0% { text-shadow: 0 0 20px rgba(34,211,238,0.5); }
    100% { text-shadow: 0 0 40px rgba(34,211,238,0.8), 0 0 60px rgba(102,126,234,0.4); }
}

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

/* Interactive Features Grid */
.gateway-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.ai-demo-card {
    background: rgba(15,23,42,0.7);
    border: 1px solid rgba(34,211,238,0.3);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.ai-demo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(34,211,238,0.8), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.ai-demo-card:hover::before {
    transform: translateX(100%);
}

.ai-demo-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(34,211,238,0.6);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3), 0 0 30px rgba(34,211,238,0.2);
}

.demo-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: iconPulse 2s ease-in-out infinite;
}

.ai-demo-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.ai-demo-card p {
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.demo-status {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.demo-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.ai-demo-card:hover .demo-status::before {
    left: 100%;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Enhanced Chat Portal */
.gateway-portal {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}



.chat-screen {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: rgba(15,23,42,0.85);
    border: 1px solid rgba(148,163,184,0.25);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    backdrop-filter: blur(10px);
    z-index: 1;
}

/* Futuristic enhancements */
.chat-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 60% at 50% 0%, rgba(34,211,238,0.10), rgba(118,75,162,0.06) 60%, transparent 70%),
        linear-gradient(135deg, rgba(102,126,234,0.10), rgba(118,75,162,0.08));
    pointer-events: none;
}

.chat-screen::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(34,211,238,0.7), transparent);
    box-shadow: 0 0 18px rgba(34,211,238,0.6);
    animation: scanDown 7s linear infinite;
    opacity: 0.7;
}

@keyframes scanDown {
    0% { top: -120px; opacity: 0; }
    5% { opacity: 0.7; }
    95% { opacity: 0.7; }
    100% { top: calc(100% + 120px); opacity: 0; }
}

.chat-messages {
    scrollbar-width: thin;
    scrollbar-color: rgba(148,163,184,0.5) transparent;
}
.chat-messages::-webkit-scrollbar { width: 8px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(148,163,184,0.45); border-radius: 8px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }

.chat-msg.bot .chat-bubble {
    background: rgba(148,163,184,0.10);
    border: 1px solid rgba(148,163,184,0.25);
    backdrop-filter: blur(6px);
}

.chat-msg.user .chat-bubble {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 10px 28px rgba(102,126,234,0.30);
}

.chat-input input:focus {
    outline: none;
    border-color: rgba(34,211,238,0.5);
    box-shadow: 0 0 0 3px rgba(34,211,238,0.15);
}

.chat-input button {
    background: linear-gradient(135deg, #22d3ee 0%, #67e8f9 100%);
    color: #0b1020;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(34,211,238,0.35);
}

.chat-pretitle {
    text-align: center;
    padding: 12px 14px 6px;
    color: #cbd5e1;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* Enhanced Chat Styles */
.chat-screen.enhanced {
    max-width: 700px;
    border: 1px solid rgba(34,211,238,0.4);
    border-radius: 24px;
    background: rgba(15,23,42,0.95);
    box-shadow: 
        0 50px 100px rgba(0,0,0,0.6),
        0 0 0 1px rgba(34,211,238,0.2),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.chat-screen.enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 60px 120px rgba(0,0,0,0.7),
        0 0 50px rgba(34,211,238,0.3);
}

/* Chat Header */
.chat-header {
    background: 
        linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%),
        radial-gradient(circle at 20% 50%, rgba(34,211,238,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(102,126,234,0.1) 0%, transparent 50%);
    border-bottom: 2px solid rgba(34,211,238,0.8);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 2px 15px rgba(34,211,238,0.3),
        0 0 30px rgba(34,211,238,0.1),
        inset 0 1px 0 rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
}

.chat-screen.enhanced .chat-header { color: #e2e8f0; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }

.ai-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-indicator {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #10b981 0%, #22d3ee 100%);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(34,211,238,0.8), 0 0 5px rgba(16,185,129,0.6);
    border: 1px solid rgba(255,255,255,0.3);
}

.ai-status span {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.typing-indicator {
    display: none;
    gap: 4px;
    margin-left: 10px;
}

.typing-indicator.active {
    display: flex;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #22d3ee;
    border-radius: 50%;
    animation: typingDot 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

.chat-actions {
    display: flex;
    gap: 10px;
}

.chat-action {
    background: rgba(34,211,238,0.15);
    border: 1px solid rgba(34,211,238,0.5);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(34,211,238,0.2);
}

.chat-action:hover {
    background: rgba(34,211,238,0.3);
    border-color: rgba(34,211,238,0.7);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(34,211,238,0.3);
}

@keyframes statusPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(34,211,238,0.8), 0 0 5px rgba(16,185,129,0.6);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(34,211,238,1), 0 0 10px rgba(16,185,129,0.8);
    }
}

@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

/* Enhanced Chat Messages */
.chat-messages {
    max-height: 400px;
    overflow-y: auto;
    padding: 20px 25px;
    position: relative;
    z-index: 2;
}

.welcome-message {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(34,211,238,0.05);
    border: 1px solid rgba(34,211,238,0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.ai-avatar {
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22d3ee 0%, #667eea 100%);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(34,211,238,0.4);
    animation: avatarPulse 3s ease-in-out infinite;
}

.message-content h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.message-content p {
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.quick-questions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-btn {
    background: rgba(34,211,238,0.1);
    border: 1px solid rgba(34,211,238,0.3);
    color: #22d3ee;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 0.9rem;
}

.quick-btn:hover {
    background: rgba(34,211,238,0.2);
    transform: translateX(5px);
    border-color: rgba(34,211,238,0.5);
}

@keyframes avatarPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(34,211,238,0.4); }
    50% { box-shadow: 0 15px 40px rgba(34,211,238,0.7); }
}

/* Enhanced Chat Input */
.chat-input.enhanced {
    padding: 20px 25px;
    background: rgba(15,23,42,0.9);
    border-top: 1px solid rgba(34,211,238,0.3);
    position: relative;
    z-index: 2;
}

.input-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    background: rgba(30,41,59,0.8);
    border: 2px solid rgba(34,211,238,0.3);
    border-radius: 16px;
    padding: 4px;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: rgba(34,211,238,0.6);
    box-shadow: 0 0 0 4px rgba(34,211,238,0.1);
}

.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 16px 20px;
    color: #e2e8f0;
    font-size: 1rem;

}

.input-wrapper input::placeholder {
    color: #64748b;
}

.input-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 8px;
    margin-left: 12px;
}

.voice-btn {
    background: rgba(34,211,238,0.1);
    border: 1px solid rgba(34,211,238,0.3);
    color: #22d3ee;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-btn:hover {
    background: rgba(34,211,238,0.2);
    transform: scale(1.05);
}

.voice-btn.active {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    animation: voicePulse 1s ease-in-out infinite;
}

@keyframes voicePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
}

.send-btn {
    background: linear-gradient(135deg, #22d3ee 0%, #667eea 100%);
    border: none;
    color: #0b1020;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(34,211,238,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(34,211,238,0.5);
}

.send-icon {
    font-size: 1.2rem;
    font-weight: bold;
}



/* Chat Progress */
.chat-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15,23,42,0.95);
    padding: 15px 25px;
    border-top: 1px solid rgba(34,211,238,0.3);
    display: none;
    align-items: center;
    gap: 15px;
}

.chat-progress.active {
    display: flex;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(34,211,238,0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #22d3ee 0%, #667eea 100%);
    border-radius: 2px;
    animation: progressMove 2s ease-in-out infinite;
}

.progress-text {
    color: #22d3ee;
    font-size: 0.9rem;
    font-weight: 500;
}

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

/* Chat Message Styles */
.chat-message {
    margin-bottom: 20px;
    animation: messageAppear 0.3s ease;
}

.user-message .message-content {
    justify-content: flex-end;
}

.user-content {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    justify-content: flex-end;
}

.ai-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.user-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(102,126,234,0.3);
    order: 2;
}

.message-text {
    background: rgba(30,41,59,0.8);
    border: 1px solid rgba(34,211,238,0.3);
    padding: 15px 18px;
    border-radius: 18px;
    color: #e2e8f0;
    line-height: 1.5;
    max-width: 80%;
    backdrop-filter: blur(10px);
    word-wrap: break-word;
}

.user-message .message-text {
    background: linear-gradient(135deg, #22d3ee 0%, #667eea 100%);
    color: #0b1020;
    border: none;
    font-weight: 500;
}

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

/* Focus states */
.input-wrapper.focused {
    border-color: rgba(34,211,238,0.8);
    box-shadow: 0 0 0 4px rgba(34,211,238,0.15);
}

.chat-screen .chat-messages { max-height: 400px; }
.chat-screen .chat-input button { background: #22d3ee; color: #0b1020; font-weight: 600; }

/* Responsive Styles for Gateway */
@media (max-width: 1024px) {
    .gateway-title h2 {
        font-size: 2.5rem;
    }
    
    .title-subtitle {
        font-size: 1.1rem;
    }
    
    .gateway-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
    
    .ai-demo-card {
        padding: 25px 20px;
    }
}

@media (max-width: 980px) {
    .gateway-content { 
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-badges {
        gap: 15px;
    }
    
    .feature-badge {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
}

@media (max-width: 768px) {
    .gateway {
        padding: 60px 0;
    }
    
    .gateway-title h2 {
        font-size: 2rem;
    }
    
    .title-accent {
        font-size: 2.5rem;
    }
    
    .title-subtitle {
        font-size: 1rem;
    }
    
    .feature-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .gateway-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .ai-demo-card {
        padding: 20px 15px;
    }
    
    .demo-icon {
        font-size: 2.5rem;
    }
    
    .ai-demo-card h3 {
        font-size: 1.1rem;
    }
    
    .chat-screen.enhanced {
        max-width: 100%;
        border-radius: 20px;
    }
    
    .chat-header {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .ai-status {
        flex: 1;
        min-width: 200px;
    }
    
    .chat-actions {
        gap: 8px;
    }
    
    .chat-action {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    .chat-messages {
        padding: 15px 20px;
    }
    
    .welcome-message {
        padding: 15px;
        gap: 12px;
    }
    
    .ai-avatar {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .message-content h4 {
        font-size: 1.1rem;
    }
    
    .quick-questions {
        gap: 8px;
    }
    
    .quick-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .chat-input.enhanced {
        padding: 15px 20px;
    }
    
    .input-wrapper {
        border-radius: 14px;
    }
    
    .input-wrapper input {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .input-actions {
        gap: 6px;
        margin-left: 10px;
    }
    
    .voice-btn {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }
    
    .send-btn {
        width: 44px;
        height: 44px;
    }
    
    .chat-progress {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .gateway {
        padding: 40px 0;
    }
    
    .gateway-title h2 {
        font-size: 1.6rem;
    }
    
    .title-accent {
        font-size: 2rem;
    }
    
    .title-subtitle {
        font-size: 0.9rem;
    }
    
    .feature-badges {
        gap: 8px;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    
    .ai-demo-card {
        padding: 15px 12px;
    }
    
    .demo-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .ai-demo-card h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .ai-demo-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .demo-status {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .chat-screen.enhanced {
        border-radius: 16px;
    }
    
    .chat-header {
        padding: 12px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .ai-status {
        width: 100%;
    }
    
    .ai-status span {
        font-size: 0.9rem;
    }
    
    .chat-actions {
        align-self: flex-end;
    }
    
    .chat-messages {
        padding: 12px 15px;
        max-height: 300px;
    }
    
    .welcome-message {
        padding: 12px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .ai-avatar {
        width: 35px;
        height: 35px;
        font-size: 1.8rem;
        align-self: center;
    }
    
    .message-content h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .message-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .quick-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .chat-input.enhanced {
        padding: 12px 15px;
    }
    
    .input-wrapper {
        flex-direction: column;
        gap: 8px;
        padding: 8px;
    }
    
    .input-wrapper input {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .input-actions {
        align-self: flex-end;
        gap: 5px;
        margin-left: 8px;
    }
    
    .voice-btn {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
    
    .send-btn {
        width: 40px;
        height: 40px;
    }
    
    .send-icon {
        font-size: 1rem;
    }
    

    
    .chat-progress {
        padding: 10px 15px;
    }
    
    .progress-text {
        font-size: 0.8rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: inline-flex; }
    .mobile-menu { display: flex; }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .features-grid,
    .services-grid,
    .advantages-grid,
    .tech-grid,
    .platform-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        max-width: 100%;
    }

    .timeline-line {
        display: none;
    }

    .process-step {
        margin-bottom: 40px;
    }

    .step-card {
        max-width: 100%;
        padding: 30px 20px;
    }

    .process-cta {
        padding: 40px 20px;
        margin-top: 60px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-image { display: none; }

    /* Footer mobile adaptation */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-links {
        justify-content: center;
        gap: 20px;
    }

    .footer-social {
        justify-content: center;
    }
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        max-width: 280px;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .primary-btn,
    .secondary-btn,
    .service-btn,
    .submit-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Footer small mobile adaptation */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }
}

/* Chat widget */
.chat-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1001;
}

.chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    cursor: pointer;
}

.chat-panel {
    position: absolute;
    right: 0;
    bottom: 70px;
    width: 340px;
    max-height: 60vh;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    display: none;
    overflow: hidden;
}

.chat-panel.open { display: block; }

.chat-panel .chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
    font-weight: 600;
    color: #0f172a;
    position: sticky;
    top: 0;
    z-index: 2;
}

.chat-panel .chat-close { background: transparent; border: none; font-size: 20px; cursor: pointer; color: #334155; }
.chat-panel .chat-close:hover { color: #0f172a; }
.chat-header .chat-action:focus-visible,
.chat-panel .chat-close:focus-visible { outline: 2px solid #22d3ee; outline-offset: 2px; }

.chat-messages {
    padding: 12px;
    overflow-y: auto;
    max-height: 44vh;
}

.chat-msg { margin-bottom: 10px; }
.chat-msg.user { text-align: right; }
.chat-bubble {
    display: inline-block; padding: 8px 12px; border-radius: 12px; max-width: 85%;
}
.chat-msg.user .chat-bubble { background: #667eea; color: #fff; }
.chat-msg.bot .chat-bubble { background: #edf2f7; color: #2d3748; }

.chat-input { display: flex; gap: 8px; padding: 10px; border-top: 1px solid #e2e8f0; }
.chat-input input { flex: 1; padding: 10px 12px; border: 1px solid #e2e8f0; border-radius: 10px; }
.chat-input button { padding: 10px 14px; border-radius: 10px; border: none; background: #667eea; color: #fff; cursor: pointer; }

/* Urgency Banner */
.urgency-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    z-index: 2001;
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(239,68,68,0.3);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.urgency-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

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

.urgency-text {
    font-weight: 600;
    font-size: 1rem;
}

.urgency-countdown {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.urgency-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.urgency-close:hover {
    opacity: 1;
}

/* Exit Intent Popup */
.exit-intent-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2500;
    padding: 20px;
}

.popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    width: 100%;
    max-width: 550px;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
    text-align: center;
    transform: scale(0.9);
    animation: popupAppear 0.4s ease-out forwards;
}

@keyframes popupAppear {
    to {
        transform: scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #374151;
}

.popup-content h3 {
    color: #1f2937;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.popup-content p {
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.popup-benefits {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-weight: 500;
    background: #f8fafc;
    padding: 12px 15px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.popup-form {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.popup-form input {
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.popup-form input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.popup-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popup-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102,126,234,0.3);
}

.popup-content small {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-content {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    text-align: center;
}
.modal-content h3 { margin-bottom: 10px; color: #1f2937; }
.modal-content p { margin-bottom: 16px; color: #4b5563; }
.modal-actions { display: flex; gap: 12px; justify-content: center; }

/* Enhanced Form Elements */
.input-progress {
    height: 3px;
    background: transparent;
    border-radius: 2px;
    margin-top: 5px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.form-group {
    position: relative;
}

.form-group.focused {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Floating Particles */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(102,126,234,0.4);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) rotate(36deg) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) rotate(324deg) scale(1);
    }
    100% {
        transform: translateY(-10vh) rotate(360deg) scale(0);
        opacity: 0;
    }
}

.floating-particle:nth-child(even) {
    background: rgba(118,75,162,0.4);
    animation-direction: reverse;
}

.floating-particle:nth-child(3n) {
    background: rgba(34,211,238,0.3);
    width: 4px;
    height: 4px;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #22d3ee 100%);
    z-index: 2002;
    transition: width 0.3s ease;
    box-shadow: 0 2px 10px rgba(102,126,234,0.3);
}

/* Enhanced Button Hover Effects */
.primary-btn, .secondary-btn, .service-btn, .submit-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-btn::before, .service-btn::before, .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.primary-btn:hover::before, .service-btn:hover::before, .submit-btn:hover::before {
    left: 100%;
}

/* Enhanced Hero Button */
.pulse-button {
    position: relative;
    animation: heroButtonPulse 3s ease-in-out infinite;
}

@keyframes heroButtonPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.pulse-button .btn-text {
    margin-right: 8px;
}

.pulse-button .btn-icon {
    transition: transform 0.3s ease;
}

.pulse-button:hover .btn-icon {
    transform: translateX(5px);
}

/* Live Demo Hint */
.live-demo-hint {
    margin-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    animation: demoHintFloat 2s ease-in-out infinite;
}

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

.demo-arrow {
    font-size: 1.5rem;
    margin-bottom: 8px;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Disclaimer styles */
.disclaimer {
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

.disclaimer::before {
    content: '* ';
    color: #ef4444;
    font-weight: bold;
}

/* Responsive adjustments for calculator and process */
@media (max-width: 1024px) {
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .calculator-results {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Tablet layout for process timeline - 2 columns */
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
        gap: 30px;
        align-items: stretch;
    }
    
    .step-card.enhanced {
        height: 100%;
        min-height: 440px;
        max-width: 350px;
    }
    
    .timeline-line {
        display: none; /* Hide timeline on tablet */
    }
    
    .process-step::before {
        display: none; /* Hide step numbers on timeline */
    }
}

@media (max-width: 768px) {
    .calculator-results {
        grid-template-columns: 1fr;
    }
    
    .calculator-inputs {
        padding: 30px 20px;
    }
    
    .calculator-cta {
        padding: 30px 20px;
    }
    
    .urgency-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .urgency-text {
        font-size: 0.9rem;
    }
    
    .urgency-countdown {
        margin: 0 auto;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-content blockquote {
        font-size: 1.1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .company-metrics {
        justify-content: center;
    }
    
    .logos-marquee {
        gap: 30px;
    }
    
    .logo-item {
        min-width: 120px;
        height: 70px;
        padding: 15px 20px;
    }
    
    .floating-particles {
        display: none; /* Hide particles on mobile for performance */
    }
}

@media (max-width: 480px) {
    .popup-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .popup-content h3 {
        font-size: 1.5rem;
    }
    
    .popup-benefits {
        gap: 8px;
    }
    
    .benefit {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .result-card {
        padding: 20px 15px;
    }
    
    .result-value {
        font-size: 1.5rem;
    }
    
    .result-card.highlight .result-value {
        font-size: 1.8rem;
    }
    
    /* Horizontal Grid Mobile Adaptations */
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
        gap: 20px;
        padding: 30px 0;
        align-items: stretch;
    }
    
    .timeline-line {
        display: none; /* Hide timeline on mobile */
    }
    
    .process-step::before {
        display: none; /* Hide step numbers on timeline */
    }
    
    .step-card.enhanced {
        height: 100%;
        max-width: 100%;
        min-height: 400px;
        padding: 25px 20px;
    }
    
    .step-card.enhanced h3 {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .step-deliverables {
        padding: 15px;
        margin: 12px 0;
    }
    
    .step-deliverables li {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .step-metrics {
        gap: 10px;
        margin: 12px 0;
    }
    
    .metric-item {
        height: 75px;
        min-height: 75px;
        max-height: 75px;
        padding: 12px 8px;
    }
    
    .metric-value {
        font-size: 1.05rem;
    }
    
    .metric-label {
        font-size: 0.7rem;
    }
    

    
    .process-progress-container {
        margin: 30px 0 50px;
    }
    
    .process-cta-enhanced {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 25px;
    }
    
    .cta-left h3 {
        font-size: 1.6rem;
    }
    
    .cta-left p {
        font-size: 1rem;
    }
    
    .cta-features {
        gap: 12px;
    }
    
    .cta-feature {
        font-size: 1rem;
    }
    
    .guarantee-badge {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Single column layout for small phones */
    .process-timeline {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 25px;
        padding: 20px 0;
        align-items: stretch;
    }
    
    .step-card.enhanced {
        height: 100%;
        padding: 20px 15px;
        min-height: 350px;
        max-width: 100%;
    }
    
    .step-card.enhanced h3 {
        font-size: 1rem;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
    
    .step-deliverables {
        padding: 12px;
        margin: 10px 0;
    }
    
    .step-deliverables h4 {
        font-size: 0.85rem;
    }
    
    .step-deliverables li {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
    
    .step-metrics {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 10px 0;
    }
    
    .metric-item {
        height: 70px;
        min-height: 70px;
        max-height: 70px;
        padding: 10px 8px;
    }
    
    .metric-value {
        font-size: 1rem;
    }
    
    .metric-label {
        font-size: 0.65rem;
    }
    

    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }
    
    .step-badge {
        font-size: 0.65rem;
        padding: 3px 10px;
    }
    
    .process-cta-enhanced {
        padding: 25px 15px;
        margin-top: 50px;
    }
    
    .cta-left h3 {
        font-size: 1.4rem;
    }
    
    .cta-left p {
        font-size: 0.95rem;
    }
    
    .cta-feature {
        font-size: 0.9rem;
    }
    
    .cta-offer {
        padding: 25px 20px;
    }
    
    .offer-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .primary-btn.large {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .guarantee-badge {
        padding: 8px 12px;
        font-size: 0.8rem;
        flex-direction: column;
        gap: 3px;
        text-align: center;
    }
    
    .progress-labels {
        flex-direction: column;
        gap: 3px;
        text-align: center;
    }
    
    .progress-labels span {
        font-size: 0.75rem;
    }
    
    .process-progress-container {
        margin: 25px 0 40px;
    }
}

/* ========================================
   NEW ELEMENTS - Cases Section
   ======================================== */
.cases {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: -10px;
    margin-bottom: 40px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.case-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102,126,234,0.15);
    border-color: #667eea;
}

.case-card.featured {
    border-color: #667eea;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.company-info h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 5px;
}

.industry {
    display: inline-block;
    font-size: 0.85rem;
    color: #667eea;
    background: rgba(102,126,234,0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.case-challenge {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.case-solution {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: 4px solid #667eea;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0;
}

@media (max-width: 1200px) {
    .case-results {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

.result-metric {
    text-align: center;
    padding: 15px 10px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    min-width: 0;
}

.result-metric:hover {
    transform: translateY(-3px);
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

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

.metric-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.metric-label {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
}

.case-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tech-badge {
    background: #e9ecef;
    color: #495057;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.clients-logos {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    margin-top: 30px;
}

.clients-logos p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 25px;
}

.logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.client-logo {
    padding: 15px 25px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.client-logo:hover {
    border-color: #667eea;
    color: #667eea;
}

/* ========================================
   Advantage Item Highlight
   ======================================== */
.advantage-item.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.advantage-item.highlight h3,
.advantage-item.highlight p {
    color: white;
}

.advantage-item.highlight .advantage-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* ========================================
   Tech Showcase Section
   ======================================== */
.tech-showcase {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.tech-showcase h2 {
    color: white;
    text-align: center;
    margin-bottom: 10px;
}

.tech-showcase .section-subtitle {
    color: rgba(255,255,255,0.9);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.tech-category-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.tech-category-card.highlight {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.4);
}

.tech-category-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.tech-category-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tech-item {
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.tech-description {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   Team Section (REMOVED - keeping styles for potential future use)
   ======================================== */
.team {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.team-member h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 8px;
}

.member-role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.member-bio {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid #667eea;
}

.member-social a:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

/* ========================================
   Sticky Messenger Button
   ======================================== */
.sticky-messenger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.messenger-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0088cc 0%, #005580 100%);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
}

.messenger-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 136, 204, 0.6);
}

.messenger-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #10b981;
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.messenger-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
}

.messenger-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: all 0.3s ease;
}

.messenger-option:hover {
    background: #f8f9fa;
}

.messenger-option.telegram {
    color: #0088cc;
}

.messenger-option.whatsapp {
    color: #25d366;
}

.messenger-option.email {
    color: #667eea;
}

.messenger-option i {
    font-size: 1.5rem;
}

/* ========================================
   Exit Intent Popup
   ======================================== */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.exit-popup-content {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 550px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
    animation: popupSlideIn 0.4s ease;
}

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

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border: none;
    background: #f8f9fa;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exit-popup-close:hover {
    background: #e9ecef;
    color: #495057;
}

.exit-popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.exit-popup-content h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.exit-popup-content p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 25px;
}

.exit-popup-benefits {
    list-style: none;
    text-align: left;
    margin: 25px 0;
}

.exit-popup-benefits li {
    padding: 12px 0;
    font-size: 1rem;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 12px;
}

.exit-popup-benefits i {
    color: #10b981;
    font-size: 1.2rem;
}

.exit-popup-form {
    display: flex;
    gap: 10px;
    margin: 25px 0;
}

.exit-popup-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.exit-popup-form input:focus {
    outline: none;
    border-color: #667eea;
}

.exit-popup-form button {
    white-space: nowrap;
}

.exit-popup-content small {
    display: block;
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 15px;
}

/* ========================================
   Enhanced Contact Section
   ======================================== */
.contact-info h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #667eea;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #495057;
}

.indicator i {
    color: #10b981;
    font-size: 1.2rem;
}

.form-note {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #6c757d;
    font-size: 0.85rem;
}

.form-note a {
    color: #667eea;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #495057;
}

.badge-item i {
    color: #10b981;
    font-size: 1.1rem;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card {
    position: relative;
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 5px;
}

/* ========================================
   Mobile Responsive for New Elements
   ======================================== */
@media (max-width: 768px) {
    .case-results {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .result-metric {
        padding: 12px;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .logos-row {
        gap: 15px;
    }
    
    .client-logo {
        font-size: 0.8rem;
        padding: 10px 15px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-messenger {
        bottom: 20px;
        right: 20px;
    }
    
    .messenger-trigger {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .exit-popup-content {
        padding: 40px 25px;
        margin: 20px;
    }
    
    .exit-popup-form {
        flex-direction: column;
    }
    
    .exit-popup-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .trust-indicators {
        gap: 10px;
    }
}
