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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Space Grotesk", system-ui, -apple-system, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.6;
    color: #111C1C;
    background-color: #ffffff;
    font-size: 16px;
}

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

/* Navigation */
.navbar {
    background-color: #ffffff;
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #111C1C;
    font-weight: 600;
    font-size: 20px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6A4DFF, #5A41D9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    font-size: 16px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #111C1C;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #6A4DFF;
}

.nav-cta {
    background-color: #6A4DFF;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: #5A41D9;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background-color: #ffffff;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    background-color: #f8f7ff;
    color: #6A4DFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    color: #111C1C;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #6A4DFF, #5A41D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn-primary {
    background-color: #6A4DFF;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #5A41D9;
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-link {
    color: #6A4DFF;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #5A41D9;
}

/* Hero Image/Dashboard Mockup */
.hero-image {
    position: relative;
}

.dashboard-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.mockup-header {
    background: #f8f9fa;
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
}

.mockup-tabs {
    display: flex;
    gap: 16px;
}

.tab {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
}

.tab.active {
    background-color: #6A4DFF;
    color: white;
}

.mockup-content {
    padding: 24px;
}

.chart-section {
    margin-bottom: 24px;
}

.chart-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 16px;
}

.bar-chart {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 120px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.bar {
    background: linear-gradient(to top, #6A4DFF, #5A41D9);
    width: 24px;
    border-radius: 2px 2px 0 0;
    min-height: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    text-align: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 24px;
    font-weight: 600;
    color: #111C1C;
}

.stat-label {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

/* Success Message */
.success-message {
    padding: 40px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.success-message p {
    font-size: 18px;
    color: #666;
}

.highlight {
    color: #6A4DFF;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #111C1C;
    margin-bottom: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    text-align: left;
}

.feature-number {
    color: #6A4DFF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111C1C;
    margin-bottom: 12px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.features-cta {
    text-align: center;
}

/* AI Analysis Section */
.ai-analysis {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.analysis-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-badge {
    background-color: #f0f0ff;
    color: #6A4DFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 24px;
}

.analysis-text-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: #111C1C;
    margin-bottom: 20px;
    line-height: 1.3;
}

.analysis-text-content p {
    color: #666;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.7;
}

.feature-list {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-item i {
    color: #6A4DFF;
    margin-top: 2px;
    font-size: 16px;
}

.feature-item span {
    color: #666;
    line-height: 1.6;
}

.analysis-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.mockup-header h4 {
    background: #6A4DFF;
    color: white;
    padding: 16px 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.analysis-text {
    padding: 24px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.analysis-text p {
    margin-bottom: 16px;
}

.analysis-text strong {
    color: #111C1C;
    font-weight: 600;
}

/* Value Proposition Section */
.value-proposition {
    padding: 80px 0;
    background-color: #ffffff;
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.value-benefits {
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.benefit-item i {
    color: #6A4DFF;
    margin-top: 2px;
    font-size: 16px;
}

.benefit-item span {
    color: #666;
    line-height: 1.6;
}

.dashboard-preview {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.dashboard-header {
    background: #f8f9fa;
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
}

.dashboard-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111C1C;
}

.dashboard-content {
    padding: 24px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.metric-row:last-child {
    border-bottom: none;
}

.metric-label {
    color: #666;
    font-size: 14px;
}

.metric-value {
    font-weight: 600;
    color: #111C1C;
}

.metric-value.success {
    color: #22c55e;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.step-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #6A4DFF, #5A41D9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 24px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111C1C;
    margin-bottom: 16px;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #6A4DFF, #5A41D9);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background-color: white;
    color: #6A4DFF;
}

.cta-section .btn-primary:hover {
    background-color: #f8f9fa;
}

/* Footer */
.footer {
    background-color: #111C1C;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 20px;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, #6A4DFF, #5A41D9);
}

.footer-section h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6A4DFF;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info a {
    color: #6A4DFF;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 14px;
}

.footer-bottom a {
    color: #6A4DFF;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Dark Theme Styles for Blog and Use Cases */
.dark-theme {
    background-color: #1a1a1a;
    color: white;
    min-height: 100vh;
}

.dark-theme .navbar {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
}

.dark-theme .nav-logo,
.dark-theme .nav-link {
    color: white;
}

.dark-theme .nav-link:hover {
    color: #6A4DFF;
}

.page-header {
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.breadcrumb {
    color: #ccc;
    font-size: 14px;
}

.breadcrumb a {
    color: #6A4DFF;
    text-decoration: none;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 0 0 80px;
}

.blog-card {
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-thumbnail {
    height: 200px;
    background: linear-gradient(135deg, #6A4DFF, #5A41D9, #22c55e);
    position: relative;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #ccc;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a {
    color: white;
    text-decoration: none;
}

.blog-title a:hover {
    color: #6A4DFF;
}

/* Use Cases Styles */
.use-case-hero {
    padding: 120px 0 80px;
    background-color: #1a1a1a;
}

.use-case-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.use-case-text h1 {
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.use-case-text p {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.email-signup {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.email-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #444;
    border-radius: 8px;
    background: #2a2a2a;
    color: white;
    font-size: 16px;
}

.email-input::placeholder {
    color: #888;
}

.email-submit {
    background-color: #6A4DFF;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.email-submit:hover {
    background-color: #5A41D9;
}

.use-case-mockup {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #444;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #111C1C;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #6A4DFF;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background-color: #6A4DFF;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    background-color: #5A41D9;
}

.form-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Pricing Table */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 60px 0;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: #6A4DFF;
    transform: scale(1.05);
}

.pricing-badge {
    background: #6A4DFF;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    color: #6A4DFF;
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: #111C1C;
    margin-bottom: 8px;
}

.pricing-period {
    color: #666;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

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

.pricing-features li i {
    color: #22c55e;
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .analysis-content,
    .value-content,
    .use-case-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1,
    .page-header h1,
    .use-case-text h1 {
        font-size: 36px;
        line-height: 44px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .analysis-text-content h2 {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .email-signup {
        flex-direction: column;
        gap: 16px;
    }
    
    .contact-form {
        padding: 24px;
        margin: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero h1,
    .page-header h1,
    .use-case-text h1 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .btn-primary.large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .pricing-price {
        font-size: 36px;
    }
}
