/* ===== ERP PAGE ADDITIONAL STYLES ===== */

.erp-hero {
    background: linear-gradient(135deg, #020270 0%, #1a3a70 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-content h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.erp-section {
    padding: 80px 0;
}

.erp-dark {
    background: linear-gradient(135deg, #020270 0%, #1a3a70 100%);
    color: white;
}

.erp-dark .section-header h2,
.erp-dark .section-header p {
    color: white;
}

.erp-dark .section-header p {
    opacity: 0.9;
}

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

.erp-text-block {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(10, 30, 77, 0.12);
}

.erp-text-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: #020270;
    margin-bottom: 20px;
}

.erp-text-block p {
    color: #555555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.erp-list {
    list-style: none;
}

.erp-list li {
    padding: 12px 0;
    color: #555555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 15px;
}

.erp-list li:last-child {
    border-bottom: none;
}

.erp-list strong {
    color: #020270;
    font-weight: 600;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.module-item {
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.1), rgba(13, 71, 161, 0.1));
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.module-item:hover {
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.2), rgba(13, 71, 161, 0.2));
    transform: translateY(-5px);
}

.module-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.module-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #020270;
    margin-bottom: 8px;
}

.module-item p {
    font-size: 13px;
    color: #888888;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
}

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

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

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

.tech-stack-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(10, 30, 77, 0.12);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-stack-card:hover {
    box-shadow: 0 20px 48px rgba(10, 30, 77, 0.16);
    transform: translateY(-8px);
}

.tech-stack-header {
    background: linear-gradient(135deg, #1a3a70, #0d47a1);
    color: white;
    padding: 30px 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.tech-stack-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.tech-badge {
    background: #00a8e8;
    color: #020270;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.tech-role {
    padding: 0 25px 10px;
    font-size: 14px;
    color: #555555;
}

.tech-description {
    padding: 0 25px 25px;
}

.tech-description p {
    color: #555555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 15px;
}

.tech-features {
    list-style: none;
    padding: 0;
}

.tech-features li {
    padding: 8px 0;
    color: #555555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.development-phases {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.phase {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 35px;
    position: relative;
    padding-left: 100px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.phase:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
}

.phase-number {
    position: absolute;
    left: 30px;
    top: 35px;
    width: 50px;
    height: 50px;
    background: #00a8e8;
    color: #020270;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
}

.phase h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.phase p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 15px;
}

.phase-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tech-mention {
    background: #00a8e8;
    color: #020270;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.arch-layers {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.arch-layer {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(10, 30, 77, 0.12);
}

.arch-layer h4 {
    font-size: 20px;
    font-weight: 700;
    color: #020270;
    margin-bottom: 25px;
    text-align: center;
}

.arch-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
}

.arch-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.08), rgba(13, 71, 161, 0.08));
    border-radius: 12px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.arch-item:hover {
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.15), rgba(13, 71, 161, 0.15));
    transform: scale(1.05);
}

.arch-center {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a3a70, #0d47a1) !important;
    color: white;
}

.arch-item:hover.arch-center {
    background: linear-gradient(135deg, #020270, #1a3a70) !important;
}

.arch-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.arch-item p {
    font-size: 14px;
    font-weight: 600;
    color: #020270;
}

.arch-center p {
    color: white;
}

.arch-item small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 5px;
}

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

.use-case {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 35px;
    backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.use-case:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
}

.use-case-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.use-case h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.use-case p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* ERP Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    .erp-content-grid,
    .benefits-grid,
    .tech-stack-grid,
    .use-cases-grid {
        gap: 25px;
    }

    .phase {
        padding-left: 30px;
        padding-top: 60px;
    }

    .phase-number {
        left: 15px;
        top: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .arch-components {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .erp-text-block,
    .tech-stack-card,
    .phase,
    .arch-layer {
        padding: 25px 20px;
    }

    .arch-components {
        grid-template-columns: 1fr;
    }

    .phase {
        padding-left: 20px;
    }
}
