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

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

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

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

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    color: #09090b;
}

.logo-img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    border-radius: 6px;
}

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

.nav-links a {
    text-decoration: none;
    color: #09090b;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.cta-button:hover {
    background: #111827;
    transform: translateY(-2px);
}

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

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background: #7c3aed;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

/* Features Preview */
.features-preview {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #09090b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Technology Showcase */
.technology-showcase {
    padding: 80px 0;
    background: #f1f5f9;
}

.technology-showcase h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #09090b;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

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

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

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

.tech-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #09090b;
}

.tech-item p {
    color: #64748b;
    line-height: 1.6;
}

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

.how-it-works h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #09090b;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    background: #7c3aed;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

.step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #09090b;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

.section-cta {
    background: #1f2937;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

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

/* Industry Trends */
.industry-trends {
    padding: 80px 0;
    background: #f8fafc;
}

.industry-trends h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #09090b;
}

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

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

.trend-article h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #09090b;
}

.trend-article p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #6d28d9;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: #1f2937;
    color: white;
    text-align: center;
}

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

.final-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button-large {
    background: #7c3aed;
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #09090b;
    color: white;
    padding: 50px 0 30px;
}

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

.footer-brand p {
    margin-top: 15px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    color: white;
}

.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.footer-bottom {
    border-top: 1px solid #27272a;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .trends-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

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

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

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

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

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

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

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

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

.plan-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #09090b;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 30px;
}

.price span {
    font-size: 16px;
    color: #64748b;
    font-weight: 400;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    color: #64748b;
    font-size: 16px;
}

.plan-cta {
    background: #1f2937;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.plan-cta:hover {
    background: #111827;
}

.featured-cta {
    background: #7c3aed;
}

.featured-cta:hover {
    background: #6d28d9;
}

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

.pricing-faq h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #09090b;
}

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

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

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #09090b;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

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

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

.pricing-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

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

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

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

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #09090b;
}

.contact-info p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-item p {
    color: #64748b;
    margin: 0;
}

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

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

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

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

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

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

.form-submit:hover {
    background: #6d28d9;
}

.thank-you-message {
    background: #dcfce7;
    border: 2px solid #16a34a;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.thank-you-message h3 {
    color: #15803d;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.thank-you-message p {
    color: #166534;
    font-size: 16px;
    margin: 0;
}

.contact-benefits {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-benefits h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #09090b;
}

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

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

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #09090b;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
}

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

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

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

.core-features h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #09090b;
}

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

.feature-detailed {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.feature-icon-large {
    font-size: 64px;
    margin-bottom: 25px;
}

.feature-detailed h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #09090b;
}

.feature-detailed p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-benefits li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

.feature-benefits li:before {
    content: "✓";
    color: #16a34a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.advanced-features h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #09090b;
}

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

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

.advanced-feature h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #09090b;
}

.advanced-feature p {
    color: #64748b;
    line-height: 1.6;
}

.technology-deep-dive {
    padding: 80px 0;
    background: white;
}

.technology-deep-dive h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #09090b;
}

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

.tech-article {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
}

.tech-article h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #09090b;
}

.tech-article p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

.features-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* How It Works Page Styles */
.how-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.how-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #09090b;
}

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

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

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

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

.process-step.reverse .step-content {
    order: 2;
}

.process-step.reverse .step-visual {
    order: 1;
}

.step-number-large {
    background: #7c3aed;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #09090b;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.step-details {
    list-style: none;
    padding: 0;
}

.step-details li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

.step-details li:before {
    content: "•";
    color: #7c3aed;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.process-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.detailed-workflow {
    padding: 80px 0;
    background: #f8fafc;
}

.detailed-workflow h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #09090b;
}

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

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

.workflow-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.workflow-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #09090b;
}

.workflow-item p {
    color: #64748b;
    line-height: 1.6;
}

.success-metrics {
    padding: 80px 0;
    background: white;
}

.success-metrics h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #09090b;
}

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

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

.metric-number {
    font-size: 48px;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 15px;
}

.metric-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #09090b;
}

.metric-card p {
    color: #64748b;
    line-height: 1.6;
}

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

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

.how-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

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

.legal-subtitle {
    font-size: 18px;
    color: #64748b;
}

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

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

.legal-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: #09090b;
}

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

.legal-text p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.legal-text ul {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-text li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .trends-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .process-step.reverse {
        grid-template-columns: 1fr;
    }
    
    .process-step.reverse .step-content,
    .process-step.reverse .step-visual {
        order: unset;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .features-preview,
    .technology-showcase,
    .how-it-works,
    .industry-trends,
    .final-cta,
    .pricing-plans,
    .pricing-faq,
    .contact-form-section,
    .contact-benefits,
    .core-features,
    .advanced-features,
    .process-overview,
    .detailed-workflow,
    .success-metrics {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}
