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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.91);
    background-color: #f7f7f7;
}

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

/* Navigation */
.navbar {
    background: #f7f7f7;
    padding: 16px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(10, 10, 10);
    font-weight: 600;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #e54e05, #ff6b35);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    margin-right: 8px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
}

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

.nav-link {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.91);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #e54e05;
}

.nav-cta {
    background: #e54e05;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

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

/* Hero Section */
.hero {
    padding: 120px 20px 80px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 78, 5, 0.1);
    color: #e54e05;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: rgb(10, 10, 10);
    margin-bottom: 24px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-bottom: 60px;
}

.btn-primary {
    background: #e54e05;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    background: transparent;
    color: #e54e05;
    padding: 12px 24px;
    border: 2px solid #e54e05;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #e54e05;
    color: white;
}

.hero-note {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
}

.hero-demo {
    background: white;
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 800px;
}

.demo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: rgba(0, 0, 0, 0.6);
}

.demo-placeholder i {
    font-size: 48px;
    color: #e54e05;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: rgb(10, 10, 10);
    text-align: center;
    margin-bottom: 24px;
}

.section-description {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.step-card {
    background: #f7f7f7;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 14px;
    font-weight: 600;
    color: #e54e05;
    margin-bottom: 16px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: rgb(10, 10, 10);
    margin-bottom: 12px;
}

.step-description {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 24px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e54e05, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

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

/* Lead Generation Section */
.lead-generation {
    padding: 80px 20px;
    background: #f7f7f7;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 78, 5, 0.1);
    color: #e54e05;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 32px;
    font-weight: 700;
    color: rgb(10, 10, 10);
    margin-bottom: 16px;
}

.feature-description {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
}

.leads-demo {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    min-height: 400px;
}

.leads-sidebar {
    width: 300px;
    background: #f8f9fa;
    padding: 24px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.leads-sidebar h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgb(10, 10, 10);
}

.lead-filters {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.filter-item:hover {
    background: rgba(229, 78, 5, 0.1);
}

.filter-item.active {
    background: rgba(229, 78, 5, 0.1);
    color: #e54e05;
}

.filter-item .count {
    margin-left: auto;
    background: #e54e05;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.leads-content {
    flex: 1;
    padding: 24px;
}

.lead-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.lead-item:last-child {
    border-bottom: none;
}

.lead-avatar {
    width: 40px;
    height: 40px;
    background: #e54e05;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.lead-info h5 {
    font-weight: 600;
    color: rgb(10, 10, 10);
    margin-bottom: 4px;
}

.lead-info p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    margin-bottom: 4px;
}

.lead-time {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}

/* Personalization Section */
.personalization {
    padding: 80px 20px;
    background: white;
}

.personalization-demo {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    max-width: 800px;
}

.message-thread {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.original-post {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #e54e05;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
}

.post-stats {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
}

.suggested-response {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e54e05;
}

.response-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #e54e05;
}

.response-content {
    margin-bottom: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.response-actions {
    display: flex;
    gap: 12px;
}

/* Features Overview */
.features-overview {
    padding: 80px 20px;
    background: #f7f7f7;
}

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

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e54e05, #ff6b35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(10, 10, 10);
    margin-bottom: 12px;
}

.feature-item p {
    color: rgba(0, 0, 0, 0.7);
}

/* User Reviews Section */
.user-reviews {
    padding: 80px 20px;
    background: white;
}

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

.review-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #e54e05;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-stars i {
    color: #ffc107;
}

.review-text {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: #e54e05;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info h5 {
    font-weight: 600;
    color: rgb(10, 10, 10);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
}

/* Tech Articles Section */
.tech-articles {
    padding: 80px 20px;
    background: #f7f7f7;
}

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

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

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

.article-image {
    height: 200px;
    background: linear-gradient(135deg, #e54e05, #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-image i {
    font-size: 48px;
    color: white;
}

.article-content {
    padding: 24px;
}

.article-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(10, 10, 10);
    margin-bottom: 12px;
}

.article-content p {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: rgb(10, 10, 10);
    color: white;
    text-align: center;
}

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

.cta-description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    margin-top: 12px;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: rgb(10, 10, 10);
    color: white;
    padding: 60px 20px 20px;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    margin-bottom: 16px;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-column h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #e54e05;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .leads-demo {
        flex-direction: column;
    }
    
    .leads-sidebar {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Contact Form Styles */
.contact-section {
    padding: 80px 20px;
    background: white;
}

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

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(10, 10, 10);
    margin-bottom: 16px;
}

.contact-info p {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 32px;
}

.contact-benefits {
    margin-bottom: 40px;
}

.contact-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-benefits .benefit-item i {
    color: #e54e05;
    font-size: 16px;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(10, 10, 10);
    margin-bottom: 16px;
}

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

.contact-item i {
    color: #e54e05;
    font-size: 16px;
    margin-top: 2px;
}

.contact-form-container {
    background: #f8f9fa;
    padding: 40px;
    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;
    color: rgb(10, 10, 10);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

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

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #e54e05;
}

.checkbox-label a {
    color: #e54e05;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    margin-top: 20px;
    padding: 16px 32px;
    font-size: 18px;
}

.success-message {
    text-align: center;
    padding: 40px;
    background: #f0f9ff;
    border-radius: 12px;
    border: 2px solid #e54e05;
}

.success-icon {
    font-size: 48px;
    color: #e54e05;
    margin-bottom: 16px;
}

.success-message h4 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(10, 10, 10);
    margin-bottom: 12px;
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 20px;
    background: white;
}

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

.legal-document h2 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(10, 10, 10);
    margin: 40px 0 16px 0;
}

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

.legal-document h3 {
    font-size: 20px;
    font-weight: 600;
    color: rgb(10, 10, 10);
    margin: 24px 0 12px 0;
}

.legal-document p {
    margin-bottom: 16px;
    color: rgba(0, 0, 0, 0.8);
}

.legal-document ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-document li {
    margin-bottom: 8px;
    color: rgba(0, 0, 0, 0.8);
}

/* Features Page Styles */
.features-detailed {
    padding: 80px 20px;
    background: white;
}

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

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

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

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-demo {
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #e54e05, #ff6b35);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 16px;
}

.feature-demo i {
    font-size: 48px;
}

.feature-demo p {
    font-size: 18px;
    font-weight: 600;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(0, 0, 0, 0.8);
}

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

.features-grid-section {
    padding: 80px 20px;
    background: #f7f7f7;
}

/* Pricing Page Styles */
.pricing-section {
    padding: 80px 20px;
    background: white;
}

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

.pricing-card {
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

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

.plan-name {
    font-size: 24px;
    font-weight: 600;
    color: rgb(10, 10, 10);
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 16px;
}

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

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

.period {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
    display: block;
    margin-top: 4px;
}

.plan-description {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 32px;
    line-height: 1.5;
}

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

.pricing-benefits {
    padding: 80px 20px;
    background: #f7f7f7;
}

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

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e54e05, #ff6b35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 24px;
    color: white;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(10, 10, 10);
    margin-bottom: 12px;
}

.benefit-item p {
    color: rgba(0, 0, 0, 0.7);
}

/* FAQ Styles */
.faq-section {
    padding: 80px 20px;
    background: white;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #e54e05;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: rgb(10, 10, 10);
    margin-bottom: 12px;
    cursor: pointer;
}

.faq-answer {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

/* Product Page Styles */
.product-overview {
    padding: 80px 20px;
    background: white;
}

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

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #e54e05;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.process-section {
    padding: 80px 20px;
    background: #f7f7f7;
}

.process-steps {
    margin-top: 60px;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.process-step.reverse {
    grid-template-columns: 200px 1fr 80px;
    direction: rtl;
}

.process-step.reverse > * {
    direction: ltr;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: #e54e05;
    text-align: center;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    color: rgb(10, 10, 10);
    margin-bottom: 12px;
}

.step-description {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(229, 78, 5, 0.1);
    color: #e54e05;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.step-visual {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #e54e05, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.step-visual i {
    font-size: 48px;
    color: white;
}

.advantages-section {
    padding: 80px 20px;
    background: white;
}

.comparison-table {
    margin-top: 60px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #f8f9fa;
    font-weight: 600;
    color: rgb(10, 10, 10);
}

.comparison-header > div {
    padding: 20px;
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.comparison-row > div {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-feature {
    font-weight: 500;
    color: rgb(10, 10, 10);
}

.comparison-traditional {
    color: rgba(0, 0, 0, 0.6);
}

.comparison-mellowwave {
    color: #e54e05;
    font-weight: 500;
}

.comparison-traditional i,
.comparison-mellowwave i {
    font-size: 16px;
}

.comparison-traditional i {
    color: #dc3545;
}

.comparison-mellowwave i {
    color: #28a745;
}

.technology-section {
    padding: 80px 20px;
    background: #f7f7f7;
}

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

.tech-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e54e05, #ff6b35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tech-icon i {
    font-size: 24px;
    color: white;
}

.tech-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(10, 10, 10);
    margin-bottom: 12px;
}

.tech-item p {
    color: rgba(0, 0, 0, 0.7);
}

.use-cases-section {
    padding: 80px 20px;
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.use-case-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #e54e05;
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e54e05, #ff6b35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.use-case-icon i {
    font-size: 24px;
    color: white;
}

.use-case-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(10, 10, 10);
    margin-bottom: 12px;
}

.use-case-item p {
    color: rgba(0, 0, 0, 0.7);
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-primary.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .leads-demo {
        flex-direction: column;
    }
    
    .leads-sidebar {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-section.reverse {
        direction: ltr;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .process-step.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .feature-title {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .legal-document {
        padding: 0 10px;
    }
    
    .step-visual {
        width: 80px;
        height: 80px;
    }
    
    .step-visual i {
        font-size: 32px;
    }
}
