* {
    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;
    font-weight: 400;
}

.nav {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #041E42;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #005EB8;
}

/* Dropdown styles */
.nav-links .dropdown {
    position: relative;
    padding-bottom: 20px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    min-width: 240px;
    list-style: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background: #f9fafb;
    color: #005EB8;
}

.hero {
    background: #041E42;
    color: white;
    padding: 140px 40px 120px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.75rem;
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 24px;
    font-weight: 500;
    color: #e5e7eb;
    letter-spacing: -0.01em;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 48px;
    color: #d1d5db;
    line-height: 1.7;
    font-weight: 400;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: #005EB8;
    color: white;
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
    margin-right: 16px;
}

.cta-button:hover {
    background: #004a94;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #005EB8;
    color: white;
    padding: 14px 38px;
}

.cta-button.secondary:hover {
    background: #005EB8;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 40px;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 20px;
    color: #041E42;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    line-height: 1.7;
    font-weight: 400;
}

.problems {
    background: #ffffff;
}

.problems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.problem-card {
    background: transparent;
    padding: 0;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.problem-card:nth-child(3n) {
    border-right: none;
}

.problem-card:nth-child(n+4) {
    border-bottom: none;
}

.problem-content {
    padding: 48px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.problem-card:hover .problem-content {
    padding-left: 44px;
}

.problem-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #005EB8;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:hover::after {
    transform: scaleY(1);
    transform-origin: top;
}

.problem-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin: 0;
    color: #041E42;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.3;
}

.problem-card p {
    color: #6b7280;
    line-height: 1.65;
    font-weight: 400;
    font-size: 0.9375rem;
    margin: 0;
}

/* Stats Section */
.stats {
    background: #f9fafb;
    padding: 60px 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #005EB8;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

/* Features Section */
.features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.feature-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
}

.feature-image img {
    max-width: 280px;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.feature-image img[src="medprint-logo.svg"] {
    max-width: 90%;
    max-height: 1600px;
    width: auto;
    height: auto;
    margin-left: 180px;
}

.feature-image img[src="ourlocalprinter-logo.png"] {
    max-width: 90%;
    max-height: 400px;
    width: auto;
    height: auto;
}

.feature-card h3 {
    font-size: 1.375rem;
    margin: 28px 28px 12px;
    color: #041E42;
    font-weight: 600;
    letter-spacing: -0.015em;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.65;
    margin: 0 28px 28px;
    font-size: 0.9375rem;
}

/* Industries Page */
.industries-section {
    background: white;
}

.industries-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.industry-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.industry-card:hover {
    border-color: #005EB8;
    box-shadow: 0 8px 24px rgba(0, 94, 184, 0.1);
    transform: translateY(-4px);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #005EB8;
    border-radius: 8px 0 0 8px;
    transition: height 0.3s ease;
}

.industry-card:hover::before {
    height: 100%;
}

.industry-header {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.industry-header .industry-icon {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
}

.industry-card h3 {
    font-size: 1.375rem;
    color: #041E42;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.015em;
    line-height: 1.3;
}

.industry-card p {
    color: #6b7280;
    line-height: 1.65;
    font-size: 0.9375rem;
    margin: 0;
}

/* How It Works Section */
.how-it-works {
    background: #f9fafb;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.step-card {
    background: white;
    border-radius: 8px;
    padding: 40px;
    border: 1px solid #e5e7eb;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: #005EB8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-image {
    margin-bottom: 24px;
    border-radius: 4px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: auto;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #041E42;
    font-weight: 600;
}

.step-card p {
    color: #6b7280;
    line-height: 1.65;
    font-size: 0.9375rem;
}

/* Custom Solutions Section */
.custom-solutions {
    background: #f9fafb;
}

.custom-solutions-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.custom-solutions-intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 40px;
}

.custom-solutions-features {
    display: grid;
    gap: 24px;
}

.custom-feature h4 {
    font-size: 1.125rem;
    color: #041E42;
    margin-bottom: 8px;
    font-weight: 600;
}

.custom-feature p {
    color: #6b7280;
    line-height: 1.65;
    font-size: 0.9375rem;
    margin: 0;
}

.custom-solutions-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.custom-solutions-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonials Section */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 40px;
}

.testimonial-content {
    margin-bottom: 32px;
}

.testimonial-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #1a1a1a;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.author-name {
    font-weight: 600;
    color: #041E42;
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Use Cases Section */
.use-cases {
    background: #f9fafb;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.use-case-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.use-case-card img {
    width: 100%;
    height: auto;
}

.use-case-content {
    padding: 40px;
}

.use-case-content h3 {
    font-size: 1.625rem;
    margin-bottom: 16px;
    color: #041E42;
    font-weight: 600;
    letter-spacing: -0.015em;
}

.use-case-content p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
}

.learn-more {
    color: #005EB8;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.learn-more:hover {
    color: #004a94;
}

.footer {
    border-top: 1px solid #2a2a2a;
    background: #0a0a0a;
    color: white;
    padding: 80px 40px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.footer-section h3 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
    font-weight: 400;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #2a2a2a;
    color: #6b7280;
    font-size: 0.9rem;
}

.cta-section {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 100px 40px;
}

.cta-section h2 {
    font-size: 2.75rem;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    color: #d1d5db;
    font-weight: 400;
}

.solutions {
    background: white;
}

.solutions-grid {
    display: grid;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding: 60px 0;
    border-bottom: 1px solid #e5e7eb;
}

.solution:last-child {
    border-bottom: none;
}

.solution-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #041E42;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.solution-content h4 {
    font-size: 1.125rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #005EB8;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.solution-content p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 400;
}

.solution-content ul {
    margin-left: 0;
    color: #6b7280;
    line-height: 1.8;
    list-style: none;
}

.solution-content ul li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.solution-content ul li:before {
    content: "•";
    position: absolute;
    left: 12px;
    color: #005EB8;
    font-weight: bold;
}

.solution-visual {
    background: #f9fafb;
    padding: 60px 40px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.solution-visual-icon {
    width: 120px;
    height: 120px;
    background: #041E42;
    border-radius: 4px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.solution-visual h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #041E42;
    font-weight: 600;
}

.solution-visual p {
    color: #6b7280;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .industries-grid-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .custom-solutions-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .use-case-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .problems-grid {
        grid-template-columns: 1fr 1fr;
    }

    .problem-card:nth-child(3n) {
        border-right: 1px solid #e5e7eb;
    }

    .problem-card:nth-child(2n) {
        border-right: none;
    }

    .problem-card:nth-child(n+4) {
        border-bottom: 1px solid #e5e7eb;
    }

    .problem-card:nth-child(n+5) {
        border-bottom: none;
    }

    .solution {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .subtitle {
        font-size: 1.25rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .industries-grid-page {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .industry-card {
        padding: 28px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .industries-grid-page {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .industry-card {
        padding: 24px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .problem-card {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .problem-card:last-child {
        border-bottom: none;
    }

    .problem-card:nth-child(n+4) {
        border-bottom: 1px solid #e5e7eb;
    }

    .problem-card:nth-child(n+5) {
        border-bottom: 1px solid #e5e7eb;
    }
}
/* ===================================
   ENHANCED MOBILE RESPONSIVE STYLES
   (Desktop styles above remain unchanged)
   =================================== */

/* Mobile Navigation Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #041E42;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 80px 30px 30px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .nav-links a {
        display: block;
        padding: 16px 0;
        font-size: 1.05rem;
    }
    
    .nav-links .dropdown {
        padding-bottom: 0;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        background: #f9fafb;
        border-radius: 0;
        margin-top: 8px;
        padding: 8px 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown > a::after {
        content: ' ▼';
        font-size: 0.7rem;
        float: right;
    }
    
    /* Mobile overlay */
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .mobile-overlay.active {
        display: block;
    }
}

/* Tablet optimizations */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .hero {
        padding: 100px 30px 80px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.35rem;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .section {
        padding: 80px 30px;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 80px 20px 60px;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
        margin-bottom: 20px;
    }
    
    .hero-content .subtitle {
        font-size: 1.15rem;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 1.875rem;
        margin-bottom: 16px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 50px;
    }
    
    /* Problems grid mobile */
    .problem-content {
        padding: 36px 24px;
    }
    
    .problem-card h3 {
        font-size: 1.125rem;
    }
    
    .problem-card p {
        font-size: 0.9rem;
    }
    
    /* Stats mobile */
    .stats {
        padding: 50px 20px;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Features mobile */
    .feature-card h3 {
        font-size: 1.25rem;
        margin: 24px 24px 12px;
    }
    
    .feature-card p {
        margin: 0 24px 24px;
        font-size: 0.9rem;
    }
    
    /* Industries mobile */
    .industry-card {
        padding: 24px;
    }
    
    .industry-card h3 {
        font-size: 1.15rem;
    }
    
    .industry-card p {
        font-size: 0.875rem;
    }
    
    /* How it works mobile */
    .step-card {
        padding: 32px 24px;
    }
    
    .step-number {
        left: 24px;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .step-card h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .step-card p {
        font-size: 0.9rem;
    }
    
    /* Custom solutions mobile */
    .custom-solutions-intro {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .custom-feature h4 {
        font-size: 1.05rem;
    }
    
    .custom-feature p {
        font-size: 0.9rem;
    }
    
    /* Testimonials mobile */
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    /* Use cases mobile */
    .use-case-content {
        padding: 32px 24px;
    }
    
    .use-case-content h3 {
        font-size: 1.375rem;
        margin-bottom: 12px;
    }
    
    .use-case-content p {
        font-size: 0.9375rem;
        margin-bottom: 20px;
    }
    
    /* Solutions mobile */
    .solution {
        padding: 40px 0;
    }
    
    .solution-content h3 {
        font-size: 1.625rem;
        margin-bottom: 16px;
    }
    
    .solution-content h4 {
        font-size: 1.05rem;
        margin-top: 24px;
        margin-bottom: 12px;
    }
    
    .solution-content p {
        font-size: 0.9375rem;
    }
    
    .solution-visual {
        padding: 40px 24px;
    }
    
    .solution-visual-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    /* CTA section mobile */
    .cta-section {
        padding: 70px 20px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    /* Footer mobile */
    .footer {
    border-top: 1px solid #2a2a2a;
        padding: 60px 20px 32px;
    }
    
    .footer-grid {
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .footer-section a {
        font-size: 0.875rem;
    }
    
    .footer-bottom {
        padding-top: 32px;
        font-size: 0.8125rem;
    }
}

/* Small mobile optimizations */
@media (max-width: 480px) {
    .logo {
        font-size: 1.35rem;
    }
    
    .hero-content h1 {
        font-size: 1.875rem;
        line-height: 1.15;
    }
    
    .hero-content .subtitle {
        font-size: 1.05rem;
    }
    
    .hero-content p {
        font-size: 0.9375rem;
    }
    
    .section-title {
        font-size: 1.625rem;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stats-grid {
        gap: 40px;
    }
    
    .problem-content {
        padding: 28px 20px;
    }
    
    .feature-image {
        height: 200px;
    }
    
    .testimonial-card {
        padding: 28px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Touch-friendly improvements */
@media (max-width: 1024px) {
    .cta-button,
    .nav-links a,
    .dropdown-menu a,
    .learn-more {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
        justify-content: center;
    }
}

/* Landscape mobile optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 60px 20px 50px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 50px 20px;
    }
}

/* Mobile hero image reorder - show image before text */
@media (max-width: 1024px) {
    .hero-container {
        display: flex;
        flex-direction: column;
    }
    
    .hero-image {
        order: -1; /* Show image first */
        margin-bottom: 40px;
    }
    
    .hero-content {
        order: 1; /* Show content second */
    }
}

@media (max-width: 768px) {
    .hero-image {
        margin-bottom: 30px;
    }
}

/* Center hero buttons on mobile */
@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
        align-items: center;
    }
}

/* Center text inside buttons on mobile */
@media (max-width: 768px) {
    .cta-button {
        display: block;
        text-align: center;
        justify-content: center;
    }
}

/* Contact Footer Section Styling */
.footer-section li:not(:has(a)) {
    color: #9ca3af;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
}

