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

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

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

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
    }
    50% {
        text-shadow: 0 0 40px rgba(168, 85, 247, 0.8);
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #0f0a14 0%, #1a1425 25%, #140f1e 50%, #1a1425 75%, #0f0a14 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Hero Section */
header {
    text-align: center;
    padding: 10rem 2rem 8rem;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #a855f7;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.3s backwards;
    position: relative;
    z-index: 1;
}

header h1 {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 1.5rem;
    color: #ffffff;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    position: relative;
    z-index: 1;
    line-height: 1.1;
}

header h1 .highlight {
    color: #a855f7;
    animation: glow 3s ease-in-out infinite;
}

.tagline {
    font-size: 1.8rem;
    font-weight: 400;
    color: #c4b5fd;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    animation: fadeInUp 0.8s ease 0.5s backwards;
    position: relative;
    z-index: 1;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.hero-stat:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-5px);
}

.hero-stat strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #a855f7;
    margin-bottom: 0.5rem;
}

.hero-stat span {
    font-size: 0.9rem;
    color: #c4b5fd;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button-hero {
    display: inline-block;
    padding: 1.5rem 3.5rem;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.button-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.5);
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.hero-subtext {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #9ca3af;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.7s backwards;
    position: relative;
    z-index: 1;
}

/* Social Proof Bar */
.social-proof {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(168, 85, 247, 0.15);
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    padding: 1.5rem 2rem;
    text-align: center;
}

.proof-text {
    color: #c4b5fd;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Sections */
section {
    padding: 6rem 2rem;
    position: relative;
}

.section-dark {
    background: transparent;
}

.section-gray {
    background: rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    margin-bottom: 4rem;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

h2.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Problem/Solution Section */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

.problem-item {
    text-align: center;
    padding: 2rem;
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.problem-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.problem-item:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-10px);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.problem-item p {
    font-size: 1.1rem;
    color: #c4b5fd;
}

.solution-box {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(124, 58, 237, 0.12));
    border: 2px solid rgba(168, 85, 247, 0.35);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease;
}

.solution-box.visible {
    opacity: 1;
    transform: scale(1);
}

.solution-box h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #a855f7;
}

.solution-box p {
    font-size: 1.3rem;
    color: #ddd6fe;
    line-height: 1.8;
}

/* Video Section */
.video-section {
    background: transparent;
    padding: 6rem 2rem;
    text-align: center;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(168, 85, 247, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(168, 85, 247, 0.2);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #a855f7;
    margin-bottom: 2rem;
    border: 2px dashed rgba(168, 85, 247, 0.35);
}

/* Services */
.services {
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.15);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.2);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #a855f7;
}

.service-card p {
    font-size: 1.1rem;
    color: #c4b5fd;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.15);
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 20px;
    border-left: 4px solid #a855f7;
    display: flex;
    gap: 3rem;
    align-items: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-50px);
}

.testimonial.visible {
    opacity: 1;
    transform: translateX(0);
}

.testimonial:hover {
    transform: translateX(10px);
    background: rgba(168, 85, 247, 0.1);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.1);
}

.testimonial-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #a855f7;
    flex-shrink: 0;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #ddd6fe;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.author {
    font-size: 1.1rem;
    font-weight: 700;
    color: #a855f7;
}

.author-title {
    font-size: 1rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

/* Timeline */
.timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    margin-bottom: 3rem;
    padding: 3rem;
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 20px;
    border-left: 4px solid #a855f7;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:hover {
    transform: translateX(10px);
    background: rgba(168, 85, 247, 0.1);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.1);
}

.timeline-year {
    font-size: 1.3rem;
    font-weight: 800;
    color: #a855f7;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timeline-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.timeline-description {
    font-size: 1.2rem;
    color: #c4b5fd;
    line-height: 1.7;
}

/* CTA Section */
.contact {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.contact h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.contact p {
    font-size: 1.5rem;
    color: #c4b5fd;
    margin-bottom: 3rem;
}

.button {
    display: inline-block;
    padding: 1.5rem 3.5rem;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.5);
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.cta-subtext {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #9ca3af;
}

footer {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    color: #6b7280;
    border-top: 1px solid rgba(168, 85, 247, 0.15);
}

@media (max-width: 768px) {
    header h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

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

    .service-grid,
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .testimonial {
        flex-direction: column;
        text-align: center;
    }
}
