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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.site-header {
    padding: 1.5rem;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #7928ca;
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-text:hover {
    color: #ff0080;
}

/* Trust Strip */
.trust-strip {
    background-color: #eef6ff;
    color: #333;
    font-size: 0.85rem;
    text-align: center;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #ffffff 100%);
    padding: 5rem 1.5rem;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.badge {
    display: inline-block;
    font-weight: bold;
    color: #7928ca;
    margin-bottom: 1.5rem;
    background: rgba(121, 40, 202, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 1.5rem 0;
}

.badge-item {
    background-color: #f8fafc;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

.hero p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-cta:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.06);
}

/* Why Choose Section */
.why-nilink {
    background-color: #ffffff;
    padding: 5rem 1.5rem;
    text-align: center;
}

.why-nilink h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

.why-nilink ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.why-nilink li {
    margin: 1rem 0;
    font-size: 1.125rem;
    color: #475569;
}

/* Target Audience Section */
.target-audience {
    background-color: #ffffff;
    padding: 5rem 1.5rem;
}

.target-audience h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.target-audience ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.target-audience li {
    margin: 1.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
    color: #475569;
}

/* Comparison Section */
.comparison {
    padding: 5rem 1.5rem;
    background-color: #f8fafc;
}

.comparison h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.comparison th,
.comparison td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison th {
    background-color: #f1f5f9;
    font-weight: 600;
    color: #1e293b;
}

.comparison td {
    color: #475569;
}

/* Screenshot Section */
.screenshot-section {
    padding: 5rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.screenshot-section h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 3rem;
}

.screenshot-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.screenshot-caption {
    margin-top: 1rem;
    color: #64748b;
    font-size: 0.9rem;
}

/* Media Mention */
.media-mention {
    padding: 3rem 1.5rem;
    text-align: center;
    background-color: #fff;
    border-top: 1px solid #e2e8f0;
}

.media-mention p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logos img {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.logos img:hover {
    opacity: 0.8;
}

/* Final CTA */
.final-cta {
    padding: 5rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #7928ca 0%, #ff0080 100%);
    color: white;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.final-cta .btn-cta {
    background: white;
    color: #7928ca;
}

.final-cta .btn-cta:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 5rem 1.5rem;
    background-color: #f8fafc;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features {
        grid-template-columns: repeat(3, 1fr);
        padding: 6rem 2rem;
    }
}

.feature-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-card h3 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    font-size: 1rem;
}

/* Preview Section */
.preview {
    padding: 5rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.preview h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 3rem;
}

.preview img {
    max-width: 300px;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Testimonial Section */
.testimonial {
    background-color: #f0f0ff;
    padding: 5rem 1.5rem;
    text-align: center;
}

.testimonial h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

.testimonial blockquote {
    font-size: 1.25rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

.testimonial strong {
    display: block;
    margin-top: 1rem;
    color: #1e293b;
    font-style: normal;
}

/* Newsletter Section */
.newsletter {
    background: #fff;
    padding: 5rem 1.5rem;
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.newsletter button {
    background-color: #2563eb;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background-color: #1d4ed8;
}

/* Roadmap Section */
.roadmap {
    background: #f8fafc;
    padding: 5rem 1.5rem;
    text-align: center;
}

.roadmap h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

.roadmap ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.roadmap li {
    padding: 1rem 0;
    font-size: 1.125rem;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

.roadmap li:last-child {
    border-bottom: none;
}

/* Trust Bar */
.trust-bar {
    background-color: #f1f5f9;
    text-align: center;
    padding: 1rem;
    color: #475569;
    border-top: 1px solid #e2e8f0;
}

.trust-bar p {
    font-size: 0.9rem;
}

/* Footer Nav */
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #7928ca;
}

/* Version Note */
.version-note {
    text-align: center;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 1rem;
}

/* Footer */
.site-footer {
    background-color: #f8fafc;
    padding: 3rem 1.5rem 1.5rem;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.site-footer nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.site-footer a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #2563eb;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.chat-fake {
    font-size: 0.85rem;
    text-align: center;
    padding: 0.75rem;
    background: #fff8e1;
    color: #795548;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
}

/* Legal Content Styles */
.legal-content {
    padding: 4rem 1.5rem;
    background-color: #f8fafc;
}

.legal-content .container {
    max-width: 800px;
    background-color: #fff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-section h3 {
    font-size: 1.25rem;
    color: #334155;
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    color: #475569;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: #475569;
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .features {
        padding: 4rem 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }

    .legal-content .container {
        padding: 2rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }

    .legal-section h3 {
        font-size: 1.125rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter input,
    .newsletter button {
        width: 100%;
    }
}
