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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-logo .logo {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

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

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

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

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

.nav-cta:hover {
    background: #374151;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 40px;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.btn-primary {
    background: #1f2937;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #374151;
}

.btn-secondary {
    background: white;
    color: #1f2937;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.hero-note {
    color: #6b7280;
    font-size: 14px;
}

/* Dashboard Mockup */
.hero-dashboard {
    position: relative;
}

.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.dashboard-header {
    background: #f8fafc;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-logo {
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
}

.dashboard-nav {
    display: flex;
    gap: 20px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #6b7280;
}

.nav-item.active {
    background: #dbeafe;
    color: #2563eb;
}

.dashboard-content {
    padding: 30px;
}

.dashboard-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1f2937;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

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

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
}

.dashboard-chart {
    height: 200px;
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
    border-radius: 8px;
    position: relative;
}

.chart-area {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 0 0 8px 8px;
    opacity: 0.8;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.badge {
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
}

/* Trusted Section */
.trusted-section {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.trusted-section h3 {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
}

.logos-scroll {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 18px;
    font-weight: 600;
    color: #9ca3af;
    padding: 20px;
}

/* Features Grid */
.features-grid {
    padding: 80px 0;
    background: #f8fafc;
}

.features-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

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

/* Detailed Features */
.detailed-features {
    padding: 100px 0;
    background: white;
}

.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

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

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

.feature-tag {
    background: #dbeafe;
    color: #2563eb;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.feature-section h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1f2937;
}

.feature-section p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}

.feature-image {
    position: relative;
}

.mockup-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.mockup-image.lead-gen {
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
}

.mockup-image.analytics {
    background: linear-gradient(135deg, #dcfce7 0%, #86efac 100%);
}

.mockup-image.automation {
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
}

.mockup-image.integration {
    background: linear-gradient(135deg, #ede9fe 0%, #c4b5fd 100%);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #1f2937;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
}

.video-placeholder {
    max-width: 800px;
    margin: 0 auto;
    height: 450px;
    background: #374151;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.video-content i {
    font-size: 80px;
    color: #3b82f6;
    margin-bottom: 20px;
}

.video-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
}

.video-content p {
    font-size: 18px;
    color: #9ca3af;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.newsletter-section h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.newsletter-section p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-form button {
    background: #2563eb;
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo .logo {
    font-size: 28px;
    font-weight: 700;
    color: #3b82f6;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact {
    text-align: center;
    margin-bottom: 30px;
    color: #9ca3af;
}

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

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

/* Pricing Styles */
.pricing-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.pricing-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.pricing-hero p {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-plans {
    padding: 80px 0;
    background: white;
}

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

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

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

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

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #6b7280;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
}

.period {
    font-size: 16px;
    color: #6b7280;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #4b5563;
}

.pricing-features i {
    color: #10b981;
    font-size: 16px;
}

.pricing-cta {
    display: block;
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.pricing-cta:hover {
    background: #374151;
}

.pricing-card.featured .pricing-cta {
    background: #3b82f6;
}

.pricing-card.featured .pricing-cta:hover {
    background: #2563eb;
}

.pricing-faq {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing-faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

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

.pricing-cta-section {
    padding: 80px 0;
    background: #1f2937;
    text-align: center;
    color: white;
}

.pricing-cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

/* Contact Form Styles */
.contact-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.contact-hero p {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

.form-submit:hover {
    background: #2563eb;
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 600;
    display: none;
}

/* Features Page Styles */
.features-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.features-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.features-hero p {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.features-detailed {
    padding: 80px 0;
    background: white;
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-detail:nth-child(even) {
    direction: rtl;
}

.feature-detail:nth-child(even) > * {
    direction: ltr;
}

.feature-detail h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.feature-detail p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #4b5563;
}

.feature-list i {
    color: #10b981;
    font-size: 16px;
}

.feature-visual {
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
    height: 300px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #3b82f6;
}

/* Product Page Styles */
.product-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.product-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.product-hero p {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.product-overview {
    padding: 80px 0;
    background: white;
}

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

.overview-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.overview-card i {
    font-size: 48px;
    color: #3b82f6;
    margin-bottom: 20px;
}

.overview-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.overview-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Terms and Privacy Styles */
.legal-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.legal-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.legal-content {
    padding: 80px 0;
    background: white;
}

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

.legal-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #1f2937;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #374151;
}

.legal-content p {
    margin-bottom: 16px;
    color: #4b5563;
    line-height: 1.6;
}

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

.legal-content li {
    margin-bottom: 8px;
    color: #4b5563;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .feature-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .feature-section h2 {
        font-size: 36px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-detail {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-detail:nth-child(even) {
        direction: ltr;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Product Page Styles */
.product-section {
    margin-bottom: 80px;
}

.product-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #1f2937;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

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

.step-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

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

.diff-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
}

.diff-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.diff-item p {
    color: #6b7280;
    line-height: 1.6;
}

.tech-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tech-item {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 30px;
    border-radius: 12px;
}

.tech-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.tech-item p {
    color: #6b7280;
    line-height: 1.6;
}

.product-cta {
    padding: 80px 0;
    background: #1f2937;
    text-align: center;
    color: white;
}

.product-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.product-cta p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 40px;
}

/* Features Page Additional Styles */
.features-cta {
    padding: 80px 0;
    background: #1f2937;
    text-align: center;
    color: white;
}

.features-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.features-cta p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 40px;
}

/* Contact Page Additional Styles */
.contact-info {
    padding: 60px 0;
    background: #f8fafc;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    font-size: 24px;
    color: #3b82f6;
    width: 40px;
    text-align: center;
}

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

.contact-item p {
    color: #6b7280;
    margin: 0;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .differentiators {
        grid-template-columns: 1fr;
    }
    
    .tech-overview {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .process-steps {
        gap: 30px;
    }
}
