/* =====================================================================
   MNP Solutions – Design System
   ===================================================================== */

/* ?? CSS Variables ??????????????????????????????????????????????????? */
:root {
    --primary:        #6366f1;
    --primary-dark:   #4f46e5;
    --primary-light:  #818cf8;
    --accent:         #06b6d4;
    --success:        #10b981;
    --warning:        #f59e0b;
    --danger:         #ef4444;
    --bg-dark:        #0a0a0f;
    --bg-card:        #111118;
    --bg-card-hover:  #16161f;
    --bg-glass:       rgba(255,255,255,0.04);
    --border-color:   rgba(255,255,255,0.08);
    --text-primary:   #f8fafc;
    --text-muted:     #94a3b8;
    --text-dim:       #64748b;
    --gradient:       linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    --gradient-warm:  linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --shadow-sm:      0 2px 8px rgba(0,0,0,0.4);
    --shadow-md:      0 8px 32px rgba(0,0,0,0.5);
    --shadow-lg:      0 24px 64px rgba(0,0,0,0.6);
    --radius:         14px;
    --radius-sm:      8px;
    --radius-lg:      20px;
}

/* ?? Reset & Base ???????????????????????????????????????????????????? */
*, *::before, *::after { box-sizing: border-box; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body.mnp-body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

/* ?? AOS Animations ?????????????????????????????????????????????????? */
[data-aos] {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-aos]:not([data-aos="fade-left"]):not([data-aos="fade-right"]):not([data-aos="zoom-in"]):not([data-aos="flip-up"]):not([data-aos="scale-up"]) {
    transform: translateY(32px);
}
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="zoom-in"]    { transform: scale(0.88); }
[data-aos="flip-up"]    { transform: perspective(600px) rotateX(15deg) translateY(20px); }
[data-aos="scale-up"]   { transform: scale(0.9) translateY(16px); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ?? Rich Animations ????????????????????????????????????????????????? */
@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(99,102,241,0.15), 0 0 60px rgba(99,102,241,0.05); }
    50% { box-shadow: 0 0 40px rgba(99,102,241,0.3), 0 0 80px rgba(99,102,241,0.1); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes fade-in-scale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes slide-up-fade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}
@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-light); }
}
@keyframes orbit {
    from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}
@keyframes particle-drift {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

.animate-glow { animation: glow-pulse 3s ease-in-out infinite; }
.animate-shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}
.animate-gradient {
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
}
.animate-float { animation: float 6s ease-in-out infinite; }

/* Particle background */
.particles-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0;
    animation: particle-drift linear infinite;
}
.particle:nth-child(1)  { left: 10%; animation-duration: 12s; animation-delay: 0s; }
.particle:nth-child(2)  { left: 20%; animation-duration: 14s; animation-delay: 2s; }
.particle:nth-child(3)  { left: 35%; animation-duration: 10s; animation-delay: 4s; }
.particle:nth-child(4)  { left: 50%; animation-duration: 16s; animation-delay: 1s; }
.particle:nth-child(5)  { left: 65%; animation-duration: 11s; animation-delay: 3s; }
.particle:nth-child(6)  { left: 75%; animation-duration: 13s; animation-delay: 5s; }
.particle:nth-child(7)  { left: 85%; animation-duration: 15s; animation-delay: 2.5s; }
.particle:nth-child(8)  { left: 90%; animation-duration: 9s; animation-delay: 4.5s; }

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.40s; }

/* Hover glow effect for cards */
.hover-glow { position: relative; overflow: hidden; }
.hover-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}
.hover-glow:hover::before { opacity: 1; }

/* ?? Typography ??????????????????????????????????????????????????????? */
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ?? Top Bar ?????????????????????????????????????????????????????????? */
.mnp-topbar {
    background: rgba(10,10,15,0.95);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.mnp-topbar a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.mnp-topbar a:hover { color: var(--primary-light); }

/* ?? Navbar ??????????????????????????????????????????????????????????? */
.mnp-navbar {
    background: rgba(10,10,15,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    transition: all 0.3s ease;
}
.mnp-navbar.scrolled {
    padding: 10px 0;
    background: rgba(10,10,15,0.97);
    box-shadow: var(--shadow-md);
}

.navbar-brand { text-decoration: none !important; }
.brand-logo { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.5rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.brand-solutions { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--text-primary); margin-left: 2px; }

.mnp-navbar .nav-link { color: var(--text-muted) !important; font-weight: 500; font-size: 0.9rem; padding: 8px 14px !important; border-radius: var(--radius-sm); transition: all .2s; }
.mnp-navbar .nav-link:hover { color: var(--text-primary) !important; background: var(--bg-glass); }
.navbar-toggler { border-color: var(--border-color); }
.navbar-toggler-icon { filter: invert(1); }

/* ?? Buttons ?????????????????????????????????????????????????????????? */
.btn.mnp-btn-primary {
    background: var(--gradient);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    transition: all .3s;
    text-decoration: none;
}
.btn.mnp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99,102,241,0.4); color: #fff; }

.btn.mnp-btn-outline {
    background: transparent;
    border: 1.5px solid rgba(99,102,241,0.5);
    color: var(--text-primary);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    transition: all .3s;
    text-decoration: none;
}
.btn.mnp-btn-outline:hover { border-color: var(--primary); background: rgba(99,102,241,0.1); color: var(--text-primary); transform: translateY(-2px); }

.btn-xs { padding: 4px 10px; font-size: 0.75rem; }

/* ?? Section Helpers ?????????????????????????????????????????????????? */
.section-badge {
    display: inline-block;
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.3);
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto; }
.section-title  { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: var(--text-primary); margin: 12px 0 0; line-height: 1.2; }
.section-subtitle { color: var(--text-muted); margin-top: 12px; font-size: 1rem; line-height: 1.7; }

/* ?? Hero ????????????????????????????????????????????????????????????? */
.hero-section {
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
    padding: 80px 0 100px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12; }
.shape-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -100px; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 400px; height: 400px; background: var(--accent); bottom: -100px; left: -80px; animation: float 10s ease-in-out infinite reverse; }
.shape-3 { width: 300px; height: 300px; background: #ec4899; top: 50%; left: 40%; animation: float 12s ease-in-out infinite; }

.min-vh-hero { min-height: calc(100vh - 130px); }
.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.25);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
}

.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 520px; line-height: 1.8; margin-top: 16px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-trust { display: flex; align-items: center; gap: 24px; }
.trust-item { display: flex; flex-direction: column; }
.trust-number { font-size: 1.75rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.trust-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.trust-divider { width: 1px; height: 40px; background: var(--border-color); }

/* Code window */
.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; }
.hero-code-window { background: #0d0d14; border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); width: 100%; max-width: 520px; }
.code-window-bar { background: #16161f; padding: 12px 16px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--border-color); }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red    { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green  { background: #10b981; }
.code-file  { font-size: 0.78rem; color: var(--text-dim); font-family: 'Fira Code', monospace; }
.code-window-body { padding: 20px 24px; }
.code-content { margin: 0; font-family: 'Fira Code', 'Courier New', monospace; font-size: 0.78rem; line-height: 1.8; color: #cbd5e1; white-space: pre; overflow-x: auto; }
.code-kw   { color: #a78bfa; }
.code-cls  { color: #67e8f9; }
.code-str  { color: #86efac; }
.code-bool { color: #f9a8d4; }

/* ?? Tech Marquee ????????????????????????????????????????????????????? */
.tech-marquee-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}
.marquee-label { text-align: center; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 12px; }
.marquee-track { overflow: hidden; position: relative; }
.marquee-content { display: flex; gap: 12px; width: max-content; animation: marquee 30s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tech-chip {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}
.tech-chip-lg {
    display: inline-block;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 4px 0;
}

/* ?? Stats Section ???????????????????????????????????????????????????? */
.stats-section { padding: 80px 0; background: var(--bg-dark); }
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px 20px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(99,102,241,0.3); }
.stat-icon { font-size: 1.5rem; margin-bottom: 12px; display: block; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-number { font-size: 3rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline; font-family: 'Space Grotesk', sans-serif; }
.stat-plus   { font-size: 2rem; font-weight: 900; color: var(--primary); display: inline; }
.stat-label  { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; font-weight: 500; }

/* ?? Services Section ????????????????????????????????????????????????? */
.services-section { padding: 100px 0; background: var(--bg-dark); }
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(99,102,241,0.3); }
.service-card-lg { padding: 36px; }

.service-icon-wrap {
    width: 56px; height: 56px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; flex-shrink: 0;
}
.service-primary   { background: rgba(99,102,241,0.15); }
.service-success   { background: rgba(16,185,129,0.15); }
.service-warning   { background: rgba(245,158,11,0.15); }
.service-info      { background: rgba(6,182,212,0.15); }
.service-danger    { background: rgba(239,68,68,0.15); }
.service-secondary { background: rgba(148,163,184,0.15); }
.service-icon { font-size: 1.5rem; }
.service-title { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin: 0 0 10px; }
.service-desc  { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; flex-grow: 1; }
.service-features { list-style: none; padding: 0; margin: 16px 0 0; }
.service-features li { font-size: 0.825rem; color: var(--text-muted); padding: 4px 0; }
.service-link { color: var(--primary-light); font-size: 0.825rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s, color .2s; }
.service-link:hover { color: var(--primary); gap: 10px; }

/* ?? Process Section ?????????????????????????????????????????????????? */
.process-section { padding: 100px 0; background: var(--bg-card); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.process-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.process-step { position: relative; background: var(--bg-dark); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 28px; transition: border-color .3s, transform .3s; }
.process-step:hover { border-color: rgba(99,102,241,0.4); transform: translateY(-4px); }
.process-number { font-size: 2.5rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-family: 'Space Grotesk', sans-serif; line-height: 1; margin-bottom: 12px; }
.process-content h4 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.process-content p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ?? Projects Section ????????????????????????????????????????????????? */
.projects-section { padding: 100px 0; background: var(--bg-dark); }

.project-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--gradient); border-color: transparent; color: #fff; }

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(99,102,241,0.3); }

.project-img-wrap { position: relative; }
.project-img-placeholder {
    height: 180px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem;
}
.project-cat-healthcare     { background: linear-gradient(135deg, #064e3b, #065f46); }
.project-cat-e-commerce     { background: linear-gradient(135deg, #1e1b4b, #312e81); }
.project-cat-enterprise     { background: linear-gradient(135deg, #1e3a5f, #1d4ed8); }
.project-cat-edtech         { background: linear-gradient(135deg, #4c1d95, #6d28d9); }
.project-cat-fintech        { background: linear-gradient(135deg, #713f12, #92400e); }
.project-cat-real-estate    { background: linear-gradient(135deg, #134e4a, #0f766e); }
.project-cat-smart-cities   { background: linear-gradient(135deg, #1c1917, #44403c); }
.project-cat-travel-lifestyle { background: linear-gradient(135deg, #0c4a6e, #0369a1); }
.project-cat-pos              { background: linear-gradient(135deg, #1e3a5f, #2563eb); }
.project-cat-education        { background: linear-gradient(135deg, #4c1d95, #7c3aed); }
.project-cat-inventory        { background: linear-gradient(135deg, #065f46, #059669); }
.project-cat-field-management { background: linear-gradient(135deg, #92400e, #d97706); }
.project-cat-dynamic-website  { background: linear-gradient(135deg, #0c4a6e, #0ea5e9); }
.project-cat-mobile-design    { background: linear-gradient(135deg, #831843, #ec4899); }

.project-overlay { position: absolute; top: 10px; left: 10px; right: 10px; display: flex; justify-content: space-between; }
.project-category-badge { background: rgba(0,0,0,0.6); color: #fff; font-size: 0.7rem; font-weight: 600; padding: 4px 10px; border-radius: 50px; backdrop-filter: blur(4px); }
.project-featured-badge { background: rgba(245,158,11,0.9); color: #fff; font-size: 0.7rem; font-weight: 600; padding: 4px 10px; border-radius: 50px; }

.project-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.project-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.project-desc  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; flex-grow: 1; margin-bottom: 12px; }
.project-tech  { display: flex; flex-wrap: wrap; gap: 6px; }
.tech-tag { background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2); color: var(--primary-light); font-size: 0.7rem; padding: 3px 10px; border-radius: 50px; font-weight: 500; }

/* ?? Testimonials ????????????????????????????????????????????????????? */
.testimonials-section { padding: 100px 0; background: var(--bg-card); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.testimonial-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px;
    transition: transform .3s, border-color .3s;
    display: flex; flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(99,102,241,0.3); }
.testimonial-text { font-size: 0.925rem; color: var(--text-muted); line-height: 1.8; font-style: italic; flex-grow: 1; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.author-avatar { width: 44px; height: 44px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: #fff; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--text-primary); }
.author-role { font-size: 0.78rem; color: var(--text-dim); }

/* ?? CTA Section ?????????????????????????????????????????????????????? */
.cta-section {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, rgba(99,102,241,0.12) 0%, transparent 70%), var(--bg-dark);
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.cta-title    { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--text-primary); font-family: 'Space Grotesk', sans-serif; }
.cta-subtitle { color: var(--text-muted); font-size: 1.1rem; margin-top: 12px; }

/* ?? Page Hero ???????????????????????????????????????????????????????? */
.page-hero {
    padding: 100px 0 60px;
    background: radial-gradient(ellipse at top, rgba(99,102,241,0.08) 0%, transparent 60%), var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.page-hero-title    { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 900; color: var(--text-primary); margin-top: 12px; font-family: 'Space Grotesk', sans-serif; }
.page-hero-subtitle { color: var(--text-muted); max-width: 600px; margin: 16px auto 0; font-size: 1rem; line-height: 1.8; }

/* Breadcrumb */
.breadcrumb { background: transparent; padding: 0; }
.breadcrumb-item a    { color: var(--primary-light); text-decoration: none; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-dim); }
.breadcrumb-item.active { color: var(--text-muted); }

/* ?? About / Why Section ?????????????????????????????????????????????? */
.about-mission-section { padding: 100px 0; background: var(--bg-dark); }
.value-chip { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 0.875rem; font-weight: 600; color: var(--text-muted); }

.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-stat-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 28px; text-align: center; transition: transform .3s, border-color .3s; }
.about-stat-card:hover { transform: translateY(-4px); border-color: rgba(99,102,241,0.3); }
.about-stat-icon { font-size: 1.5rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; }
.about-stat-number { font-size: 2rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-family: 'Space Grotesk', sans-serif; }
.about-stat-label  { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.why-section { padding: 100px 0; background: var(--bg-card); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.why-card { background: var(--bg-dark); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 32px 24px; transition: transform .3s, border-color .3s; }
.why-card:hover { transform: translateY(-6px); border-color: rgba(99,102,241,0.3); }
.why-icon { width: 56px; height: 56px; background: rgba(99,102,241,0.12); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.4rem; }
.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.why-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ?? Team Section ????????????????????????????????????????????????????? */
.team-section { padding: 100px 0; background: var(--bg-dark); }
.team-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 36px 24px; transition: transform .3s, border-color .3s; }
.team-card:hover { transform: translateY(-6px); border-color: rgba(99,102,241,0.3); }
.team-avatar { width: 72px; height: 72px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; color: #fff; margin: 0 auto; }
.team-name { font-weight: 700; color: var(--text-primary); font-size: 1rem; }
.team-role { color: var(--primary-light); font-size: 0.82rem; font-weight: 600; }
.team-expertise { color: var(--text-dim); font-size: 0.78rem; }

/* ?? Contact Section ?????????????????????????????????????????????????? */
.contact-section { padding: 80px 0 100px; background: var(--bg-dark); }
.contact-form-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 40px; }

.mnp-input {
    background: var(--bg-dark) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: var(--radius-sm) !important;
    padding: 12px 16px !important;
    font-size: 0.875rem !important;
    transition: border-color .2s !important;
}
.mnp-input:focus { border-color: var(--primary) !important; box-shadow: 0 0 0 3px rgba(99,102,241,0.15) !important; outline: none !important; }
.mnp-input::placeholder { color: var(--text-dim) !important; }
.form-label { color: var(--text-muted); font-size: 0.825rem; font-weight: 600; margin-bottom: 6px; }
.form-select.mnp-input option { background: var(--bg-card); color: var(--text-primary); }

.contact-info-icon { width: 44px; height: 44px; background: rgba(99,102,241,0.12); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--primary-light); }
.social-icon-btn { width: 38px; height: 38px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; transition: all .2s; font-size: 0.9rem; }
.social-icon-btn:hover { background: var(--gradient); border-color: transparent; color: #fff; }

/* ?? Footer ??????????????????????????????????????????????????????????? */
.mnp-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}
.footer-brand .brand-logo     { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.4rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-brand .brand-solutions { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--text-primary); margin-left: 2px; }
.footer-desc  { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-heading { color: var(--text-primary); font-weight: 700; font-size: 0.875rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; transition: color .2s; }
.footer-links a:hover { color: var(--primary-light); }
.footer-contact-items { color: var(--text-muted); font-size: 0.825rem; }
.footer-bottom { border-top: 1px solid var(--border-color); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; color: var(--text-dim); font-size: 0.82rem; }

.social-links { display: flex; gap: 12px; }
.social-links a { width: 38px; height: 38px; background: var(--bg-glass); border: 1px solid var(--border-color); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: all .2s; }
.social-links a:hover { background: var(--gradient); border-color: transparent; color: #fff; }

/* ?? Timeline Section ???????????????????????????????????????????????? */
.timeline-section { padding: 100px 0; background: var(--bg-dark); }
.timeline-container { position: relative; max-width: 900px; margin: 0 auto; }
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    margin-bottom: 48px;
    position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content {
    width: 45%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}
.timeline-content:hover {
    transform: translateY(-4px);
    border-color: rgba(99,102,241,0.4);
    box-shadow: var(--shadow-md);
}
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 24px;
    width: 16px;
    height: 16px;
    background: var(--gradient);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid var(--bg-dark);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(99,102,241,0.2);
}
.timeline-year {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.timeline-title { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin: 8px 0 4px; }
.timeline-desc  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.timeline-count { font-size: 0.72rem; color: var(--text-dim); margin-top: 8px; display: flex; align-items: center; gap: 6px; }
.timeline-count i { color: var(--primary-light); }

/* ?? Year Chart ?????????????????????????????????????????????????????? */
.year-chart-section { padding: 80px 0; background: var(--bg-card); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.year-chart { display: flex; align-items: flex-end; gap: 8px; height: 200px; justify-content: center; }
.year-bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.year-bar {
    width: 40px;
    background: var(--gradient);
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: height 1s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
    min-height: 4px;
}
.year-bar:hover { box-shadow: 0 0 20px rgba(99,102,241,0.4); }
.year-bar-count {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-light);
    white-space: nowrap;
}
.year-bar-label { font-size: 0.68rem; color: var(--text-dim); font-weight: 600; }

/* ?? Products Section ???????????????????????????????????????????????? */
.products-section { padding: 100px 0; background: var(--bg-dark); }
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative;
    overflow: hidden;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity .3s;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(99,102,241,0.3); }
.product-card:hover::before { opacity: 1; }
.product-icon { font-size: 2.5rem; margin-bottom: 16px; }
.product-category { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary-light); margin-bottom: 8px; }
.product-title { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.product-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; flex-grow: 1; }
.product-features { list-style: none; padding: 0; margin: 16px 0 0; }
.product-features li { font-size: 0.78rem; color: var(--text-muted); padding: 3px 0; }
.product-features li i { color: var(--success); margin-right: 8px; font-size: 0.7rem; }
.product-cta { margin-top: 20px; }

/* ?? Demo Cards ??????????????????????????????????????????????????????? */
.demo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.demo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-warm);
    opacity: 0;
    transition: opacity .3s;
}
.demo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(99,102,241,0.3); }
.demo-card:hover::before { opacity: 1; }
.demo-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 10px; }
.demo-icon { font-size: 2.2rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.demo-icon i { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.demo-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.demo-type-badge {
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.3);
    color: var(--primary-light);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}
.demo-duration-badge {
    background: rgba(6,182,212,0.15);
    border: 1px solid rgba(6,182,212,0.3);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}
.demo-title { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.demo-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; flex-grow: 1; margin-bottom: 16px; }
.demo-actions { margin-top: auto; }
.demo-table-icon { font-size: 1.1rem; color: var(--primary-light); }
.demo-table-icon i { color: var(--primary-light); }

/* ?? Project Card Icons (Font Awesome) ???????????????????????????????? */
.project-cat-icon { color: rgba(255,255,255,0.9); }
.project-cat-icon i { font-size: 3rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }

/* ?? Service Icon Font Awesome Fix ???????????????????????????????????? */
.service-icon i { font-size: 1.5rem; }
.service-primary i   { color: var(--primary-light); }
.service-success i   { color: var(--success); }
.service-warning i   { color: var(--warning); }
.service-info i      { color: var(--accent); }
.service-danger i    { color: var(--danger); }
.service-secondary i { color: var(--text-muted); }

/* ?? Product Icon Font Awesome Fix ???????????????????????????????????? */
.product-icon i { font-size: 2.2rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ?? Admin Layout ????????????????????????????????????????????????????? */
body.admin-body {
    background: #0c0c13;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
    width: 240px;
    flex-shrink: 0;
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    transition: transform 0.3s ease;
}

.admin-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99;
}

.admin-brand { padding: 24px 20px 16px; border-bottom: 1px solid var(--border-color); }
.admin-nav { padding: 16px 12px; flex-grow: 1; }
.admin-nav-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); font-weight: 600; padding: 6px 10px 4px; }
.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all .2s;
    margin-bottom: 2px;
}
.admin-nav-item:hover { background: var(--bg-glass); color: var(--text-primary); }
.admin-nav-item.active { background: rgba(99,102,241,0.12); color: var(--primary-light); }
.admin-nav-item i { width: 18px; text-align: center; }

.admin-sidebar-footer { padding: 16px; border-top: 1px solid var(--border-color); }
.admin-user { display: flex; align-items: center; gap: 12px; }
.admin-user-avatar { width: 34px; height: 34px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: #fff; flex-shrink: 0; }
.admin-user-name { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }
.admin-user-role { font-size: 0.72rem; color: var(--text-dim); }

.admin-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.admin-topbar { height: 60px; background: var(--bg-card); border-bottom: 1px solid var(--border-color); display: flex; align-items: center; justify-content: space-between; padding: 0 24px; position: sticky; top: 0; z-index: 10; }
.admin-content { padding: 32px; flex: 1; }

.admin-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); overflow: hidden; }
.admin-card-header { padding: 18px 24px; border-bottom: 1px solid var(--border-color); background: rgba(255,255,255,0.02); }
.admin-card-header h5 { color: var(--text-primary); font-weight: 700; font-size: 0.95rem; }
.admin-card-body { padding: 24px; }

.admin-stat-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 20px 24px; display: flex; align-items: center; gap: 16px; }
.admin-stat-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #fff; flex-shrink: 0; }
.admin-stat-number { font-size: 1.75rem; font-weight: 800; color: var(--text-primary); line-height: 1; font-family: 'Space Grotesk', sans-serif; }
.admin-stat-label  { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

.admin-table { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.admin-table thead th { background: rgba(255,255,255,0.03); color: var(--text-dim); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; border-color: var(--border-color); padding: 12px 16px; }
.admin-table tbody td { border-color: var(--border-color); padding: 14px 16px; vertical-align: middle; color: var(--text-muted); }
.admin-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.text-truncate-cell { max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.seo-score-bar { position: relative; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; width: 100px; }
.seo-score-fill { height: 100%; border-radius: 3px; }
.seo-score-text { font-size: 0.7rem; color: var(--text-dim); margin-top: 2px; display: block; }

.google-preview { background: #fff; border-radius: var(--radius-sm); padding: 16px; }
.gp-url   { font-size: 0.78rem; color: #202124; font-family: Arial; }
.gp-title { font-size: 1rem; color: #1a0dab; font-family: Arial; margin: 4px 0; line-height: 1.3; word-break: break-word; }
.gp-desc  { font-size: 0.82rem; color: #4d5156; font-family: Arial; line-height: 1.5; word-break: break-word; }

.seo-tips-list { list-style: none; padding: 0; margin: 0; }
.seo-tips-list li { font-size: 0.825rem; color: var(--text-muted); padding: 5px 0; }

/* ?? Responsive ??????????????????????????????????????????????????????? */

/* Desktop: sidebar always visible */
@media (min-width: 992px) {
    .admin-sidebar {
        position: sticky;
        transform: translateX(0);
    }
    .admin-sidebar-toggle { display: none !important; }
}

@media (max-width: 991px) {
    .mnp-navbar .navbar-collapse {
        background: rgba(10,10,15,0.98);
        border-radius: var(--radius);
        padding: 16px;
        margin-top: 10px;
        border: 1px solid var(--border-color);
    }
    .mnp-navbar .navbar-collapse .nav-link { padding: 10px 16px !important; }
    .mnp-navbar .navbar-collapse .btn.mnp-btn-primary { width: 100%; text-align: center; margin-top: 8px; }

    /* Admin sidebar: hidden by default, slide in from left on mobile */
    .admin-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        transform: translateX(-100%);
        z-index: 100;
        box-shadow: none;
    }
    .admin-sidebar.sidebar-open {
        transform: translateX(0);
        box-shadow: var(--shadow-lg);
    }
}

/* ?? Search Overlay ??????????????????????????????????????????????????? */
.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,15,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
}
.search-overlay.active { display: flex; }
.search-overlay-inner { width: 100%; max-width: 640px; padding: 0 20px; }
.search-overlay-input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid rgba(99,102,241,0.3);
    color: var(--text-primary);
    font-size: 1.2rem;
    padding: 16px 24px;
    border-radius: var(--radius);
    outline: none;
    transition: border-color .2s;
}
.search-overlay-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(99,102,241,0.15); }
.search-overlay-input::placeholder { color: var(--text-dim); }
.search-overlay-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color .2s;
}
.search-overlay-close:hover { color: var(--text-primary); }
.search-results { margin-top: 16px; }
.search-result-item {
    display: block;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 8px;
    transition: background .2s, border-color .2s;
}
.search-result-item:hover { background: var(--bg-card-hover); border-color: rgba(99,102,241,0.3); color: var(--text-primary); }
.search-result-title { font-weight: 600; font-size: 0.95rem; }
.search-result-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.search-no-results { color: var(--text-dim); font-size: 0.9rem; text-align: center; padding: 20px; }

/* Navbar search button */
.nav-search-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    padding: 8px 12px;
    cursor: pointer;
    transition: color .2s;
    border-radius: var(--radius-sm);
}
.nav-search-btn:hover { color: var(--text-primary); background: var(--bg-glass); }

@media (max-width: 768px) {
    .hero-section { padding: 40px 0 60px; }
    .min-vh-hero  { min-height: auto; padding: 20px 0; }
    .hero-title   { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-trust   { flex-wrap: wrap; gap: 16px; }
    .trust-divider{ display: none; }
    .trust-item   { flex: 0 0 auto; }
    .stat-number  { font-size: 2rem; }
    .stat-card    { padding: 20px 14px; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .admin-content { padding: 16px; }
    .admin-topbar  { padding: 0 16px; }
    .admin-page-title { font-size: 1.2rem; }
    .admin-page-subtitle { font-size: 0.8rem; }
    .contact-form-card { padding: 24px 16px; }
    .contact-section { padding: 50px 0 60px; }
    .timeline-line { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) { flex-direction: row; padding-left: 48px; }
    .timeline-content { width: 100%; }
    .timeline-dot { left: 20px; }
    .year-chart { flex-wrap: wrap; height: auto; gap: 4px; }
    .year-bar { width: 24px; }
    .year-bar-label { font-size: 0.6rem; }
    .section-title { font-size: clamp(1.4rem, 4vw, 2rem); }
    .section-subtitle { font-size: 0.9rem; }
    .page-hero { padding: 60px 0 40px; }
    .page-hero-title { font-size: clamp(1.6rem, 5vw, 2.5rem); }
    .page-hero-subtitle { font-size: 0.9rem; }
    .service-card { padding: 24px 20px; }
    .service-card-lg { padding: 24px 20px; }
    .services-section { padding: 60px 0; }
    .products-section { padding: 60px 0; }
    .projects-section { padding: 60px 0; }
    .testimonials-section { padding: 60px 0; }
    .process-section { padding: 60px 0; }
    .about-mission-section { padding: 60px 0; }
    .team-section { padding: 60px 0; }
    .why-section { padding: 60px 0; }
    .timeline-section { padding: 60px 0; }
    .why-card { padding: 24px 16px; }
    .why-card h4 { font-size: 0.9rem; }
    .why-card p { font-size: 0.8rem; }
    .product-card { padding: 20px 16px; }
    .demo-card { padding: 20px 16px; }
    .project-card .project-img-placeholder { height: 140px; }
    .project-cat-icon i { font-size: 2.5rem; }
    .process-timeline { gap: 20px; }
    .process-step { padding: 20px; }
    .process-number { font-size: 2rem; }
    .testimonial-card { padding: 24px 20px; }
    .testimonial-text { font-size: 0.85rem; }
    .cta-section { padding: 80px 0; }
    .cta-title { font-size: clamp(1.5rem, 4vw, 2rem); }
    .footer-bottom { flex-direction: column; text-align: center; }
    .admin-card-body { padding: 16px; }
    .admin-card-header { padding: 14px 16px; }
    .admin-stat-card { padding: 16px; gap: 12px; }
    .admin-stat-icon { width: 40px; height: 40px; font-size: 1rem; }
    .admin-stat-number { font-size: 1.4rem; }
    .admin-table { font-size: 0.78rem; }
    .admin-table thead th { padding: 8px 10px; font-size: 0.65rem; }
    .admin-table tbody td { padding: 10px; }
    .mnp-topbar { display: none !important; }
}

@media (max-width: 480px) {
    .hero-section { padding: 30px 0 50px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-badge { font-size: 0.7rem; padding: 5px 12px; }
    .hero-trust { gap: 12px; }
    .trust-number { font-size: 1.4rem; }
    .trust-label { font-size: 0.7rem; }
    .section-title { font-size: 1.3rem; }
    .section-badge { font-size: 0.68rem; padding: 4px 10px; }
    .process-timeline { grid-template-columns: 1fr; }
    .project-filters { gap: 6px; }
    .filter-btn { padding: 6px 14px; font-size: 0.75rem; }
    .tech-tag { font-size: 0.65rem; padding: 2px 8px; }
    .stat-number { font-size: 1.6rem; }
    .stat-label { font-size: 0.75rem; }
    .stat-card { padding: 16px 10px; }
    .why-icon { width: 44px; height: 44px; font-size: 1.1rem; }
    .team-card { padding: 24px 16px; }
    .team-avatar { width: 56px; height: 56px; font-size: 1rem; }
    .about-stats-grid { gap: 10px; }
    .about-stat-card { padding: 16px; }
    .about-stat-number { font-size: 1.5rem; }
    .demo-card-header { flex-direction: column; align-items: flex-start; }
    .footer-bottom span { font-size: 0.75rem; }
    .social-links a { width: 34px; height: 34px; font-size: 0.8rem; }
    .admin-stat-card { flex-direction: column; text-align: center; }
    .admin-stat-number { font-size: 1.2rem; }
    .admin-stat-label { font-size: 0.7rem; }
    .admin-page-title { font-size: 1rem; }
    .cta-section { padding: 60px 0; }
    .year-chart-section { padding: 50px 0; }
    .stats-section { padding: 50px 0; }
    .contact-section { padding: 40px 0 50px; }
}