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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(to bottom, #020617, #0f172a, #020617);
    color: #e2e8f0;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Gradient Text */
.hero-title,
.section-title,
.highlight-title,
.cta-title {
    background: linear-gradient(to right, #ffffff, #a5f3fc, #d8b4fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    background: linear-gradient(to right, #22d3ee, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(to right, #06b6d4, #9333ea);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(to right, #22d3ee, #a855f7);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.5);
    transform: translateY(-2px);
}

.btn-primary.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    color: #22d3ee;
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(30, 41, 59, 0.8);
}

.btn-secondary.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

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

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to bottom right, #06b6d4, #9333ea);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.desktop-only {
    display: none;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: currentColor;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: currentColor;
    left: 0;
}

.menu-icon::before {
    top: -0.5rem;
}

.menu-icon::after {
    top: 0.5rem;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-mobile.active {
    display: flex;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 1rem 5rem;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.blob-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(6, 182, 212, 0.2);
}

.blob-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(147, 51, 234, 0.2);
    animation-delay: 0.7s;
}

.blob-3 {
    top: 50%;
    left: 50%;
    width: 16rem;
    height: 16rem;
    background: rgba(16, 185, 129, 0.1);
    animation-delay: 1s;
}

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

.hero-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 9999px;
    width: fit-content;
    color: #22d3ee;
    font-size: 0.875rem;
}

.hero-description {
    color: #94a3b8;
    max-width: 40rem;
}

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

.hero-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.3);
    background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.5));
    backdrop-filter: blur(8px);
}

.visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(147, 51, 234, 0.1), rgba(16, 185, 129, 0.1));
}

.visual-card img {
    position: relative;
    z-index: 10;
    width: 100%;
    height: auto;
    display: block;
}

.floating-card {
    display: none;
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.2), rgba(147, 51, 234, 0.2));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-box {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, #06b6d4, #9333ea);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.stat-label {
    color: #22d3ee;
    font-size: 0.875rem;
}

/* Services Section */
.services {
    position: relative;
    padding: 5rem 1rem;
}

.section-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(6, 182, 212, 0.05), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.section-description {
    color: #94a3b8;
    max-width: 42rem;
    margin: 0 auto;
}

.services-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.3));
    backdrop-filter: blur(8px);
    border: 1px solid #1e293b;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
    transform: translateY(-4px);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0), rgba(147, 51, 234, 0));
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.service-card:hover::before {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.05), rgba(147, 51, 234, 0.05));
}

.service-icon {
    position: relative;
    z-index: 10;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.gradient-cyan {
    background: linear-gradient(to bottom right, #06b6d4, #0284c7);
}

.gradient-purple {
    background: linear-gradient(to bottom right, #a855f7, #ec4899);
}

.gradient-emerald {
    background: linear-gradient(to bottom right, #10b981, #14b8a6);
}

.gradient-amber {
    background: linear-gradient(to bottom right, #f59e0b, #ea580c);
}

.gradient-cyan-purple {
    background: linear-gradient(to bottom right, #06b6d4, #9333ea);
}

.gradient-violet {
    background: linear-gradient(to bottom right, #8b5cf6, #a855f7);
}

.gradient-blue {
    background: linear-gradient(to bottom right, #3b82f6, #6366f1);
}

.gradient-teal {
    background: linear-gradient(to bottom right, #10b981, #06b6d4);
}

.service-icon svg {
    color: white;
}

.service-title {
    position: relative;
    z-index: 10;
    color: white;
}

.service-description {
    position: relative;
    z-index: 10;
    color: #94a3b8;
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 5rem 1rem;
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text {
    color: #cbd5e1;
}

.about-text.secondary {
    color: #94a3b8;
}

.highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-item svg {
    color: #22d3ee;
    flex-shrink: 0;
}

.highlight-item span {
    color: #cbd5e1;
}

.about-visual {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.3);
    background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.5));
    backdrop-filter: blur(8px);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(147, 51, 234, 0.1), rgba(16, 185, 129, 0.1));
}

.about-image img {
    position: relative;
    z-index: 10;
    width: 100%;
    height: auto;
    display: block;
}

/* Highlight Section */
.highlight {
    position: relative;
    padding: 5rem 1rem;
    overflow: hidden;
}

.highlight-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 145, 178, 0.2), rgba(147, 51, 234, 0.2), rgba(16, 185, 129, 0.2));
    backdrop-filter: blur(80px);
}

.highlight-card {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8));
    backdrop-filter: blur(24px);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: 
        linear-gradient(to right, rgba(6, 182, 212, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(6, 182, 212, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

.highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, #06b6d4, #9333ea);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-icon svg {
    color: white;
}

.highlight-text {
    color: #cbd5e1;
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.stats {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #22d3ee, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #94a3b8;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 1rem;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8));
    backdrop-filter: blur(8px);
    border: 1px solid #1e293b;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars svg {
    color: #fbbf24;
}

.testimonial-text {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(6, 182, 212, 0.3);
}

.author-name {
    color: white;
    font-weight: 500;
}

.author-role {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* CTA Section */
.cta {
    position: relative;
    padding: 5rem 1rem;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-bg .blob-1 {
    top: auto;
    left: auto;
    bottom: -6rem;
    right: -6rem;
    width: 24rem;
    height: 24rem;
    background: rgba(6, 182, 212, 0.2);
}

.cta-bg .blob-2 {
    top: -6rem;
    left: -6rem;
    width: 24rem;
    height: 24rem;
    background: rgba(147, 51, 234, 0.2);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.cta-text {
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    color: #64748b;
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    background: rgba(2, 6, 23, 0.5);
    backdrop-filter: blur(16px);
}

.footer-grid {
    display: grid;
    gap: 2rem;
    padding: 3rem 0;
}

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

.footer-description {
    color: #94a3b8;
}

.footer-title {
    color: white;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer-links a:hover {
    color: #22d3ee;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact:hover {
    color: #22d3ee;
}

.social-icons {
    display: flex;
    gap: 1rem;
    padding-top: 0.5rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #1e293b;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(to bottom right, #06b6d4, #9333ea);
    color: white;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .desktop-only {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-mobile {
        display: none !important;
    }
    
    .floating-card {
        display: flex;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .highlight-card {
        padding: 4rem;
    }
}
