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

body {
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    background-color: #fff;
}

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

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

.logo {
    text-decoration: none;
    color: #000;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #2563eb;
}

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

.nav-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

.nav-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background: #f3f4f6;
    border-radius: 20px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.social-btn:hover {
    background: #e5e7eb;
}

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

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23000000" stop-opacity="0.05"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>');
    opacity: 0.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 66.08px;
    font-weight: 400;
    line-height: 92.512px;
    color: #000;
    margin-bottom: 32px;
    max-width: 800px;
}

.hero-description {
    max-width: 600px;
    margin-bottom: 48px;
}

.hero-description p {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 28px;
    color: #374151;
}

.cta-button {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 12px 32px;
    border-radius: 6400px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.product-section,
.browser-section,
.research-section,
.cloud-section,
.testimonials-section,
.reviews-section {
    border-bottom: 1px solid #e5e7eb;
}

.product-section h2,
.browser-section h2,
.research-section h2,
.cloud-section h2,
.testimonials-section h2,
.reviews-section h2 {
    font-size: 54.08px;
    font-weight: 400;
    line-height: 75.712px;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 32px !important;
    line-height: 44px !important;
    color: #374151;
    margin-bottom: 48px !important;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

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

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content {
    font-size: 16px;
    line-height: 24px;
    color: #374151;
}

.feature-content strong {
    color: #000;
}

.section-link {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 48px;
    transition: color 0.2s ease;
}

.section-link:hover {
    color: #1d4ed8;
}

/* Demo Section */
.demo-section {
    text-align: center;
}

.demo-section h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 32px;
    color: #000;
}

.demo-placeholder {
    margin-bottom: 32px;
}

.demo-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.demo-content {
    text-align: center;
    color: white;
}

.demo-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.demo-content p {
    font-size: 16px;
    opacity: 0.9;
}

.download-btn {
    display: inline-block;
    background: #374151;
    color: #fff;
    padding: 12px 32px;
    border-radius: 6400px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.download-btn:hover {
    background: #1f2937;
    transform: translateY(-2px);
}

/* Research Section */
.research-description {
    max-width: 800px;
    margin-bottom: 32px;
}

.research-description p {
    font-size: 18px;
    line-height: 28px;
    color: #374151;
    margin-bottom: 16px;
}

.research-links {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
}

.research-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.research-link:hover {
    color: #1d4ed8;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.metric-item {
    text-align: center;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
}

.metric-title {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 48px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 8px;
}

.metric-description {
    font-size: 14px;
    color: #6b7280;
}

/* Use Cases */
.use-cases h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 32px;
    color: #000;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.use-case-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.use-case-item:hover {
    transform: translateY(-4px);
}

.use-case-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.use-case-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.use-case-content p {
    font-size: 14px;
    opacity: 0.9;
}

.use-case-item > p {
    padding: 16px;
    font-size: 14px;
    color: #374151;
    line-height: 20px;
}

/* Reviews Section */
.review-item {
    margin-bottom: 32px;
}

.review-source {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    margin-bottom: 16px;
}

.review-item blockquote {
    font-size: 18px;
    line-height: 28px;
    color: #374151;
    font-style: italic;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    margin-bottom: 32px;
}

.review-sources {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.review-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.review-link:hover {
    color: #1d4ed8;
}

/* Business Section */
.business-section {
    background: #000;
    color: #fff;
}

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

.business-label {
    display: inline-block;
    font-size: 16px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.business-section h2 {
    color: #fff;
    margin-bottom: 16px;
}

.business-section p {
    font-size: 18px;
    color: #d1d5db;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 48px 0 24px;
}

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

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

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.footer-section a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-logo {
    font-size: 24px;
    font-weight: 600;
    color: #2563eb !important;
    text-decoration: none !important;
}

.footer-cta {
    display: inline-block !important;
    background: #2563eb;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 6400px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.footer-cta:hover {
    background: #1d4ed8 !important;
    color: #fff !important;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
}

.footer-info p {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-info {
    margin-top: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-menu {
        gap: 16px;
    }
    
    .nav-social {
        display: none;
    }
    
    .hero-section h1 {
        font-size: 48px;
        line-height: 56px;
    }
    
    .section-container {
        padding: 48px 16px;
    }
    
    .product-section h2,
    .browser-section h2,
    .research-section h2,
    .cloud-section h2,
    .testimonials-section h2,
    .reviews-section h2 {
        font-size: 36px;
        line-height: 44px;
    }
    
    .section-subtitle {
        font-size: 24px !important;
        line-height: 32px !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .use-case-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .research-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .review-sources {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 36px;
        line-height: 44px;
    }
    
    .cta-button {
        font-size: 18px;
        padding: 10px 24px;
    }
}

/* Additional styles for new pages */

/* Legal pages */
.legal-section {
    padding: 80px 0;
}

.last-updated {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 32px;
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #000;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #374151;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 28px;
    color: #374151;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 24px;
    color: #374151;
}

.contact-details {
    background: #f8fafc;
    padding: 24px;
    border-radius: 8px;
    margin-top: 16px;
}

/* Contact form styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.contact-info > p {
    font-size: 18px;
    color: #374151;
    margin-bottom: 32px;
    line-height: 28px;
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.contact-item p {
    color: #374151;
    line-height: 24px;
}

.contact-benefits {
    margin-top: 32px;
}

.contact-benefits h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.contact-benefits ul {
    list-style: none;
    padding: 0;
}

.contact-benefits li {
    margin-bottom: 8px;
    color: #374151;
    line-height: 24px;
}

.contact-form-container {
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

.success-message {
    background: #d1fae5;
    border: 1px solid #10b981;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.success-message h3 {
    color: #065f46;
    margin-bottom: 8px;
}

.success-message p {
    color: #047857;
    margin: 0;
}

/* Pricing page styles */
.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.pricing-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.pricing-price {
    margin-bottom: 32px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
}

.price-unit {
    font-size: 16px;
    color: #6b7280;
    margin-left: 8px;
}

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

.pricing-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-icon {
    color: #10b981;
    font-weight: 600;
}

.pricing-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: #2563eb;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
    margin-bottom: 16px;
}

.pricing-cta:hover {
    background: #1d4ed8;
}

.pricing-note {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    margin: 0;
}

.pricing-info,
.pricing-faq {
    margin-bottom: 64px;
}

.pricing-info h2,
.pricing-faq h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #000;
}

.pricing-explanation,
.faq-grid {
    display: grid;
    gap: 32px;
}

.explanation-item,
.faq-item {
    background: #f8fafc;
    padding: 24px;
    border-radius: 8px;
}

.explanation-item h4,
.faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.explanation-item p,
.faq-item p {
    color: #374151;
    line-height: 24px;
    margin: 0;
}

.pricing-cta-section {
    text-align: center;
    background: #f8fafc;
    padding: 48px;
    border-radius: 12px;
}

.pricing-cta-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.pricing-cta-section p {
    font-size: 18px;
    color: #374151;
    margin-bottom: 32px;
}

/* Features page styles */
.features-overview {
    padding: 80px 0;
}

.feature-categories {
    display: grid;
    gap: 64px;
}

.feature-category {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 48px;
}

.category-header {
    margin-bottom: 32px;
}

.category-header h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.category-header p {
    font-size: 18px;
    color: #6b7280;
}

.feature-list {
    display: grid;
    gap: 32px;
}

.feature-list .feature-item {
    background: #f8fafc;
    padding: 24px;
    border-radius: 8px;
}

.feature-list .feature-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.feature-list .feature-item p {
    color: #374151;
    line-height: 24px;
    margin-bottom: 16px;
}

.feature-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.benefit {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
}

.advanced-features {
    padding: 80px 0;
    background: #f8fafc;
}

.advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.advanced-feature {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.advanced-feature h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.advanced-feature p {
    color: #374151;
    line-height: 24px;
    margin-bottom: 16px;
}

.advanced-feature ul {
    list-style: none;
    padding: 0;
}

.advanced-feature li {
    color: #374151;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.advanced-feature li:before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.feature-comparison {
    padding: 80px 0;
}

.comparison-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
}

.comparison-header {
    background: #f8fafc;
    font-weight: 600;
    color: #000;
}

.comparison-header > div,
.comparison-row > div {
    padding: 16px 24px;
    text-align: center;
}

.feature-name {
    text-align: left !important;
}

.comparison-row {
    border-bottom: 1px solid #e5e7eb;
}

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

.plan-feature {
    color: #374151;
}

.features-cta {
    padding: 80px 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.features-cta h2 {
    color: #fff;
    margin-bottom: 16px;
}

.features-cta p {
    color: #d1d5db;
    margin-bottom: 32px;
}

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

.cta-button.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta-button.secondary:hover {
    background: #fff;
    color: #000;
}

/* Product page styles */
.product-overview {
    padding: 80px 0;
    background: #f8fafc;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.process-step {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 48px;
    height: 48px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 16px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.step-content p {
    color: #374151;
    line-height: 24px;
}

.product-features {
    padding: 80px 0;
}

.feature-sections {
    display: grid;
    gap: 48px;
}

.feature-section {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 32px;
}

.feature-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #000;
}

.feature-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-detail {
    background: #f8fafc;
    padding: 24px;
    border-radius: 8px;
}

.feature-detail h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.feature-detail p {
    color: #374151;
    line-height: 24px;
}

.competitive-advantages {
    padding: 80px 0;
    background: #f8fafc;
}

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

.advantage-item {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.advantage-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.advantage-item p {
    color: #374151;
    line-height: 24px;
    margin-bottom: 12px;
}

.technical-specs {
    padding: 80px 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.spec-category {
    background: #f8fafc;
    padding: 24px;
    border-radius: 8px;
}

.spec-category h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.spec-category ul {
    list-style: none;
    padding: 0;
}

.spec-category li {
    color: #374151;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.spec-category li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.product-demo {
    padding: 80px 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.product-demo h2 {
    color: #fff;
    margin-bottom: 32px;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    text-align: left;
}

.demo-description h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.demo-description p {
    color: #d1d5db;
    margin-bottom: 16px;
    line-height: 24px;
}

.demo-description ul {
    color: #d1d5db;
    margin-bottom: 32px;
}

.demo-description li {
    margin-bottom: 8px;
    line-height: 24px;
}

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

.demo-cta p {
    color: #9ca3af;
    margin-top: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-name {
        text-align: center !important;
        font-weight: 600;
        background: #f8fafc;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}
