/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: rgb(8, 9, 10);
    color: rgb(255, 255, 255);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: rgb(255, 255, 255);
}

.nav-logo svg {
    color: rgb(138, 143, 152);
}

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

.nav-links a {
    color: rgb(138, 143, 152);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: rgb(255, 255, 255);
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Buttons */
.btn-primary {
    background: rgb(255, 255, 255);
    color: rgb(8, 9, 10);
    padding: 8px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: rgb(244, 247, 249);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: rgb(138, 143, 152);
    padding: 8px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    color: rgb(255, 255, 255);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    background: linear-gradient(180deg, rgb(8, 9, 10) 0%, rgb(25, 27, 28) 50%, rgb(51, 25, 85) 100%);
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 68px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(153, 169, 192) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: rgb(153, 169, 192);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-input {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 8px;
}

.hero-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: rgb(255, 255, 255);
    font-size: 16px;
    padding: 12px 20px;
    outline: none;
}

.hero-input input::placeholder {
    color: rgb(138, 143, 152);
}

.hero-suggestions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-suggestions span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    color: rgb(138, 143, 152);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-suggestions span:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgb(255, 255, 255);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgb(138, 143, 152);
    font-size: 14px;
}

/* Trusted By Section */
.trusted-by {
    padding: 80px 0;
    background: rgb(8, 9, 10);
}

.logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.logo-item {
    color: rgb(138, 143, 152);
    font-weight: 500;
    font-size: 16px;
    opacity: 0.7;
}

.trusted-by h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 60px;
    color: rgb(255, 255, 255);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: rgb(244, 247, 249);
}

.testimonial-author strong {
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.testimonial-author span {
    color: rgb(138, 143, 152);
    font-size: 14px;
}

/* Features Overview */
.features-overview {
    padding: 80px 0;
    background: rgb(8, 9, 10);
}

.features-overview h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: rgb(255, 255, 255);
}

.features-overview > .container > p {
    text-align: center;
    font-size: 20px;
    color: rgb(153, 169, 192);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgb(255, 255, 255);
}

.feature-card p {
    color: rgb(153, 169, 192);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(51, 25, 85) 0%, rgb(25, 27, 28) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: rgb(255, 255, 255);
}

.cta-section p {
    font-size: 20px;
    color: rgb(153, 169, 192);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 16px 32px;
    font-size: 16px;
}

/* Footer */
.footer {
    background: rgb(8, 9, 10);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    margin-bottom: 16px;
}

.footer-section h4 {
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section p {
    color: rgb(138, 143, 152);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgb(138, 143, 152);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: rgb(255, 255, 255);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgb(138, 143, 152);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 16px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-input {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-suggestions {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 40px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .features-overview h2,
    .cta-section h2 {
        font-size: 32px;
    }
    
    .trusted-by h2 {
        font-size: 24px;
    }
}
