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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #202020;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    color: #202020;
}

.logo-img {
    height: 32px;
    width: auto;
}

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

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

.nav-link:hover {
    color: #0090ff;
}

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

/* Buttons */
.btn-primary {
    background: #0090ff;
    color: #ffffff;
    padding: 13px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #0080e6;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #0090ff;
    padding: 13px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #0090ff;
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.announcement {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f0f8ff;
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 40px;
    border: 1px solid #e0f0ff;
}

.announcement-text {
    font-size: 14px;
    color: #0090ff;
    font-weight: 500;
}

.announcement-link {
    color: #0090ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    color: #202020;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 20px;
    color: #666666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Companies Section */
.companies {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
    align-items: center;
}

.company-logo {
    text-align: center;
    color: #999999;
    font-weight: 600;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.company-logo:hover {
    opacity: 1;
}

/* Features Navigation */
.features-nav {
    padding: 40px 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.features-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tab {
    background: #f8f9fa;
    border: none;
    padding: 12px 20px;
    border-radius: 24px;
    font-weight: 500;
    color: #666666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.feature-tab.active,
.feature-tab:hover {
    background: #e0f0ff;
    color: #0090ff;
}

/* Feature Showcase */
.feature-showcase {
    padding: 60px 0;
    background: #ffffff;
}

.feature-content {
    text-align: center;
}

.feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Titles */
.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #202020;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #666666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.5;
}

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

/* Capabilities */
.capabilities {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.capability {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.capability:hover {
    transform: translateY(-4px);
}

.capability-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 24px;
}

.capability-title {
    font-size: 24px;
    font-weight: 700;
    color: #202020;
    margin-bottom: 16px;
}

.capability-description {
    color: #666666;
    line-height: 1.6;
}

/* Advanced Features */
.advanced-features {
    padding: 80px 0 40px;
    background: #ffffff;
}

/* Feature Splits */
.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-split.reverse {
    direction: rtl;
}

.feature-split.reverse > * {
    direction: ltr;
}

.feature-content {
    max-width: 500px;
}

.feature-title {
    font-size: 40px;
    font-weight: 800;
    color: #202020;
    margin-bottom: 24px;
    line-height: 1.2;
}

.feature-description {
    font-size: 18px;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.feature-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-link {
    color: #0090ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.feature-link:hover {
    color: #0080e6;
}

.feature-visual {
    text-align: center;
}

/* AI Chat */
.ai-chat {
    padding: 80px 0;
    background: #ffffff;
}

/* Lead Tracking */
.lead-tracking {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Market Research */
.market-research {
    padding: 80px 0;
    background: #ffffff;
}

/* Analytics Overview */
.analytics-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Target Audience */
.target-audience {
    padding: 80px 0;
    background: #ffffff;
}

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

.audience-card {
    text-align: center;
    padding: 40px 24px;
}

.audience-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.audience-title {
    font-size: 24px;
    font-weight: 700;
    color: #202020;
    margin-bottom: 16px;
}

.audience-description {
    color: #666666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.testimonial {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 16px;
    color: #202020;
    margin-bottom: 24px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    color: #666666;
    font-size: 14px;
    line-height: 1.4;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: #202020;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #202020;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-logo .logo-img {
    filter: brightness(0) invert(1);
}

.footer-contact {
    color: #cccccc;
    line-height: 1.6;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #0090ff;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #0090ff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
    color: #cccccc;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #0090ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .feature-title {
        font-size: 32px;
    }
    
    .feature-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-title {
        font-size: 24px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
}

/* Pricing Page Styles */
.pricing-plans {
    padding: 4rem 0;
}

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

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

.pricing-card:hover {
    border-color: #0090ff;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 144, 255, 0.1);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0090ff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #202020;
    margin-bottom: 1rem;
}

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

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #0090ff;
}

.price-unit {
    font-size: 1rem;
    color: #666;
    margin-left: 0.5rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0090ff;
    font-weight: bold;
}

.pricing-action {
    margin-bottom: 1.5rem;
}

.pricing-note {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
}

.pricing-faq {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

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

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

.pricing-cta {
    padding: 4rem 0;
    text-align: center;
}

/* Features Page Styles */
.features-overview {
    padding: 4rem 0;
}

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

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

.feature-card:hover {
    border-color: #0090ff;
    box-shadow: 0 4px 20px rgba(0, 144, 255, 0.1);
}

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

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

.feature-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-benefits li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.feature-benefits li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0090ff;
    font-weight: bold;
}

.feature-deep-dive {
    padding: 4rem 0;
    background: #f8f9fa;
}

.feature-showcase-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-showcase-item.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-visual {
    flex: 1;
}

.feature-highlights {
    margin-top: 1.5rem;
}

.highlight {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.highlight:last-child {
    border-bottom: none;
}

.integration-showcase {
    padding: 4rem 0;
}

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

.integration-category h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #202020;
    margin-bottom: 1.5rem;
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.integration-logo {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #666;
    border: 1px solid #e0e0e0;
}

.features-cta {
    padding: 4rem 0;
    text-align: center;
}

/* Product Page Styles */
.demo-video-placeholder {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.demo-preview {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.demo-image {
    width: 100%;
    height: auto;
    display: block;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.demo-play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0090ff;
    margin-bottom: 1rem;
}

.product-overview {
    padding: 4rem 0;
}

.workflow-steps {
    max-width: 800px;
    margin: 0 auto;
}

.workflow-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0090ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

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

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

.product-advantages {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.advantage-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

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

.advantage-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.advantage-comparison {
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5rem;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-item.highlight {
    background: #f0f8ff;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border-bottom: none;
    margin-top: 0.5rem;
}

.comparison-label {
    font-weight: 600;
    color: #202020;
}

.comparison-value {
    color: #666;
    text-align: right;
    flex: 1;
    margin-left: 1rem;
}

.comparison-item.highlight .comparison-value {
    color: #0090ff;
    font-weight: 500;
}

.product-features-showcase {
    padding: 4rem 0;
}

.feature-showcase-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.showcase-item.reverse {
    flex-direction: row-reverse;
}

.showcase-image {
    flex: 1;
    max-width: 500px;
    border-radius: 12px;
}

.showcase-content {
    flex: 1;
}

.showcase-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #202020;
    margin-bottom: 1rem;
}

.showcase-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.showcase-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.showcase-benefits li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.showcase-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0090ff;
    font-weight: bold;
}

.product-testimonials {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.testimonial-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #202020;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: #666;
    margin-bottom: 1.5rem;
}

.testimonial-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0090ff;
}

.metric-label {
    font-size: 0.875rem;
    color: #666;
}

.product-cta {
    padding: 4rem 0;
    text-align: center;
}

/* Contact Page Styles */
.contact-form-section {
    padding: 4rem 0;
}

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

.contact-info {
    padding-right: 2rem;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #202020;
    margin-bottom: 1rem;
}

.contact-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: #0090ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}

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

.benefit-text p {
    color: #666;
    font-size: 0.875rem;
}

.contact-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

.contact-item {
    margin-bottom: 1rem;
    color: #666;
}

.contact-item a {
    color: #0090ff;
    text-decoration: none;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0090ff;
}

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

.success-message {
    background: #f0f8ff;
    border: 1px solid #0090ff;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.success-message h3 {
    color: #0090ff;
    margin-bottom: 1rem;
}

.success-message p {
    color: #666;
}

.contact-faq {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Legal Pages Styles */
.legal-hero {
    padding: 3rem 0;
    text-align: center;
    background: #f8f9fa;
}

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

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.legal-document h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #202020;
    margin: 1.5rem 0 0.75rem 0;
}

.legal-document p {
    color: #666;
    margin-bottom: 1rem;
}

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

.legal-document li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info a {
    color: #0090ff;
    text-decoration: none;
}

/* Additional responsive styles for new pages */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .feature-showcase-item,
    .showcase-item {
        flex-direction: column;
        gap: 2rem;
    }
    
    .feature-showcase-item.reverse,
    .showcase-item.reverse {
        flex-direction: column;
    }
    
    .workflow-step {
        gap: 1rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
    
    .testimonial-metrics {
        justify-content: center;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
    }
}
