* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-violet: #7C3AED;
    --violet-light: #A78BFA;
    --violet-dark: #5B21B6;
    --bg-dark: #0A0A0F;
    --bg-darker: #050508;
    --bg-card: #13131A;
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    --text-muted: #71717A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.ai-glow {
    color: var(--primary-violet);
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 20px rgba(124, 58, 237, 0.5); }
    50% { text-shadow: 0 0 30px rgba(124, 58, 237, 0.8); }
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.cta-nav {
    padding: 10px 24px;
    background: var(--primary-violet);
    border-radius: 8px;
    color: var(--text-primary) !important;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background: var(--violet-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-violet), transparent);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #EC4899, transparent);
    bottom: -150px;
    left: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #3B82F6, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

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

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

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    color: var(--violet-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fade-in-up 0.6s ease-out;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    animation: fade-in-up 0.6s ease-out 0.1s backwards;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-violet), #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fade-in-up 0.6s ease-out 0.2s backwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--primary-violet);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: fade-in-up 0.6s ease-out 0.3s backwards;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
}

.cta-button:hover {
    background: var(--violet-dark);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.5);
}

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

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

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

/* Floating Cards */
.floating-cards {
    position: relative;
    margin-top: 80px;
    height: 200px;
}

.float-card {
    position: absolute;
    padding: 20px 24px;
    background: rgba(19, 19, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float-card 4s ease-in-out infinite;
}

.float-card .card-icon {
    font-size: 28px;
}

.float-card .card-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

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

.card-2 {
    left: 50%;
    transform: translateX(-50%);
    top: 60px;
    animation-delay: 1.3s;
}

.card-3 {
    right: 10%;
    top: 0;
    animation-delay: 2.6s;
}

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

.card-2 {
    animation-name: float-card-center;
}

@keyframes float-card-center {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -20px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fade-in 1s ease-out 1s backwards;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(124, 58, 237, 0.5);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-violet);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Sections */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50px;
    color: var(--violet-light);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

/* About Section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    font-size: 20px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.8;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.pillar {
    text-align: center;
    padding: 40px 24px;
    background: rgba(19, 19, 26, 0.5);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.pillar:hover {
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-5px);
    background: rgba(19, 19, 26, 0.8);
}

.pillar-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.pillar h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.pillar p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    padding: 40px 32px;
    background: rgba(19, 19, 26, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
}

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

.service-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-violet);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.tech-tag {
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--violet-light);
}

/* Why Section */
.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-text .section-tag {
    margin-bottom: 16px;
}

.why-text h2 {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.why-intro {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.why-intro strong {
    color: var(--primary-violet);
    font-weight: 600;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
}

.benefit svg {
    flex-shrink: 0;
}

/* Stats Card */
.stats-card {
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 32px;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-violet), #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

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

.contact-content h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.contact-intro {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background: rgba(19, 19, 26, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.2);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(124, 58, 237, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-violet);
    flex-shrink: 0;
}

.contact-info {
    text-align: left;
}

.contact-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 8px;
}

.footer-legal p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .floating-cards {
        display: none;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .nav-links {
        display: none;
    }

    .pillars {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .stats-card {
        padding: 32px 24px;
    }
}