/* Reset and base styles */
* {
    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: #111827;
    background-color: #ffffff;
}

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

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(to right, #9333ea, #2563eb);
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #7c3aed;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(to right, #9333ea, #2563eb);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(to right, #7c3aed, #1d4ed8);
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
}

.btn-secondary {
    background: white;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
    background: #f9fafb;
    color: #374151;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Main content */
.main {
    margin-top: 80px;
}

/* Hero section */
.hero {
    padding: 4rem 0 6rem;
    background: linear-gradient(to right bottom, #ffffff, rgba(250, 245, 255, 0.3), rgba(239, 246, 255, 0.3));
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #fbbf24;
    font-size: 1.25rem;
}

.rating-text {
    color: #6b7280;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

.gradient-text {
    background: linear-gradient(to right, #9333ea, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.highlight {
    color: #7c3aed;
    font-weight: 600;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(to right, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

/* Demo card */
.hero-demo {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.demo-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(229, 231, 235, 0.5);
    max-width: 500px;
    width: 100%;
    background: linear-gradient(to right bottom, rgba(243, 232, 255, 0.2), rgba(219, 234, 254, 0.2));
}

.demo-header {
    margin-bottom: 1.5rem;
}

.demo-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.demo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(to right, #9333ea, #2563eb);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.demo-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.demo-subtitle {
    color: #6b7280;
    font-size: 0.875rem;
}

.demo-badge {
    background: linear-gradient(to right, #9333ea, #2563eb);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: auto;
}

.demo-section {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.demo-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(to right, #f59e0b, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.demo-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #7c3aed;
    margin-bottom: 0.25rem;
}

.demo-desc {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.demo-detail {
    color: #374151;
    font-size: 0.875rem;
}

.demo-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-weight: 700;
    color: #111827;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.metric-label {
    color: #6b7280;
    font-size: 0.75rem;
}

.demo-quality {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(to right bottom, #fff7ed, #fed7aa);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.quality-icon {
    font-size: 1.5rem;
}

.quality-text h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.quality-text p {
    color: #6b7280;
    font-size: 0.875rem;
}

.quality-score {
    margin-left: auto;
    font-weight: 700;
    color: #7c3aed;
    font-size: 1.125rem;
}

.demo-topics {
    margin-bottom: 1.5rem;
}

.demo-topics h4 {
    font-weight: 600;
    color: #7c3aed;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.topic-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.topic-tag {
    background: linear-gradient(to right, rgba(147, 51, 234, 0.1), rgba(37, 99, 235, 0.1));
    color: #7c3aed;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.demo-communication {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.comm-icon {
    font-size: 1.5rem;
}

.comm-content h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.comm-stats {
    display: flex;
    gap: 1rem;
}

.comm-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-weight: 700;
    color: #2563eb;
    font-size: 1rem;
}

.stat-label {
    color: #6b7280;
    font-size: 0.75rem;
}

.demo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(229, 231, 235, 0.5);
}

.demo-powered {
    color: #6b7280;
    font-size: 0.75rem;
}

.demo-insights {
    color: #7c3aed;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Hero actions */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-size: 0.875rem;
}

.benefit-icon {
    color: #10b981;
}

/* Features preview section */
.features-preview {
    padding: 6rem 0;
    background: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.feature-list li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
}

/* CTA section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(to right bottom, #9333ea, #2563eb, #4f46e5);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: #7c3aed;
}

.cta-section .btn-primary:hover {
    background: #f9fafb;
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(to right, #9333ea, #2563eb);
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info a {
    color: #9ca3af;
    text-decoration: none;
}

.contact-info a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .demo-card {
        margin: 0 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Additional styles for new pages */
.nav-link.active {
    color: #7c3aed;
    font-weight: 600;
}

/* Pricing page styles */
.pricing-hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(to right bottom, #ffffff, rgba(250, 245, 255, 0.3), rgba(239, 246, 255, 0.3));
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

.pricing-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-plans {
    padding: 4rem 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plan-card.featured {
    border: 2px solid #9333ea;
    background: linear-gradient(to right bottom, rgba(243, 232, 255, 0.2), rgba(219, 234, 254, 0.2));
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #f59e0b, #ea580c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
}

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

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
}

.price-period {
    color: #6b7280;
    font-size: 0.875rem;
}

.plan-leads {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.plan-cost {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.plan-savings {
    background: linear-gradient(to right, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    color: #374151;
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.plan-btn {
    width: 100%;
    justify-content: center;
}

/* FAQ styles */
.pricing-faq, .contact-faq {
    padding: 4rem 0;
    background: #f9fafb;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: #6b7280;
    line-height: 1.6;
}

/* Features page styles */
.features-hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(to right bottom, #ffffff, rgba(250, 245, 255, 0.3), rgba(239, 246, 255, 0.3));
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.features-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

.features-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-grid-section {
    padding: 4rem 0;
}

.features-main-grid {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card-large {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-icon-xl {
    font-size: 4rem;
    flex-shrink: 0;
}

.feature-title-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-subtitle {
    color: #6b7280;
    font-size: 1rem;
}

.feature-content .feature-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    display: grid;
    gap: 0.75rem;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
}

.benefit-row .benefit-icon {
    color: #10b981;
    font-weight: bold;
    flex-shrink: 0;
}

.features-detailed {
    padding: 4rem 0;
    background: #f9fafb;
}

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

.detailed-feature {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.detailed-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.detailed-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.detailed-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.detailed-feature p {
    color: #6b7280;
    line-height: 1.6;
}

.features-comparison {
    padding: 4rem 0;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(to right, #9333ea, #2563eb);
    color: white;
    font-weight: 600;
    padding: 1rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.comparison-feature {
    font-weight: 500;
    color: #111827;
}

.comparison-us {
    color: #10b981;
    font-weight: 500;
}

.comparison-others {
    color: #6b7280;
}

/* Contact page styles */
.contact-hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(to right bottom, #ffffff, rgba(250, 245, 255, 0.3), rgba(239, 246, 255, 0.3));
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

.contact-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form-section {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-side h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.contact-info-side > p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-benefits {
    margin-bottom: 3rem;
}

.contact-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-benefit .benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.benefit-content p {
    color: #6b7280;
    font-size: 0.875rem;
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item strong {
    color: #111827;
}

.contact-item a {
    color: #7c3aed;
    text-decoration: none;
}

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

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-submit {
    margin-top: 1rem;
}

.form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* How it works page styles */
.how-it-works-hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(to right bottom, #ffffff, rgba(250, 245, 255, 0.3), rgba(239, 246, 255, 0.3));
}

.how-it-works-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.how-it-works-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

.how-it-works-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.process-steps {
    padding: 4rem 0;
}

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

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #9333ea, #2563eb);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-icon {
    font-size: 3rem;
    margin: 1rem 0;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.step-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    text-align: left;
}

.step-feature {
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.technology-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tech-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.tech-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.875rem;
}

.results-section {
    padding: 4rem 0;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #9333ea, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.stat-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.875rem;
}

.timeline-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #9333ea, #2563eb);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    background: linear-gradient(to right, #9333ea, #2563eb);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    white-space: nowrap;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    width: 45%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-title,
    .features-title,
    .contact-title,
    .how-it-works-title {
        font-size: 2.5rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .features-main-grid {
        gap: 2rem;
    }
    
    .feature-header {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .comparison-header {
        text-align: center;
    }
    
    .timeline:before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 20px;
        transform: none;
        position: absolute;
        top: 0;
    }
    
    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 2rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .demo-metrics {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .comm-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .topic-tags {
        flex-direction: column;
    }
    
    .pricing-title,
    .features-title,
    .contact-title,
    .how-it-works-title {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal pages styles */
.legal-hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(to right bottom, #ffffff, rgba(250, 245, 255, 0.3), rgba(239, 246, 255, 0.3));
}

.legal-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #111827;
}

.legal-description {
    color: #6b7280;
    font-size: 1rem;
}

.legal-content {
    padding: 4rem 0;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.legal-document h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-document ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-document li {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-document a {
    color: #7c3aed;
    text-decoration: none;
}

.legal-document a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-title {
        font-size: 2.5rem;
    }
    
    .legal-document {
        padding: 2rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-document {
        padding: 1.5rem;
    }
}
