/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.contact-content {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.form-group {
    position: relative;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #f8fafc;
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 1rem;
    font-size: 1rem;
    color: #1e293b;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    background: #ffffff;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

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

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: #000;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-button:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-button svg {
    transition: transform 0.3s ease;
}

.contact-button:hover svg {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 1.5rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.125rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 6rem;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 20; /* Increased from 10 */
    pointer-events: none;
    max-width: 800px;
}

.hero-title {
    font-size: 7rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    text-transform: lowercase;
}

.hero-subtitle {
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 3rem;
    line-height: 1.4;
    font-weight: 500;
}

.hero-buttons {
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 9999px;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-button-primary {
    color: white;
    background-color: #000;
}

.hero-button-primary:hover {
    background-color: #1f2937;
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-button-secondary {
    color: #000;
    background-color: white;
    border: 2px solid #000;
}

.hero-button-secondary:hover {
    background-color: #f9fafb;
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fade-in-up {
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: forwards;
    opacity: 0;
}

/* Animation Delays */
.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }
.delay-600 { animation-delay: 0.6s; }
.delay-800 { animation-delay: 0.8s; }
.delay-1000 { animation-delay: 1s; }
.delay-1200 { animation-delay: 1.2s; }

/* ========================================
   PROBLEM-SOLUTION SECTION
   ======================================== */

.problem-solution-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: #6b7280;
    margin-bottom: 5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Comparison Card */
.comparison-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.comparison-card-old {
    border: 2px solid rgba(102, 126, 234, 0.2);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, #ffffff 100%);
}

.comparison-card-new {
    border: 2px solid transparent;
    background-image: 
        linear-gradient(white, white),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.comparison-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.comparison-badge-old {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.comparison-badge-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.comparison-icon {
    font-size: 1.25rem;
}

.comparison-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

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

.comparison-list-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.comparison-list-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.comparison-list-icon-old {
    background: rgba(102, 126, 234, 0.15);
    color: #667eea;
}

.comparison-list-icon-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.comparison-list-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
}

/* Desktop Layout */
@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .section-title {
        font-size: 4.5rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animate-fade-in-up {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ========================================
   STATS BLOCK WITH CONNECTIONS (Like screenshot)
   ======================================== */

.stats-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
}

.stats-connections-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.stats-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.stats-hero-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.stats-hero-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.stats-hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 3rem;
    color: #000;
}

.stats-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.stats-hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stats-grid {
    position: relative;
    max-width: 1200px;
    height: 400px;
    margin: 0 auto;
}

.stat-item {
    position: absolute;
    text-align: left;
    max-width: 200px;
}

/* Organic positioning like in screenshot */
.stat-item[data-stat="1"] {
    top: 20%;
    left: 5%;
}

.stat-item[data-stat="2"] {
    top: 10%;
    left: 45%;
}

.stat-item[data-stat="3"] {
    bottom: 15%;
    left: 35%;
}

.stat-item[data-stat="4"] {
    top: 30%;
    right: 5%;
}

.stat-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-bottom: 1.5rem;
    box-shadow: 
        0 0 0 3px rgba(102, 126, 234, 0.1),
        0 0 20px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 2;
}

.stat-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.stat-label {
    font-size: 1.125rem;
    color: #4b5563;
    font-weight: 400;
}

/* Connecting lines */
.stat-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    transform-origin: left center;
    opacity: 0.5;
}

/* ========================================
   USP SECTION - VARIANT A: MINIMALIST CARDS
   ======================================== */

.usp-variant-a {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.usp-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.usp-title {
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #000;
}

.usp-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    max-width: 1400px;
    margin: 0 auto;
}

.usp-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s;
}

.usp-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.usp-card-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.usp-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.usp-card-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* ========================================
   USP SECTION - REDESIGNED
   ======================================== */

.usp-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.usp-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.usp-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.usp-header-block {
    text-align: center;
    margin-bottom: 6rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.usp-main-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
    margin: 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.usp-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.usp-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.3);
}

.usp-item-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-bottom: 1rem;
    box-shadow: 
        0 0 0 6px rgba(102, 126, 234, 0.15),
        0 0 30px rgba(102, 126, 234, 0.6),
        0 0 60px rgba(118, 75, 162, 0.3);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 0 6px rgba(102, 126, 234, 0.15),
            0 0 30px rgba(102, 126, 234, 0.6),
            0 0 60px rgba(118, 75, 162, 0.3);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 
            0 0 0 8px rgba(102, 126, 234, 0.2),
            0 0 40px rgba(102, 126, 234, 0.8),
            0 0 80px rgba(118, 75, 162, 0.5);
    }
}

.usp-item-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.usp-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.usp-item-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* ========================================
   USP SECTION - VARIANT C: LARGE BLOCKS
   ======================================== */

.usp-variant-c {
    padding: 0;
    background: #ffffff;
}

.usp-large-block {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    position: relative;
}

.usp-large-block:nth-child(odd) {
    background: #ffffff;
}

.usp-large-block:nth-child(even) {
    background: #f8fafc;
}

.usp-large-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.usp-large-number {
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
}

.usp-large-text {
    position: relative;
}

.usp-large-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.usp-large-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
}

/* ========================================
   PROCESS SECTION - NEURAL PATH
   ======================================== */

.process-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.process-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.process-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 3;
}

.process-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 1.5rem;
}

.process-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-steps-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.process-step-item {
    display: flex;
    margin-bottom: 8rem;
    position: relative;
    width: 100%;
}

.process-step-item.left {
    justify-content: flex-start;
}

.process-step-item.right {
    justify-content: flex-end;
}

.process-step-card {
    width: 45%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.process-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.3);
}

.process-step-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
    opacity: 0.2;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}

.process-step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.process-step-text {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .process-section {
        padding: 4rem 1rem;
    }

    .process-main-title {
        font-size: 2rem;
    }

    .process-step-item {
        justify-content: center !important;
        margin-bottom: 4rem;
    }

    .process-step-card {
        width: 100%;
        max-width: 100%;
    }
}

/* ========================================
   SERVICES SECTION - SPOTLIGHT
   ======================================== */

.services-section {
    padding: 8rem 2rem;
    background-color: #f8fafc;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 24px 24px;
    position: relative;
}

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

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 1.5rem;
}

.services-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card {
    background: #ffffff;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.5rem;
    padding: 2px;
    background: radial-gradient(
        800px circle at var(--mouse-x) var(--mouse-y),
        rgba(102, 126, 234, 0.4),
        transparent 40%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

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

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

.service-card-content {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 1.4rem; /* Slightly smaller than card radius */
}

/* Inner spotlight effect */
.service-card-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x) var(--mouse-y),
        rgba(102, 126, 234, 0.05),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: -1;
}

.service-card:hover .service-card-content::after {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

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

.service-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-link {
    font-weight: 600;
    color: #667eea;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s;
}

.service-link:hover {
    transform: translateX(5px);
    color: #764ba2;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 1rem;
    }

    .services-main-title {
        font-size: 2rem;
    }

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

    .service-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    /* USP Section - Mobile */
    .usp-section {
        padding: 4rem 1rem;
        min-height: auto;
    }
    
    .usp-header-block {
        margin-bottom: 3rem;
        padding: 2rem 1.5rem;
    }
    
    .usp-main-title {
        font-size: 2rem;
    }
    
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .usp-item {
        padding: 2rem 1.5rem;
    }
    
    .usp-item-number {
        font-size: 1.5rem;
    }
    
    .usp-item-title {
        font-size: 1.25rem;
    }
    
    .usp-canvas {
        opacity: 0.5;
    }
    
    /* Process Section - Mobile */
    .process-section {
        padding: 4rem 1rem;
    }
    
    .process-main-title {
        font-size: 2rem;
    }
    
    .process-subtitle {
        font-size: 1rem;
    }
    
    .process-timeline {
        padding-left: 60px;
    }
    
    .process-line {
        left: 20px;
    }
    
    .process-step {
        margin-bottom: 3rem;
    }
    
    .process-step-number {
        left: -60px;
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
        box-shadow: 
            0 0 0 6px rgba(102, 126, 234, 0.1),
            0 8px 20px rgba(102, 126, 234, 0.3);
    }
    
    .process-step-content {
        padding: 1.5rem;
    }
    
    .process-step-title {
        font-size: 1.25rem;
    }
    
    .process-step-text {
        font-size: 1rem;
    }
    
    .process-cta {
        padding: 3rem 1.5rem;
    }
    
    .process-cta-title {
        font-size: 1.75rem;
    }
    
    .process-cta-text {
        font-size: 1rem;
    }
}

/* ========================================
   OLD VARIANTS (keep for reference)
   ======================================== */

.variant-1 {
    padding: 0;
    background: #ffffff;
    display: none;
}

.giant-block {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.giant-block-before {
    background: #ffffff;
}

.giant-block-after {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.giant-block-content {
    position: relative;
    z-index: 10;
}

.giant-block-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.giant-block-title {
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.giant-block-description {
    font-size: 2rem;
    color: #4b5563;
    margin-bottom: 4rem;
    max-width: 700px;
    line-height: 1.4;
    font-weight: 400;
}

.giant-block-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 600px;
}

.giant-block-feature {
    font-size: 1.5rem;
    color: #000;
    font-weight: 600;
    padding-left: 2rem;
    position: relative;
}

.giant-block-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Background particles canvas for giant blocks */
.giant-block-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

/* ========================================
   VARIANT 2: SPLIT SCREEN
   ======================================== */

.variant-2 {
    padding: 0;
    background: #ffffff;
    min-height: 100vh;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.split-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 3rem;
    overflow: hidden;
}

.split-side-before {
    background: #ffffff;
    border-right: 2px solid rgba(102, 126, 234, 0.1);
}

.split-side-after {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
}

.split-content {
    position: relative;
    z-index: 10;
    max-width: 500px;
    text-align: center;
}

.split-label {
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.split-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.split-description {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.split-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.split-feature {
    font-size: 1.125rem;
    color: #000;
    font-weight: 600;
    padding-left: 2rem;
    position: relative;
}

.split-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.split-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .hero-section {
        padding-top: 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .comparison-card {
        padding: 2rem;
    }
    
    .comparison-title {
        font-size: 1.5rem;
    }
    
    .problem-solution-section {
        padding: 4rem 0;
    }
    
    /* Stats Hero Mobile */
    .stats-hero-section {
        padding: 4rem 1.5rem;
        min-height: auto;
    }
    
    .stats-hero-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .stats-grid {
        position: static;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    
    .stat-item {
        position: static !important;
        max-width: none;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stats-connections-svg {
        display: none;
    }
    
    /* Giant blocks mobile */
    .giant-block {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .giant-block-title {
        font-size: 3.5rem;
    }
    
    .giant-block-description {
        font-size: 1.25rem;
    }
    
    .giant-block-feature {
        font-size: 1.125rem;
    }
    
    /* Split screen mobile */
    .split-container {
        grid-template-columns: 1fr;
    }
    
    .split-side {
        padding: 4rem 2rem;
        min-height: 50vh;
    }
    
    .split-side-before {
        border-right: none;
        border-bottom: 2px solid rgba(102, 126, 234, 0.1);
    }
    
    .split-title {
        font-size: 3rem;
    }
    
    .split-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .giant-block-title {
        font-size: 5rem;
    }
    
    .split-title {
        font-size: 3.5rem;
    }
    
    /* Stats Hero Tablet */
    .stats-hero-title {
        font-size: 3rem;
    }
    
    .stats-grid {
        height: 350px;
    }
    
    .stat-item {
        max-width: 180px;
    }
}

/* ===================================
   BENTO GRID STYLES
   =================================== */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
    margin-top: 4rem;
}

.bento-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.bento-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-item:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.25);
}

.bento-item:hover::before {
    opacity: 1;
}

/* Bento Grid Sizes */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

/* Bento Content */
.bento-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bento-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.bento-icon svg {
    stroke: #667eea;
    transition: all 0.3s ease;
}

.bento-item:hover .bento-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    transform: scale(1.1) rotate(5deg);
}

.bento-item:hover .bento-icon svg {
    stroke: #764ba2;
}

.bento-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.bento-large .bento-title {
    font-size: 2.5rem;
}

.bento-description {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.6;
    flex-grow: 1;
}

.bento-large .bento-description {
    font-size: 1.25rem;
    line-height: 1.7;
}

.bento-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
}

.bento-tag {
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #667eea;
    transition: all 0.3s ease;
}

.bento-item:hover .bento-tag {
    background: rgba(102, 126, 234, 0.15);
    color: #764ba2;
}

/* Responsive Bento Grid */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
        gap: 1.25rem;
    }
    
    .bento-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .bento-wide {
        grid-column: span 2;
    }
    
    .bento-tall {
        grid-row: span 2;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 1rem;
    }
    
    .bento-item {
        padding: 2rem;
        min-height: 200px;
    }
    
    .bento-large,
    .bento-wide,
    .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .bento-title {
        font-size: 1.5rem;
    }
    
    .bento-large .bento-title {
        font-size: 2rem;
    }
    
    .bento-description {
        font-size: 1rem;
    }
    
    .bento-large .bento-description {
        font-size: 1.125rem;
    }
}

/* ===================================
   DARK BENTO GRID STYLES
   =================================== */

.services-section-dark {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    position: relative;
    overflow: hidden;
}

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

.gradient-text-light {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle-light {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.8;
}

.bento-grid-dark {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 1.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.bento-item-dark {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

/* Glow effect */
.bento-glow {
    position: absolute;
    inset: -2px;
    border-radius: 2rem;
    padding: 2px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5), rgba(118, 75, 162, 0.5), rgba(240, 147, 251, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bento-item-dark:hover .bento-glow {
    opacity: 1;
}

.bento-item-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(102, 126, 234, 0.15), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bento-item-dark:hover::before {
    opacity: 1;
}

.bento-item-dark:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 
        0 30px 80px rgba(102, 126, 234, 0.3),
        0 0 60px rgba(102, 126, 234, 0.2),
        inset 0 0 60px rgba(102, 126, 234, 0.1);
}

/* Bento Grid Sizes Dark */
.bento-large-dark {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide-dark {
    grid-column: span 2;
}

.bento-tall-dark {
    grid-row: span 2;
}

/* Bento Content Dark */
.bento-content-dark {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bento-icon-dark {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.bento-icon-dark svg {
    stroke: #667eea;
    transition: all 0.3s ease;
}

.bento-item-dark:hover .bento-icon-dark {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.bento-item-dark:hover .bento-icon-dark svg {
    stroke: #f093fb;
}

.bento-title-dark {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.bento-large-dark .bento-title-dark {
    font-size: 2.5rem;
}

.bento-description-dark {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    flex-grow: 1;
}

.bento-large-dark .bento-description-dark {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Stats, Metrics, Tech Stack */
.bento-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.bento-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

.bento-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.bento-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.bento-tech {
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #667eea;
    transition: all 0.3s ease;
}

.bento-item-dark:hover .bento-tech {
    background: rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.5);
    color: #f093fb;
}

.bento-metrics {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.bento-metric {
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Dark Bento Grid */
@media (max-width: 1024px) {
    .bento-grid-dark {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 260px;
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .services-section-dark {
        padding: 5rem 0;
    }
    
    .bento-grid-dark {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 1rem;
    }
    
    .bento-item-dark {
        padding: 2rem;
        min-height: 220px;
    }
    
    .bento-large-dark,
    .bento-wide-dark,
    .bento-tall-dark {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .bento-title-dark {
        font-size: 1.5rem;
    }
    
    .bento-large-dark .bento-title-dark {
        font-size: 2rem;
    }
}

/* ===================================
   TEAM SECTION (MARQUEE)
   =================================== */

.team-section {
    padding: 2rem 0 8rem; /* Reduced top padding */
    background: #f8fafc; /* Light gray background */
    position: relative;
    overflow: hidden;
}

.team-header {
    text-align: center;
    margin-bottom: 2rem; /* Reduced bottom margin */
    padding: 0 2rem;
}

.team-subtitle {
    font-size: 1.5rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===================================
   TEAM BENTO GRID
   =================================== */

.team-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.team-bento-item {
    background: #ffffff;
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
    z-index: 2;
}

/* Grid Sizes */
.team-bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.team-bento-tall {
    grid-row: span 2;
}

.team-bento-wide {
    grid-column: span 2;
}

/* Content Layout */
.team-bento-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
}

.team-bento-content.horizontal {
    flex-direction: row;
    align-items: center;
}

/* Image Wrapper */
.team-bento-image-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    flex-shrink: 0; /* Prevent shrinking */
}

.team-bento-large .team-bento-image-wrapper {
    width: 120px;
    height: 120px;
}

.team-bento-tall .team-bento-image-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

/* Info */
.team-bento-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.team-bento-tall .team-bento-info {
    text-align: center;
    margin-top: auto;
}

.team-bento-wide .team-bento-info {
    flex-grow: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
    
    .team-bento-large {
        grid-column: span 2;
    }
    
    .team-bento-tall {
        grid-row: span 2;
    }
}

@media (max-width: 640px) {
    .team-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        padding: 0 1rem;
    }
    
    .team-bento-large,
    .team-bento-tall,
    .team-bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .team-bento-item {
        min-height: 200px;
    }
    
    .team-bento-content.horizontal {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===================================
   TEAM NEURAL NETWORK
   =================================== */

.team-neural-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.team-neural-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-neural-container {
    width: 100%;
    height: 100vh; /* Full screen height */
    min-height: 800px;
    background: transparent;
    position: relative;
    overflow: visible; /* Allow content to breathe */
}

#team-neural-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .team-section {
        padding: 4rem 0;
    }
    
    .team-header {
        margin-bottom: 3rem;
    }
    
    .team-subtitle {
        font-size: 1.125rem;
    }
    
    .team-card {
        width: 280px;
        padding: 1.5rem;
    }
    
    .team-name {
        font-size: 1.5rem;
    }
    
    .team-marquee-row {
        mask-image: none;
        -webkit-mask-image: none;
    }
}




.tech-section {
    padding: 8rem 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

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

.tech-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tech-header {
    text-align: center;
    margin-bottom: 6rem;
    padding: 0 2rem;
}

.tech-subtitle {
    font-size: 1.5rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.tech-marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.tech-marquee-row {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tech-track {
    display: inline-flex;
    gap: 2rem;
    padding: 1rem 0; /* Space for shadow */
}

.tech-marquee-row.left .tech-track {
    animation: marquee-left 40s linear infinite;
}

.tech-marquee-row.right .tech-track {
    animation: marquee-right 40s linear infinite;
}

/* Pause on hover */
.tech-marquee-wrapper:hover .tech-track {
    animation-play-state: paused;
}

.tech-item {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 999px;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.tech-item:hover {
    transform: scale(1.05);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
    color: #667eea;
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .tech-section {
        padding: 4rem 0;
    }
    
    .tech-header {
        margin-bottom: 3rem;
    }
    
    .tech-subtitle {
        font-size: 1.125rem;
    }
    
    .tech-item {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }
    
    .tech-marquee-row {
        mask-image: none; /* Remove fade on mobile for better visibility */
        -webkit-mask-image: none;
    }
}


.reviews-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.section-title-hero {
    font-size: 7rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: lowercase;
    margin-bottom: 2rem;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-header {
    margin-bottom: 6rem;
    max-width: 1000px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Featured Review Card */
.review-card {
    background: #ffffff;
    border-radius: 2rem;
    padding: 4rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.1);
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.review-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.review-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.review-text {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.author-name {
    font-weight: 700;
    font-size: 1.125rem;
}

.author-role {
    color: #6b7280;
    font-size: 1rem;
}

.review-stat {
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
}

.stat-value-big {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 500;
}

/* Stats List */
.reviews-stats-wrapper {
    position: relative;
    min-height: 400px; /* Ensure height for absolute positioning */
}

.stats-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-group.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative; /* Make active one take up space */
}

.stat-row {
    background: #f8fafc;
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.stat-row:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateX(10px);
    border-color: rgba(102, 126, 234, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 1.25rem;
    color: #4b5563;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .section-title-hero {
        font-size: 5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 4rem 1rem;
    }

    .section-title-hero {
        font-size: 3.5rem;
    }
    
    .reviews-header {
        margin-bottom: 3rem;
    }
    
    .review-card {
        padding: 2rem;
    }
    
    .review-title {
        font-size: 1.75rem;
    }
    
    .stat-value-big {
        font-size: 3rem;
    }
}

/* Canvas Background */
.reviews-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: auto; /* Allow mouse interaction */
}

.reviews-container {
    position: relative;
    z-index: 1;
}

/* Slider Styles */
.reviews-slider-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reviews-slider {
    display: grid;
    grid-template-areas: "slide";
    position: relative;
}

.review-slide {
    grid-area: slide;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
}

.review-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(102, 126, 234, 0.5);
    transform: scale(1.2);
}

.slider-dot.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.4);
}

.services-grid-light {
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-light {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card-light:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-icon-wrapper svg {
    stroke: #667eea;
    transition: all 0.3s ease;
}

.service-card-light:hover .service-icon-wrapper {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    transform: scale(1.05);
}

.service-card-light:hover .service-icon-wrapper svg {
    stroke: #764ba2;
    transform: scale(1.1);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

.service-details {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.detail-item:first-child {
    font-size: 1.125rem;
    font-weight: 700;
    color: #667eea;
}

.detail-item:last-child {
    font-size: 0.875rem;
    color: #94a3b8;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.service-tag {
    padding: 0.375rem 0.875rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #667eea;
    transition: all 0.3s ease;
}

.service-card-light:hover .service-tag {
    background: rgba(102, 126, 234, 0.15);
    color: #764ba2;
}

.service-metrics {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.metric-badge {
    padding: 0.375rem 0.875rem;
    background: rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #667eea;
}

/* Responsive */
@media (max-width: 768px) {
    .service-card-light {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-icon-wrapper {
        width: 56px;
        height: 56px;
    }
    
    .service-icon-wrapper svg {
        width: 28px;
        height: 28px;
    }
}
