/* Reset and Base Styles */
:root {
    --primary-color: #1E56A0; /* Deeper blue for professionalism */
    --secondary-color: #16C172; /* More balanced green */
    --accent-color: #F7B32B; /* Warm accent for highlights */
    --dark-color: #0A2342; /* Richer dark blue */
    --light-color: #F8F9FA; /* Slightly warmer white */
    --text-color: #2D3748; /* Softer black for text */
    --text-light: #4A5568; /* Medium gray for secondary text */
    --border-color: #E2E8F0; /* Subtle border color */
    --success-color: #38A169; /* Green for success messages */
    --warning-color: #DD6B20; /* Orange for warnings */
    --error-color: #E53E3E; /* Red for errors */
    --info-color: #3182CE; /* Blue for information */
}

/* Additional Base Classes */
.text-center { text-align: center; }
.text-white { color: white !important; }
.text-white-70 { color: rgba(255, 255, 255, 0.7) !important; }
.text-dark { color: var(--dark-color) !important; }
.mb-xl { margin-bottom: 4rem; }
.mb-lg { margin-bottom: 2rem; }
.gap-xl { gap: 3rem; }
.gap-lg { gap: 2rem; }
.align-center { align-items: center; }

/* Global Payments Page Styles */
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 86, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.solution-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 86, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.solution-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.solution-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.solution-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.solution-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

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

.content-grid.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.content-grid.reverse .content-text {
    direction: ltr;
}

.content-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.bg-dark .content-text h3 {
    color: white;
}

.content-text p {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--text-light);
}

.bg-dark .content-text p {
    color: rgba(255, 255, 255, 0.8);
}

.content-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.security-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.certification-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

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

.integration-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.integration-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 86, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.code-sample {
    background: var(--dark-color);
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    overflow-x: auto;
}

.code-sample pre {
    margin: 0;
}

.code-sample code {
    color: #f8f9fa;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
}

.language-badges, .plugin-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.language-badge, .plugin-logo {
    background: rgba(30, 86, 160, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.case-study-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.case-study-image {
    height: 100%;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-content {
    padding: 2rem;
}

.case-study-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.case-study-company {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-study-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-study-results {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.result-item {
    display: flex;
    flex-direction: column;
}

.result-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-desc {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.demo-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1rem;
}

.demo-form input,
.demo-form select {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.demo-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.demo-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.demo-form select option {
    color: var(--text-color);
    background: white;
}

.demo-form button {
    grid-column: span 2;
    margin-top: 1rem;
}

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

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1.5rem 0;
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
    color: var(--dark-color);
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    line-height: 1.6;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

/* Responsive adjustments for Global Payments page */
@media (max-width: 992px) {
    .content-grid, 
    .content-grid.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }
    
    .case-study-card {
        grid-template-columns: 1fr;
    }
    
    .case-study-image {
        height: 200px;
    }
    
    .case-study-results {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .demo-form {
        grid-template-columns: 1fr;
    }
    
    .demo-form button {
        grid-column: span 1;
    }
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.section {
    padding: 120px 0;
}

.bg-dark {
    background: var(--dark-color);
}

.bg-light {
    background: var(--light-color);
}

.bg-primary {
    background: var(--primary-color);
}

.bg-gradient {
    background: linear-gradient(135deg, #1E56A0 0%, #0A2342 100%);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    min-width: 180px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0A2342 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 86, 160, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0A2342 0%, #1E56A0 100%);
    box-shadow: 0 6px 20px rgba(30, 86, 160, 0.4);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 86, 160, 0.25);
}

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

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

.card-feature .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.card-solution {
    border: 2px solid transparent;
}

.card-solution:hover {
    border-color: var(--primary-color);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.solution-features {
    list-style: none;
    margin-top: 20px;
}

.solution-features li {
    color: var(--primary-color);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.card-testimonial {
    text-align: left;
}

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

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.author-info h4 {
    margin-bottom: 5px;
    color: var(--text-color);
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-select {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.lang-select:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(46, 91, 255, 0.1);
}

.lang-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 91, 255, 0.1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2E5BFF;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2E5BFF;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.language-selector:hover {
    border-color: #2E5BFF;
    box-shadow: 0 2px 8px rgba(46, 91, 255, 0.1);
}

.language-selector:focus {
    outline: none;
    border-color: #2E5BFF;
    box-shadow: 0 0 0 3px rgba(46, 91, 255, 0.1);
}

.cta-button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 16px;
    min-width: 180px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #2E5BFF 0%, #1a4bff 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 91, 255, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #1a4bff 0%, #0d3df0 100%);
    box-shadow: 0 6px 20px rgba(46, 91, 255, 0.4);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #2E5BFF;
    border: 2px solid #2E5BFF;
}

.cta-button.secondary:hover {
    background: #2E5BFF;
    color: white;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2a3441 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.globe-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center, rgba(46, 91, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: globeRotate 20s linear infinite;
}

.globe-animation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: 
        linear-gradient(0deg, transparent 24%, rgba(46, 91, 255, 0.3) 25%, rgba(46, 91, 255, 0.3) 26%, transparent 27%, transparent 74%, rgba(46, 91, 255, 0.3) 75%, rgba(46, 91, 255, 0.3) 76%, transparent 77%),
        linear-gradient(90deg, transparent 24%, rgba(46, 91, 255, 0.3) 25%, rgba(46, 91, 255, 0.3) 26%, transparent 27%, transparent 74%, rgba(46, 91, 255, 0.3) 75%, rgba(46, 91, 255, 0.3) 76%, transparent 77%);
    background-size: 50px 50px;
    border-radius: 50%;
    animation: gridPulse 3s ease-in-out infinite alternate;
}

.trade-routes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.trade-routes::before,
.trade-routes::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #00ff88, transparent);
    animation: tradeFlow 4s ease-in-out infinite;
}

.trade-routes::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.trade-routes::after {
    top: 60%;
    right: 25%;
    animation-delay: 2s;
}

@keyframes globeRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes gridPulse {
    from { opacity: 0.3; }
    to { opacity: 0.8; }
}

@keyframes tradeFlow {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-50px); }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@keyframes globeGlow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: pre-line;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-slogan {
    font-size: 1.6rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 48px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Platform and Feature Styles */
.platform-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-content p {
    margin: 0;
    line-height: 1.6;
}

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

.dashboard-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 400px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-active {
    background: var(--secondary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dashboard-content {
    display: grid;
    gap: 15px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.metric-value {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.company-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.company-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 400px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 16px;
    min-width: 180px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #2E5BFF 0%, #1a4bff 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 91, 255, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #1a4bff 0%, #0d3df0 100%);
    box-shadow: 0 6px 20px rgba(46, 91, 255, 0.4);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #2E5BFF;
    border: 2px solid #2E5BFF;
}

.cta-button.secondary:hover {
    background: #2E5BFF;
    color: white;
    transform: translateY(-2px);
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

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

/* Platform Section */
.platform-section {
    position: relative;
    padding: 120px 0;
    background: #0a0e13;
    overflow: hidden;
}

.ai-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ai-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #00ff88, transparent),
        radial-gradient(2px 2px at 40px 70px, #2E5BFF, transparent),
        radial-gradient(1px 1px at 90px 40px, #00ff88, transparent),
        radial-gradient(1px 1px at 130px 80px, #2E5BFF, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particleFloat 15s linear infinite;
}

.neural-network {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(0, 255, 136, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(46, 91, 255, 0.1) 50%, transparent 60%);
    animation: neuralPulse 8s ease-in-out infinite;
}

@keyframes particleFloat {
    from { transform: translateY(0px); }
    to { transform: translateY(-200px); }
}

@keyframes neuralPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.platform-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
}

.platform-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(46, 91, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.platform-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.platform-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.stats-section .section-title {
    color: #1a202c;
}

.stats-section .section-subtitle {
    color: #4a5568;
}

.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.stat-item {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: inline-block;
}

.stat-unit {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 4px;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #2E5BFF 0%, #00ff88 100%);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2E5BFF;
    margin-bottom: 8px;
    display: inline-block;
}

.stat-unit {
    font-size: 2rem;
    font-weight: 700;
    color: #2E5BFF;
    margin-left: 4px;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
}

/* Solutions Section */
.solutions-section {
    padding: 120px 0;
    background: white;
}

.solutions-section .section-title {
    color: #1a202c;
}

.solutions-section .section-subtitle {
    color: #4a5568;
}

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

.solution-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: #2E5BFF;
    box-shadow: 0 15px 35px rgba(46, 91, 255, 0.1);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a202c;
}

.solution-card p {
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.6;
}

.solution-card ul {
    list-style: none;
}

.solution-card li {
    color: #2E5BFF;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.solution-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

/* Integration Section */
.integration-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.integration-grid {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 3rem;
    width: 100%;
}

.integration-row-1,
.integration-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.integration-row-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.integration-visual-full {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
}

.integration-visual-full img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.integration-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: fit-content;
}

.integration-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.15);
    border-left-color: #1e40af;
}

.integration-card h3 {
    color: #1e40af;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.integration-row-1 .integration-card:nth-child(1) h3::before {
    content: "⚡";
    margin-right: 0.5rem;
    font-size: 1.1em;
}

.integration-row-1 .integration-card:nth-child(2) h3::before {
    content: "🤖";
    margin-right: 0.5rem;
    font-size: 1.1em;
}

.integration-row-3 .integration-card:nth-child(1) h3::before {
    content: "🔗";
    margin-right: 0.5rem;
    font-size: 1.1em;
}

.integration-row-3 .integration-card:nth-child(2) h3::before {
    content: "🌐";
    margin-right: 0.5rem;
    font-size: 1.1em;
}

.integration-card p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Import Process Styling */
.import-process-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: transparent;
}

.import-process-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.import-process-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.import-process-container:hover .import-process-image {
    transform: scale(1.05);
}

.import-process-container .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-radius: 0 0 12px 12px;
}

.import-process-container:hover .image-overlay {
    transform: translateY(0);
}

.import-marketing-below {
    margin-top: 1.5rem;
    text-align: center;
}

.marketing-stats-below {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 1rem;
}

.stat-item-below {
    flex: 1;
    text-align: center;
}

.stat-number-below {
    font-size: 2rem;
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 0.25rem;
}

.stat-label-below {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.marketing-tagline-below {
    font-size: 0.9rem;
    color: #4b5563;
    font-weight: 500;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .integration-row-1,
    .integration-row-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .integration-visual-full {
        padding: 1rem;
    }
    
    .integration-grid {
        gap: 2rem;
    }
    
    .integration-card {
        padding: 1.5rem;
        height: auto;
        min-height: 200px;
    }
    
    .integration-ecosystem-container {
        padding: 2rem 1rem;
        max-width: 100%;
    }
    
    .integration-ecosystem-image {
        max-width: 100%;
        padding: 0;
    }
    
    .marketing-stats-below {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-number-below {
        font-size: 1.5rem;
    }
}

.integration-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Enterprise Integration Grid Layout */
.integration-grid {
    max-width: 1200px;
    margin: 0 auto;
}

/* Enterprise Implementation Layout */
.step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.step-number-icon {
    background: var(--primary-color);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.step-icon {
    font-size: 1.5rem;
}

.step-duration {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Enterprise Implementation Image Container */
.enterprise-implementation-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: fit-content;
    line-height: 0;
}

.enterprise-implementation-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    vertical-align: bottom;
}

.enterprise-implementation-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.enterprise-implementation-container:hover .enterprise-implementation-image {
    transform: scale(1.05);
}

.enterprise-implementation-container .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.enterprise-implementation-container:hover .image-overlay {
    transform: translateY(0);
}

.integration-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: auto;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.integration-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    text-align: left;
}

.integration-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
}

.integration-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.integration-ecosystem-container {
    text-align: center;
    padding: 3rem 4rem;
    margin: 0 auto;
    max-width: 1400px;
    overflow: visible;
}

.integration-ecosystem-image {
    width: 100%;
    height: auto;
    max-width: 1200px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
}

.integration-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hub-logo {
    width: 80px;
    height: auto;
}

.hub-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    animation: hubPulse 3s infinite;
}

@keyframes hubPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

.integration-content {
    color: white;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
    color: var(--secondary-color);
}

.benefit-text h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.benefit-text p {
    margin: 0;
    line-height: 1.5;
}

.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hub-logo {
    width: 80px;
    height: auto;
}

.integration-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.connection-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 100px;
}

.connection-item:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.connection-item:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); }
.connection-item:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.connection-item:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); }

.connection-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%) scale(1.1);
}

.connection-item:nth-child(2):hover { transform: translateY(-50%) scale(1.1); }
.connection-item:nth-child(4):hover { transform: translateY(-50%) scale(1.1); }

.connection-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.integration-benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.integration-benefits ul {
    list-style: none;
}

.integration-benefits li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
}

.integration-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
    font-size: 1.2rem;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: white;
}

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

.about-text .section-title {
    color: #1a202c;
    text-align: left;
    margin-bottom: 24px;
}

.about-text p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    color: #2d3748;
}

.feature-icon {
    font-size: 1.5rem;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #2E5BFF 0%, #00ff88 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.placeholder-content span:last-child {
    font-size: 1.2rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
.footer {
    position: relative;
    background: #0f172a;
    color: white;
    padding: 80px 0 40px;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%),
        radial-gradient(circle at 20% 80%, rgba(46, 91, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}

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

.footer-tagline {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-tagline {
    font-size: 1.1rem;
    color: #00ff88;
    font-weight: 500;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e2e8f0;
}

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

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

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

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

.footer-copyright {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Demo Modal */
.demo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.demo-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.demo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 0;
    margin-bottom: 30px;
}

.demo-modal-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.demo-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.demo-modal-close:hover {
    background: #f0f0f0;
    color: var(--text-color);
}

.demo-form {
    padding: 0 30px 30px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 91, 255, 0.1);
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding: 30px;
    background: white;
}

.video-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a202c;
}

.video-info p {
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        min-height: 80vh;
        padding: calc(var(--spacing-3xl) + 60px) 0 var(--spacing-3xl);
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 24px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 24px;
    }
    
    .hero-slogan {
        font-size: 1.4rem;
        margin-bottom: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .cta-button.large {
        width: 100%;
        max-width: 280px;
    }
    
    .globe-animation {
        width: 500px;
        height: 500px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .video-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .video-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-slogan {
        font-size: 1.3rem;
    }
    
    .globe-animation {
        width: 400px;
        height: 400px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Warehouse Image Container */
.warehouse-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.warehouse-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.warehouse-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.warehouse-image-container:hover .warehouse-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.warehouse-image-container:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    color: white;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.overlay-content p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Mobile responsiveness for warehouse image */
@media (max-width: 768px) {
    .warehouse-image-container {
        margin-top: 2rem;
    }
    
    .image-overlay {
        position: static;
        background: rgba(0,0,0,0.8);
        transform: none;
        border-radius: 0 0 12px 12px;
    }
}


/* Compliance Image Container */
.compliance-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compliance-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.compliance-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.compliance-image-container:hover .compliance-image {
    transform: scale(1.05);
}

.compliance-image-container .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.compliance-image-container:hover .image-overlay {
    transform: translateY(0);
}

/* Mobile responsiveness for compliance image */
@media (max-width: 768px) {
    .compliance-image-container {
        margin-top: 2rem;
    }
    
    .compliance-image-container .image-overlay {
        position: static;
        background: rgba(0,0,0,0.8);
        transform: none;
        border-radius: 0 0 12px 12px;
    }
}


/* Exporter Success Image Container */
.exporter-success-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exporter-success-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.exporter-success-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.exporter-success-container:hover .exporter-success-image {
    transform: scale(1.05);
}

.exporter-success-container .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.exporter-success-container:hover .image-overlay {
    transform: translateY(0);
}

/* Export Process Image Container */
.export-process-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Risk Management Image Container */
.risk-management-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.export-process-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.export-process-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.export-process-container:hover .export-process-image {
    transform: scale(1.05);
}

.risk-management-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.risk-management-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.risk-management-container:hover .risk-management-image {
    transform: scale(1.05);
}

.risk-management-container .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-radius: 0 0 12px 12px;
}

.risk-management-container:hover .image-overlay {
    transform: translateY(0);
}

.export-process-container .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.export-process-container:hover .image-overlay {
    transform: translateY(0);
}

/* Vertical Process Flow */
.process-flow-vertical {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-flow-vertical .process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.process-flow-vertical .process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.process-flow-vertical .step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.process-flow-vertical .step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.process-flow-vertical .step-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Mobile responsiveness for exporter images */
@media (max-width: 768px) {
    .exporter-success-container,
    .export-process-container {
        margin-top: 2rem;
    }
    
    .exporter-success-container .image-overlay,
    .export-process-container .image-overlay,
    .import-process-container .image-overlay,
    .risk-management-container .image-overlay,
    .enterprise-implementation-container .image-overlay {
        position: static;
        background: rgba(0,0,0,0.8);
        transform: none;
        border-radius: 0 0 12px 12px;
    }
    
    .import-process-container,
    .risk-management-container,
    .enterprise-implementation-container {
        margin-top: 2rem;
    }
    
    .process-flow-vertical .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .process-flow-vertical .process-step:hover {
        transform: translateY(-5px);
    }
}

/* Marketing Content Below Image */
.export-marketing-below {
    margin-top: 1.5rem;
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 0 0 12px 12px;
    border: 1px solid rgba(0,0,0,0.05);
    border-top: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.marketing-stats-below {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.stat-item-below {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-item-below:hover {
    transform: translateY(-3px);
}

.stat-number-below {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
}

.stat-label-below {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.marketing-tagline-below {
    text-align: center;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .export-marketing-below {
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .marketing-stats-below {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat-number-below {
        font-size: 1.5rem;
    }
    
    .marketing-tagline-below {
        font-size: 0.85rem;
    }
}

/* SMB Testimonials Styling */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 35, 66, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 35, 66, 0.12);
}

.testimonial-image {
    flex: 0 0 35%;
    position: relative;
    overflow: hidden;
}

.testimonial-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
    margin: 0 0 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

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

.testimonial-author h4 {
    font-size: 1.1rem;
    margin: 0 0 0.25rem;
    color: var(--dark-color);
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.testimonial-metrics {
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
    }
    
    .testimonial-image {
        height: 200px;
    }
}

/* ROI Calculator Styling */
.roi-calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 35, 66, 0.08);
    padding: 2.5rem;
    margin-top: 2rem;
}

.roi-inputs h3,
.roi-results h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-size: 1.5rem;
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-color);
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--border-color);
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--accent-color);
}

.range-value {
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.roi-results {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.roi-metric {
    margin-bottom: 1.5rem;
    text-align: center;
}

.roi-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.roi-label {
    font-size: 1rem;
    color: var(--text-light);
}

.roi-results .btn {
    margin-top: auto;
}

@media (max-width: 768px) {
    .roi-calculator-container {
        grid-template-columns: 1fr;
    }
}

.mission-header {
    text-align: left;
    margin-bottom: 2.5rem;
    width: 100%;
}

.mission-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.mission-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

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

@media (max-width: 768px) {
    .mission-header {
        text-align: center;
    }
    
    .mission-header h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-visual {
        order: -1; /* Makes the image appear first on mobile */
    }
}
