:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --success: #10b981;
    --info: #06b6d4;
    --warning: #f59e0b;
    --danger: #ef4444;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all .3s cubic-bezier(.4,0,.2,1);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.dark-mode {
    --bg-primary: #0a0e27;
    --bg-secondary: #12163a;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --border-color: #1e293b;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.2);
    --shadow-md: 0 4px 20px rgba(0,0,0,.3);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-family); color: var(--text-primary); background: var(--bg-primary); line-height: 1.7; transition: var(--transition); overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; }
::selection { background: var(--primary); color: #fff; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

#preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--bg-primary);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .5s, visibility .5s;
}
#preloader.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader { text-align: center; }
.spinner {
    width: 50px; height: 50px; margin: 0 auto 15px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.back-to-top {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; border: none; cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); }

.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--bg-primary);
    transition: var(--transition);
}
.header-top { background: var(--bg-dark); color: #fff; padding: 8px 0; font-size: 13px; }
.header-top a { color: rgba(255,255,255,.7); margin-right: 20px; }
.header-top a:hover { color: #fff; }
.header-contact i { margin-right: 6px; }
.header-social a { color: rgba(255,255,255,.7); margin-left: 12px; font-size: 14px; }
.header-social a:hover { color: var(--accent); }
.dark-mode-toggle {
    background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer;
    font-size: 16px; padding: 4px 8px; transition: var(--transition);
}
.dark-mode-toggle:hover { color: #fff; }
.dark-mode-toggle .fa-sun { display: none; }
.dark-mode .dark-mode-toggle .fa-moon { display: none; }
.dark-mode .dark-mode-toggle .fa-sun { display: inline; }
.header-sticky { box-shadow: var(--shadow-md); }
.header-hide { transform: translateY(-100%); }
.navbar { padding: 12px 0; }
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.brand-text { font-size: 18px; font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-link { font-weight: 500; color: var(--text-primary) !important; padding: 8px 16px !important; border-radius: var(--radius-sm); transition: var(--transition); }
.nav-link:hover { color: var(--primary) !important; background: rgba(26,35,126,.05); }
.navbar-actions { display: flex; align-items: center; gap: 8px; }
.btn-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--border-color); background: transparent; color: var(--text-primary); transition: var(--transition); }
.btn-icon:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cart-count { position: absolute; top: -5px; right: -5px; font-size: 10px; padding: 2px 6px; }

.megamenu { border: none !important; border-radius: var(--radius-md) !important; box-shadow: var(--shadow-xl) !important; padding: 24px !important; margin-top: 12px !important; background: var(--bg-primary) !important; }
.megamenu-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: var(--radius-sm); transition: var(--transition); color: var(--text-primary) !important; }
.megamenu-item:hover { background: rgba(26,35,126,.05); color: var(--primary) !important; transform: translateX(4px); }
.megamenu-item i { width: 24px; text-align: center; color: var(--primary); }

.search-overlay { position: fixed; inset: 0; z-index: 9999; display: none; }
.overlay-bg { position: absolute; inset: 0; background: rgba(0,0,0,.8); backdrop-filter: blur(8px); }
.search-form-container { position: absolute; top: 30%; left: 50%; transform: translate(-50%,-30%); width: 90%; max-width: 600px; }
.search-input { width: 100%; padding: 20px 60px 20px 24px; font-size: 20px; border: 2px solid var(--primary); border-radius: var(--radius-md); background: var(--bg-primary); color: var(--text-primary); outline: none; }
.search-submit { position: absolute; right: 50px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 20px; color: var(--primary); cursor: pointer; }
.close-btn { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 24px; color: var(--text-secondary); cursor: pointer; }

.hero-section {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1a237e 30%, #0d47a1 60%, #01579b 100%);
    overflow: hidden; padding-top: 80px;
}
.hero-bg-animation { position: absolute; inset: 0; overflow: hidden; }
.gradient-sphere {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: .3;
    animation: floatSphere 8s ease-in-out infinite;
}
.sphere-1 { width: 400px; height: 400px; background: var(--accent); top: -100px; right: -100px; }
.sphere-2 { width: 300px; height: 300px; background: var(--primary-light); bottom: -50px; left: -50px; animation-delay: -3s; }
.sphere-3 { width: 200px; height: 200px; background: var(--success); top: 50%; left: 50%; animation-delay: -6s; }
@keyframes floatSphere { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-30px) scale(1.1); } 66% { transform: translate(-20px,20px) scale(.9); } }
.hero-title { font-size: clamp(36px,5vw,64px); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.hero-subtitle { font-size: clamp(18px,2vw,24px); color: rgba(255,255,255,.8); margin-bottom: 12px; }
.hero-description { font-size: 16px; color: rgba(255,255,255,.6); max-width: 540px; margin-bottom: 32px; }
.hero-actions { margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; }
.stat-item { text-align: center; }
.stat-item .counter { font-size: 32px; font-weight: 800; color: #fff; display: block; }
.stat-item .stat-label { font-size: 14px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 100px; fill: var(--bg-primary); }
.hero-visual { position: relative; }
.hero-card-3d { perspective: 1000px; }
.hero-card-inner {
    padding: 40px; text-align: center;
    background: rgba(255,255,255,.1); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-lg);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
}
.hero-card-inner:hover { transform: rotateY(-5deg) rotateX(2deg); }
.hero-card-inner h4 { color: #fff; margin: 16px 0 8px; }
.hero-card-inner p { color: rgba(255,255,255,.6); }
.floating-elements { position: absolute; inset: 0; pointer-events: none; }
.float-el {
    position: absolute; font-size: 28px; width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
    border-radius: 50%; animation: floatEl 6s ease-in-out infinite;
}
.el-1 { top: 10%; right: 10%; animation-delay: 0s; }
.el-2 { bottom: 20%; left: 5%; animation-delay: -2s; }
.el-3 { top: 40%; right: -5%; animation-delay: -4s; }
@keyframes floatEl { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.section { padding: 80px 0; overflow: hidden; }
.section-header { margin-bottom: 48px; }
.section-badge {
    display: inline-block; padding: 6px 16px; border-radius: 50px;
    background: rgba(26,35,126,.1); color: var(--primary);
    font-size: 14px; font-weight: 600; margin-bottom: 12px;
    text-transform: uppercase; letter-spacing: 1px;
}
.section-title { font-size: clamp(28px,3vw,40px); font-weight: 800; margin-bottom: 12px; }
.section-subtitle { font-size: 16px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.bg-gradient-section { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }

.premium-card {
    background: var(--bg-primary); border: 1px solid var(--border-color);
    border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
    transition: var(--transition); overflow: hidden;
}
.premium-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.partner-slider { display: flex; overflow-x: auto; gap: 40px; padding: 20px 0; cursor: grab; scrollbar-width: none; }
.partner-slider::-webkit-scrollbar { display: none; }
.partner-item { flex-shrink: 0; display: flex; align-items: center; justify-content: center; min-width: 150px; }
.partner-logo { height: 40px; opacity: .5; filter: grayscale(1); transition: var(--transition); }
.partner-logo:hover { opacity: 1; filter: grayscale(0); }
.partner-name { font-size: 18px; font-weight: 700; color: var(--text-secondary); }

.industry-card { position: relative; border-radius: var(--radius-md); overflow: hidden; }
.industry-card-image { height: 200px; overflow: hidden; position: relative; }
.industry-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.industry-card:hover .industry-card-image img { transform: scale(1.08); }
.industry-card-placeholder { height: 200px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(26,35,126,.05), rgba(13,71,161,.05)); }
.industry-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8), transparent); display: flex; align-items: flex-end; justify-content: center; padding: 20px; opacity: 0; transition: var(--transition); }
.industry-card:hover .industry-card-overlay { opacity: 1; }
.industry-card-overlay i { color: #fff; }
.industry-card-body { padding: 24px; position: relative; }
.industry-card-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff; border-radius: var(--radius-sm); font-size: 20px; margin-bottom: 12px;
}
.industry-card-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.industry-card-count { font-size: 13px; color: var(--primary); font-weight: 600; display: block; margin-bottom: 8px; }
.industry-card-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }

.software-card { border-radius: var(--radius-md); overflow: hidden; }
.software-card-image { height: 180px; position: relative; overflow: hidden; }
.software-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.software-card:hover .software-card-image img { transform: scale(1.05); }
.software-card-placeholder { height: 180px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(26,35,126,.05), rgba(13,71,161,.05)); }
.software-badge { position: absolute; top: 10px; right: 10px; padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 700; }
.software-badge.discount { background: var(--danger); color: #fff; }
.software-badge.popular { background: var(--accent); color: #fff; }
.software-card-body { padding: 20px; }
.software-category { font-size: 12px; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.software-card-title { font-size: 16px; font-weight: 700; margin: 4px 0 8px; }
.software-card-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 12px; }
.software-card-footer { display: flex; justify-content: space-between; align-items: center; }
.current-price { font-size: 18px; font-weight: 800; color: var(--primary); }
.old-price { font-size: 14px; color: var(--text-light); text-decoration: line-through; margin-left: 6px; }

.stats-section { background: var(--bg-secondary); }
.stat-card { padding: 32px 16px; border-radius: var(--radius-md); background: var(--bg-primary); transition: var(--transition); }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-number { font-size: 36px; font-weight: 900; color: var(--text-primary); display: block; }
.stat-name { font-size: 14px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }

.testimonial-card { padding: 32px; border-radius: var(--radius-md); }
.testimonial-rating { margin-bottom: 12px; }
.testimonial-content { font-size: 15px; line-height: 1.7; color: var(--text-primary); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-avatar-placeholder { width: 50px; height: 50px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.testimonial-nav { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 24px; }
.testimonial-nav button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-color); background: var(--bg-primary); color: var(--text-primary); cursor: pointer; transition: var(--transition); }
.testimonial-nav button:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.testimonial-dots { display: flex; gap: 6px; }
.testimonial-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-color); cursor: pointer; transition: var(--transition); }
.testimonial-dots .dot.active { width: 24px; border-radius: 4px; background: var(--primary); }

.pricing-card { border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.pricing-featured { transform: scale(1.05); border: 2px solid var(--primary); position: relative; }
.pricing-badge { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 4px 20px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.pricing-header { padding: 32px; text-align: center; border-bottom: 1px solid var(--border-color); }
.pricing-price { margin: 16px 0; }
.price-amount { font-size: 48px; font-weight: 900; color: var(--text-primary); }
.price-period { font-size: 16px; color: var(--text-secondary); }
.pricing-body { padding: 32px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 24px; }
.pricing-features li { padding: 8px 0; font-size: 14px; }

.blog-card { border-radius: var(--radius-md); overflow: hidden; }
.blog-card-image { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-category { display: inline-block; padding: 4px 12px; border-radius: 50px; background: rgba(26,35,126,.1); color: var(--primary); font-size: 12px; font-weight: 600; margin-bottom: 8px; }
.blog-card-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.blog-card-title a { color: var(--text-primary); }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { font-size: 14px; color: var(--text-secondary); }
.blog-card-meta { display: flex; gap: 16px; font-size: 13px; color: var(--text-light); margin-bottom: 8px; }

.accordion-item { border: 1px solid var(--border-color) !important; margin-bottom: 8px; border-radius: var(--radius-sm) !important; overflow: hidden; }
.accordion-button { background: var(--bg-primary); color: var(--text-primary); font-weight: 600; }
.accordion-button:not(.collapsed) { background: rgba(26,35,126,.05); color: var(--primary); }
.accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-body { color: var(--text-secondary); }

.newsletter-section { padding: 80px 0; }
.newsletter-form-large .form-control { border-radius: 50px 0 0 50px; padding: 16px 24px; border: none; }
.newsletter-form-large .btn { border-radius: 0 50px 50px 0; }

.footer { background: var(--bg-dark); color: rgba(255,255,255,.7); }
.footer-wave { color: var(--bg-primary); }
.footer-wave svg { display: block; }
.footer-main { padding: 64px 0 40px; }
.footer-logo { color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { filter: brightness(0) invert(1); }
.footer-contact-info p { margin-bottom: 8px; }
.footer-contact-info i { width: 20px; margin-right: 8px; color: var(--accent); }
.footer-widget h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; justify-content: flex-end; }
.footer-bottom-links a { color: rgba(255,255,255,.5); font-size: 13px; }
.footer-bottom-links a:hover { color: var(--accent); }

.page-header { padding: 120px 0 60px; }
.page-title { font-size: clamp(32px,4vw,48px); font-weight: 900; }
.page-subtitle { font-size: 18px; max-width: 600px; margin: 8px auto 0; }
.breadcrumb { background: none; padding: 0; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

.software-hero { min-height: 60vh; display: flex; align-items: center; }
.software-nav .nav-link { white-space: nowrap; }

.star-rating { direction: rtl; display: inline-flex; gap: 4px; }
.star-rating input { display: none; }
.star-rating label { cursor: pointer; font-size: 24px; color: var(--border-color); transition: var(--transition); }
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label { color: var(--warning); }

.payment-option { display: block; cursor: pointer; }
.payment-option input { display: none; }
.payment-label { display: block; padding: 12px; border: 2px solid var(--border-color); border-radius: var(--radius-sm); text-align: center; transition: var(--transition); font-weight: 500; }
.payment-option input:checked + .payment-label { border-color: var(--primary); background: rgba(26,35,126,.05); color: var(--primary); }

.cart-item .price-tag { font-weight: 700; color: var(--primary); }

.min-vh-50 { min-height: 50vh; }
.min-vh-75 { min-height: 75vh; }
.min-vh-85 { min-height: 85vh; }

@media (max-width: 991.98px) {
    .header-top { display: none; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .pricing-featured { transform: none; }
    .footer-bottom-links { justify-content: center; }
    #back-to-top { bottom: 80px; right: 16px; width: 40px; height: 40px; }
}

@media (max-width: 767.98px) {
    .section { padding: 48px 0; }
    .hero-title { font-size: 28px; }
    .hero-actions .btn { display: block; width: 100%; margin: 0 0 12px !important; }
    .hero-stats { gap: 16px; }
    .stat-item .counter { font-size: 24px; }
}

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all .6s ease; }
.animate-visible { opacity: 1; transform: translateY(0); }

/* ========== TOP BAR ========== */
.top-bar {
    background: #0a0e27;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    position: relative;
    z-index: 1001;
}
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-right { display: flex; align-items: center; gap: 12px; }
.top-bar-link { color: rgba(255,255,255,.7); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.top-bar-link:hover { color: #fff; }
.top-bar-link i { font-size: 12px; }
.top-bar-link.admin-link { color: var(--accent); }
.top-bar-link.admin-link:hover { color: var(--accent-light); }
.top-bar-divider { width: 1px; height: 16px; background: rgba(255,255,255,.2); }
.top-bar-dropdown { position: relative; }
.top-bar-dropdown-toggle { background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer; display: flex; align-items: center; gap: 6px; font-size: 13px; padding: 0; }
.top-bar-dropdown-toggle:hover { color: #fff; }
.top-bar-dropdown-toggle i:last-child { font-size: 8px; }
.top-bar-dropdown-menu { position: absolute; top: 100%; right: 0; background: #fff; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,.15); min-width: 140px; display: none; z-index: 100; padding: 4px; margin-top: 8px; }
.top-bar-dropdown-menu.show { display: block; }
.top-bar-dropdown-menu a { display: block; padding: 8px 14px; color: var(--text-primary); text-decoration: none; border-radius: 6px; font-size: 13px; }
.top-bar-dropdown-menu a:hover, .top-bar-dropdown-menu a.active { background: var(--bg-secondary); color: var(--primary); }

/* ========== MAIN HEADER ========== */
.main-header {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1000;
    transition: all .3s ease;
}
.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.08);
    animation: slideDown .3s ease;
}
.main-header.header-hidden { transform: translateY(-100%); }
.main-header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.site-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; }
.site-logo img { height: 38px; width: auto; }
.site-logo-text { font-size: 20px; font-weight: 800; color: var(--primary); letter-spacing: -.5px; }

/* ========== DESKTOP NAVIGATION ========== */
.main-nav { flex: 1; min-width: 0; display: flex; justify-content: center; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -ms-overflow-style: none; position: relative; }
.main-nav::-webkit-scrollbar { display: none; }
.main-nav.nav-overflow::after { content: ''; position: sticky; right: 0; top: 0; bottom: 0; min-width: 40px; flex-shrink: 0; background: linear-gradient(to right, transparent, var(--bg-primary, #fff)); pointer-events: none; z-index: 2; }
.main-nav.nav-overflow.nav-scrolled-end::after { opacity: 0; transition: opacity .2s; }
.main-nav-list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; width: max-content; flex-shrink: 0; }
.main-nav-list .nav-item { position: relative; }
.main-nav-list .nav-link {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 12px;
    font-size: 13px; font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: all .2s ease;
    white-space: nowrap;
}
.main-nav-list .nav-link:hover, .main-nav-list .nav-link.active {
    background: var(--bg-secondary);
    color: var(--primary);
}
.nav-arrow { font-size: 8px; transition: transform .2s; }
.nav-mega:hover .nav-arrow { transform: rotate(180deg); }
.nav-mega.active > .nav-link { background: var(--bg-secondary); color: var(--primary); }

/* ========== MEGA DROPDOWN ========== */
.mega-dropdown {
    position: fixed;
    top: auto;
    left: auto;
    transform: translateY(10px);
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.04);
    padding: 0;
    padding-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    z-index: 1000;
    min-width: 600px;
    border: 1px solid rgba(255,255,255,.3);
    border-top: none;
    pointer-events: none;
}
.mega-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.mega-container { padding: 24px; max-height: 70vh; overflow-y: auto; }
.mega-container::-webkit-scrollbar { width: 4px; }
.mega-container::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

/* Mega Header */
.mega-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border-color); }
.mega-header-text h3 { font-size: 18px; font-weight: 700; color: var(--text-primary); margin: 0; }
.mega-header-text p { font-size: 13px; color: var(--text-secondary); margin: 4px 0 0; }

/* ========== INDUSTRIES MEGA ========== */
/* ========== PREMIUM DESIGN SYSTEM ADDITIONS ========== */

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-text-accent {
    background: linear-gradient(135deg, var(--accent), #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Buttons */
.btn-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}
.btn-gradient:hover {
    background: linear-gradient(135deg, var(--primary-dark), #1e40af);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,99,235,.35);
}
.btn-gradient:active { transform: translateY(0); }
.btn-gradient-accent {
    background: linear-gradient(135deg, var(--accent), #f97316);
    color: #fff;
    border: none;
}
.btn-gradient-accent:hover {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,158,11,.35);
}
.btn-outline-premium {
    border: 2px solid rgba(255,255,255,.3);
    color: #fff;
    background: transparent;
    backdrop-filter: blur(4px);
    transition: all .3s;
}
.btn-outline-premium:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,.1);
    transform: translateY(-2px);
}
.btn-glow {
    animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(37,99,235,.3); }
    50% { box-shadow: 0 0 40px rgba(37,99,235,.5), 0 0 60px rgba(37,99,235,.2); }
}

/* Section Enhancements */
.section-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(37,99,235,.04));
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: .5px;
    text-transform: uppercase;
    border: 1px solid rgba(37,99,235,.1);
}
.section-header .section-title {
    font-size: clamp(28px,3.5vw,40px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -.5px;
}
.section-header .section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}
.section { padding: 96px 0; }
#industries { padding-top: 40px; }
.section-alt { background: var(--bg-secondary); }

/* 3D Glassmorphism Card */
.card-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
}
.card-glass {
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: var(--radius-md);
}
.card-glass-dark {
    background: rgba(15,23,42,.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
}

/* Premium Hero Section */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 30%, #1d4ed8 60%, #2563eb 100%);
    overflow: hidden;
}
.hero-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(37,99,235,.3), transparent),
                radial-gradient(ellipse 60% 50% at 80% 80%, rgba(245,158,11,.15), transparent);
    pointer-events: none;
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .2;
    animation: orbFloat 20s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: var(--primary-light); top: -200px; right: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: var(--accent); bottom: -100px; left: -100px; animation-delay: -7s; }
.hero-orb-3 { width: 300px; height: 300px; background: var(--success); top: 50%; left: 30%; animation-delay: -14s; }
@keyframes orbFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    25% { transform: translate(50px,-50px) scale(1.1); }
    50% { transform: translate(-30px,30px) scale(.9); }
    75% { transform: translate(40px,20px) scale(1.05); }
}
.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,.3);
    border-radius: 50%;
    animation: particleDrift 15s linear infinite;
}
.hero-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 12s; }
.hero-particle:nth-child(2) { top: 40%; left: 80%; animation-delay: -3s; animation-duration: 18s; }
.hero-particle:nth-child(3) { top: 70%; left: 20%; animation-delay: -6s; animation-duration: 14s; }
.hero-particle:nth-child(4) { top: 10%; left: 60%; animation-delay: -9s; animation-duration: 16s; }
.hero-particle:nth-child(5) { top: 80%; left: 70%; animation-delay: -12s; animation-duration: 13s; }
@keyframes particleDrift {
    0% { transform: translateY(0) translateX(0); opacity: .3; }
    25% { transform: translateY(-30px) translateX(20px); opacity: .5; }
    50% { transform: translateY(-60px) translateX(-10px); opacity: .2; }
    75% { transform: translateY(-90px) translateX(30px); opacity: .4; }
    100% { transform: translateY(-120px) translateX(0); opacity: 0; }
}

/* Hero Search */
.hero-search-box {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px;
    padding: 8px;
    display: flex;
    align-items: center;
    max-width: 560px;
    transition: all .3s;
}
.hero-search-box:focus-within {
    border-color: rgba(255,255,255,.3);
    box-shadow: 0 0 40px rgba(37,99,235,.2);
}
.hero-search-box .search-icon {
    padding: 0 16px;
    color: rgba(255,255,255,.5);
    font-size: 18px;
}
.hero-search-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 0;
    font-size: 16px;
    color: #fff;
    outline: none;
}
.hero-search-box input::placeholder { color: rgba(255,255,255,.4); }
.hero-search-box .search-select {
    background: rgba(255,255,255,.1);
    border: none;
    color: rgba(255,255,255,.8);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    margin-right: 4px;
}
.hero-search-box .search-select option { color: #0f172a; }

/* Hero Stats Premium */
.hero-stats-premium {
    display: flex;
    gap: 40px;
    padding: 24px 0 0;
    border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-item { text-align: left; }
.hero-stat-item .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat-item .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual - 3D Dashboard Preview */
.hero-visual-3d {
    perspective: 1200px;
    position: relative;
}
.hero-dashboard-card {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 32px;
    transform: rotateY(-8deg) rotateX(4deg);
    transition: all .5s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}
.hero-dashboard-card:hover {
    transform: rotateY(-4deg) rotateX(2deg) translateY(-8px);
    box-shadow: 0 40px 80px rgba(0,0,0,.3);
}
.hero-dashboard-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(37,99,235,.2), transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(245,158,11,.1), transparent 50%);
    pointer-events: none;
}
.dashboard-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}
.dashboard-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.dashboard-dots span:nth-child(1) { background: #ef4444; }
.dashboard-dots span:nth-child(2) { background: #f59e0b; }
.dashboard-dots span:nth-child(3) { background: #10b981; }
.dashboard-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    margin: 16px 0;
}
.dashboard-bar {
    flex: 1;
    background: linear-gradient(to top, rgba(37,99,235,.6), rgba(96,165,250,.3));
    border-radius: 4px 4px 0 0;
    animation: barRise 1s ease-out forwards;
    transform-origin: bottom;
}
.dashboard-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.dashboard-bar:nth-child(2) { height: 65%; animation-delay: .1s; }
.dashboard-bar:nth-child(3) { height: 80%; animation-delay: .2s; }
.dashboard-bar:nth-child(4) { height: 50%; animation-delay: .3s; }
.dashboard-bar:nth-child(5) { height: 90%; animation-delay: .4s; }
.dashboard-bar:nth-child(6) { height: 60%; animation-delay: .5s; }
.dashboard-bar:nth-child(7) { height: 75%; animation-delay: .6s; }
@keyframes barRise {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}
.dashboard-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.dashboard-row:last-child { border: none; }
.dashboard-label { color: rgba(255,255,255,.5); font-size: 11px; }
.dashboard-value { color: #fff; font-size: 13px; font-weight: 600; }

/* Floating elements around hero */
.hero-float-icon {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    animation: floatIcon 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    z-index: 2;
}
.hero-float-icon.float-1 {
    top: 5%;
    right: -5%;
    background: linear-gradient(135deg, #10b981, #059669);
    animation-delay: 0s;
}
.hero-float-icon.float-2 {
    bottom: 15%;
    left: -8%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    animation-delay: -2s;
}
.hero-float-icon.float-3 {
    top: 50%;
    right: -10%;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    animation-delay: -4s;
}
@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(5deg); }
}

/* Hero Wave Premium */
.hero-wave-premium {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    color: var(--bg-primary);
}
.hero-wave-premium svg { width: 100%; height: auto; display: block; }

/* ========== 3D INDUSTRY CARDS ========== */
.industry-card-3d {
    perspective: 1000px;
}
.industry-card-3d-inner {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    transform-style: preserve-3d;
    height: 100%;
}
.industry-card-3d-inner:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: var(--shadow-xl);
}
.industry-card-3d .card-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.industry-card-3d .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.industry-card-3d-inner:hover .card-img-wrap img {
    transform: scale(1.08);
}
.industry-card-3d .card-img-overlay-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.industry-card-3d .card-img-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
}
.industry-card-3d .card-body-content {
    padding: 20px;
    position: relative;
}
.industry-card-3d .card-icon-3d {
    position: absolute;
    top: -22px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(37,99,235,.3);
}
.industry-card-3d .card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.industry-card-3d .card-count {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}
.industry-card-3d .card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ========== SOFTWARE CARDS PREMIUM ========== */
.software-card-premium {
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.software-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.software-card-premium .card-img-top {
    position: relative;
    height: 170px;
    overflow: hidden;
    flex-shrink: 0;
}
.software-card-premium .card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.software-card-premium:hover .card-img-top img {
    transform: scale(1.05);
}
.software-card-premium .img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    font-size: 40px;
    color: var(--text-light);
}
.software-card-premium .card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.software-card-premium .card-badges .badge {
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.software-card-premium .card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.software-card-premium .card-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 4px;
    display: block;
}
.software-card-premium .card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}
.software-card-premium .card-tagline {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
}
.software-card-premium .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}
.software-card-premium .price-current {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
}
.software-card-premium .price-old {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 6px;
}
.software-card-premium .card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
}
.software-card-premium .card-rating i { color: #f59e0b; }
.software-card-premium .card-rating i.muted { color: #d1d5db; }
.software-card-premium .card-rating span { color: var(--text-secondary); font-size: 11px; margin-left: 4px; }
.software-card-premium .card-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}
.software-card-premium .card-actions .btn {
    flex: 1;
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 10px;
    font-weight: 600;
}

/* ========== STATS SECTION PREMIUM ========== */
.stat-card-premium {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}
.stat-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}
.stat-card-premium:hover::before { transform: scaleX(1); }
.stat-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.stat-card-premium .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}
.stat-card-premium .stat-icon.icon-primary { background: rgba(37,99,235,.1); color: var(--primary); }
.stat-card-premium .stat-icon.icon-success { background: rgba(16,185,129,.1); color: var(--success); }
.stat-card-premium .stat-icon.icon-info { background: rgba(6,182,212,.1); color: var(--info); }
.stat-card-premium .stat-icon.icon-warning { background: rgba(245,158,11,.1); color: var(--warning); }
.stat-card-premium .stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-primary);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}
.stat-card-premium .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ========== TESTIMONIAL PREMIUM ========== */
.testimonial-card-premium {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all .3s;
    position: relative;
}
.testimonial-card-premium:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.testimonial-card-premium::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 64px;
    line-height: 1;
    color: rgba(37,99,235,.06);
    font-family: Georgia, serif;
}
.testimonial-card-premium .stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}
.testimonial-card-premium .stars i { font-size: 14px; color: #f59e0b; }
.testimonial-card-premium .stars i.empty { color: #d1d5db; }
.testimonial-card-premium .quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-card-premium .author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card-premium .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-card-premium .author-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}
.testimonial-card-premium .author-info h6 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}
.testimonial-card-premium .author-info span {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ========== PRICING PREMIUM ========== */
.pricing-card-premium {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all .4s;
    position: relative;
}
.pricing-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.pricing-card-premium.featured {
    border: 2px solid var(--primary);
    transform: scale(1.03);
    z-index: 1;
}
.pricing-card-premium.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card-premium .popular-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37,99,235,.3);
}
.pricing-card-premium .pricing-header {
    padding: 40px 32px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.pricing-card-premium .pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.pricing-card-premium .pricing-header p {
    font-size: 14px;
    color: var(--text-secondary);
}
.pricing-card-premium .price {
    margin: 16px 0;
}
.pricing-card-premium .price .amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -2px;
}
.pricing-card-premium .price .period {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 400;
}
.pricing-card-premium .pricing-body {
    padding: 24px 32px 32px;
}
.pricing-card-premium .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.pricing-card-premium .features-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-card-premium .features-list li i {
    width: 18px;
    text-align: center;
}
.pricing-card-premium .features-list li .fa-check { color: var(--success); }
.pricing-card-premium .features-list li .fa-times { color: var(--danger); }

/* ========== BLOG CARD PREMIUM ========== */
.blog-card-premium {
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: all .4s;
    height: 100%;
}
.blog-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.blog-card-premium .blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-premium .blog-body {
    padding: 24px;
}
.blog-card-premium .blog-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: rgba(37,99,235,.08);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.blog-card-premium .blog-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}
.blog-card-premium .blog-title a { color: var(--text-primary); text-decoration: none; }
.blog-card-premium .blog-title a:hover { color: var(--primary); }
.blog-card-premium .blog-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}
.blog-card-premium .blog-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-light);
}

/* ========== NEWSLETTER PREMIUM ========== */
.newsletter-premium {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.newsletter-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e3a5f, #2563eb, #1d4ed8);
    opacity: .95;
}
.newsletter-premium .container { position: relative; z-index: 1; }
.newsletter-premium .form-control {
    border-radius: 50px 0 0 50px;
    padding: 16px 24px;
    border: none;
    font-size: 16px;
}
.newsletter-premium .btn {
    border-radius: 0 50px 50px 0;
    padding: 16px 32px;
    font-weight: 600;
}

/* ========== PAGE HEADER PREMIUM ========== */
.page-header-premium {
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1d4ed8 70%, #2563eb 100%);
}
.page-header-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(37,99,235,.3), transparent),
                radial-gradient(ellipse 40% 40% at 70% 80%, rgba(245,158,11,.1), transparent);
    pointer-events: none;
}
.page-header-premium .container { position: relative; z-index: 1; }
.page-header-premium h1 {
    font-size: clamp(32px,4vw,48px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -.5px;
}
.page-header-premium p {
    font-size: 18px;
    color: rgba(255,255,255,.6);
    max-width: 600px;
    margin: 0 auto 16px;
}
.page-header-premium .breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
}
.page-header-premium .breadcrumb-item { color: rgba(255,255,255,.5); }
.page-header-premium .breadcrumb-item a { color: rgba(255,255,255,.7); text-decoration: none; }
.page-header-premium .breadcrumb-item a:hover { color: #fff; }
.page-header-premium .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }
.page-header-premium .breadcrumb-item.active { color: #fff; }

/* ========== ACCORDION PREMIUM ========== */
.accordion-premium .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 8px;
    box-shadow: var(--shadow-sm);
}
.accordion-premium .accordion-button {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    background: #fff;
}
.accordion-premium .accordion-button:not(.collapsed) {
    background: rgba(37,99,235,.04);
    color: var(--primary);
}
.accordion-premium .accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-premium .accordion-body {
    padding: 0 20px 20px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ========== SCROLL ANIMATIONS ========== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s cubic-bezier(.4,0,.2,1);
}
[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-down"] { transform: translateY(-30px); }
[data-aos="fade-left"] { transform: translateX(-30px); }
[data-aos="fade-right"] { transform: translateX(30px); }
[data-aos="fade-up"].aos-animate,
[data-aos="fade-down"].aos-animate,
[data-aos="fade-left"].aos-animate,
[data-aos="fade-right"].aos-animate { transform: translate(0); }
[data-aos="zoom-in"] { transform: scale(.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }
[data-aos-delay="100"] { transition-delay: .1s; }
[data-aos-delay="200"] { transition-delay: .2s; }
[data-aos-delay="300"] { transition-delay: .3s; }
[data-aos-delay="400"] { transition-delay: .4s; }
[data-aos-delay="500"] { transition-delay: .5s; }

/* ========== NAVIGATION HEADER ENHANCEMENTS ========== */
.main-header.header-transparent {
    background: transparent;
    border-bottom-color: transparent;
}
.main-header.header-transparent .site-logo-text { color: #fff; }
.main-header.header-transparent .main-nav-list .nav-link { color: rgba(255,255,255,.85); }
.main-header.header-transparent .main-nav-list .nav-link:hover { background: rgba(255,255,255,.1); color: #fff; }
.main-header.header-transparent .action-btn { color: rgba(255,255,255,.85); }
.main-header.header-transparent .action-btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.main-header.header-transparent .mobile-toggle .hamburger-line { background: #fff; }

/* ========== CTA SECTION ========== */
.cta-section-premium {
    padding: 96px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1d4ed8 70%, #2563eb 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-section-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(37,99,235,.2), transparent);
    pointer-events: none;
}
.cta-section-premium .container { position: relative; z-index: 1; }
.cta-section-premium h2 {
    font-size: clamp(28px,3vw,40px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.cta-section-premium p {
    font-size: 18px;
    color: rgba(255,255,255,.6);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* ========== PARTNER SECTION ========== */
/* ========== TRUSTED BY SECTION ========== */
.trusted-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 48px;
}
.trusted-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 60% at 15% 30%, rgba(37,99,235,.05), transparent),
        radial-gradient(ellipse 40% 60% at 85% 70%, rgba(16,185,129,.05), transparent);
    pointer-events: none;
}
.trusted-scroll {
    max-width: 1300px;
    margin: 0 auto;
}
.partner-scroll {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.partner-scroll::before,
.partner-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}
.partner-scroll::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-primary), transparent);
}
.partner-scroll::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-primary), transparent);
}
.partner-track {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: partnerScroll 32s linear infinite;
    width: max-content;
    padding: 6px 0;
}
.partner-track:hover { animation-play-state: paused; }
@keyframes partnerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partner-item-premium {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 12px 20px;
}
.partner-item-premium img {
    height: 32px;
    max-width: 150px;
    object-fit: contain;
    opacity: .55;
    filter: grayscale(1);
    transition: all .3s;
}
.partner-item-premium:hover img { opacity: 1; filter: grayscale(0); }
.partner-outline {
    display: inline-block;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    background: #fff;
    border: 2px solid rgba(15,23,42,.14);
    border-radius: 12px;
    white-space: nowrap;
    transition: all .3s;
}
.partner-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,99,235,.1);
}

/* ========== SOFTWARE DETAIL SECTIONS ========== */
.sw-detail-hero {
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}
.sw-detail-hero .breadcrumb { background: transparent; padding: 0; margin-bottom: 16px; }
.sw-detail-hero .breadcrumb-item { color: rgba(255,255,255,.5); }
.sw-detail-hero .breadcrumb-item a { color: rgba(255,255,255,.6); text-decoration: none; }
.sw-detail-hero .breadcrumb-item a:hover { color: #fff; }
.sw-detail-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }
.sw-detail-hero .breadcrumb-item.active { color: #fff; }
.sw-detail-hero h1 {
    font-size: clamp(32px,4vw,48px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -.5px;
}
.sw-detail-hero .tagline {
    font-size: 18px;
    color: rgba(255,255,255,.6);
    max-width: 540px;
    margin-bottom: 24px;
}
.sw-detail-hero .meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
.sw-detail-hero .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.7);
    font-size: 14px;
}
.sw-detail-hero .meta-item i { font-size: 16px; }
.sw-detail-hero .price-display {
    margin-bottom: 24px;
}
.sw-detail-hero .price-display .current {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
}
.sw-detail-hero .price-display .old {
    font-size: 20px;
    color: rgba(255,255,255,.4);
    text-decoration: line-through;
    margin-left: 12px;
}
.sw-detail-hero .price-display .discount-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--danger);
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    margin-left: 12px;
}
.sw-detail-hero .rating-display {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sw-detail-hero .rating-display .stars { color: #f59e0b; font-size: 16px; }
.sw-detail-hero .rating-display .stars i { margin-right: 2px; }
.sw-detail-hero .rating-display .count { color: rgba(255,255,255,.5); font-size: 14px; }

/* Sticky Tab Nav */
.sw-tab-nav {
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 68px;
    z-index: 99;
}
.sw-tab-nav .nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 2px;
    padding: 8px 0;
}
.sw-tab-nav .nav::-webkit-scrollbar { display: none; }
.sw-tab-nav .nav-link {
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    border: none;
    transition: all .2s;
}
.sw-tab-nav .nav-link:hover { background: var(--bg-secondary); color: var(--text-primary); }
.sw-tab-nav .nav-link.active { background: rgba(37,99,235,.08); color: var(--primary); font-weight: 600; }

/* Sidebar Purchase Box */
.purchase-box {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: sticky;
    top: 140px;
}
.purchase-box .box-body { padding: 24px; }
.purchase-box .box-price {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
}
.purchase-box .box-price .amount { font-size: 32px; font-weight: 900; color: var(--text-primary); }
.purchase-box .box-price .old-amount { font-size: 16px; color: var(--text-light); text-decoration: line-through; }
.purchase-box .box-price .save { display: inline-block; margin-top: 4px; font-size: 13px; font-weight: 600; color: var(--success); }
.purchase-box .info-list { list-style: none; padding: 0; margin: 0 0 16px; }
.purchase-box .info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}
.purchase-box .info-list li:last-child { border: none; }
.purchase-box .info-list li i { width: 16px; text-align: center; font-size: 14px; }
.purchase-box .info-list li .label { color: var(--text-light); min-width: 90px; }
.purchase-box .info-list li .value { color: var(--text-primary); font-weight: 500; }
.purchase-box .box-actions { display: flex; flex-direction: column; gap: 8px; }
.purchase-box .box-actions .btn { border-radius: 10px; padding: 12px; font-weight: 600; }
.purchase-box .guarantee-text {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.feature-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all .3s;
}
.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}
.feature-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.feature-card .icon.icon-blue { background: rgba(37,99,235,.1); color: var(--primary); }
.feature-card .icon.icon-green { background: rgba(16,185,129,.1); color: var(--success); }
.feature-card .icon.icon-orange { background: rgba(245,158,11,.1); color: var(--warning); }
.feature-card .icon.icon-cyan { background: rgba(6,182,212,.1); color: var(--info); }
.feature-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* ========== RESPONSIVE ENHANCEMENTS ========== */
@media (max-width: 1199.98px) {
    .industries-mega { min-width: auto; }
    .software-mega { min-width: auto; }
    .mega-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-float-icon { display: none; }
}
@media (max-width: 991.98px) {
    .mega-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats-premium { gap: 24px; flex-wrap: wrap; }
    .pricing-card-premium.featured { transform: none; }
    .pricing-card-premium.featured:hover { transform: translateY(-4px); }
    .footer-bottom-links { justify-content: center; }
    #back-to-top { bottom: 80px; right: 16px; width: 40px; height: 40px; }
    .purchase-box { position: static !important; }
    .sw-tab-nav { top: 0 !important; }
}
@media (max-width: 767.98px) {
    .section { padding: 56px 0; }
    .page-header-premium { padding: 80px 0 40px; }
    .hero-search-box { flex-direction: column; gap: 8px; align-items: stretch; }
    .hero-search-box .search-select { margin: 0; }
    .hero-stats-premium { gap: 16px; }
    .hero-stat-item .stat-number { font-size: 24px; }
    .mega-grid { grid-template-columns: repeat(2, 1fr); }
    .mega-dropdown { position: static; transform: none; box-shadow: none; border-radius: 0; min-width: auto; }
    .sw-detail-hero { padding: 100px 0 40px; }
    .sw-detail-hero h1 { font-size: 28px; }
    .sw-detail-hero .price-display .current { font-size: 28px; }
    .stat-card-premium .stat-number { font-size: 28px; }
    .btn-glow { animation: none; }
}
@media (max-width: 575.98px) {
    .mega-grid { grid-template-columns: 1fr; }
    .hero-stats-premium { flex-direction: column; gap: 12px; }
    .hero-stat-item { text-align: center; }
    .partner-track { gap: 14px; }
    .feature-grid { grid-template-columns: 1fr; }
}

/* ========== FILTER SIDEBAR ========== */
.filter-sidebar .card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.filter-sidebar .form-select {
    border-radius: 10px;
    border-color: var(--border-color);
    font-size: 14px;
    padding: 10px 14px;
}
.filter-sidebar .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }

/* ========== REVIEW CARD ========== */
.review-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all .3s;
}
.review-card:hover { box-shadow: var(--shadow-lg); }
.avatar-sm {
    width: 40px;
    height: 40px;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ========== STAR REVIEW INPUT ========== */
.star-rating { direction: rtl; display: inline-flex; gap: 4px; }
.star-rating input { display: none; }
.star-rating label { cursor: pointer; font-size: 24px; color: #d1d5db; transition: all .2s; }
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label { color: #f59e0b; }

/* ========== CONTACT PAGE ========== */
.contact-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-icon-box.bg-blue-soft { background: rgba(37,99,235,.1); color: var(--primary); }
.contact-icon-box.bg-green-soft { background: rgba(16,185,129,.1); color: var(--success); }
.contact-icon-box.bg-cyan-soft { background: rgba(6,182,212,.1); color: var(--info); }
.contact-icon-box.bg-orange-soft { background: rgba(245,158,11,.1); color: var(--warning); }

/* ========== FORM STYLES ========== */
.form-premium .form-control {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all .2s;
}
.form-premium .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-premium .form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.industries-mega { min-width: 900px; }
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.mega-card {
    display: block;
    text-decoration: none;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    transition: all .3s ease;
    border: 1px solid transparent;
}
.mega-card:hover {
    border-color: var(--border-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}
.mega-card-img { position: relative; height: 100px; overflow: hidden; }
.mega-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.mega-card:hover .mega-card-img img { transform: scale(1.05); }
.mega-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,35,126,.4), rgba(26,35,126,.1));
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s;
}
.mega-card:hover .mega-card-overlay { opacity: 1; }
.mega-card-overlay i { font-size: 28px; color: #fff; }
.mega-card-body { padding: 12px; position: relative; }
.mega-card-icon {
    position: absolute; top: -16px; right: 12px;
    width: 32px; height: 32px;
    background: var(--primary); color: #fff;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(26,35,126,.3);
}
.mega-card-body h4 { font-size: 13px; font-weight: 600; color: var(--text-primary); margin: 0 0 4px; }
.mega-card-body p { font-size: 11px; color: var(--text-secondary); margin: 0 0 6px; line-height: 1.4; }
.mega-card-count { font-size: 10px; font-weight: 600; color: var(--primary); background: rgba(26,35,126,.08); padding: 2px 8px; border-radius: 10px; }

/* ========== SOFTWARE MEGA ========== */
.software-mega { min-width: 1000px; }
.software-menu-group { margin-bottom: 0; }
.software-menu-group-title {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700; color: var(--primary);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(26,35,126,.04);
    margin-bottom: 6px;
    transition: var(--transition);
}
.software-menu-group-title:hover { background: rgba(26,35,126,.1); color: var(--primary-dark); }
.software-menu-group-title i { font-size: 14px; }
.software-menu-list { list-style: none; padding: 0; margin: 0; }
.software-menu-list li { margin: 0; }
.software-menu-list li a {
    display: flex; align-items: center;
    padding: 6px 12px;
    font-size: 12px; color: var(--text-secondary);
    text-decoration: none;
    border-radius: 6px;
    transition: all .2s;
}
.software-menu-list li a:hover { background: var(--bg-secondary); color: var(--primary); padding-left: 16px; }
.software-menu-list li a i { font-size: 10px; width: 18px; text-align: center; }
.view-all-link { color: var(--primary) !important; font-weight: 600; font-size: 12px; }

/* ========== HEADER ACTIONS ========== */
.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.action-btn {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border: none; background: transparent;
    color: var(--text-primary);
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s;
    font-size: 16px;
    position: relative;
    text-decoration: none;
}
.action-btn:hover { background: var(--bg-secondary); color: var(--primary); }
.cart-badge {
    position: absolute; top: 2px; right: 2px;
    background: var(--danger); color: #fff;
    font-size: 9px; font-weight: 700;
    width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
}
.user-btn { font-size: 20px; }

/* User Dropdown */
.user-menu .dropdown-menu {
    border: none; border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,.12);
    padding: 8px; min-width: 220px;
    margin-top: 8px !important;
}
.user-menu .dropdown-item {
    border-radius: 8px; padding: 10px 14px;
    font-size: 13px; transition: all .2s;
}
.user-menu .dropdown-item:hover { background: var(--bg-secondary); }
.user-menu .dropdown-item i { width: 20px; text-align: center; }
.dropdown-user-info { padding: 12px 14px 8px; }
.dropdown-user-info strong { display: block; font-size: 14px; }
.dropdown-user-info small { color: var(--text-secondary); font-size: 12px; }

/* ========== SEARCH OVERLAY ========== */
.search-overlay {
    position: fixed; inset: 0; z-index: 9999;
    display: none;
}
.search-overlay.active { display: block; }
.search-overlay-bg {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(4px);
}
.search-container {
    position: relative; z-index: 1;
    padding-top: 80px;
}
.search-close {
    position: absolute; top: 20px; right: 20px;
    width: 44px; height: 44px;
    border: none; background: rgba(255,255,255,.9);
    border-radius: 50%;
    font-size: 20px; cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.search-close:hover { background: #fff; transform: rotate(90deg); }
.search-input-group {
    display: flex; align-items: center;
    background: #fff; border-radius: 16px;
    padding: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.search-input-icon { padding: 0 16px; color: var(--text-secondary); font-size: 20px; }
.search-input {
    flex: 1; border: none; padding: 18px 0;
    font-size: 18px; outline: none;
    background: transparent;
    color: var(--text-primary);
}
.search-submit-btn {
    padding: 12px 28px; border: none;
    background: var(--primary); color: #fff;
    border-radius: 12px; font-weight: 600;
    cursor: pointer; transition: var(--transition);
    margin-right: 4px;
}
.search-submit-btn:hover { background: var(--primary-dark); }

/* ========== MOBILE MENU ========== */
.mobile-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.5);
    z-index: 9998; display: none;
}
.mobile-overlay.active { display: block; }
.mobile-menu {
    position: fixed; top: 0; left: 0; bottom: 0; width: 320px;
    background: #fff; z-index: 9999;
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    display: flex; flex-direction: column;
    box-shadow: 0 0 40px rgba(0,0,0,.1);
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}
.mobile-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.mobile-logo span { font-weight: 700; color: var(--primary); }
.mobile-close { width: 36px; height: 36px; border: none; background: var(--bg-secondary); border-radius: 8px; font-size: 16px; cursor: pointer; }
.mobile-menu-body { flex: 1; overflow-y: auto; padding: 12px 0; }
.mobile-search-form { padding: 0 16px 12px; }
.mobile-search-group { display: flex; align-items: center; background: var(--bg-secondary); border-radius: 10px; overflow: hidden; }
.mobile-search-group input { flex: 1; border: none; padding: 10px 14px; background: transparent; outline: none; font-size: 14px; }
.mobile-search-group button { padding: 10px 14px; border: none; background: transparent; color: var(--text-secondary); cursor: pointer; }

.mobile-nav-list { list-style: none; padding: 0; margin: 0; }
.mobile-nav-list > li > a {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 20px;
    font-size: 14px; font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}
.mobile-nav-list > li > a:hover { background: var(--bg-secondary); color: var(--primary); }
.mobile-nav-list > li > a i:first-child { width: 20px; text-align: center; font-size: 16px; color: var(--primary); }
.mobile-nav-list > li > a i:last-child { font-size: 10px; }
.mobile-sub-list { display: none; list-style: none; padding: 0; margin: 0; background: var(--bg-secondary); }
.mobile-has-sub.open > .mobile-sub-list { display: block; }
.mobile-sub-list a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px 10px 52px;
    font-size: 13px; color: var(--text-secondary);
    text-decoration: none;
}
.mobile-sub-list a:hover { color: var(--primary); }
.mobile-sub-list .mobile-sub-list a { padding-left: 72px; }
.mobile-sub-list a .badge { font-size: 10px; }
.mobile-menu-footer { padding: 16px 20px; border-top: 1px solid var(--border-color); }
.mobile-contact { display: flex; flex-direction: column; gap: 8px; }
.mobile-contact a { color: var(--text-secondary); text-decoration: none; font-size: 13px; display: flex; align-items: center; gap: 8px; }
.mobile-contact a:hover { color: var(--primary); }

/* ========== MOBILE TOGGLE ========== */
.mobile-toggle {
    width: 40px; height: 40px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 5px;
    border: none; background: transparent;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}
.mobile-toggle:hover { background: var(--bg-secondary); }
.hamburger-line {
    display: block; width: 20px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-toggle.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-toggle.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.no-scroll { overflow: hidden; }

/* ========== PAGE HEADER (Static Pages) ========== */
.page-header {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0d47a1 50%, #1a237e 100%);
    opacity: .95;
}
.page-header .container { position: relative; z-index: 1; }
.page-title { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.page-subtitle { font-size: 16px; margin-bottom: 16px; }
.page-header .breadcrumb { background: transparent; margin: 0; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ========== SECTION ========== */
.section { padding: 80px 0; }
.section-header { margin-bottom: 40px; }
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(26,35,126,.08);
    color: var(--primary);
    font-size: 12px; font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.section-title { font-size: 32px; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.section-subtitle { font-size: 16px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* ========== INDUSTRY CARDS (Homepage) ========== */
.industry-card {
    border: none; border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
    height: 100%;
}
.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.industry-card-image { position: relative; height: 180px; overflow: hidden; }
.industry-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.industry-card:hover .industry-card-image img { transform: scale(1.05); }
.industry-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.4), transparent);
}
.industry-card-badge {
    position: absolute; top: 12px; right: 12px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px; font-weight: 600;
    color: var(--primary);
}
.industry-card-body { padding: 20px; }
.industry-card-icon {
    width: 44px; height: 44px;
    background: var(--primary); color: #fff;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(26,35,126,.25);
}
.industry-card-title { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.industry-card-count { font-size: 12px; color: var(--text-secondary); display: block; margin-bottom: 8px; }
.industry-card-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ========== SOFTWARE CARDS ========== */
.software-card {
    border: none; border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
    height: 100%;
}
.software-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.software-card-image { position: relative; height: 160px; overflow: hidden; }
.software-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.software-card:hover .software-card-image img { transform: scale(1.05); }
.software-card-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-secondary);
}
.software-badge {
    position: absolute; top: 10px; left: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px; font-weight: 600;
    backdrop-filter: blur(4px);
}
.software-badge.discount { background: var(--danger); color: #fff; }
.software-badge.popular { background: var(--warning); color: #000; }
.software-badge.featured { background: var(--primary); color: #fff; }
.software-badge.demo { background: var(--success); color: #fff; }
.software-card-body { padding: 16px; }
.software-category {
    font-size: 11px; font-weight: 600;
    color: var(--primary); text-transform: uppercase;
    letter-spacing: .5px;
    display: block; margin-bottom: 4px;
}
.software-card-title { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.software-card-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 12px; }
.software-card-footer { display: flex; align-items: center; justify-content: space-between; }
.software-card-price .current-price { font-size: 16px; font-weight: 700; color: var(--primary); }
.software-card-price .old-price { font-size: 12px; color: var(--text-secondary); text-decoration: line-through; margin-left: 4px; }
.software-card-rating i { font-size: 11px; }

/* ========== PREMIUM CARD ========== */
.premium-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: #fff;
    transition: all .3s ease;
}
.premium-card:hover { box-shadow: var(--shadow-md); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1199.98px) {
    .industries-mega { min-width: auto; }
    .software-mega { min-width: auto; }
    .mega-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991.98px) {
    .mega-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767.98px) {
    .section { padding: 48px 0; }
    .hero-title { font-size: 28px; }
    .hero-actions .btn { display: block; width: 100%; margin: 0 0 12px !important; }
    .hero-stats { gap: 16px; }
    .stat-item .counter { font-size: 24px; }
    .page-title { font-size: 28px; }
    .section-title { font-size: 24px; }
    .mega-grid { grid-template-columns: repeat(2, 1fr); }
    .mega-dropdown { position: static; transform: none; box-shadow: none; border-radius: 0; min-width: auto; }
}
@media (max-width: 575.98px) {
    .mega-grid { grid-template-columns: 1fr; }
}

/* ========== FEATURE CARD PREMIUM ========== */
.feature-card-premium {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card-premium:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card-premium .feature-img { width: 100%; height: 200px; overflow: hidden; }
.feature-card-premium .feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.feature-card-premium:hover .feature-img img { transform: scale(1.05); }
.feature-card-premium .feature-body { padding: 24px; }
.feature-card-premium .feature-icon { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-dark, #1d4ed8)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; margin-bottom: 16px; }
.feature-card-premium h4 { font-size: 18px; margin-bottom: 8px; }
.feature-card-premium p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

/* ========== MODULE CARD PREMIUM ========== */
.module-card-premium {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.module-card-premium:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.module-card-premium .module-img { width: 100%; height: 180px; overflow: hidden; }
.module-card-premium .module-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.module-card-premium:hover .module-img img { transform: scale(1.05); }
.module-card-premium .module-body { padding: 20px 24px 24px; }
.module-card-premium .module-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--accent, #10b981), #059669); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; margin-bottom: 14px; }
.module-card-premium h4 { font-size: 17px; margin-bottom: 6px; }
.module-card-premium p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

/* ========== SCREENSHOT THUMB ========== */
.screenshot-thumb {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}
.screenshot-thumb img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s ease; }
.screenshot-thumb:hover img { transform: scale(1.08); }
.screenshot-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); opacity: 0; display: flex; align-items: center; justify-content: center; transition: opacity .3s ease; }
.screenshot-thumb:hover .screenshot-overlay { opacity: 1; }
.screenshot-overlay i { color: #fff; font-size: 28px; }

/* ========== VIDEO CARD ========== */
.video-card { border-radius: var(--radius-md); overflow: hidden; }
.video-play-trigger { display: block; text-decoration: none; }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; border-radius: 50%; background: rgba(37,99,235,.9); display: flex; align-items: center; justify-content: center; transition: transform .3s ease; }
.play-btn i { color: #fff; font-size: 24px; margin-left: 3px; }
.video-play-trigger:hover .play-btn { transform: translate(-50%,-50%) scale(1.1); }

/* ========== PRICING CARD PREMIUM ========== */
.pricing-card-premium {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
}
.pricing-card-premium:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card-premium.recommended { border: 2px solid var(--primary); box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg); }
.pricing-card-premium .popular-badge { position: absolute; top: 16px; right: 16px; background: var(--accent, #10b981); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; }
.pricing-card-premium .pricing-header { padding: 32px 28px 24px; text-align: center; border-bottom: 1px solid var(--border-color); }
.pricing-card-premium .pricing-header .plan-name { font-size: 16px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.pricing-card-premium .plan-price .price { font-size: 40px; font-weight: 800; color: var(--text-color); }
.pricing-card-premium .plan-price .old-price { font-size: 18px; color: var(--text-muted); text-decoration: line-through; margin-left: 8px; }
.pricing-card-premium .plan-price .cycle { font-size: 14px; color: var(--text-muted); display: block; margin-top: 4px; }
.pricing-card-premium .pricing-body { padding: 28px; }
.pricing-card-premium .plan-features { list-style: none; padding: 0; margin: 0 0 24px; }
.pricing-card-premium .plan-features li { padding: 8px 0; font-size: 14px; color: var(--text-secondary); border-bottom: 1px solid var(--border-color); }
.pricing-card-premium .plan-features li:last-child { border-bottom: none; }

/* ========== DEMO CARD ========== */
.demo-card { background: linear-gradient(135deg, var(--card-bg), #f8faff); border: 1px solid var(--border-color); border-radius: var(--radius-md); }
.demo-credentials h6 { font-size: 15px; font-weight: 700; }
.demo-credentials .cred-item { margin-bottom: 8px; }
.demo-credentials .cred-item small { display: block; margin-bottom: 2px; font-size: 11px; font-weight: 600; }
.demo-credentials .cred-item input { font-size: 13px; cursor: pointer; }

/* ========== SPEC ITEM ========== */
.spec-item { transition: transform .2s ease; }
.spec-item:hover { transform: translateY(-2px); }

/* ========== HERO CTA ========== */
.hero-cta .btn { padding: 10px 24px; font-weight: 600; font-size: 14px; }

/* ========== VIDEO MODAL ========== */
#videoModal .modal-content { border-radius: 12px; overflow: hidden; }

/* ========== DARK MODE ========== */
[data-theme="dark"] {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --accent: #10b981;
    --accent-dark: #059669;
    --warning: #f59e0b;
    --text-color: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --bg-body: #0f172a;
    --bg-alt: #1e293b;
    --section-alt-bg: #1e293b;
    --card-bg: #1e293b;
    --border-color: #334155;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,.3);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.4);
    --shadow-xl: 0 12px 48px rgba(0,0,0,.5);
}
[data-theme="dark"] .header-main { background: rgba(15,23,42,.95); }
[data-theme="dark"] .premium-card,
[data-theme="dark"] .pricing-card-premium,
[data-theme="dark"] .feature-card-premium,
[data-theme="dark"] .module-card-premium { background: var(--card-bg); }
[data-theme="dark"] .sw-detail-hero { background: linear-gradient(135deg,#020617 0%,#0f172a 40%,#1e3a5f 70%,#1d4ed8 100%) !important; }
[data-theme="dark"] .hero-dashboard-card { background: rgba(30,41,59,.9); border-color: rgba(255,255,255,.1); }
[data-theme="dark"] .purchase-box { background: var(--card-bg); }
[data-theme="dark"] .demo-card { background: linear-gradient(135deg, var(--card-bg), #1e293b); }
[data-theme="dark"] .accordion-premium .accordion-item { background: var(--card-bg); border-color: var(--border-color); }
[data-theme="dark"] .form-control, [data-theme="dark"] .form-select { background: #0f172a; color: var(--text-color); border-color: var(--border-color); }
[data-theme="dark"] .footer { background: #020617; }
[data-theme="dark"] .sidebar-nav .nav-link { color: rgba(255,255,255,.5); }
[data-theme="dark"] .sidebar-nav .nav-link:hover { color: #fff; }

/* ========== THEME TOGGLE ========== */

/* ========== AI TOOLS MEGA MENU ========== */
.ai-tools-mega {
    min-width: 900px;
    max-width: 1100px;
}
.nav-mega.show .ai-tools-mega,
.ai-tools-mega.show {
    opacity: 1;
    visibility: visible;
}
.ai-mega-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all .3s ease;
}
.ai-mega-card:hover {
    background: rgba(79,70,229,.06);
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
}
.ai-mega-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 10px;
    transition: transform .3s ease;
}
.ai-mega-card:hover .ai-mega-icon {
    transform: scale(1.1);
}
.ai-mega-card h5 {
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1e293b;
}
.ai-mega-card p {
    font-size: .72rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}
/* ========== END AI TOOLS MEGA MENU ========== */

