/* DocuAxis Trucking-Focused Landing Page Styles */

:root {
    /* Original color scheme with trucking accents */
    --midnight-blue: #1B2A41;
    --steel-gray: #4A4A4A;
    --electric-blue: #007BFF;
    --slate: #6C757D;
    --soft-white: #F8F9FA;
    --cloud-gray: #E9ECEF;
    
    /* Trucking industry colors */
    --trucker-orange: #FF6B35;
    --highway-yellow: #FFD23F;
    --safety-green: #28A745;
    --warning-red: #DC3545;
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--steel-gray);
    background-color: var(--soft-white);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: var(--electric-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--midnight-blue);
}

section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--cloud-gray);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--slate);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--electric-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--midnight-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--electric-blue);
    border: 2px solid var(--electric-blue);
}

.btn-secondary:hover {
    background-color: var(--electric-blue);
    color: white;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

/* Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.sticky-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--electric-blue) 100%);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 70px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eyebrow {
    background-color: var(--trucker-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1rem;
}

.hero-content h3 {
    color: var(--highway-yellow);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefits-list i {
    color: var(--safety-green);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.cta-container {
    margin-top: 2rem;
}

.hero-video {
    position: relative;
}

.hero-video video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.savings-badge {
    display: inline-block;
    background-color: var(--safety-green);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 1rem;
}

/* Pain Points Section */
.pain-points {
    background-color: white;
    padding: 5rem 0;
}

.pain-points h2 {
    color: var(--warning-red);
    margin-bottom: 1rem;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pain-point-card {
    background-color: var(--soft-white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--warning-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.pain-icon {
    background-color: var(--warning-red);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.cost-highlight {
    background-color: var(--warning-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: inline-block;
}

/* Specialized Solutions */
.specialized-solutions {
    background-color: var(--cloud-gray);
    padding: 5rem 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.solution-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--electric-blue);
}

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

.solution-icon {
    background-color: var(--electric-blue);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.solution-benefit {
    background-color: var(--safety-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: inline-block;
}

.view-more-container {
    text-align: center;
    margin: 3rem 0;
}

.view-more-btn {
    background-color: var(--electric-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background-color: var(--midnight-blue);
}

.hidden-solutions {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.hidden-solutions.show {
    display: grid;
}

/* Document Specialization */
.document-specialization {
    background-color: white;
    padding: 5rem 0;
}

.document-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.document-type-card {
    background-color: var(--soft-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.document-icon {
    background-color: var(--trucker-orange);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.document-comparison {
    margin-top: 1rem;
}

.document-comparison-item {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    font-weight: 600;
}

.document-comparison-item.negative {
    background-color: var(--warning-red);
    color: white;
}

.document-comparison-item.positive {
    background-color: var(--safety-green);
    color: white;
}

/* Features Section */
.features {
    background-color: var(--cloud-gray);
    padding: 5rem 0;
}

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

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-stars {
    margin-bottom: 1rem;
}

.feature-stars span {
    color: var(--highway-yellow);
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

/* Experience Section */
.experience-section {
    background-color: white;
    padding: 5rem 0;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.experience-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.experience-benefits i {
    color: var(--safety-green);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.cta-subtext {
    font-size: 0.9rem;
    color: var(--slate);
    margin-top: 0.5rem;
}

/* Animated Demo Styles */
.cta-image {
    position: relative;
}

#docuaxis-extraction-demo {
    background-color: var(--soft-white);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    height: 300px;
}

.demo-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.demo-header {
    background-color: var(--midnight-blue);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-title {
    font-weight: 600;
    font-size: 1rem;
}

.demo-indicator {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.status-text {
    font-size: 0.9rem;
    color: var(--highway-yellow);
}

.progress-bar {
    width: 120px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--safety-green);
    width: 0%;
    transition: width 1s ease;
}

.demo-document {
    flex: 1;
    padding: 1.5rem;
    background-color: white;
    position: relative;
}

.document-field {
    position: relative;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background-color: var(--soft-white);
    border-radius: 5px;
}

.field-highlight {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 123, 255, 0.2);
    border: 2px solid var(--electric-blue);
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.field-label {
    font-weight: 600;
    color: var(--midnight-blue);
    position: relative;
    z-index: 2;
}

.demo-footer {
    background-color: var(--cloud-gray);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-tag {
    background-color: var(--electric-blue);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.demo-restart {
    background-color: var(--trucker-orange);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.demo-restart:hover {
    background-color: var(--midnight-blue);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Pricing Section */
.pricing-section {
    background-color: var(--cloud-gray);
    padding: 5rem 0;
}

.pricing-comparison {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-header h3 {
    text-align: center;
    color: var(--midnight-blue);
    margin-bottom: 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.comparison-item {
    padding: 1.5rem;
    border-radius: 8px;
}

.current-cost {
    background-color: var(--warning-red);
    color: white;
}

.docuaxis-cost {
    background-color: var(--safety-green);
    color: white;
}

.comparison-vs {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--midnight-blue);
    text-align: center;
}

.cost-breakdown {
    margin-bottom: 1rem;
}

.cost-line {
    margin-bottom: 0.5rem;
}

.total-cost, .total-savings {
    font-size: 1.2rem;
    font-weight: bold;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 1rem;
}

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

.pricing-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 3px solid var(--electric-blue);
    transform: scale(1.05);
}

.popular-badge {
    background-color: var(--trucker-orange);
    color: white;
    padding: 0.5rem 1rem;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 0 0 10px;
}

.pricing-header {
    background-color: var(--midnight-blue);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--highway-yellow);
}

.price span {
    font-size: 1rem;
    color: white;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.pricing-features i {
    color: var(--safety-green);
    margin-right: 1rem;
}

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

.roi-text {
    font-size: 0.9rem;
    color: var(--safety-green);
    font-weight: 600;
    margin-top: 0.5rem;
}

.pricing-guarantee {
    background-color: var(--safety-green);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.guarantee-content h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-section {
    background-color: white;
    padding: 5rem 0;
}

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

.testimonial-card {
    background-color: var(--soft-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--electric-blue);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--steel-gray);
}

.author-info h4 {
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--slate);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.savings-badge {
    background-color: var(--safety-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background-color: var(--cloud-gray);
    padding: 5rem 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--soft-white);
}

.faq-question h3 {
    margin: 0;
    color: var(--midnight-blue);
}

.faq-question i {
    color: var(--electric-blue);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--soft-white);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--steel-gray);
}

/* Final CTA */
.final-cta-section {
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--electric-blue) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.final-cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--highway-yellow);
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.final-cta-buttons {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background-color: var(--midnight-blue);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--highway-yellow);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--highway-yellow);
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-vs {
        order: 2;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .solutions-grid,
    .hidden-solutions {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .document-types-grid {
        grid-template-columns: 1fr;
    }
    
    .pain-points-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    #docuaxis-extraction-demo {
        height: 250px;
    }
    
    .demo-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .demo-indicator {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

