/* ===== Business ERP Page Styles ===== */

/* Hero Section */
.erp-hero {
    background: linear-gradient(135deg, #0F1419 0%, #1A1F26 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.erp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 168, 204, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.erp-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge i {
    color: #FFD700;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-success {
    background: linear-gradient(135deg, #00C853 0%, #00A843 100%);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
}

.hero-credentials {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.credential-item i {
    color: var(--primary-color);
}

.hero-image-wrapper {
    position: relative;
}

.main-preview {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-card span {
    font-weight: 600;
    color: var(--text-primary);
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Stats Section */
.erp-stats {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    background: var(--light-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Screenshots Section */
.erp-screenshots {
    padding: 80px 0;
    background: var(--light-bg);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.screenshot-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.screenshot-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.screenshot-item img {
    width: 100%;
    display: block;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 24px;
    transform: translateY(100%);
    transition: var(--transition);
}

.screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h4 {
    color: white;
    margin: 0 0 8px 0;
    font-size: 1.25rem;
}

.screenshot-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Features Section */
.erp-features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-icon.sales {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
}

.feature-icon.inventory {
    background: linear-gradient(135deg, #00A8CC 0%, #008299 100%);
}

.feature-icon.pos {
    background: linear-gradient(135deg, #00C853 0%, #00A843 100%);
}

.feature-icon.expense {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.feature-icon.purchase {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
}

.feature-icon.dashboard {
    background: linear-gradient(135deg, #F44336 0%, #D32F2F 100%);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

.feature-list li i {
    color: var(--accent-success);
    font-size: 1.1rem;
}

/* Advanced Features Section */
.erp-advanced-features {
    padding: 80px 0;
    background: var(--light-bg);
}

.advanced-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.advanced-feature {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.advanced-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.feature-number i {
    font-size: 2.5rem;
}

.advanced-feature h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.advanced-feature p {
    color: var(--text-secondary);
    margin: 0;
}

/* Technology Section */
.erp-technology {
    padding: 80px 0;
    background: white;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.tech-item {
    background: var(--light-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.tech-item i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.tech-item h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
}


/* ===== Demo Videos Section - Enhanced ===== */
.erp-videos {
    padding: 80px 0;
    background: var(--light-bg);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.video-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.video-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.video-card.featured:hover {
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.video-thumbnail {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: var(--dark-bg);
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
    text-decoration: none;
}

.play-button:hover {
    background: #FF0000;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.video-duration i {
    font-size: 0.9rem;
}

.video-content {
    padding: 24px;
    position: relative;
}

.video-badge {
    position: absolute;
    top: -16px;
    left: 24px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1A202C;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.video-badge i {
    font-size: 0.9rem;
}

.video-card h4 {
    font-size: 1.25rem;
    margin: 12px 0 12px 0;
    color: var(--text-primary);
    line-height: 1.4;
}

.video-card.featured h4 {
    margin-top: 24px;
}

.video-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.video-meta {
    display: flex;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    font-weight: 500;
}

.video-meta i {
    color: var(--primary-color);
}

/* Video Features */
.video-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.video-feature-item {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.video-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.video-feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.video-feature-item h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.video-feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* YouTube CTA */
.youtube-cta {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.youtube-cta-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.youtube-cta-content > i {
    font-size: 4rem;
    color: white;
    flex-shrink: 0;
}

.youtube-cta-content > div {
    flex: 1;
}

.youtube-cta h4 {
    color: white;
    margin: 0 0 8px 0;
    font-size: 1.75rem;
}

.youtube-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.05rem;
}

.btn-youtube {
    background: white;
    color: #FF0000;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.btn-youtube:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #FF0000;
}

.btn-youtube i {
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .video-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .youtube-cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .video-features {
        grid-template-columns: 1fr;
    }
    
    .youtube-cta {
        padding: 32px 24px;
    }
    
    .youtube-cta-content > i {
        font-size: 3rem;
    }
    
    .youtube-cta h4 {
        font-size: 1.5rem;
    }
    
    .btn-youtube {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .video-card h4 {
        font-size: 1.1rem;
    }
}







/* Version History Section */
.erp-versions {
    padding: 80px 0;
    background: white;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.timeline-badge {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px white, 0 0 0 6px var(--primary-color);
}

.timeline-badge i {
    font-size: 1.5rem;
    color: white;
}

.timeline-content {
    background: var(--light-bg);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
    margin: 0 0 8px 0;
    color: var(--text-primary);
}

.timeline-date {
    display: block;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-content li {
    padding: 8px 0;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-success);
    font-weight: 700;
}

/* Support Section */
.erp-support {
    padding: 80px 0;
    background: var(--light-bg);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.support-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    border: 2px solid transparent;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.support-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.support-icon i {
    font-size: 2rem;
    color: white;
}

.support-card.whatsapp .support-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.support-card.whatsapp:hover {
    border-color: #25D366;
}

.support-card.telegram .support-icon {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.support-card.telegram:hover {
    border-color: #0088cc;
}

.support-card.email .support-icon {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
}

.support-card.email:hover {
    border-color: #EA4335;
}

.support-card.teams .support-icon {
    background: linear-gradient(135deg, #6264A7 0%, #464775 100%);
}

.support-card.teams:hover {
    border-color: #6264A7;
}

.support-card.youtube .support-icon {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.support-card.youtube:hover {
    border-color: #FF0000;
}

.support-card h4 {
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    color: var(--text-primary);
}

.support-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* CTA Section */
.erp-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0F1419 0%, #1A1F26 100%);
    position: relative;
    overflow: hidden;
}

.erp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 168, 204, 0.15) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 40px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .technology-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .erp-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advanced-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .technology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advanced-features-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .technology-grid {
        grid-template-columns: 1fr;
    }
}


/* Add to BusinessErp.css */

/* Placeholder Images */
.main-preview,
.screenshot-item img,
.video-thumbnail img {
    background: linear-gradient(135deg, #2563EB 0%, #00A8CC 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.main-preview::before,
.screenshot-item img::before,
.video-thumbnail img::before {
    content: 'Preview Image';
}

/* ===== Pricing Section ===== */
.erp-pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #0F1419 0%, #1A1F26 100%);
    position: relative;
    overflow: hidden;
}

.erp-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 168, 204, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.erp-pricing .section-title,
.erp-pricing .section-subtitle {
    color: white;
}

.pricing-card-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1A202C;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.pricing-badge i {
    color: #1A202C;
}

.pricing-header {
    text-align: center;
    padding: 50px 40px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.pricing-header h3 {
    font-size: 2rem;
    margin: 0 0 10px 0;
    color: white;
}

.pricing-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.pricing-price .currency {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 10px;
}

.pricing-price .amount {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 25px;
}

.pricing-features {
    padding: 40px;
}

.pricing-features h4 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--accent-success);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features li div {
    flex: 1;
}

.pricing-features li strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pricing-features li span {
    display: block;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-footer {
    padding: 40px;
    background: var(--light-bg);
    text-align: center;
}

.btn-purchase {
    background: linear-gradient(135deg, var(--accent-success) 0%, #00A843 100%);
    color: white;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-purchase:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.5);
    color: white;
}

.btn-purchase i {
    font-size: 1.3rem;
}

.pricing-note {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-note i {
    color: var(--accent-success);
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.payment-methods img {
    height: 30px;
    opacity: 0.7;
    transition: var(--transition);
}

.payment-methods img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Guarantee Section */
.guarantee-section {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.guarantee-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-success) 0%, #00A843 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon i {
    font-size: 2.5rem;
    color: white;
}

.guarantee-text h4 {
    color: white;
    margin: 0 0 8px 0;
    font-size: 1.5rem;
}

.guarantee-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
}

/* Package Details Section */
.erp-package-details {
    padding: 80px 0;
    background: white;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.package-item {
    background: var(--light-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 2px solid transparent;
}

.package-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: white;
}

.package-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.package-icon i {
    font-size: 2rem;
    color: white;
}

.package-item h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.package-item > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.package-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-item li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== Sticky Purchase Button - Always Visible ===== */
.sticky-purchase {
    position: fixed;
    top: 110px; /* Below header */
    right: 30px;
    z-index: 998; /* Below header (999) but above content */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
}

/* Animation on page load */
@keyframes slideInRight {
    from {
        transform: translateX(200px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.sticky-purchase {
    animation: slideInRight 0.6s ease-out 0.5s both;
}

/* Button styling */
.sticky-purchase .btn-purchase {
    background: linear-gradient(135deg, #00C853 0%, #00A843 100%);
    color: white;
    padding: 16px 32px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.sticky-purchase .btn-purchase:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 200, 83, 0.6);
    color: white;
}

.sticky-purchase .btn-purchase i {
    font-size: 1.3rem;
    animation: bounce 2s ease-in-out infinite;
}

/* Bounce animation for icon */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Pulse effect */
.sticky-purchase .btn-purchase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: inherit;
    z-index: -1;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Hide on mobile to avoid blocking content */
@media (max-width: 768px) {
    .sticky-purchase {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
    
    .sticky-purchase .btn-purchase {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .sticky-purchase .btn-purchase {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Ensure button doesn't overlap with header */
@media (min-width: 769px) {
    body.scrolled .sticky-purchase {
        top: 100px; /* Adjust if header shrinks on scroll */
    }
}









/* ===== Mobile Responsive Fixes ===== */

/* Base responsive adjustments */
@media (max-width: 1200px) {
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    /* Hero Section */
    .erp-hero {
        padding: 60px 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        padding-right: 0;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
}

/* Tablet and Mobile */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 16px;
        max-width: 100%;
    }
    
    /* Section Spacing */
    section {
        padding: 50px 0 !important;
    }
    
    /* Typography */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    /* Hero Section */
    .erp-hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-text {
        text-align: center;
        padding: 0;
    }
    
    .hero-badge {
        justify-content: center;
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .hero-image img {
        max-width: 100%;
    }
    
    /* Feature Badges */
    .feature-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    .feature-badge {
        width: 100%;
        justify-content: center;
    }
    
    /* Stats Section */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 24px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Features Grid */
    .features-grid,
    .advanced-features-grid,
    .package-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card,
    .advanced-feature-card,
    .package-item {
        padding: 24px;
    }
    
    /* Screenshots */
    .screenshots-slider {
        padding: 0;
    }
    
    .screenshot-item {
        padding: 0 10px;
    }
    
    /* Technology Stack */
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    /* Videos */
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .video-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .youtube-cta {
        padding: 24px 16px;
    }
    
    .youtube-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .youtube-cta-content > i {
        font-size: 3rem;
    }
    
    .btn-youtube {
        width: 100%;
        justify-content: center;
    }
    
    /* Version History */
    .version-timeline {
        padding-left: 20px;
    }
    
    .version-item {
        padding-left: 30px;
    }
    
    .version-item::before {
        left: -20px;
    }
    
    /* Support Section */
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    /* Pricing Section */
    .pricing-card-wrapper {
        max-width: 100%;
    }
    
    .pricing-header {
        padding: 40px 20px 24px;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .pricing-price .amount {
        font-size: 3rem;
    }
    
    .pricing-features {
        padding: 24px 20px;
    }
    
    .pricing-features li {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .pricing-footer {
        padding: 24px 20px;
    }
    
    .btn-purchase {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .payment-methods {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .payment-methods img {
        height: 24px;
    }
    
    /* Guarantee Section */
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .guarantee-icon {
        width: 60px;
        height: 60px;
    }
    
    .guarantee-icon i {
        font-size: 2rem;
    }
    
    .guarantee-text h4 {
        font-size: 1.25rem;
    }
    
    /* CTA Section */
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Sticky Purchase Button - Move to Bottom */
    .sticky-purchase {
        top: auto !important;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 12px 16px;
        background: white;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        border-radius: 0;
        z-index: 999;
    }
    
    .sticky-purchase .btn-purchase {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .purchase-badge {
        top: -8px;
        right: 10px;
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    .purchase-text strong {
        font-size: 1rem;
    }
    
    .purchase-text small {
        font-size: 0.8rem;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    /* Container */
    .container {
        padding: 0 12px;
    }
    
    /* Typography */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Hero */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .btn i {
        font-size: 1rem;
    }
    
    /* Stats */
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Feature Cards */
    .feature-card,
    .advanced-feature-card {
        padding: 20px;
    }
    
    .feature-icon,
    .advanced-feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i,
    .advanced-feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card h4,
    .advanced-feature-card h4 {
        font-size: 1.1rem;
    }
    
    /* Technology Stack */
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-item {
        padding: 16px;
    }
    
    /* Pricing */
    .pricing-header {
        padding: 30px 16px 20px;
    }
    
    .pricing-header h3 {
        font-size: 1.25rem;
    }
    
    .pricing-price .amount {
        font-size: 2.5rem;
    }
    
    .pricing-features {
        padding: 20px 16px;
    }
    
    .pricing-features h4 {
        font-size: 1.25rem;
    }
    
    .pricing-features li strong {
        font-size: 1rem;
    }
    
    .pricing-features li span {
        font-size: 0.85rem;
    }
    
    /* Package Details */
    .package-item {
        padding: 20px;
    }
    
    .package-icon {
        width: 60px;
        height: 60px;
    }
    
    .package-icon i {
        font-size: 1.75rem;
    }
    
    /* Videos */
    .video-card h4 {
        font-size: 1.1rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    /* YouTube CTA */
    .youtube-cta h4 {
        font-size: 1.25rem;
    }
    
    .youtube-cta p {
        font-size: 0.9rem;
    }
    
    /* Version History */
    .version-item {
        padding-left: 24px;
    }
    
    .version-number {
        font-size: 1rem;
    }
    
    /* Support */
    .support-item {
        padding: 20px;
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    /* Sticky Button */
    .sticky-purchase {
        padding: 10px 12px;
    }
    
    .sticky-purchase .btn-purchase {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .purchase-badge {
        font-size: 0.65rem;
        padding: 2px 8px;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .pricing-price .amount {
        font-size: 2rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .erp-hero {
        padding: 30px 0;
    }
    
    .hero-content {
        flex-direction: row;
        gap: 30px;
    }
    
    .hero-text {
        text-align: left;
        flex: 1;
    }
    
    .hero-image {
        flex: 1;
        margin-top: 0;
    }
    
    .sticky-purchase {
        display: none; /* Hide on landscape to avoid blocking content */
    }
}
