/* ================================
   BENDING SPOONS INSPIRED DESIGN
   ================================ */

/* GPU Acceleration for Glassmorphism Elements */
[class*="backdrop-filter"],
.newsite-header,
.hero-stat-card,
.trust-card,
.feature-card,
.solution-card,
.ai-card,
.stat-card,
.cert-badge,
.footer-bottom {
    transform: translateZ(0);
    will-change: transform;
}

/* Global Styles */
.newsite-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
}

/* Bending Spoons Color Palette */
:root {
    --primary-dark: #000000;
    --secondary-dark: #0a0a0a;
    --accent-blue: #1e40af;
    --accent-purple: #7c3aed;
    --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --surface-dark: #18181b;
    --surface-elevated: #27272a;
}

/* Header Styles - Minimal Bending Spoons Style */
.newsite-header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.newsite-header .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.newsite-header .navbar-logo {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.newsite-header .nav-link {
    font-weight: 400;
    color: var(--text-secondary) !important;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-radius: 6px;
}

.newsite-header .nav-link:hover {
    color: var(--text-primary) !important;
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section - Enhanced with Animations */
.hero-section {
    background: var(--primary-dark);
    color: var(--text-primary);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(103, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.trust-badge i {
    margin-right: 8px;
    color: var(--trust-green);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.code-animation {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tech-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.solution-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.flow-item {
    background: var(--trust-green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    flex: 1;
    text-align: center;
}

.solution-flow i {
    color: white;
    font-size: 1.2rem;
}

/* Typography - Bending Spoons Bold Style */
.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-align: center;
    white-space: nowrap;
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    font-weight: 400;
    text-align: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons - Bending Spoons Style */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    justify-content: center;
    align-items: center;
}

.hero-actions .btn {
    padding: 14px 28px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--primary-dark);
    border-color: var(--text-primary);
}

.btn-primary:hover {
    background: var(--text-secondary);
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline-light {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(236, 72, 153, 0.25));
    color: #ffffff;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #a78bfa, #f472b6, #a78bfa);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    animation: gradientRotate 3s ease infinite;
}

.btn-outline-light:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(236, 72, 153, 0.4));
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(167, 139, 250, 0.5);
}

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

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Simplified Section Styles */
.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #677eea 0%, #ea8667 100%);
    border-radius: 2px;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Dark sections with gradient transitions */
.trust-section {
    background: #000000;
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(103, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(234, 134, 103, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.services-section {
    background: #000000;
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(103, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(234, 134, 103, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.method-section,
.faq-section {
    background: #000000;
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.method-section::before,
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 40% 20%, rgba(103, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(234, 134, 103, 0.06) 0%, transparent 50%);
    pointer-events: none;
}


/* Unified White Section with Beautiful Gradient */
.unified-white-section {
    background: linear-gradient(
        180deg,
        var(--primary-dark) 0%,
        #1a1a1a 20%,
        rgba(74, 222, 128, 0.15) 40%,
        rgba(139, 92, 246, 0.15) 60%,
        #1a1a1a 80%,
        var(--primary-dark) 100%
    );
    padding: 160px 0;
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    contain: layout style paint;
    will-change: transform;
}

/* Content blocks spacing */
.content-block {
    margin-bottom: 120px;
    position: relative;
    z-index: 2;
}

.content-block:last-child {
    margin-bottom: 0;
}


/* Unified gradient overlay - simplified for performance */
.unified-white-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(79, 172, 254, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(139, 92, 246, 0.08) 0%,
            transparent 50%
        );
    pointer-events: none;
    z-index: 1;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    contain: strict;
}

/* Ensure content is above gradient overlays */
.unified-white-section .container {
    position: relative;
    z-index: 2;
}

/* Enhanced Trust Cards with Animations */
.trust-cards-container {
    position: relative;
    padding: 2rem 0;
}

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

.float-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatBackground 8s ease-in-out infinite;
}

.float-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.float-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.float-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

.float-4 {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #43e97b, #38f9d7);
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.float-5 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #fa709a, #fee140);
    top: 50%;
    left: 50%;
    animation-delay: 3s;
}

/* Enhanced Trust Cards */
.trust-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--surface-elevated);
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 2;
    transform: translateY(0);
    opacity: 1;
}

.trust-card.revealed {
    transform: translateY(0);
    opacity: 1;
}

/* Card Background Glow */
.card-background-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 20px;
    z-index: -1;
}

.trust-card:hover .card-background-glow {
    opacity: 1;
}

/* Color-coded themes */
.trust-card-expertise {
    border-color: rgba(102, 126, 234, 0.2);
}

.trust-card-expertise .card-background-glow {
    background: radial-gradient(circle at center, rgba(102, 126, 234, 0.1), transparent);
}

.trust-card-expertise .trust-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.trust-card-speed {
    border-color: rgba(245, 87, 108, 0.2);
}

.trust-card-speed .card-background-glow {
    background: radial-gradient(circle at center, rgba(245, 87, 108, 0.1), transparent);
}

.trust-card-speed .trust-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.trust-card-reliability {
    border-color: rgba(67, 233, 123, 0.2);
}

.trust-card-reliability .card-background-glow {
    background: radial-gradient(circle at center, rgba(67, 233, 123, 0.1), transparent);
}

.trust-card-reliability .trust-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

/* Enhanced Trust Icons */
.trust-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-card:hover .trust-icon {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Icon Glow Effect */
.icon-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: inherit;
    border-radius: 25px;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.trust-card:hover .icon-glow {
    opacity: 0.7;
}

/* Icon Particles */
.icon-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 3s ease-in-out infinite;
}

.trust-card:hover .particle {
    opacity: 1;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.particle:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.trust-icon i {
    font-size: 2rem;
    color: white;
    z-index: 1;
    transition: transform 0.3s ease;
}

.trust-card:hover .trust-icon i {
    transform: scale(1.2);
}

.trust-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.trust-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.trust-card:hover p {
    color: var(--text-primary);
}

.simple-explanation {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.simple-explanation h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Main Service Cards */
.main-service-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.main-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

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

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.service-header h3 {
    color: var(--professional-gray);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    color: var(--secondary-blue);
    font-size: 1.1rem;
    font-weight: 500;
}

.service-details {
    text-align: left;
    margin-bottom: 2rem;
}

.what-we-do, .how-we-help {
    margin-bottom: 2rem;
}

.what-we-do h5, .how-we-help h5 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.what-we-do ul {
    list-style: none;
    padding: 0;
}

.what-we-do li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.what-we-do li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--trust-green);
    font-weight: bold;
}

/* Tech Showcase */
.tech-showcase {
    background: var(--professional-gray);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.tech-showcase h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.tech-layers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-layer {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.layer-label {
    display: block;
    font-weight: 700;
    color: var(--trust-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tech-list {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card .btn {
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8f9fa 100%);
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-card h4 {
    color: var(--professional-gray);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-blue);
}

.final-cta h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.cta-point {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--professional-gray);
}

.cta-point i {
    font-size: 1.2rem;
}

.cta-actions {
    margin-top: 2rem;
}

.cta-actions .btn {
    margin: 0.5rem;
}

/* New Hero Visual Styles */
.development-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
}

.flow-step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--trust-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    margin: 0 auto 0.5rem;
}

.step-label {
    font-weight: 600;
    color: white;
}

.flow-arrow {
    color: white;
    font-size: 1.5rem;
    margin: 0 1rem;
}

.speed-indicator {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.speed-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.case-studies-link {
    margin-top: 2rem;
}

.case-studies-link a {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.case-studies-link a:hover {
    transform: translateX(5px);
}

/* Enhanced Solution Cards with Glassmorphism */
.solution-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transform: translateY(0);
    opacity: 1;
    display: flex;
    flex-direction: column;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(103, 126, 234, 0.6) 20%,
        rgba(234, 134, 103, 0.6) 50%,
        rgba(103, 234, 180, 0.6) 80%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.solution-card.revealed {
    transform: translateY(0);
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(103, 126, 234, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Image Section */
.solution-hero-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.solution-illustration {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease;
    z-index: 2;
    position: relative;
}

.solution-card:hover .solution-illustration {
    transform: scale(1.1) rotate(5deg);
}

/* Image Background Glow */
.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.8;
    z-index: 1;
    transition: all 0.5s ease;
}

.solution-card:hover .image-glow {
    opacity: 1;
    transform: scale(1.05);
}

/* Color-coded backgrounds for each card */
.solution-card-analytics .solution-hero-image {
    background: linear-gradient(135deg, #87CEEB, #4facfe);
}

.solution-card-analytics .analytics-glow {
    background: radial-gradient(circle at center, rgba(79, 172, 254, 0.3), transparent);
}

.solution-card-enterprise .solution-hero-image {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.solution-card-enterprise .enterprise-glow {
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.3), transparent);
}

.solution-card-startup .solution-hero-image {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.solution-card-startup .startup-glow {
    background: radial-gradient(circle at center, rgba(245, 87, 108, 0.3), transparent);
}

/* Content Section */
.solution-content {
    padding: 0 2.5rem 1rem;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.solution-content h3 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.solution-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1rem;
}

/* Solution Examples */
.solution-examples {
    margin-top: 1.5rem;
    text-align: left;
    flex: 1;
}

.solution-examples strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    display: block;
    margin-bottom: 0.8rem;
}

.solution-examples ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-examples li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.solution-examples li::before {
    content: '✨';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Solution Button */
.solution-btn {
    margin: 2rem 2.5rem 2.5rem;
    width: calc(100% - 5rem);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.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.5s;
}

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

.solution-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Card-specific button colors */
.solution-card-analytics .solution-btn {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    border: none;
}

.solution-card-enterprise .solution-btn {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: white;
    border: none;
}

.solution-card-startup .solution-btn {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .solution-hero-image {
        height: 200px;
    }

    .solution-illustration {
        width: 140px;
        height: 140px;
    }

    .solution-content {
        padding: 0 1.5rem 1rem;
    }

    .solution-btn {
        margin: 1.5rem 1.5rem 2rem;
        width: calc(100% - 3rem);
    }
}

/* Sector Cards - FAQ Style */
.sector-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    contain: layout style paint;
    will-change: transform;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(103, 126, 234, 0.6) 20%,
        rgba(234, 134, 103, 0.6) 50%,
        rgba(103, 234, 180, 0.6) 80%,
        transparent 100%);
    opacity: 0.3;
    transition: opacity 0.2s ease;
    will-change: opacity;
}

.sector-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(103, 126, 234, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

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

.sector-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    will-change: transform;
}

.sector-icon i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
    filter: drop-shadow(0 0 3px rgba(103, 126, 234, 0.5));
    will-change: transform, filter;
}

.sector-card:hover .sector-icon {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(103, 126, 234, 0.2);
}

.sector-card:hover .sector-icon i {
    color: white;
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(103, 126, 234, 0.8));
}

.sector-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}

.sector-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.sector-card:hover h5,
.sector-card:hover p {
    color: white;
}

/* Sector Examples Styling */
.sector-examples {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease;
}

.sector-card:hover .sector-examples {
    color: rgba(255, 255, 255, 0.8);
}

/* Performance optimization for sector cards */
.sector-card,
.sector-icon,
.sector-icon i {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

/* Disable scroll-reveal animations - make everything visible immediately */
.scroll-reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}

.scroll-reveal.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Case Study Cards - FAQ Style */
.case-study-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(103, 126, 234, 0.6) 20%,
        rgba(234, 134, 103, 0.6) 50%,
        rgba(103, 234, 180, 0.6) 80%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(103, 126, 234, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.case-study-card:hover::before {
    opacity: 1;
}

.case-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.case-icon i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(103, 126, 234, 0.5));
}

.case-study-card:hover .case-icon {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(103, 126, 234, 0.2);
}

.case-study-card:hover .case-icon i {
    color: white;
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(103, 126, 234, 0.8));
}

.case-study-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.case-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.case-result {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(103, 126, 234, 0.9);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.result-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    transition: color 0.3s ease;
}

.case-study-card:hover h4,
.case-study-card:hover .case-description {
    color: white;
}

.case-study-card:hover .result-number {
    color: rgba(103, 126, 234, 1);
}

.case-study-card:hover .result-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Method Timeline */
.method-timeline {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.method-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.method-step .step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: white;
    margin: 0 auto 1rem;
}

.method-step h4 {
    color: var(--professional-gray);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.method-step p {
    color: #666;
    font-size: 0.95rem;
}

.method-note {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
}

.method-note p {
    margin: 0;
    font-style: italic;
    color: var(--professional-gray);
}

/* Case Study Cards */
.case-study-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--surface-elevated);
    border-radius: 20px;
    height: 100%;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

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

.case-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.case-study-card:hover .case-icon {
    transform: translateY(-8px) scale(1.08);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.case-icon i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.case-study-card:hover .case-icon i {
    color: white;
    transform: scale(1.15);
}

.case-study-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.case-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.case-study-card:hover .case-description {
    color: var(--text-primary);
}

.case-result {
    padding-top: 1rem;
    border-top: 2px solid var(--light-gray);
}

.result-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--trust-green);
    margin-bottom: 0.5rem;
}

.result-text {
    color: #666;
    font-size: 0.9rem;
}

/* SaaS Section */
.saas-visual {
    text-align: center;
}

.saas-demo {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 3rem 2rem;
    border-radius: 20px;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.saas-demo i {
    font-size: 2rem;
}

/* Collaboration Cards - FAQ Style */
.collaboration-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.collaboration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(103, 126, 234, 0.6) 20%,
        rgba(234, 134, 103, 0.6) 50%,
        rgba(103, 234, 180, 0.6) 80%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collaboration-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(103, 126, 234, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

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

.collaboration-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.collaboration-icon i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(103, 126, 234, 0.5));
}

.collaboration-card:hover .collaboration-icon {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(103, 126, 234, 0.2);
}

.collaboration-card:hover .collaboration-icon i {
    color: white;
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(103, 126, 234, 0.8));
}

.collaboration-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.collaboration-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    transition: color 0.3s ease;
}

.collaboration-card:hover h4,
.collaboration-card:hover p {
    color: white;
}

/* Enhanced CTA Section */
.enhanced-cta-section {
    background: var(--primary-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.cta-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    contain: layout style paint;
    will-change: transform;
}

.animated-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    animation: float 20s ease-in-out infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.3), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.25), transparent);
    top: 60%;
    right: 20%;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.2), transparent);
    top: 30%;
    right: 10%;
    animation-delay: 15s;
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.gradient-text-cta {
    background: linear-gradient(135deg, #4ade80, #ec4899, #8b5cf6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease infinite;
}

.white-text {
    color: white;
}

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

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: #4ade80;
    font-size: 1.2rem;
}

/* Form Styling */
.cta-form-container {
    position: relative;
    z-index: 2;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4ade80, #ec4899, #8b5cf6, #4ade80);
    background-size: 400% 400%;
    border-radius: 26px;
    z-index: -1;
    animation: gradientFlow 6s ease infinite;
    opacity: 0.3;
}

/* Custom Alert Styling */
.custom-alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 16px;
    border: none;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: slideDown 0.4s ease-out;
}

.custom-alert.alert-success {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2), rgba(34, 197, 94, 0.15));
    border-left: 4px solid #4ade80;
    box-shadow: 0 8px 24px rgba(74, 222, 128, 0.2);
}

.custom-alert.alert-error,
.custom-alert.alert-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.15));
    border-left: 4px solid #ef4444;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.2);
}

.custom-alert .alert-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.custom-alert.alert-success .alert-icon {
    color: #4ade80;
}

.custom-alert.alert-error .alert-icon,
.custom-alert.alert-danger .alert-icon {
    color: #ef4444;
}

.custom-alert .alert-content {
    flex: 1;
    color: white;
}

.custom-alert .alert-content strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.custom-alert .alert-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

.custom-alert .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.custom-alert .btn-close:hover {
    opacity: 1;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: white !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-text-fill-color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4ade80;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
    color: white !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Override autofill styles */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus,
.form-group select:-webkit-autofill,
.form-group select:-webkit-autofill:hover,
.form-group select:-webkit-autofill:focus {
    -webkit-text-fill-color: white !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.1) inset !important;
    box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.1) inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Select dropdown options */
.form-group select option {
    background-color: #2d3748;
    color: white;
}

.btn-submit {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border: none;
    border-radius: 16px;
    padding: 1.2rem 2rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
}

.form-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.form-note a {
    color: #4ade80;
    text-decoration: none;
}

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

/* Animations */
@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    33% {
        transform: translateY(-30px) scale(1.1);
    }
    66% {
        transform: translateY(15px) scale(0.9);
    }
}

/* Header CTA Button */
.header-cta-btn {
    background: linear-gradient(135deg, #4ade80, #22c55e) !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 0.5rem 1.2rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(74, 222, 128, 0.2) !important;
}

.header-cta-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 20px rgba(74, 222, 128, 0.3) !important;
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
}

.header-cta-btn i {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2.2rem;
    }

    .cta-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .cta-form-container {
        padding: 2rem;
    }

    .cta-features {
        margin-bottom: 2rem;
    }

    .header-cta-btn {
        margin-top: 1rem !important;
        width: 100% !important;
        text-align: center !important;
    }
}

/* FAQ Section */
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(103, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(234, 134, 103, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(103, 234, 180, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 1.5rem;
    border-radius: 16px !important;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.faq-section .accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(103, 126, 234, 0.6) 20%,
        rgba(234, 134, 103, 0.6) 50%,
        rgba(103, 234, 180, 0.6) 80%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-section .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(103, 126, 234, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.faq-section .accordion-item:hover::before {
    opacity: 1;
}

.faq-section .accordion-button {
    background: transparent;
    border: none;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    padding: 1.75rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.35s ease;
    filter: drop-shadow(0 0 3px rgba(103, 126, 234, 0.5));
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg,
        rgba(103, 126, 234, 0.15) 0%,
        rgba(234, 134, 103, 0.1) 100%);
    color: white;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-section .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    filter: drop-shadow(0 0 5px rgba(103, 126, 234, 0.8));
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-section .accordion-button:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.faq-section .accordion-body {
    padding: 0 2rem 2rem 2rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-section .section-title {
    background: linear-gradient(135deg, #677eea 0%, #ea8667 50%, #67ea9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
}

.faq-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #677eea 0%, #ea8667 50%, #67ea9a 100%);
    border-radius: 2px;
}


/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
}

.final-cta-section .section-title {
    color: white;
}

.final-actions .btn {
    margin: 0.5rem;
}

.contact-actions .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Footer - Bending Spoons Style */
.newsite-footer {
    background: var(--surface-dark);
    color: var(--text-secondary);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.newsite-footer a {
    color: var(--text-muted);
    transition: color 0.3s ease;
    text-decoration: none;
}

.newsite-footer a:hover {
    color: var(--text-primary);
}

/* Responsive Design - Bending Spoons Style */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .trust-section,
    .services-section,
    .method-section,
    .faq-section {
        padding: 80px 0;
    }

    .sectors-section,
    .case-studies-section,
    .collaboration-section {
        padding: 80px 0;
    }

    .trust-card,
    .solution-card,
    .case-study-card {
        margin-bottom: 2rem;
    }

    .method-timeline {
        flex-direction: column;
        gap: 3rem;
    }
}

/* Additional Bending Spoons Elements */
.gradient-text {
    background: linear-gradient(-45deg, #00d4ff, #ff00ff, #ffff00, #00ff88);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

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

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--surface-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        white-space: normal;
    }

    .hero-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .contact-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

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

/* Animation utilities */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* ================================
   HERO SECTION ANIMATIONS
   ================================ */

/* Hero Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    contain: layout style paint;
    will-change: transform;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    contain: layout style paint;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(103, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    animation: float 6s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 2s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.shape-5 {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

/* Gradient Orbs */
.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    contain: layout style paint;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orbFloat 8s ease-in-out infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    isolation: isolate;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(103, 126, 234, 0.2), transparent);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.15), transparent);
    bottom: -200px;
    right: -200px;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.2), transparent);
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

/* Particle Canvas */
.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
}

/* Code Window Animation */
.code-window {
    background: rgba(45, 55, 72, 0.9);
    border-radius: 12px;
    margin: 0 auto 3rem;
    max-width: 500px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

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

.code-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca42; }

.code-title {
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    color: #a0aec0;
}

.code-content {
    padding: 1.5rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    min-height: 120px;
}

.code-line {
    margin-bottom: 0.5rem;
    opacity: 0;
    white-space: nowrap;
    min-height: 1.6em;
    position: relative;
}

.code-line::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 0;
    width: 2px;
    height: 1em;
    background-color: transparent;
}

.code-line.typing::after {
    background-color: #63b3ed;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.code-keyword { color: #f56565; }
.code-variable { color: #68d391; }
.code-function { color: #63b3ed; }
.code-string { color: #fbb6ce; }
.code-method { color: #9f7aea; }
.code-comment { color: #718096; }
.code-indent { opacity: 0; }

/* Animated Title */
.animated-title {
    position: relative;
    z-index: 2;
}

.title-line {
    display: inline-block;
    animation: slideInLeft 1s ease-out 0.5s both;
}

.animated-gradient {
    background: linear-gradient(-45deg, #00d4ff, #ff00ff, #ffff00, #00ff88);
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite, slideInRight 1s ease-out 0.8s both;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Tech Stack Animation */
.tech-stack-animation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.tech-item {
    font-size: 2rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.tech-item:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(103, 126, 234, 0.3);
}

.tech-item:before {
    content: attr(data-tech);
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

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

/* Enhanced Buttons */
.pulse-btn {
    animation: pulse 2s infinite;
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

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

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

/* Hover Arrow Effect */
.hover-arrow {
    transition: all 0.3s ease;
}

.hover-arrow:hover {
    transform: translateX(5px);
}

.hover-arrow i {
    transition: transform 0.3s ease;
}

.hover-arrow:hover i {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

/* Fade In Up Animation */
.fade-in-up {
    animation: fadeInUp 1s ease-out 1.2s both;
}

/* ================================
   KEYFRAME ANIMATIONS
   ================================ */

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

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

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

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

@keyframes floatBackground {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    25% { transform: translateY(-20px) translateX(10px) scale(1.1); }
    50% { transform: translateY(-10px) translateX(-15px) scale(0.9); }
    75% { transform: translateY(-30px) translateX(5px) scale(1.05); }
}

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


/* Responsive Animations */
@media (max-width: 768px) {
    .code-window {
        margin: 0 auto 2rem;
        max-width: 90%;
        transform: scale(0.85);
    }

    .code-content {
        padding: 1.5rem 1rem;
    }

    .code-line {
        font-size: 0.75rem;
    }

    .tech-stack-animation {
        gap: 0.5rem;
    }

    .tech-item {
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    .shape {
        display: none;
    }

    .orb {
        display: none;
    }

    .particles-canvas {
        display: none;
    }
}

/* Reduced motion for accessibility */
/* ================================
   CLIENT LOGOS CAROUSEL
   ================================ */

.client-logos-section {
    margin: 120px 0;
    overflow: hidden;
}

.logos-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask: linear-gradient(
        90deg,
        transparent,
        white 20%,
        white 80%,
        transparent
    );
    -webkit-mask: linear-gradient(
        90deg,
        transparent,
        white 20%,
        white 80%,
        transparent
    );
}

.logos-track {
    display: flex;
    animation: logoSlide 15s linear infinite;
    width: calc(200% + 40px);
}

.logo-item {
    flex: 0 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.client-logo {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.logo-item:hover .client-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

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

/* Pause animation on hover */
.logos-carousel:hover .logos-track {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .shape,
    .orb,
    .tech-item,
    .animated-gradient,
    .pulse-btn,
    .scroll-arrow,
    .logos-track {
        animation: none !important;
    }

    .particles-canvas {
        display: none;
    }

    .logos-track {
        justify-content: center;
        width: 100%;
    }
}

/* Corporate Footer */
.corporate-footer {
    background: #000000;
    color: white;
    position: relative;
    overflow: hidden;
}

.corporate-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(103, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(234, 134, 103, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    height: 100%;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #677eea 0%, #ea8667 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.company-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #677eea 0%, #ea8667 100%);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #677eea;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

.contact-info {
    margin-bottom: 2rem;
}

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

.contact-item i {
    color: #677eea;
    font-size: 1.1rem;
    width: 20px;
}

.contact-item a,
.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: rgba(103, 126, 234, 0.2);
    border-color: rgba(103, 126, 234, 0.5);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

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

.vat-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-left: 1rem;
}

.footer-legal {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }

    .footer-legal {
        justify-content: flex-start;
        margin-top: 1rem;
    }

    .vat-info {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .social-links {
        justify-content: flex-start;
    }
}

/* DeltaHedge Platform Section - Left Aligned */
.saas-block .section-title {
    text-align: left;
}

.saas-block .section-title::after {
    left: 0;
    transform: none;
}

/* AI Section - Spectacular Effects */
.ai-section {
    background: #000000;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.ai-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    contain: layout style paint;
    will-change: transform;
}

/* Neural Network Animation */
.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    contain: layout style paint;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #00ffff 0%, #0066ff 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px #00ffff;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
    animation: nodePulse 3s ease-in-out infinite;
}

.node-1 { top: 20%; left: 10%; animation-delay: 0s; }
.node-2 { top: 30%; left: 80%; animation-delay: 0.5s; }
.node-3 { top: 60%; left: 15%; animation-delay: 1s; }
.node-4 { top: 70%; left: 85%; animation-delay: 1.5s; }
.node-5 { top: 40%; left: 50%; animation-delay: 2s; }
.node-6 { top: 80%; left: 60%; animation-delay: 2.5s; }

.connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #00ffff 50%, transparent 100%);
    transform-origin: left center;
    animation: connectionFlow 4s ease-in-out infinite;
}

.connection-1 {
    top: 21%;
    left: 10%;
    width: 70%;
    transform: rotate(2deg);
    animation-delay: 0s;
}

.connection-2 {
    top: 32%;
    left: 80%;
    width: 40%;
    transform: rotate(-45deg);
    animation-delay: 0.8s;
}

.connection-3 {
    top: 62%;
    left: 15%;
    width: 35%;
    transform: rotate(25deg);
    animation-delay: 1.6s;
}

.connection-4 {
    top: 42%;
    left: 50%;
    width: 35%;
    transform: rotate(-15deg);
    animation-delay: 2.4s;
}

.connection-5 {
    top: 72%;
    left: 60%;
    width: 25%;
    transform: rotate(10deg);
    animation-delay: 3.2s;
}

/* AI Particles */
.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ai-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ffff;
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.ai-particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.ai-particle:nth-child(2) { left: 40%; animation-delay: 1s; }
.ai-particle:nth-child(3) { left: 60%; animation-delay: 2s; }
.ai-particle:nth-child(4) { left: 80%; animation-delay: 3s; }
.ai-particle:nth-child(5) { left: 30%; animation-delay: 4s; }
.ai-particle:nth-child(6) { left: 70%; animation-delay: 5s; }

/* Matrix Rain Effect */
.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    contain: layout style paint;
}

.matrix-column {
    position: absolute;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    top: -100%;
    width: 2px;
    height: 100px;
    background: linear-gradient(transparent, #00ff00, transparent);
    animation: matrixFall 15s linear infinite;
}

.matrix-column:nth-child(1) { left: 10%; animation-delay: 0s; }
.matrix-column:nth-child(2) { left: 30%; animation-delay: 3s; }
.matrix-column:nth-child(3) { left: 50%; animation-delay: 6s; }
.matrix-column:nth-child(4) { left: 70%; animation-delay: 9s; }
.matrix-column:nth-child(5) { left: 90%; animation-delay: 12s; }

/* AI Section Content */
.ai-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.ai-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
}

.ai-gradient-text {
    background: linear-gradient(135deg, #00ffff 0%, #0066ff 30%, #9933ff 70%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.ai-white-text {
    color: white;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.ai-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* AI Cards */
.ai-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 2;
    opacity: 1;
    transform: translateY(0);
}

.ai-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        #00ffff 20%,
        #0066ff 50%,
        #9933ff 80%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.ai-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.1);
}

.ai-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, transparent 70%, rgba(0, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.ai-card:hover .ai-card-glow {
    opacity: 1;
}

/* AI Icons */
.ai-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.ai-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 255, 255, 0.3);
    transition: all 0.5s ease;
}

.ai-icon i {
    font-size: 2rem;
    color: #00ffff;
    transition: all 0.3s ease;
}

.ai-card:hover .ai-icon {
    transform: scale(1.1);
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.ai-card:hover .ai-icon i {
    color: white;
    text-shadow: 0 0 20px #00ffff;
}

.icon-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 255, 0.6);
    animation: iconPulse 2s ease-in-out infinite;
    opacity: 0;
}

.ai-card:hover .icon-pulse {
    opacity: 1;
}

/* Card-specific colors */
.models-card:hover .ai-icon { border-color: #00ffff; }
.agents-card:hover .ai-icon { border-color: #ff00ff; }
.integration-card:hover .ai-icon { border-color: #00ff00; }
.automation-card:hover .ai-icon { border-color: #ffff00; }
.data-card:hover .ai-icon { border-color: #ff6600; }

.models-glow { background: radial-gradient(circle, transparent 70%, rgba(0, 255, 255, 0.05) 100%); }
.agents-glow { background: radial-gradient(circle, transparent 70%, rgba(255, 0, 255, 0.05) 100%); }
.integration-glow { background: radial-gradient(circle, transparent 70%, rgba(0, 255, 0, 0.05) 100%); }
.automation-glow { background: radial-gradient(circle, transparent 70%, rgba(255, 255, 0, 0.05) 100%); }
.data-glow { background: radial-gradient(circle, transparent 70%, rgba(255, 102, 0, 0.05) 100%); }

/* AI Card Content */
.ai-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.ai-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

/* Tech Tags */
.ai-tech-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #00ffff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ai-card:hover .tech-tag {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.6);
    color: white;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

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

@keyframes connectionFlow {
    0% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(0); }
}

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

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

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

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

/* Responsive AI Section */
@media (max-width: 1200px) {
    .ai-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .ai-section {
        padding: 80px 0;
    }

    .ai-title {
        font-size: 2.5rem;
    }

    .ai-description {
        font-size: 1.1rem;
    }

    .ai-card {
        margin-bottom: 2rem;
    }

    .neural-network,
    .ai-particles,
    .matrix-rain {
        opacity: 0.3;
    }
}

/* Performance optimizations for reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .orb,
    .shape,
    .animated-shape,
    .node,
    .matrix-column,
    .ai-particle {
        animation: none !important;
    }
}

/* Simplify effects on lower-end devices */
@media (max-width: 768px) {
    .hero-description {
        max-width: 85%;
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .orb {
        filter: blur(30px);
    }

    .animated-shape {
        filter: blur(20px);
    }

    /* Reduce number of animated elements on mobile */
    .shape-4,
    .shape-5,
    .orb-3,
    .node-5,
    .node-6 {
        display: none;
    }

    /* Faster logo scroll on mobile */
    .logos-track {
        animation: logoSlide 10s linear infinite;
    }

    .logo-item {
        padding: 0 20px;
        min-width: 120px;
    }

    .client-logo {
        max-height: 40px;
        max-width: 100px;
    }
}

/* Content-visibility for lazy rendering of sections */
section {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

/* Hero section should always be visible */
.hero-section {
    content-visibility: visible;
}

/* Reduce complexity of animations by using simpler transforms */
@supports (transform: translateZ(0)) {
    .orb,
    .shape,
    .animated-shape,
    .node {
        transform: translate3d(0, 0, 0);
    }
}