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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #888;
    font-weight: 400;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #22c55e;
}

.cta-button {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 2rem;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.carousel-slide.next {
    transform: translateX(100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(22, 163, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(1deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.floating-particles::before,
.floating-particles::after,
.floating-particles .particle-1,
.floating-particles .particle-2,
.floating-particles .particle-3,
.floating-particles .particle-4,
.floating-particles .particle-5,
.floating-particles .particle-6,
.floating-particles .particle-7,
.floating-particles .particle-8 {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.floating-particles::before {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-particles::after {
    top: 80%;
    right: 8%;
    animation-delay: 2s;
}

.floating-particles .particle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 1s;
}

.floating-particles .particle-2 {
    top: 40%;
    right: 25%;
    animation-delay: 3s;
}

.floating-particles .particle-3 {
    top: 75%;
    left: 15%;
    animation-delay: 4s;
}

.floating-particles .particle-4 {
    top: 30%;
    right: 5%;
    animation-delay: 5s;
}

.floating-particles .particle-5 {
    top: 60%;
    left: 75%;
    animation-delay: 6s;
}

.floating-particles .particle-6 {
    top: 15%;
    right: 40%;
    animation-delay: 1.5s;
}

.floating-particles .particle-7 {
    top: 50%;
    left: 10%;
    animation-delay: 3.5s;
}

.floating-particles .particle-8 {
    top: 85%;
    right: 60%;
    animation-delay: 4.5s;
}

/* Interactive click particles */
.click-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    animation: particleRise 2s ease-out forwards;
    z-index: 10;
}

@keyframes particleRise {
    0% {
        transform: scale(0) translateY(0);
        opacity: 1;
    }
    20% {
        transform: scale(1) translateY(-10px);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.5) translateY(-80px);
        opacity: 0;
    }
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-line-1 {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

.title-line-2 {
    display: block;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite 0.5s;
}

.title-line-3 {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite 1s;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.hero-cta:hover::before {
    opacity: 1;
}

.hero-cta:hover::after {
    width: 300px;
    height: 300px;
}

.hero-cta:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.hero-cta:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.nav-dot.active {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.nav-dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.carousel-control:hover {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

.carousel-control.prev {
    left: 2rem;
}

.carousel-control.next {
    right: 2rem;
}

.carousel-control i {
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    border-color: #22c55e;
    color: #22c55e;
}


/* Additional Modern Effects */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(22, 163, 74, 0.03) 0%, transparent 50%);
    z-index: -1;
}

/* Smooth animations for page load */
.hero-content > * {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-badge { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.3s; }
.hero-cta { animation-delay: 0.4s; }
.social-links { animation-delay: 0.5s; }

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

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.03) 0%, transparent 50%);
    z-index: 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #9ca3af;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(34, 197, 94, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

.service-icon i {
    font-size: 2rem;
    color: #22c55e;
    transition: color 0.4s ease;
}

.service-card:hover .service-icon i {
    color: #16a34a;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

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

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

.service-features li {
    color: #9ca3af;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 0.8rem;
}

.service-card:hover .service-features li::before {
    color: #16a34a;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: #0a0a0a;
    position: relative;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.2rem;
    color: #d1d5db;
    line-height: 1.6;
    text-align: left;
}

.ai-visualization {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.data-sources, .business-outcomes {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.data-source, .outcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 120px;
    min-height: 100px;
    position: relative;
    overflow: hidden;
}

.data-source:hover, .outcome:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.1);
}

.data-source i, .outcome i {
    font-size: 1.5rem;
    color: #22c55e;
}

.data-source span, .outcome span {
    font-size: 0.9rem;
    color: #d1d5db;
    font-weight: 500;
}

.data-flow-lines, .output-flow-lines {
    position: absolute;
    width: 280px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #22c55e, #16a34a, transparent);
    opacity: 0.7;
    border-radius: 2px;
    z-index: 1;
}

.data-flow-lines {
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    animation: flowPulse 3s ease-in-out infinite;
}

.output-flow-lines {
    bottom: 35%;
    left: 50%;
    transform: translateX(-50%);
    animation: flowPulse 3s ease-in-out infinite 1.5s;
}

.flow-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
    animation: dataFlow 2s ease-in-out infinite;
    border-radius: 2px;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 0.3s; }
.line-3 { animation-delay: 0.6s; }
.line-4 { animation-delay: 0.2s; }
.line-5 { animation-delay: 0.5s; }
.line-6 { animation-delay: 0.8s; }

.ai-core {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.ai-core i {
    font-size: 2.5rem;
    color: #22c55e;
    z-index: 2;
}

.ai-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes dataFlow {
    0%, 100% { opacity: 0.3; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

@keyframes flowPulse {
    0%, 100% { 
        opacity: 0.4; 
        transform: translateX(-50%) scaleX(0.8); 
    }
    50% { 
        opacity: 1; 
        transform: translateX(-50%) scaleX(1.2); 
    }
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Solutions Section */
.solutions {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

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

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

.solution-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.1);
}

.solution-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(34, 197, 94, 0.4);
}

.solution-icon i {
    font-size: 1.2rem;
    color: #22c55e;
    transition: color 0.4s ease;
}

.solution-card:hover .solution-icon i {
    color: #16a34a;
}

.solution-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.solution-description {
    font-size: 0.9rem;
    color: #d1d5db;
    line-height: 1.5;
}

/* MVP Section */
.mvp {
    padding: 6rem 2rem;
    background: #0a0a0a;
    position: relative;
}

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

.mvp-header {
    text-align: left;
    margin-bottom: 3rem;
}

.mvp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.mvp-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.mvp-header .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: left;
}

.mvp-timeline {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.mvp-timeline .timeline-item {
    margin-bottom: 2rem;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.mvp-timeline .timeline-content {
    width: 100%;
}

.mvp-timeline .timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.mvp-timeline .timeline-content p {
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.5;
    margin: 0;
}

.timeline-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
}

.prototype-showcase {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
}

.prototype-stages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 160px;
    min-height: 110px;
    text-align: center;
    flex-shrink: 0;
}

.stage:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.1);
}

.stage-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.4rem;
}

.stage-icon i {
    font-size: 1rem;
    color: #22c55e;
}

.stage-title {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    width: 100%;
}

.stage-label {
    font-size: 0.8rem;
    color: #d1d5db;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    width: 100%;
}

.stage-arrow {
    color: #22c55e;
    font-size: 1rem;
    animation: arrowPulse 2s ease-in-out infinite;
    display: block;
}
.stage-arrow-mobile{
    color: #22c55e;
    font-size: 1rem;
    animation: arrowPulse 2s ease-in-out infinite;
    display: none;
}
.prototype-cards {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.prototype-card {
    width: 120px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.8rem;
    animation: prototypeGlow 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.prototype-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(34, 197, 94, 0.3);
}

.card-1 { animation-delay: 0s; }
.card-2 { animation-delay: 1s; }
.card-3 { animation-delay: 2s; }

.card-header {
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 3px;
    margin-bottom: 0.6rem;
}

.content-line {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 0.3rem;
}

.content-line.short {
    width: 60%;
}

.mvp-cta {
    margin-top: 2rem;
    text-align: center;
}

@keyframes prototypeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.1); }
    50% { box-shadow: 0 0 30px rgba(34, 197, 94, 0.2); }
}

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

/* AI Partner Section */
.ai-partner {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.partnership-visual {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.partnership-infographic {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(20px);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.partnership-infographic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(22, 163, 74, 0.05) 100%);
    border-radius: 24px;
    z-index: 1;
}

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

.infographic-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.infographic-header p {
    font-size: 1rem;
    color: #d1d5db;
    margin: 0;
}

.journey-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    gap: 0.5rem;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 120px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.2) 100%);
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.8rem;
    transition: all 0.4s ease;
}

.journey-step:hover .step-number {
    transform: scale(1.1);
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.step-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.step-content p {
    font-size: 0.8rem;
    color: #d1d5db;
    line-height: 1.3;
    margin: 0;
}

.step-icon {
    width: 30px;
    height: 30px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.8rem;
    transition: all 0.4s ease;
}

.step-icon i {
    font-size: 1rem;
    color: #22c55e;
}

.journey-step:hover .step-icon {
    transform: scale(1.1);
    border-color: rgba(34, 197, 94, 0.5);
}

.journey-arrow {
    color: #22c55e;
    font-size: 1.2rem;
    margin: 0 0.5rem;
    animation: arrowPulse 2s ease-in-out infinite;
    flex-shrink: 0;
    display: block;
}
.journey-arrow-mobile{
    display: none;
    color: #22c55e;
    font-size: 1.2rem;
    margin: 0 0.5rem;
    animation: arrowPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.partnership-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.highlight-icon {
    padding: 10px 8px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.2) 100%);
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: partnershipPulse 3s ease-in-out infinite;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: #22c55e;
}

.highlight-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.highlight-text p {
    font-size: 1rem;
    color: #d1d5db;
    margin: 0;
}

.partnership-diagram {
    position: relative;
    width: 500px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.partnership-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

.partnership-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.2) 100%);
    border: 3px solid rgba(34, 197, 94, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: partnershipPulse 3s ease-in-out infinite;
}

.partnership-icon i {
    font-size: 2rem;
    color: #22c55e;
}

.partnership-center h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.partnership-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.partnership-node {
    position: absolute;
    width: 120px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.partnership-node:hover {
    transform: scale(1.1);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

.node-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
}

.node-icon i {
    font-size: 1.2rem;
    color: #22c55e;
}

.partnership-node:hover .node-icon {
    transform: scale(1.1);
    border-color: rgba(34, 197, 94, 0.6);
}

.partnership-node h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.partnership-node p {
    font-size: 0.8rem;
    color: #d1d5db;
    margin: 0;
}

/* Position nodes in a circle */
.node-1 { top: 20px; left: 50%; transform: translateX(-50%); }
.node-2 { top: 50%; right: 20px; transform: translateY(-50%); }
.node-3 { bottom: 20px; left: 50%; transform: translateX(-50%); }
.node-4 { top: 50%; left: 20px; transform: translateY(-50%); }

.connection-line {
    position: absolute;
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.6), rgba(34, 197, 94, 0.3));
    border-radius: 2px;
    animation: connectionFlow 4s ease-in-out infinite;
}

.connection-1 {
    top: 50%;
    left: 50%;
    width: 2px;
    height: 100px;
    transform: translate(-50%, -100%);
    animation-delay: 0s;
}

.connection-2 {
    top: 50%;
    left: 50%;
    width: 2px;
    height: 100px;
    transform: translate(50%, -50%) rotate(90deg);
    animation-delay: 1s;
}

.connection-3 {
    top: 50%;
    left: 50%;
    width: 2px;
    height: 100px;
    transform: translate(-50%, 0%);
    animation-delay: 2s;
}

.connection-4 {
    top: 50%;
    left: 50%;
    width: 2px;
    height: 100px;
    transform: translate(-150%, -50%) rotate(90deg);
    animation-delay: 3s;
}

@keyframes partnershipPulse {
    0%, 100% { 
        transform: translate(0%, 0%) scale(1);
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    }
    50% { 
        transform: translate(0%, 0%) scale(1.05);
        box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
    }
}

@keyframes connectionFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.partnership-timeline {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    position: relative;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.timeline-icon i {
    font-size: 1.2rem;
    color: #22c55e;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1);
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.timeline-item:hover .timeline-icon i {
    color: #16a34a;
    transform: scale(1.1);
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.85rem;
    color: #d1d5db;
    margin: 0;
}

.timeline-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.6), rgba(34, 197, 94, 0.3));
    position: relative;
    flex-shrink: 0;
}

.timeline-connector::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.4), transparent);
    animation: timelineFlow 3s ease-in-out infinite;
}

@keyframes timelineFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.ai-partner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.ai-partner-text .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.partnership-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Team Section */
.team {
    padding: 6rem 2rem;
    background: #0a0a0a;
    position: relative;
}

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

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

.team-member {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.1);
}

.member-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.team-member:hover .member-avatar {
    transform: scale(1.1);
    border-color: rgba(34, 197, 94, 0.4);
}

.member-avatar i {
    font-size: 2rem;
    color: #22c55e;
    transition: color 0.4s ease;
}

.team-member:hover .member-avatar i {
    color: #16a34a;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.member-role {
    font-size: 1rem;
    color: #22c55e;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.6;
}

/* Closing CTA Section */
.closing-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    text-align: center;
}

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

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cta-button-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cta-button-large::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.cta-button-large:hover::before {
    opacity: 1;
}

.cta-button-large:hover::after {
    width: 300px;
    height: 300px;
}

.cta-button-large:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* Section CTAs */
.section-cta {
    background: transparent;
    border: 2px solid #22c55e;
    color: #22c55e;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    margin-top: 1.5rem;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 197, 94, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.section-cta:hover::before {
    opacity: 1;
}

.section-cta:hover {
    background: #22c55e;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.partner-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(34, 197, 94, 0.02) 0%, transparent 50%);
    z-index: 0;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.footer-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(22, 163, 74, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.footer-logo:hover::before {
    opacity: 1;
}

.footer-logo:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.1);
}

.footer-logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.footer-logo:hover .footer-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.3));
}

.footer-logo .logo-text {
    position: relative;
    z-index: 2;
}

.footer-logo .brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
}

.footer-logo:hover .brand-name {
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.footer-logo .brand-tagline {
    font-size: 1rem;
    color: #d1d5db;
    font-weight: 500;
    transition: all 0.4s ease;
}

.footer-logo:hover .brand-tagline {
    color: #16a34a;
}

.footer-founder {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.founder-message {
    text-align: left;
}

.founder-text {
    font-size: 1.2rem;
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.founder-promise {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 1.5rem;
}

.founder-signature {
    margin-top: 1rem;
    text-align: left;
}

.signature-text {
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
    font-size: 1.8rem;
    color: #22c55e;
    font-weight: 400;
    font-style: italic;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
    position: relative;
    display: inline-block;
}

.signature-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
    opacity: 0.6;
    animation: signatureGlow 3s ease-in-out infinite;
}

@keyframes signatureGlow {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 0.8; transform: scaleX(1.1); }
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.founder-info:hover {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
}

.founder-image {
    flex-shrink: 0;
}

.founder-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #22c55e;
    object-fit: cover;
    transition: all 0.3s ease;
}

.founder-info:hover .founder-photo {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.founder-details {
    flex: 1;
}

.founder-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.founder-role {
    font-size: 1rem;
    color: #22c55e;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.founder-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.founder-contact:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
    color: #ffffff;
    transform: translateY(-1px);
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #22c55e;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.9rem;
}


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

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
    }
    
    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .ai-partner-container {
        gap: 3rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .nav-link {
        display: none;
    }
    
    .nav-cta {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 0 1rem;
    }
    
    .hero-carousel {
        max-width: 100%;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control.prev {
        left: 1rem;
    }
    
    .carousel-control.next {
        right: 1rem;
    }
    
    .carousel-control i {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .social-links {
        gap: 1rem;
        bottom: 5rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .services {
        padding: 4rem 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .ai-visualization {
        flex-direction: row;
    }
    
    .prototype-showcase  {
        flex-direction: row;
    }
        
    .prototype-cards {
        display: none;
    }
    .about-text {
        order: 1;
    }
    
    .about-visual {
        order: 2;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mvp-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .mvp-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mvp-visual {
        order: 2;
    }
    
    .mvp-text {
        order: 1;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .data-sources, .business-outcomes {
        flex-direction: column;
        gap: 1rem;
    }
    
    .prototype-stages {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stage-arrow {
        display: none;
    }
    
    .stage-arrow-mobile{
        display: block;
    }
    .prototype-cards {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .founder-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .footer-logo-image {
        height: 70px;
    }
    
    .partnership-timeline {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .timeline-connector {
        width: 2px;
        height: 30px;
        background: linear-gradient(180deg, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.6), rgba(34, 197, 94, 0.3));
    }
    
    .timeline-connector::after {
        width: 6px;
        height: 100%;
        top: 0;
        left: -2px;
        right: auto;
        background: linear-gradient(180deg, transparent, rgba(34, 197, 94, 0.4), transparent);
    }
    
    .ai-partner-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ai-partner-text {
        order: 1;
    }
    
    .ai-partner-visual {
        order: 2;
    }
    
    .partnership-infographic {
        padding: 2rem 1.5rem;
    }
    
    .journey-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .journey-arrow {
        display: none;
       
    }
    
    .journey-arrow-mobile{
        display: block;
         margin: 0.5rem 0;
    }
    .journey-step {
        max-width: 100%;
        width: 100%;
    }
    
    .partnership-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Section padding adjustments */
    .services, .about, .solutions, .mvp, .ai-partner, .team, .closing-cta {
        padding: 4rem 1rem;
    }
    
    /* Typography adjustments */
    .section-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }
    
    .section-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 3rem 0.5rem;
        min-height: 70vh;
    }
    
    .hero-badge {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.8rem);
    }
    
    .hero-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Section padding for mobile */
    .services, .about, .solutions, .mvp, .ai-partner, .team, .closing-cta {
        padding: 3rem 0.5rem;
    }
    
    /* Typography for mobile */
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    /* Card adjustments for mobile */
    .service-card, .solution-card {
        padding: 1.5rem 1rem;
    }
    
    .stage {
        width: 140px;
        min-height: 100px;
        padding: 1rem;
    }
    
    .prototype-card {
        width: 100px;
        height: 70px;
        padding: 0.6rem;
    }
    
    /* Timeline adjustments */
    .mvp-timeline .timeline-item {
        margin-bottom: 1.5rem;
    }
    
    .mvp-timeline .timeline-content h4 {
        font-size: 1rem;
    }
    
    .mvp-timeline .timeline-content p {
        font-size: 0.9rem;
    }
    
    /* Footer adjustments */
    .footer-logo {
        padding: 2rem 1rem;
    }
    
    .founder-message {
        padding: 1rem;
    }
    
    .founder-text {
        font-size: 0.9rem;
    }
    
    .founder-promise {
        font-size: 0.9rem;
    }
    
    /* Ensure proper ordering on mobile for all image sections */
    .about-text {
        order: 1;
    }
    
    .about-visual {
        order: 2;
    }
    
    .mvp-text {
        order: 1;
    }
    
    .mvp-visual {
        order: 2;
    }
    
    .ai-partner-text {
        order: 1;
    }
    
    .ai-partner-visual {
        order: 2;
    }
}

/* Very small mobile devices */
@media (max-width: 360px) {
    .nav-container {
        padding: 0 0.25rem;
    }
    
    .hero {
        padding: 2rem 0.25rem;
    }
    
    .services, .about, .solutions, .mvp, .ai-partner, .team, .closing-cta {
        padding: 2rem 0.25rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }
    
    .section-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }
    
    .service-card, .solution-card {
        padding: 1rem 0.8rem;
    }
    
    .stage {
        width: 120px;
        min-height: 90px;
        padding: 0.8rem;
    }
    
    .prototype-card {
        width: 80px;
        height: 60px;
        padding: 0.5rem;
    }
    
    .footer-logo {
        padding: 1.5rem 0.8rem;
    }
}

/* Landscape mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    .services, .about, .solutions, .mvp, .ai-partner, .team, .closing-cta {
        padding: 3rem 1rem;
    }
    
    .mvp-content {
        min-height: 400px;
    }
    
    .ai-partner-container {
        min-height: 400px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .service-card, .solution-card, .stage, .prototype-card {
        transform: none;
    }
    
    .service-card:hover, .solution-card:hover, .stage:hover, .prototype-card:hover {
        transform: translateY(-2px);
    }
    
    .cta-button, .hero-cta, .section-cta {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-cta {
        min-height: 40px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image, .footer-logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}