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

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.logo h1 {
    font-size: 2.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.logo-image {
    height: 2.2rem;
    width: auto;
    display: block;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8B5CF6;
}

main {
    padding-top: 80px;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%,
        rgba(139, 92, 246, 0.03) 25%,
        rgba(236, 72, 153, 0.05) 50%,
        rgba(255, 255, 255, 1) 75%);
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    position: relative;
    gap: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hero-tagline {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.rotating-word {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    display: inline-block;
    min-width: 280px;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: visible;
    height: 1.4em;
    line-height: 1.2;
}

.rotating-word-inner {
    display: block;
    width: 100%;
    text-align: center;
}

.hero-description {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    opacity: 0.9;
    user-select: none;
}

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: transparent;
    border: 2px solid;
    animation: celebrate 8s linear infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    bottom: -60px;
    left: 20%;
    animation-delay: 0s;
    border-color: rgba(139, 92, 246, 0.6);
    --drift-x: 20px;
}

.shape-2 {
    width: 40px;
    height: 40px;
    bottom: -40px;
    left: 60%;
    animation-delay: 2s;
    border-color: rgba(236, 72, 153, 0.7);
    --drift-x: -30px;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: -80px;
    left: 10%;
    animation-delay: 4s;
    border-color: rgba(139, 92, 246, 0.5);
    --drift-x: 40px;
}

.shape-4 {
    width: 50px;
    height: 50px;
    bottom: -50px;
    left: 80%;
    animation-delay: 1s;
    border-color: rgba(236, 72, 153, 0.6);
    --drift-x: -25px;
}

.shape-5 {
    width: 35px;
    height: 35px;
    bottom: -35px;
    left: 40%;
    animation-delay: 3s;
    border-color: rgba(139, 92, 246, 0.7);
    --drift-x: 15px;
}

.shape-6 {
    width: 25px;
    height: 25px;
    bottom: -25px;
    left: 75%;
    animation-delay: 5s;
    border-color: rgba(236, 72, 153, 0.8);
    --drift-x: -40px;
}

.shape-7 {
    width: 45px;
    height: 45px;
    bottom: -45px;
    left: 30%;
    animation-delay: 6s;
    border-color: rgba(139, 92, 246, 0.6);
    --drift-x: 35px;
}

@keyframes celebrate {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(var(--drift-x, 0)) scale(0.5);
        opacity: 0;
    }
}


.features {
    padding: 8rem 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%,
        rgba(139, 92, 246, 0.02) 50%,
        rgba(255, 255, 255, 1) 100%);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.feature-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card.growth {
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.feature-card.time {
    background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.feature-card.revenue {
    background-image: url('https://images.unsplash.com/photo-1590283603385-17ffb3a7f29f?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}


.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: 0;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.05) 0%,
        rgba(236, 72, 153, 0.08) 50%,
        rgba(139, 92, 246, 0.05) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact {
    padding: 8rem 0;
    background: white;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.contact-link {
    display: inline-block;
    font-size: 1.3rem;
    color: #8B5CF6;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-link:hover {
    border-bottom-color: #8B5CF6;
}

.company-info {
    margin-top: 3rem;
}

.company-info p {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

footer {
    background: #f8fafc;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: #6b7280;
}

@media (max-width: 768px) {
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-tagline {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    
    .rotating-word {
        min-width: 200px;
        font-size: 0.9em;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero, .features, .about, .contact {
        padding: 4rem 0;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        min-height: 250px;
    }
    
    .feature-card h3 {
        font-size: 1.5rem;
    }
}