/* ERP Integration Page Styles */

.erp-hero {
    padding: 12rem 2rem 6rem;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.erp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.erp-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.erp-logo-container {
    margin-bottom: 2rem;
}

.erp-logo {
    height: 80px;
    width: auto;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.erp-logo-text {
    display: inline-block;
    background: white;
    color: #1e40af;
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.3;
    min-width: 200px;
}

.erp-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.erp-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.erp-overview {
    padding: 6rem 2rem;
    background: #ffffff;
}

.erp-overview .container {
    max-width: 1200px;
    margin: 0 auto;
}

.erp-overview h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 1.5rem;
    text-align: center;
}

.erp-overview .lead {
    font-size: 1.25rem;
    color: #64748b;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

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

.benefit-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: #1e40af;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.erp-connector {
    padding: 6rem 2rem;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.erp-connector .container {
    max-width: 1200px;
    margin: 0 auto;
}

.erp-connector h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 1.5rem;
    text-align: center;
}

.erp-connector .lead {
    font-size: 1.25rem;
    color: #64748b;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.connector-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.connector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #2563eb;
}

.connector-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

.connector-card h3 {
    color: #1e40af;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.connector-card p {
    color: #64748b;
    line-height: 1.8;
}

.erp-features {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.erp-features .container {
    max-width: 1200px;
    margin: 0 auto;
}

.erp-features h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 3rem;
    text-align: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #2563eb;
}

.feature-item h3 {
    color: #1e40af;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-item ul {
    list-style: none;
    padding-left: 0;
}

.feature-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
}

.feature-item ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.erp-workflow {
    padding: 6rem 2rem;
    background: #ffffff;
}

.erp-workflow .container {
    max-width: 1200px;
    margin: 0 auto;
}

.erp-workflow h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 3rem;
    text-align: center;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #1e40af;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.erp-technical {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.erp-technical .container {
    max-width: 1200px;
    margin: 0 auto;
}

.erp-technical h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 3rem;
    text-align: center;
}

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

.tech-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.tech-item h3 {
    color: #1e40af;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.erp-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    text-align: center;
}

.erp-cta .container {
    max-width: 1200px;
    margin: 0 auto;
}

.erp-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.erp-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.erp-deployment {
    padding: 6rem 2rem;
    background: #ffffff;
}

.erp-deployment .container {
    max-width: 1200px;
    margin: 0 auto;
}

.erp-deployment h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 3rem;
    text-align: center;
}

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

.deployment-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.deployment-card h3 {
    color: #1e40af;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.deployment-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.deployment-card ul {
    list-style: none;
    padding-left: 0;
}

.deployment-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
}

.deployment-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

@media (max-width: 768px) {
    .erp-hero {
        padding: 9rem 1.25rem 3.5rem;
    }

    .erp-hero h1 {
        font-size: 2rem;
    }
    
    .erp-hero p {
        font-size: 1rem;
    }
    
    .erp-overview,
    .erp-connector,
    .erp-features,
    .erp-workflow,
    .erp-technical,
    .erp-deployment,
    .erp-cta {
        padding: 3rem 1.25rem;
    }

    .erp-overview h2,
    .erp-connector h2,
    .erp-features h2,
    .erp-workflow h2,
    .erp-technical h2,
    .erp-deployment h2 {
        font-size: 1.75rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .connector-benefits {
        grid-template-columns: 1fr;
    }
    
    .workflow-steps {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .deployment-grid {
        grid-template-columns: 1fr;
    }
}

/* ── ERP cross-link banner ──────────────────────────────── */
.erp-link-bar {
    background: #eff6ff;
    border-top: 1px solid #bfdbfe;
    padding: 1rem 2rem;
    text-align: center;
}

.erp-link-bar p {
    color: #1e40af;
    font-size: 0.9rem;
    margin: 0;
}

.erp-link-bar a {
    font-weight: 600;
    color: #2563eb;
    text-decoration: underline;
}

/* ── QuickBooks erp-shipping section ────────────────────── */
.erp-shipping {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    padding: 5rem 2rem;
    margin: 4rem 0;
    color: white;
}

.erp-shipping-header {
    text-align: center;
    margin-bottom: 3rem;
}

.erp-shipping-header h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.erp-shipping-header .lead {
    color: rgba(255,255,255,0.95);
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.25rem;
}

.erp-shipping .benefits-grid {
    margin-top: 3rem;
}

.erp-shipping .benefit-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.erp-shipping .benefit-icon {
    font-size: 3rem;
}

.erp-shipping .benefit-card h3 {
    color: white;
}

.erp-shipping .benefit-card p {
    color: rgba(255,255,255,0.9);
}

.erp-shipping-callout {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 3rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.erp-shipping-callout h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.erp-shipping-callout p {
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.erp-shipping-callout ul {
    color: rgba(255,255,255,0.95);
    line-height: 2;
    list-style: none;
    padding-left: 0;
}

.erp-shipping-callout li {
    margin-bottom: 0.75rem;
}

.erp-shipping-cta {
    text-align: center;
    margin-top: 3rem;
}

