/* Custom CSS for AI Master Landing Page */

/* Navigation Styles */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 900;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand .ai-text {
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand .master-text {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.navbar-nav .nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn-outline-light:hover::before {
    left: 100%;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.8);
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

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

/* Offset for fixed navbar */
section[id] {
    scroll-margin-top: 80px;
}

/* Responsive Navigation */
@media (max-width: 991.98px) {
    .navbar {
        position: relative;
    }
    
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        border-radius: 15px;
        padding: 1.5rem;
        margin-top: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        padding: 0.75rem 1rem !important;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .d-flex {
        margin-top: 1.5rem;
        justify-content: center;
    }
    
    .btn-outline-light {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .navbar-brand .ai-brain {
        width: 25px !important;
        height: 25px !important;
    }
    
    .btn-outline-light {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}

/* Hero Section with Neural Illustrations */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 25%, #2d1b69 50%, #1e3a8a 75%, #1e40af 100%);
    position: relative;
}

.neural-background {
    overflow: hidden;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(30, 58, 138, 0.6) 50%, rgba(30, 64, 175, 0.4) 100%);
    backdrop-filter: blur(1px);
}

/* Neural Network Nodes */
.neural-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #60a5fa, #a855f7);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.node-1 { top: 15%; left: 10%; animation-delay: 0s; }
.node-2 { top: 25%; left: 85%; animation-delay: 0.3s; }
.node-3 { top: 45%; left: 20%; animation-delay: 0.6s; }
.node-4 { top: 35%; left: 70%; animation-delay: 0.9s; }
.node-5 { top: 65%; left: 15%; animation-delay: 1.2s; }
.node-6 { top: 55%; left: 80%; animation-delay: 1.5s; }
.node-7 { top: 75%; left: 45%; animation-delay: 1.8s; }
.node-8 { top: 20%; left: 50%; animation-delay: 2.1s; }
.node-9 { top: 80%; left: 25%; animation-delay: 2.4s; }
.node-10 { top: 40%; left: 90%; animation-delay: 2.7s; }

/* Neural Connections */
.neural-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connections-svg {
    width: 100%;
    height: 100%;
}

.connection {
    stroke: url(#neuralGradient);
    stroke-width: 1;
    opacity: 0.6;
    animation: connectionPulse 3s ease-in-out infinite;
}

.connection-1 { animation-delay: 0s; }
.connection-2 { animation-delay: 0.4s; }
.connection-3 { animation-delay: 0.8s; }
.connection-4 { animation-delay: 1.2s; }
.connection-5 { animation-delay: 1.6s; }
.connection-6 { animation-delay: 2s; }
.connection-7 { animation-delay: 2.4s; }
.connection-8 { animation-delay: 2.8s; }

/* Floating Geometric Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-triangle {
    top: 20%;
    left: 15%;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid #60a5fa;
    animation-delay: 0s;
}

.shape-circle {
    top: 60%;
    right: 20%;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #a855f7, #ec4899);
    border-radius: 50%;
    animation-delay: 1s;
}

.shape-square {
    top: 40%;
    left: 5%;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #10b981, #06b6d4);
    transform: rotate(45deg);
    animation-delay: 2s;
}

.shape-hexagon {
    top: 70%;
    right: 10%;
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #f59e0b, #ef4444);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation-delay: 3s;
}

.shape-diamond {
    top: 30%;
    right: 40%;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #8b5cf6, #06b6d4);
    transform: rotate(45deg);
    animation-delay: 4s;
}

/* AI Brain Icon */
.ai-brain-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.brain-core {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 40px rgba(96, 165, 250, 0.4);
    animation: brainPulse 2s ease-in-out infinite;
}

.brain-core-footer {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 40px rgba(96, 165, 250, 0.4);
    animation: brainPulse 2s ease-in-out infinite;
}

.brain-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(96, 165, 250, 0.3);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

.brain-circuits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.circuit {
    position: absolute;
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
    animation: circuitFlow 3s linear infinite;
}

.circuit-1 {
    top: 30%;
    left: -20%;
    width: 60px;
    height: 2px;
    animation-delay: 0s;
}

.circuit-2 {
    top: 60%;
    right: -20%;
    width: 50px;
    height: 2px;
    animation-delay: 1s;
}

.circuit-3 {
    bottom: 20%;
    left: 20%;
    width: 40px;
    height: 2px;
    animation-delay: 2s;
}

/* Hero Title */
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.ai-text {
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
}

.master-text {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

/* Hero Subtitle */
.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.subtitle-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
    animation: lineGlow 2s ease-in-out infinite;
}

.subtitle-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-description {
    max-width: 700px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Subtitle - "Будущее в вашем бизнесе" */
.fs-4.mb-3.text-light {
    font-weight: 900;
}

/* Neural Buttons */
.neural-btn {
    position: relative;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.neural-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-neural-effect {
    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;
}

.neural-btn:hover .btn-neural-effect {
    left: 100%;
}

.glass-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

@keyframes connectionPulse {
    0%, 100% { 
        opacity: 0.3;
        stroke-width: 1;
    }
    50% { 
        opacity: 0.8;
        stroke-width: 2;
    }
}

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

@keyframes brainPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 40px rgba(96, 165, 250, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(96, 165, 250, 0.6);
    }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

@keyframes circuitFlow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(200%);
        opacity: 0;
    }
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 10px #60a5fa;
    }
}

/* Feature Icons */
.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.bg-gradient-primary.text-white {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

/* Industries Section */
.industries-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
    position: relative;
    min-height: auto;
    color: #1e293b;
}

.industries-section .neural-background {
    display: none;
}

.industries-section .hero-overlay {
    display: none;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.industries-section h2 {
    color: #1e293b;
}

.industries-section .ai-text {
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industries-section .master-text {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industries-section .hero-divider {
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
}

/* Industries Accordion */
.industries-accordion {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.industry-item {
    border: none;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.industry-item:not(:last-child) {
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.industry-item:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
}

.industry-button {
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
}

.industry-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

.industry-button:hover::before {
    left: 100%;
}

.industry-button:not(.collapsed) {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.industry-button:not(.collapsed) .industry-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.industry-button:not(.collapsed) .industry-title,
.industry-button:not(.collapsed) .industry-subtitle {
    color: white;
}

.industry-button:focus {
    box-shadow: none;
    border: none;
}

/* Industry Icons */
.industry-icon-container {
    flex-shrink: 0;
}

.industry-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.industry-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    animation: iconPulse 2s ease-in-out infinite;
}

.real-estate-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.auto-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.tourism-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.ecommerce-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.education-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.food-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* Industry Title Container */
.industry-title-container {
    flex-grow: 1;
    text-align: left;
}

.industry-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.industry-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

/* Industry Content */
.industry-content {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.industry-description h6 {
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 1rem;
}

.industry-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #374151;
}

.industry-features li i {
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Industry Stats */
.industry-stats {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Industries CTA */
.industries-cta {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industries-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

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

.industries-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 1);
}

.industries-cta h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.industries-cta .text-muted {
    color: #64748b !important;
}

/* Responsive Design for Industries Section */
@media (max-width: 992px) {
    .industry-button {
        padding: 1.25rem 1.5rem;
    }
    
    .industry-content {
        padding: 1.5rem;
    }
    
    .industries-cta {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .industry-button {
        padding: 1rem 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .industry-icon-container {
        margin-right: 0 !important;
    }
    
    .industry-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .industry-title-container {
        text-align: center;
    }
    
    .industry-title {
        font-size: 1.1rem;
    }
    
    .industry-subtitle {
        font-size: 0.85rem;
    }
    
    .industry-content {
        padding: 1.25rem;
    }
    
    .industry-features li {
        font-size: 0.9rem;
    }
    
    .stat-card {
        padding: 1.25rem;
        min-width: 100px;
    }
    
    .stat-card .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-card .stat-label {
        font-size: 0.8rem;
    }
    
    .industries-cta {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .industry-button {
        padding: 0.875rem 1rem;
    }
    
    .industry-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .industry-title {
        font-size: 1rem;
    }
    
    .industry-subtitle {
        font-size: 0.8rem;
    }
    
    .industry-content {
        padding: 1rem;
    }
    
    .industry-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .stat-card {
        padding: 1rem;
        min-width: 90px;
    }
    
    .stat-card .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-card .stat-label {
        font-size: 0.75rem;
    }
    
    .industries-cta {
        padding: 1.25rem 0.75rem;
    }
    
    .industries-cta h4 {
        font-size: 1.25rem;
    }
}

/* Footer */
.footer-icon {
    width: 48px;
    height: 48px;
}

/* Hover Effects */
.card {
    transition: all 0.3s ease;
}

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

.btn {
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero .cta-button {
        margin-bottom: 3rem;
    }
    
    .hero .video-container {
        margin-top: 3rem;
    }
    
    .stats {
        margin-bottom: 3rem;
    }
    
    .ai-brain {
        width: 100px;
        height: 100px;
    }
    
    .brain-core {
        width: 60px;
        height: 60px;
    }
    
    .brain-pulse {
        width: 80px;
        height: 80px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .hero-stats {
        margin-top: 3rem;
    }
    
    .subtitle-text {
        font-size: 1rem;
    }
    
    .subtitle-line {
        width: 40px;
    }
    
    /* Hero section mobile padding */
    .hero-section .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    /* Hero section mobile spacing */
    .hero-buttons {
        margin-bottom: 3rem !important;
    }
    
    .hero-stats {
        margin-top: 3rem !important;
    }
    
    /* Big logo mobile padding */
    .d-flex.align-items-center.justify-content-center.justify-content-lg-start.mb-4 {
        padding: 50px 20px 0;
        white-space: nowrap;
    }
    
    /* Adjust hero title size for mobile to prevent wrapping */
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* Manager greeting mobile layout */
    .manager-greeting {
        flex-direction: column !important;
        text-align: center;
    }
    
    .manager-image-container {
        margin-right: 0 !important;
        margin-bottom: 1.5rem;
        justify-content: center;
        display: flex;
    }
    
    .manager-image-container .manager-placeholder {
        width: 200px !important;
        height: 200px !important;
        border-radius: 15px !important;
    }
    
    .greeting-content {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .ai-brain {
        width: 80px;
        height: 80px;
    }
    
    .brain-core {
        width: 50px;
        height: 50px;
    }
    
    .brain-pulse {
        width: 70px;
        height: 70px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .subtitle-text {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .subtitle-line {
        width: 30px;
    }
    
    .hero-stats {
        margin-top: 2rem;
    }
    
    .node {
        width: 6px;
        height: 6px;
    }
    
    .shape-triangle {
        border-left-width: 10px;
        border-right-width: 10px;
        border-bottom-width: 15px;
    }
    
    .shape-circle {
        width: 20px;
        height: 20px;
    }
    
    .shape-square,
    .shape-diamond {
        width: 15px;
        height: 15px;
    }
    
    .shape-hexagon {
        width: 18px;
        height: 18px;
    }
}

/* Custom button styles */
.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}

/* Hero Divider */
.hero-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
    margin: 0 auto;
    animation: lineGlow 2s ease-in-out infinite;
}

@media (max-width: 992px) {
    .hero-divider {
        margin: 0 auto;
    }
}

/* Animated Section Divider */
.section-divider {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 50%, #e0f2fe 100%);
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="divider-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23divider-grid)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.divider-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.divider-line {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #60a5fa, #a855f7, #ec4899, transparent);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: dividerFlow 3s ease-in-out infinite;
}

.divider-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(96, 165, 250, 0.4);
    animation: dividerIconPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.divider-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    animation: iconRipple 2s ease-in-out infinite;
}

.divider-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #60a5fa, #a855f7);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    left: 20%;
    animation-delay: 0.5s;
}

.particle-3 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.particle-4 {
    top: 70%;
    right: 25%;
    animation-delay: 1.5s;
}

.particle-5 {
    top: 40%;
    left: 50%;
    animation-delay: 2s;
}

.particle-6 {
    top: 80%;
    left: 70%;
    animation-delay: 2.5s;
}

/* Divider Animations */
@keyframes dividerFlow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes dividerIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(96, 165, 250, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(96, 165, 250, 0.6);
    }
}

@keyframes iconRipple {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.7;
    }
}

/* Responsive Design for Section Divider */
@media (max-width: 768px) {
    .section-divider {
        height: 60px;
    }
    
    .divider-line {
        width: 100px;
        height: 2px;
    }
    
    .divider-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
}

@media (max-width: 576px) {
    .section-divider {
        height: 50px;
    }
    
    .divider-line {
        width: 80px;
    }
    
    .divider-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .particle {
        width: 2px;
        height: 2px;
    }
}

/* Gradient Section Divider */
.gradient-section-divider {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, 
        #f8fafc 0%,
        #f6f9fc 20%,
        #f3f7fb 40%,
        #f0f5fa 60%,
        #edf3f9 80%,
        #f0f9ff 100%);
}

.gradient-section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gradient-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23gradient-grid)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.gradient-section-divider .divider-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gradient-section-divider .divider-line {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #60a5fa, #a855f7, #ec4899, transparent);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.gradient-section-divider .divider-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: dividerFlow 3s ease-in-out infinite;
}

.gradient-section-divider .divider-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(96, 165, 250, 0.4);
    animation: dividerIconPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.gradient-section-divider .divider-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    animation: iconRipple 2s ease-in-out infinite;
}

.gradient-section-divider .divider-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.gradient-section-divider .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #60a5fa, #a855f7);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 4s ease-in-out infinite;
}

/* Responsive Design for Gradient Section Divider */
@media (max-width: 768px) {
    .gradient-section-divider {
        height: 60px;
    }
    
    .gradient-section-divider .divider-line {
        width: 100px;
        height: 2px;
    }
    
    .gradient-section-divider .divider-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .gradient-section-divider .particle {
        width: 3px;
        height: 3px;
    }
}

@media (max-width: 576px) {
    .gradient-section-divider {
        height: 50px;
    }
    
    .gradient-section-divider .divider-line {
        width: 80px;
    }
    
    .gradient-section-divider .divider-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .gradient-section-divider .particle {
        width: 2px;
        height: 2px;
    }
}

/* Scroll Arrow */
.scroll-arrow-container {
    z-index: 10;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: bounceArrow 2s ease-in-out infinite;
}

.scroll-arrow:hover {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.3);
}

.scroll-arrow i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.scroll-arrow:hover i {
    color: white;
    transform: translateY(2px);
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

/* Additional spacing utilities */
.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Custom border utilities */
.border-4 {
    border-width: 4px !important;
}

/* Text gradient for CTA section */
.bg-gradient-primary.text-white h2 {
    color: white !important;
}

/* Card hover effects for industries */
.industries-card:hover {
    background: rgba(255, 255, 255, 0.95);
}

/* Ensure proper contrast for comparison cards */
.bg-success.bg-opacity-10 {
    background-color: rgba(25, 135, 84, 0.1) !important;
}

.bg-danger.bg-opacity-10 {
    background-color: rgba(220, 53, 69, 0.1) !important;
}

/* Badge styling */
.badge {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Ensure proper spacing for feature cards */
.card-body {
    padding: 1.5rem;
}

/* Custom animation for hero section */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section .container > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-section .container > *:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-section .container > *:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-section .container > *:nth-child(4) {
    animation-delay: 0.6s;
}

.hero-section .container > *:nth-child(5) {
    animation-delay: 0.8s;
}

/* AI Evolution Section Styles */
.ai-evolution-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.ai-evolution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.evolution-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.evolution-card:hover::before {
    left: 100%;
}

.evolution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.chatbot-card:hover {
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
}

.ai-manager-card:hover {
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
}

.ai-agent-card:hover {
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
}

.evolution-header {
    text-align: center;
    margin-bottom: 2rem;
}

.evolution-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.chatbot-icon {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #dc2626;
    border: 3px solid #f87171;
}

.ai-manager-icon {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    color: #d97706;
    border: 3px solid #fbbf24;
}

.ai-agent-icon {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #16a34a;
    border: 3px solid #4ade80;
}

.evolution-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    animation: iconPulse 2s ease-in-out infinite;
}

.evolution-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.evolution-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 500;
}

/* Phone Mockup Styles */
.phone-mockup {
    background: #1f2937;
    border-radius: 25px;
    padding: 20px 15px;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #4b5563;
    border-radius: 2px;
}

.phone-screen {
    background: #ffffff;
    border-radius: 15px;
    padding: 1rem;
    min-height: auto;
    max-height: none;
    overflow: visible;
}

.chat-message {
    margin-bottom: 1rem;
    display: flex;
    animation: messageSlide 0.5s ease-out;
}

.bot-message {
    justify-content: flex-start;
}

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

.message-bubble {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    font-size: 0.85rem;
    line-height: 1.4;
    word-wrap: break-word;
    position: relative;
}

.bot-message .message-bubble {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    color: #374151;
    border-bottom-left-radius: 6px;
}

.user-message .message-bubble {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-bottom-right-radius: 6px;
}

/* Evolution Level Indicator */
.evolution-level {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.level-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.level-1 {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

.level-2 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.level-3 {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.level-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: levelPulse 1.5s ease-in-out infinite;
}

.level-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
}

/* Evolution Arrow */
.evolution-arrow-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.evolution-arrow {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.arrow-line {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f59e0b, #22c55e);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.arrow-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: arrowFlow 2s ease-in-out infinite;
}

.arrow-head {
    width: 0;
    height: 0;
    border-left: 15px solid #22c55e;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    animation: arrowBounce 2s ease-in-out infinite;
}

.arrow-text {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Animations */
@keyframes iconPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

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

@keyframes levelPulse {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes arrowFlow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

/* AI Manager Introduction Section Styles */
.ai-manager-intro-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    color: #1e293b;
}

.ai-manager-intro-section .neural-background {
    display: none;
}

.ai-manager-intro-section .hero-overlay {
    display: none;
}

.ai-manager-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

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

.intro-content h2 {
    color: #1e293b;
}

.intro-solution-btn {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border: none;
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.intro-solution-btn i {
    flex-shrink: 0;
    align-self: center;
}

.intro-solution-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.6s ease;
}

.intro-solution-btn:hover::before {
    left: 100%;
}

.intro-solution-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.manager-image-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.manager-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.manager-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.manager-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.manager-placeholder img {
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.wave-hand {
    font-size: 2rem;
    animation: wave 2s ease-in-out infinite;
    display: inline-block;
    margin-top: 1rem;
}

.manager-greeting {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    color: #1e293b;
}

.manager-greeting:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 1);
}

.manager-greeting h3 {
    color: #1e293b;
}

.manager-greeting .text-muted {
    color: #64748b !important;
}

.manager-greeting .text-primary {
    color: #2563eb !important;
}

.wave-emoji {
    animation: wave 2s ease-in-out infinite;
    display: inline-block;
}

.sales-process-section {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.sales-process-section h2 {
    color: #1e293b;
}


.process-step {
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    width: 100%;
    position: relative;
    z-index: 2;
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.process-step h5 {
    color: #1e293b;
}

.process-step .text-muted {
    color: #64748b !important;
}

.step-icon {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    animation: iconPulse 2s ease-in-out infinite;
}

.process-step:hover .step-icon {
    transform: scale(1.1);
}


/* Purple color utility */
.bg-purple {
    background-color: #8b5cf6 !important;
}

.text-purple {
    color: #8b5cf6 !important;
}

.bg-purple.bg-opacity-10 {
    background-color: rgba(139, 92, 246, 0.1) !important;
}

/* Wave animation */
@keyframes wave {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

/* Responsive Design for AI Manager Introduction Section */
@media (max-width: 992px) {
    .intro-content,
    .manager-image-container,
    .manager-greeting {
        margin-bottom: 2rem;
    }
    
    .intro-content {
        text-align: center;
    }
    
    .intro-solution-btn {
        width: 100%;
        text-align: center;
    }
    
    .sales-process-section {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .intro-solution-btn {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
    }
    
    .manager-placeholder {
        height: 300px !important;
    }
    
    .process-step {
        padding: 1rem;
    }
    
    .step-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    .step-icon i {
        font-size: 1.5rem !important;
    }
    
    .sales-process-section {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .intro-solution-btn {
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
    }
    
    .manager-placeholder {
        height: 250px !important;
    }
    
    .wave-hand {
        font-size: 1.5rem;
    }
    
    .process-step {
        padding: 0.8rem;
    }
    
    .step-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .step-icon i {
        font-size: 1.25rem !important;
    }
    
    .process-step h5 {
        font-size: 1rem;
    }
    
    .process-step p {
        font-size: 0.85rem;
    }
}

/* Service Usage Section Styles */
.service-usage-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
    position: relative;
    min-height: auto;
    color: #1e293b;
}

.service-usage-section .neural-background {
    display: none;
}

.service-usage-section .hero-overlay {
    display: none;
}

.service-usage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.service-usage-section h2 {
    color: #1e293b;
}

.service-usage-section .ai-text {
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-usage-section .master-text {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-usage-section .hero-divider {
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
}

.usage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color: #1e293b;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.usage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.usage-card:hover::before {
    left: 100%;
}

.usage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 1);
}

.usage-card-special {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.usage-card-special::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.usage-card-special:hover {
    background: linear-gradient(135deg, #1d4ed8, #6d28d9);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
}

.usage-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
    position: relative;
}

.usage-card-special .usage-number {
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.usage-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #1e293b;
    flex-grow: 1;
}

.usage-card-special .usage-title {
    color: white;
}

.usage-icon {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
}

.usage-card-special .usage-icon {
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    color: #2563eb;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.usage-card:hover .usage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
}

.usage-card-special:hover .usage-icon {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Subtle Floating Geometric Shapes */
.subtle-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.subtle-shape {
    position: absolute;
    opacity: 0.25;
    animation: subtleFloat 12s ease-in-out infinite;
}

.subtle-triangle {
    top: 15%;
    left: 8%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid #60a5fa;
    animation-delay: 0s;
}

.subtle-circle {
    top: 70%;
    right: 12%;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #a855f7, #ec4899);
    border-radius: 50%;
    animation-delay: 4s;
}

.subtle-square {
    top: 45%;
    left: 3%;
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #10b981, #06b6d4);
    transform: rotate(45deg);
    animation-delay: 8s;
}

.subtle-hexagon {
    top: 25%;
    right: 5%;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #f59e0b, #ef4444);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation-delay: 2s;
}

.subtle-diamond {
    top: 60%;
    left: 85%;
    width: 22px;
    height: 22px;
    background: linear-gradient(45deg, #8b5cf6, #06b6d4);
    transform: rotate(45deg);
    animation-delay: 6s;
}

.subtle-circle-small {
    top: 80%;
    left: 15%;
    width: 18px;
    height: 18px;
    background: linear-gradient(45deg, #ec4899, #f97316);
    border-radius: 50%;
    animation-delay: 10s;
}

.subtle-triangle-small {
    top: 35%;
    right: 25%;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid #22c55e;
    animation-delay: 3s;
}

/* Subtle Float Animation */
@keyframes subtleFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.25;
    }
    25% { 
        transform: translateY(-15px) rotate(90deg);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-8px) rotate(180deg);
        opacity: 0.35;
    }
    75% { 
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.45;
    }
}

/* Responsive Design for Service Usage Section */
@media (max-width: 992px) {
    .usage-card {
        margin-bottom: 2rem;
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .usage-card {
        padding: 1.5rem;
        min-height: 220px;
    }
    
    .usage-number {
        font-size: 2.5rem;
    }
    
    .usage-title {
        font-size: 1rem;
    }
    
    .usage-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    /* Responsive Subtle Shapes */
    .subtle-triangle {
        border-left-width: 15px;
        border-right-width: 15px;
        border-bottom-width: 25px;
    }
    
    .subtle-circle {
        width: 30px;
        height: 30px;
    }
    
    .subtle-square,
    .subtle-diamond {
        width: 20px;
        height: 20px;
    }
    
    .subtle-hexagon {
        width: 25px;
        height: 25px;
    }
    
    .subtle-circle-small {
        width: 15px;
        height: 15px;
    }
    
    .subtle-triangle-small {
        border-left-width: 10px;
        border-right-width: 10px;
        border-bottom-width: 15px;
    }
}

@media (max-width: 576px) {
    .usage-card {
        padding: 1.25rem;
        min-height: 200px;
    }
    
    .usage-number {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .usage-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .usage-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        bottom: 0.75rem;
        right: 0.75rem;
    }
    
    /* Smaller Subtle Shapes for Mobile */
    .subtle-triangle {
        border-left-width: 12px;
        border-right-width: 12px;
        border-bottom-width: 20px;
    }
    
    .subtle-circle {
        width: 25px;
        height: 25px;
    }
    
    .subtle-square,
    .subtle-diamond {
        width: 18px;
        height: 18px;
    }
    
    .subtle-hexagon {
        width: 22px;
        height: 22px;
    }
    
    .subtle-circle-small {
        width: 12px;
        height: 12px;
    }
    
    .subtle-triangle-small {
        border-left-width: 8px;
        border-right-width: 8px;
        border-bottom-width: 12px;
    }
}

/* Integrations Section Styles */
.integrations-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
    position: relative;
    min-height: auto;
    color: #1e293b;
}

.integrations-section .neural-background {
    display: none;
}

.integrations-section .hero-overlay {
    display: none;
}

.integrations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.integrations-section h2 {
    color: #1e293b;
}

.integrations-section h3 {
    color: #1e293b;
}

.integrations-section .ai-text {
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.integrations-section .master-text {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.integrations-section .hero-divider {
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
}

/* Integration Cards */
.integration-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color: #1e293b;
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.integration-card:hover::before {
    left: 100%;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 1);
}

.integration-card-large {
    min-height: 200px;
    padding: 2rem;
    text-align: center;
}

.integration-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
}

/* Integration Icons */
.integration-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: white;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: 2px solid rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.integration-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    animation: iconPulse 2s ease-in-out infinite;
}

.integration-card:hover .integration-icon {
    transform: scale(1.1);
}

/* Specific Integration Icon Colors */
.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.telegram-icon {
    background: linear-gradient(135deg, #0088cc, #229ed9);
}

.vk-icon {
    background: linear-gradient(135deg, #4c75a3, #5181b8);
}

.instagram-icon {
    background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
}

.viber-icon {
    background: linear-gradient(135deg, #665cac, #7c4dff);
}

.email-icon {
    background: linear-gradient(135deg, #ea4335, #fbbc05);
}

.bitrix-icon {
    background: linear-gradient(135deg, #00aeef, #0078d4);
}

.bitrix-icon img {
    background: white;

}

.amocrm-icon {
    background: linear-gradient(135deg, #339af0, #228be6);
}

.amocrm-icon img {
    background: white;

}

.retailcrm-icon {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.retailcrm-icon img {
    background: white;
}

.custom-icon {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.website-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.shopify-icon {
    background: linear-gradient(135deg, #96bf48, #7ab55c);
}

.api-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Integration Names and Descriptions */
.integration-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.integration-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Special Integration Offer */
.integration-special-offer {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 20px;
    padding: 3rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.integration-special-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="special-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23special-grid)"/></svg>');
    pointer-events: none;
}

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

.special-offer-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    animation: specialIconPulse 2s ease-in-out infinite;
}

.integration-special-offer h3 {
    color: white;
}

.integration-special-offer .lead {
    color: rgba(255, 255, 255, 0.9);
}

.integration-special-offer .btn-light {
    background: white;
    color: #2563eb;
    border: 2px solid white;
    font-weight: 600;
}

.integration-special-offer .btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Special Icon Animation */
@keyframes specialIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

/* Responsive Design for Integrations Section */
@media (max-width: 992px) {
    .integration-card {
        margin-bottom: 1rem;
    }
    
    .integration-special-offer {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .integration-card {
        padding: 1.25rem;
        min-height: 100px;
    }
    
    .integration-card-large {
        padding: 1.5rem;
        min-height: 180px;
    }
    
    .integration-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .integration-name {
        font-size: 0.9rem;
    }
    
    .integration-description {
        font-size: 0.85rem;
    }
    
    .integration-special-offer {
        padding: 2rem 1rem;
    }
    
    .special-offer-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .integration-card {
        padding: 1rem;
        min-height: 90px;
    }
    
    .integration-card-large {
        padding: 1.25rem;
        min-height: 160px;
    }
    
    .integration-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .integration-name {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .integration-description {
        font-size: 0.8rem;
    }
    
    .integration-special-offer {
        padding: 1.5rem 0.75rem;
    }
    
    .special-offer-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .integration-special-offer h3 {
        font-size: 1.5rem;
    }
    
    .integration-special-offer .lead {
        font-size: 1rem;
    }
}

/* Comparison Section Styles */
.comparison-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 25%, #f1f5f9 50%, #e2e8f0 75%, #f8fafc 100%);
    position: relative;
    min-height: auto;
    color: #1e293b;
}

.comparison-section .neural-background {
    display: none;
}

.comparison-section .hero-overlay {
    display: none;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.comparison-section h2 {
    color: #1e293b;
}

.comparison-section .ai-text {
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-section .master-text {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-section .hero-divider {
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
}

/* Comparison Cards */
.comparison-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.comparison-card:hover::before {
    left: 100%;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 1);
}

/* Comparison Sides */
.comparison-advantage {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(16, 185, 129, 0.08));
    border-right: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.comparison-advantage::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #22c55e, #10b981);
    border-radius: 0 20px 20px 0;
}

.comparison-disadvantage {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(220, 38, 38, 0.08));
    position: relative;
}

.comparison-disadvantage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #ef4444, #dc2626);
    border-radius: 20px 0 0 20px;
}

/* Comparison Content */
.comparison-content {
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.comparison-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.comparison-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    animation: iconPulse 2s ease-in-out infinite;
}

.advantage-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.disadvantage-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

.comparison-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #1e293b;
}

.comparison-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 1.5rem;
}

/* Comparison Features */
.comparison-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    padding: 0.5rem 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.5);
    padding-left: 0.5rem;
}

.feature-item i {
    flex-shrink: 0;
    font-size: 1rem;
}

/* Comparison Summary */
.comparison-summary {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 20px;
    padding: 3rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.comparison-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="summary-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23summary-grid)"/></svg>');
    pointer-events: none;
}

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

.summary-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    animation: summaryIconPulse 2s ease-in-out infinite;
}

.summary-stat {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.summary-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.summary-stat .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.summary-stat .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Summary Icon Animation */
@keyframes summaryIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    position: relative;
    min-height: auto;
    color: white;
}

.cta-section .neural-background {
    display: none;
}

.cta-section .hero-overlay {
    display: none;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-grid)"/></svg>');
    pointer-events: none;
}

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

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: white;
    animation: ctaIconPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.cta-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    animation: ctaIconRipple 2s ease-in-out infinite;
}

.cta-title {
    color: white;
}

.cta-title .ai-text {
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-title .master-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-description strong {
    color: white;
    font-weight: 700;
}

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

.guarantee-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guarantee-badge::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;
}

.guarantee-badge:hover::before {
    left: 100%;
}

.guarantee-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.guarantee-badge i {
    font-size: 1.25rem;
    animation: giftBounce 2s ease-in-out infinite;
}

.cta-button {
    background: rgba(255, 255, 255, 0.95);
    color: #2563eb;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.cta-button:hover {
    background: white;
    color: #1d4ed8;
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-button .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Animations */
@keyframes ctaIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
    }
}

@keyframes ctaIconRipple {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

@keyframes giftBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Responsive Design for CTA Section */
@media (max-width: 992px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .guarantee-badge {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .guarantee-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .guarantee-badge i {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 2.5rem 0;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        max-width: 100% !important;
    }
    
    .guarantee-badge {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }
    
    .guarantee-badge i {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .hero-divider {
        width: 80px;
        margin-bottom: 2rem !important;
    }
}

/* Responsive Design for Comparison Section */
@media (max-width: 992px) {
    .comparison-content {
        padding: 2rem 1.5rem;
    }
    
    .comparison-summary {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .comparison-advantage,
    .comparison-disadvantage {
        border-right: none;
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    }
    
    .comparison-advantage::before {
        width: 100%;
        height: 3px;
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 0 0 20px 20px;
    }
    
    .comparison-disadvantage::before {
        width: 100%;
        height: 3px;
        top: 0;
        left: 0;
        border-radius: 20px 20px 0 0;
    }
    
    .comparison-content {
        padding: 1.5rem;
    }
    
    .comparison-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }
    
    .comparison-title {
        font-size: 1.1rem;
    }
    
    .comparison-description {
        font-size: 0.9rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
    }
    
    .comparison-summary {
        padding: 2rem 1rem;
    }
    
    .summary-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .summary-stat {
        padding: 1.25rem 0.75rem;
    }
    
    .summary-stat .stat-number {
        font-size: 1.75rem;
    }
    
    .summary-stat .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .comparison-content {
        padding: 1.25rem;
    }
    
    .comparison-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .comparison-icon {
        margin-right: 0;
        margin-bottom: 0.75rem;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .comparison-title {
        font-size: 1rem;
    }
    
    .comparison-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
    
    .comparison-summary {
        padding: 1.5rem 0.75rem;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .summary-stat {
        padding: 1rem 0.5rem;
    }
    
    .summary-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .summary-stat .stat-label {
        font-size: 0.75rem;
    }
    
    .comparison-summary h3 {
        font-size: 1.5rem;
    }
}

/* Responsive Design for Evolution Section */
@media (max-width: 992px) {
    .evolution-card {
        margin-bottom: 2rem;
    }
    
    .arrow-line {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .evolution-card {
        padding: 1.5rem;
    }
    
    .evolution-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .evolution-title {
        font-size: 1.25rem;
    }
    
    .phone-mockup {
        padding: 15px 10px;
    }
    
    .phone-screen {
        padding: 0.75rem;
    }
    
    .message-bubble {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
    
    .arrow-line {
        width: 100px;
    }
    
    .arrow-text {
        font-size: 0.75rem;
        top: -25px;
    }
}

@media (max-width: 576px) {
    .evolution-card {
        padding: 1rem;
    }
    
    .evolution-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .evolution-title {
        font-size: 1.1rem;
    }
    
    .evolution-subtitle {
        font-size: 0.9rem;
    }
    
    .message-bubble {
        font-size: 0.75rem;
        padding: 0.5rem 0.7rem;
    }
    
    .arrow-line {
        width: 80px;
    }
    
    .level-text {
        font-size: 0.75rem;
    }
}

/* Pricing Section Styles */
.pricing-section {
    background: linear-gradient(135f, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
    position: relative;
    min-height: auto;
    color: #1e293b;
}

.pricing-section .neural-background {
    display: none;
}

.pricing-section .hero-overlay {
    display: none;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.pricing-section h2 {
    color: #1e293b;
}

.pricing-section .ai-text {
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-section .master-text {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-section .hero-divider {
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
}

/* Pricing Toggle */
.pricing-toggle {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 0.5rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.pricing-period-btn {
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-period-btn.active {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.pricing-period-btn:hover:not(.active) {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.discount-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    animation: discountPulse 2s ease-in-out infinite;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color: #1e293b;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 1);
}

/* Popular Card */
.pricing-card-popular {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.08));
    border: 2px solid rgba(37, 99, 235, 0.3);
    transform: scale(1.05);
}

.pricing-card-popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    animation: popularBadgePulse 2s ease-in-out infinite;
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0;
}

/* Pricing Stats */
.pricing-stats {
    margin-bottom: 2rem;
}

.pricing-stats .stat-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    font-size: 1rem;
    color: #475569;
}

.pricing-stats .stat-item:last-child {
    border-bottom: none;
}

.pricing-stats .stat-item strong {
    color: #1e293b;
    font-weight: 700;
}

/* Pricing Features */
.pricing-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.pricing-features .feature-item:hover {
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.pricing-features .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.pricing-features .feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    animation: iconPulse 2s ease-in-out infinite;
}

.feature-number {
    font-weight: 900;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brain-icon {
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: white;
}

.search-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
}

.integration-icon {
    color: white;
}

.manager-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.feature-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.feature-info {
    color: #94a3b8;
    font-size: 0.875rem;
    cursor: help;
    transition: color 0.3s ease;
}

.feature-info:hover {
    color: #2563eb;
}

/* Special Feature */
.pricing-special-feature {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.15));
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.special-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #92400e;
    font-weight: 500;
    line-height: 1.4;
}

.special-feature-item i {
    color: #f59e0b;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Pricing Footer */
.pricing-footer {
    text-align: center;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-currency {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 600;
}

.pricing-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-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.6s ease;
}

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

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-outline-primary.pricing-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

/* Animations */
@keyframes discountPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    }
}

@keyframes popularBadgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
    }
}

/* Manager Comparison Section Styles */
.manager-comparison-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 25%, #f1f5f9 50%, #e2e8f0 75%, #f8fafc 100%);
    position: relative;
    min-height: auto;
    color: #1e293b;
}

.manager-comparison-section .neural-background {
    display: none;
}

.manager-comparison-section .hero-overlay {
    display: none;
}

.manager-comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.manager-comparison-section h2 {
    color: #1e293b;
}

.manager-comparison-section .ai-text {
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.manager-comparison-section .master-text {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.manager-comparison-section .hero-divider {
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
}

/* Manager Comparison Table */
.manager-comparison-table {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
}

/* Header Row */
.comparison-header-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    position: relative;
    overflow: hidden;
}

.comparison-header-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="header-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23header-grid)"/></svg>');
    pointer-events: none;
}

.comparison-header-cell {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-header-cell:last-child {
    border-right: none;
}

.comparison-title-cell {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
}

.comparison-title-cell .comparison-main-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: left;
    width: 100%;
}

.comparison-main-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.header-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.header-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    animation: iconPulse 2s ease-in-out infinite;
}

.manager-icon-header {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

.ai-icon-header {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.header-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.header-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Comparison Rows */
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: rgba(59, 130, 246, 0.05);
}

.comparison-cell {
    padding: 1.5rem;
    border-right: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    align-items: center;
    min-height: 120px;
}

.comparison-cell:last-child {
    border-right: none;
}

/* Feature Cell */
.feature-cell {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(124, 58, 237, 0.08));
    border-right: 2px solid rgba(59, 130, 246, 0.3);
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    animation: iconPulse 2s ease-in-out infinite;
}

.feature-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

/* Manager Cell */
.manager-cell {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(220, 38, 38, 0.08));
    position: relative;
}

.manager-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #ef4444, #dc2626);
}

/* AI Cell */
.ai-cell {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(16, 185, 129, 0.08));
    position: relative;
}

.ai-cell::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #22c55e, #10b981);
}

/* Cell Content */
.cell-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
}

.cell-content.negative {
    color: #374151;
}

.cell-content.positive {
    color: #374151;
}

.cell-content span {
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.cell-content i {
    flex-shrink: 0;
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

/* Summary Stats */
.comparison-summary-stats {
    margin-top: 3rem;
}

.summary-stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.summary-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.summary-stat-card:hover::before {
    left: 100%;
}

.summary-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 1);
}

.summary-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.summary-stat-card .stat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    animation: iconPulse 2s ease-in-out infinite;
}

.summary-stat-card:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
}

.summary-stat-card .stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.summary-stat-card .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Manager Comparison Section */
@media (max-width: 992px) {
    .comparison-header-row,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-header-cell {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1.5rem;
    }
    
    .comparison-header-cell:last-child {
        border-bottom: none;
    }
    
    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        min-height: 100px;
        padding: 1.25rem;
    }
    
    .comparison-cell:last-child {
        border-bottom: none;
    }
    
    .feature-cell {
        border-right: none;
        border-bottom: 2px solid rgba(59, 130, 246, 0.3);
    }
    
    .manager-cell::before,
    .ai-cell::before {
        width: 100%;
        height: 3px;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
    }
    
    .comparison-main-title {
        font-size: 1.25rem;
    }
    
    .header-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .header-title {
        font-size: 1.1rem;
    }
    
    .header-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .comparison-header-cell {
        padding: 1.25rem 1rem;
    }
    
    .comparison-cell {
        padding: 1rem;
        min-height: 80px;
    }
    
    .feature-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    .cell-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .cell-content span {
        font-size: 0.9rem;
    }
    
    .cell-content i {
        align-self: center;
        margin-top: 0;
    }
    
    .comparison-main-title {
        font-size: 1.1rem;
    }
    
    .header-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .header-title {
        font-size: 1rem;
    }
    
    .header-subtitle {
        font-size: 0.8rem;
    }
    
    .summary-stat-card {
        padding: 1.5rem 1rem;
    }
    
    .summary-stat-card .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .summary-stat-card .stat-number {
        font-size: 1.75rem;
    }
    
    .summary-stat-card .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .comparison-header-cell {
        padding: 1rem 0.75rem;
    }
    
    .comparison-cell {
        padding: 0.75rem;
        min-height: 70px;
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .feature-text {
        font-size: 0.85rem;
    }
    
    .cell-content span {
        font-size: 0.85rem;
    }
    
    .comparison-main-title {
        font-size: 1rem;
    }
    
    .header-content {
        gap: 0.75rem;
    }
    
    .header-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .header-title {
        font-size: 0.95rem;
    }
    
    .header-subtitle {
        font-size: 0.75rem;
    }
    
    .summary-stat-card {
        padding: 1.25rem 0.75rem;
    }
    
    .summary-stat-card .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .summary-stat-card .stat-number {
        font-size: 1.5rem;
    }
    
    .summary-stat-card .stat-label {
        font-size: 0.75rem;
    }
}

/* Responsive Design for Pricing Section */
@media (max-width: 992px) {
    .pricing-card-popular {
        transform: none;
    }
    
    .pricing-card-popular:hover {
        transform: translateY(-10px);
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .pricing-period-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-title {
        font-size: 1.25rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .price-currency {
        font-size: 1rem;
    }
    
    .pricing-features .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .feature-text {
        font-size: 0.85rem;
    }
    
    .popular-badge {
        top: -8px;
        right: 15px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .pricing-toggle {
        padding: 0.75rem;
    }
    
    .pricing-period-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .discount-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
    
    .pricing-card {
        padding: 1.25rem;
    }
    
    .pricing-title {
        font-size: 1.1rem;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
    
    .price-currency {
        font-size: 0.9rem;
    }
    
    .pricing-stats .stat-item {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    .pricing-features .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .feature-text {
        font-size: 0.8rem;
    }
    
    .feature-info {
        font-size: 0.8rem;
    }
    
    .special-feature-item {
        font-size: 0.8rem;
    }
    
    .pricing-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .popular-badge {
        top: -6px;
        right: 10px;
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* Footer Section Styles */
.footer-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 25%, #2d1b69 50%, #1e3a8a 75%, #1e40af 100%);
    position: relative;
    color: white;
}

.footer-overlay {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(30, 58, 138, 0.6) 50%, rgba(30, 64, 175, 0.4) 100%);
    backdrop-filter: blur(1px);
}

/* Footer Brand */
.footer-brand {
    position: relative;
    z-index: 2;
}

.footer-title {
    font-size: 2rem;
    font-weight: 900;
}

.footer-title .ai-text {
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
}

.footer-title .master-text {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer Stats */
.footer-stats {
    margin-top: 1.5rem;
}

.footer-stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.footer-stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.footer-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Headings */
.footer-heading {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-subheading {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-link:hover {
    color: #60a5fa;
    text-decoration: none;
    transform: translateX(5px);
}

.footer-link i {
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

/* Footer Legal */
.footer-legal {
    position: relative;
    z-index: 2;
}

.legal-docs {
    margin-bottom: 1.5rem;
}

.company-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.company-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
}

.company-details strong {
    color: white;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Footer Social */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #60a5fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.3);
}

.footer-social-link i {
    font-size: 1.1rem;
}

/* Responsive Design for Footer */
@media (max-width: 992px) {
    .footer-title {
        font-size: 1.75rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .footer-stat-number {
        font-size: 1.25rem;
    }
    
    .footer-stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .footer-section .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .footer-stats {
        margin-top: 1rem;
    }
    
    .footer-stat-item {
        padding: 0.75rem;
    }
    
    .footer-stat-number {
        font-size: 1.1rem;
    }
    
    .footer-stat-label {
        font-size: 0.7rem;
    }
    
    .footer-heading {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 0.75rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .footer-legal {
        text-align: center;
    }
    
    .company-info {
        padding: 0.75rem;
    }
    
    .company-details p {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-social-link {
        width: 35px;
        height: 35px;
    }
    
    .footer-social-link i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 3rem 0 2rem;
    }
    
    .footer-brand .ai-brain {
        width: 50px !important;
        height: 50px !important;
    }
    
    .footer-brand .brain-core {
        width: 35px;
        height: 35px;
    }
    
    .footer-brand .brain-pulse {
        width: 45px;
        height: 45px;
    }
    
    .footer-title {
        font-size: 1.25rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-stat-item {
        padding: 0.6rem;
    }
    
    .footer-stat-number {
        font-size: 1rem;
    }
    
    .footer-stat-label {
        font-size: 0.65rem;
    }
    
    .footer-heading {
        font-size: 0.95rem;
    }
    
    .footer-subheading {
        font-size: 0.9rem;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
    
    .footer-link i {
        font-size: 0.8rem;
    }
    
    .company-info {
        padding: 0.6rem;
    }
    
    .company-details p {
        font-size: 0.75rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .footer-social-link {
        width: 32px;
        height: 32px;
    }
    
    .footer-social-link i {
        font-size: 0.9rem;
    }
}

/* Partner Landing Specific Styles */

/* Tier Cards */
.tier-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color: #1e293b;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.tier-card:hover::before {
    left: 100%;
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 1);
}

.tier-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(100, 116, 139, 0.3);
}

.tier-badge-special {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    animation: tierBadgePulse 2s ease-in-out infinite;
}

.tier-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tier-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    animation: iconPulse 2s ease-in-out infinite;
}

.tier-card:hover .tier-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
}

.tier-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.tier-commission {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.tier-commission-special {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-requirements {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.requirement-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.requirement-item i {
    flex-shrink: 0;
    font-size: 1rem;
}

/* Leader Bonus Section */
.leader-bonus-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.bonus-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.bonus-card:hover::before {
    left: 100%;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.bonus-card-special {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.15));
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.bonus-card-special:hover {
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3);
}

.bonus-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
}

.bonus-card:hover .bonus-icon {
    transform: scale(1.1);
}

.bonus-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* Gamification Content */
.gamification-content {
    padding: 1rem 0;
}

.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.achievement-item i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.achievement-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

/* Leaderboard */
.leaderboard {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.leaderboard-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.leader-position {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.leader-gold .leader-position {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.leader-silver .leader-position {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.leader-bronze .leader-position {
    background: linear-gradient(135deg, #d97706, #b45309);
}

.leader-info {
    flex-grow: 1;
}

.leader-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.leader-prize {
    font-size: 0.8rem;
    color: #64748b;
}

.leaderboard-item i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* VIP Events */
.vip-events {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.event-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.event-item i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.event-info {
    flex-grow: 1;
}

.event-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.event-desc {
    font-size: 0.8rem;
    color: #64748b;
}

/* Calculator Card */
.calculator-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.calculator-card:hover::before {
    left: 100%;
}

.calculator-header h3 {
    color: #1e293b;
}

.calculator-form .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.range-value {
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #2563eb;
}

.form-range::-webkit-slider-thumb {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.form-range::-moz-range-thumb {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

/* Result Cards */
.result-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.result-card:hover::before {
    left: 100%;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.result-card-total {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.15));
    border: 2px solid rgba(37, 99, 235, 0.3);
}

.result-card-total:hover {
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.result-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
}

.result-card:hover .result-icon {
    transform: scale(1.1);
}

.result-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.result-period {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Projection Card */
.projection-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.08));
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    margin-top: 1rem;
}

.projection-card h4 {
    color: #1e293b;
}

.projection-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.projection-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
}

.projection-value {
    font-size: 1.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
@keyframes tierBadgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
    }
}

/* Chart Cards */
.chart-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.chart-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.chart-container {
    position: relative;
    height: 300px;
    margin-top: 1rem;
}

/* Income Breakdown */
.breakdown-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.breakdown-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.breakdown-chart-container {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breakdown-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    height: 300px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.breakdown-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.breakdown-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.breakdown-info {
    flex-grow: 1;
}

.breakdown-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.breakdown-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.breakdown-percentage {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Analytics Block */
.analytics-block {
    margin-top: 2rem;
}

.analytics-section {
    padding: 1rem 0;
}

.analytics-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.analytics-main-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.passive-income-values {
    text-align: center;
}

.passive-value-item {
    margin-bottom: 1rem;
}

.passive-value {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.passive-value-monthly {
    font-size: 1.5rem;
    font-weight: 700;
    color: #64748b;
    line-height: 1;
}

.chart-section {
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    padding-top: 2rem;
}

.chart-section h5 {
    color: #1e293b;
    font-weight: 700;
}

/* Responsive Design for Partner Landing */
@media (max-width: 992px) {
    .tier-card {
        margin-bottom: 2rem;
    }
    
    .calculator-card {
        padding: 2rem;
    }
    
    .breakdown-details {
        height: auto;
        margin-top: 1rem;
    }
    
    .breakdown-chart-container {
        height: 250px;
    }
    
    .chart-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .tier-card {
        padding: 1.5rem;
    }
    
    .tier-commission {
        font-size: 2rem;
    }
    
    .tier-title {
        font-size: 1.25rem;
    }
    
    .tier-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .bonus-card {
        padding: 1.25rem;
    }
    
    .bonus-amount {
        font-size: 1.25rem;
    }
    
    .calculator-card {
        padding: 1.5rem;
    }
    
    .result-value {
        font-size: 1.5rem;
    }
    
    .projection-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .tier-card {
        padding: 1.25rem;
    }
    
    .tier-commission {
        font-size: 1.75rem;
    }
    
    .tier-title {
        font-size: 1.1rem;
    }
    
    .tier-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .bonus-card {
        padding: 1rem;
    }
    
    .bonus-amount {
        font-size: 1.1rem;
    }
    
    .calculator-card {
        padding: 1.25rem;
    }
    
    .result-card {
        padding: 1.25rem;
    }
    
    .result-value {
        font-size: 1.25rem;
    }
    
    .result-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .projection-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .projection-value {
        font-size: 1rem;
    }
}

/* New Integration Block Styles */
.integration-offer-premium {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.08));
    border-radius: 25px;
    padding: 2rem;
    border: 2px solid rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.integration-offer-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.25);
    border-color: rgba(37, 99, 235, 0.4);
}

/* Background Elements */
.integration-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-element {
    position: absolute;
    opacity: 0.15;
    animation: integrationFloat 8s ease-in-out infinite;
}

.bg-element-1 {
    top: 10%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #60a5fa, #a855f7);
    border-radius: 50%;
    animation-delay: 0s;
}

.bg-element-2 {
    top: 60%;
    right: 8%;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #a855f7, #ec4899);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation-delay: 2s;
}

.bg-element-3 {
    bottom: 15%;
    left: 15%;
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #10b981, #06b6d4);
    transform: rotate(45deg);
    animation-delay: 4s;
}

/* Integration Icon Large */
.integration-icon-large {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
    transition: all 0.4s ease;
}

.icon-wrapper:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.4);
}

.icon-wrapper i {
    font-size: 3rem;
    color: white;
    z-index: 2;
    position: relative;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 3px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    animation: integrationPulse 2s ease-in-out infinite;
}

/* Integration Title */
.integration-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, #2563eb, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

.integration-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
    text-align: center;
}

/* Integration Features */
.integration-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 198px;
}

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

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

.integration-feature:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    animation: iconPulse 2s ease-in-out infinite;
}

.integration-feature:hover .feature-icon-small {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
}

.feature-text {
    flex-grow: 1;
}

.feature-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.feature-text small {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #64748b;
}

/* Integration CTA */
.integration-cta {
    position: relative;
    z-index: 2;
}

.integration-note {
    font-size: 0.95rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.integration-btn {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border: none;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.integration-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #6d28d9);
}

.integration-btn .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animations */
@keyframes integrationFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.15;
    }
    25% {
        transform: translateY(-15px) rotate(90deg);
        opacity: 0.25;
    }
    50% {
        transform: translateY(-8px) rotate(180deg);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.3;
    }
}

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

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

/* Responsive Design for Integration Block */
@media (max-width: 992px) {
    .integration-offer-premium {
        padding: 1.5rem;
        min-height: 350px;
    }
    
    .integration-feature {
        padding: 1.5rem;
        min-height: 350px;
    }
    
    .icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .icon-wrapper i {
        font-size: 2.5rem;
    }
    
    .icon-pulse {
        width: 120px;
        height: 120px;
    }
    
    .integration-title {
        font-size: 1.75rem;
    }
    
    .integration-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .integration-offer-premium {
        padding: 1.25rem;
        min-height: 300px;
    }
    
    .integration-feature {
        padding: 1.25rem;
        min-height: 300px;
    }
    
    .icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .icon-wrapper i {
        font-size: 2rem;
    }
    
    .icon-pulse {
        width: 100px;
        height: 100px;
    }
    
    .integration-title {
        font-size: 1.5rem;
    }
    
    .integration-subtitle {
        font-size: 0.95rem;
    }
    
    .feature-icon-small {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-text strong {
        font-size: 0.9rem;
    }
    
    .feature-text small {
        font-size: 0.85rem;
    }
    
    .integration-note {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    .integration-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .integration-offer-premium {
        padding: 1rem;
        min-height: 250px;
    }
    
    .integration-feature {
        padding: 1rem;
        min-height: 250px;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 1.75rem;
    }
    
    .icon-pulse {
        width: 90px;
        height: 90px;
    }
    
    .integration-title {
        font-size: 1.25rem;
    }
    
    .integration-subtitle {
        font-size: 0.9rem;
    }
    
    .feature-icon-small {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        align-self: center;
    }
    
    .feature-text strong {
        font-size: 0.85rem;
    }
    
    .feature-text small {
        font-size: 0.8rem;
    }
    
    .integration-note {
        font-size: 0.85rem;
        padding: 0.5rem 0.6rem;
        text-align: center;
    }
    
    .integration-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 350px;
    }
    
    .bg-element-1 {
        width: 40px;
        height: 40px;
    }
    
    .bg-element-2 {
        width: 30px;
        height: 30px;
    }
    
    .bg-element-3 {
        width: 25px;
        height: 25px;
    }
}

/* Qualification Section Styles */
.qualification-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.qualification-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.qualification-section:hover::before {
    left: 100%;
}

/* Qualification Infographic */
.qualification-infographic {
    margin-top: 2rem;
}

.infographic-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(124, 58, 237, 0.08));
    border-radius: 20px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.infographic-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="qualification-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(59,130,246,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23qualification-grid)"/></svg>');
    pointer-events: none;
}

/* Central Element */
.infographic-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    border: 3px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    position: relative;
    z-index: 2;
    min-width: 200px;
    transition: all 0.3s ease;
}

.infographic-center:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.center-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
    position: relative;
    overflow: hidden;
    animation: centerIconPulse 2s ease-in-out infinite;
}

.center-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    animation: iconPulse 2s ease-in-out infinite;
}

.center-text {
    color: #1e293b;
}

.center-title {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.center-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
}

/* Arrow */
.infographic-arrow {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.arrow-line {
    width: 100px;
    margin-top: 0.5rem;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #a855f7, #ec4899);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.arrow-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: arrowFlow 2s ease-in-out infinite;
}

.arrow-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 0.5rem;
    white-space: nowrap;
    display: inline-block;
    min-width: max-content;
}

.arrow-head {
    width: 0;
    height: 0;
    border-left: 15px solid #ec4899;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    animation: arrowBounce 2s ease-in-out infinite;
}

/* Conditions Block */
.infographic-conditions {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    border: 3px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
    position: relative;
    z-index: 2;
    min-width: 300px;
    transition: all 0.3s ease;
}

.infographic-conditions:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.3);
}

.conditions-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1.5rem;
}

.conditions-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.condition-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

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

.condition-option:hover::before {
    left: 100%;
}

.condition-option:hover {
    transform: translateX(5px);
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.2);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.condition-option:hover .option-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.option-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    position: relative;
    z-index: 2;
}

.condition-divider {
    font-size: 0.9rem;
    font-weight: 700;
    color: #64748b;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid rgba(226, 232, 240, 0.8);
    position: relative;
    z-index: 2;
}

/* Qualification Note */
.qualification-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.15));
    border-radius: 15px;
    border: 2px solid rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

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

.qualification-note:hover::before {
    left: 100%;
}

.note-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
    position: relative;
    z-index: 2;
}

.note-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #92400e;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.note-text strong {
    color: #78350f;
    font-weight: 700;
}

/* Animations */
@keyframes centerIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(96, 165, 250, 0.6);
    }
}

@keyframes arrowFlow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

/* Responsive Design for Qualification Section */
@media (max-width: 992px) {
    .infographic-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .arrow-line {
        width: 80px;
        transform: rotate(90deg);
    }
    
    .infographic-center,
    .infographic-conditions {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .qualification-section {
        padding: 1.5rem;
    }
    
    .infographic-container {
        padding: 1.25rem;
        gap: 1.25rem;
    }
    
    .infographic-center {
        padding: 1.5rem;
    }
    
    .center-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .center-title {
        font-size: 1.5rem;
    }
    
    .center-subtitle {
        font-size: 0.9rem;
    }
    
    .infographic-conditions {
        padding: 1.5rem;
        min-width: auto;
    }
    
    .condition-option {
        min-width: auto;
        padding: 0.875rem;
    }
    
    .option-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .option-text {
        font-size: 0.9rem;
    }
    
    .conditions-title {
        font-size: 1rem;
    }
    
    .qualification-note {
        padding: 1.25rem;
    }
    
    .note-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .note-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .qualification-section {
        padding: 1.25rem;
    }
    
    .infographic-container {
        padding: 1rem;
        gap: 1rem;
    }
    
    .infographic-center {
        padding: 1.25rem;
    }
    
    .center-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .center-title {
        font-size: 1.25rem;
    }
    
    .center-subtitle {
        font-size: 0.85rem;
    }
    
    .arrow-line {
        width: 60px;
        height: 3px;
    }
    
    .arrow-text {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }
    
    .infographic-conditions {
        padding: 1.25rem;
    }
    
    .conditions-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .condition-option {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .option-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .option-text {
        font-size: 0.85rem;
    }
    
    .condition-divider {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .qualification-note {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .note-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        align-self: center;
    }
    
    .note-text {
        font-size: 0.85rem;
        text-align: center;
    }
}

/* Hide arrow elements on mobile devices */
@media (max-width: 768px) {
    .arrow-line,
    .arrow-head {
        display: none !important;
    }
}
