@font-face {
    font-family: 'BPG Nino Mtavruli Bold';
    src: url('fonts/bpg_nino_mtavruli_bold.ttf') format('truetype'),
         url('fonts/bpg_nino_mtavruli_bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

:root {
    --bg-dark: #050A15;
    --border-glow: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 255, 255, 0.12);
    --primary: #3B82F6; 
    --primary-glow: rgba(59, 130, 246, 0.4);
    --accent: #8B5CF6;  
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --font-main: 'BPG Nino Mtavruli Bold', sans-serif; 
    --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

html, body { overflow-x: hidden; width: 100%; }

body { 
    font-family: var(--font-main); 
    background-color: var(--bg-dark); 
    color: var(--text-main); 
    line-height: 1.7; 
    position: relative; 
    z-index: 1;
    font-weight: bold; 
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p, a, span, button, input, textarea, select {
    font-family: var(--font-main) !important;
    letter-spacing: 0.5px;
}

body::before {
    content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 30px 30px; z-index: -2; pointer-events: none;
}

::selection { background: var(--accent); color: white; }

::-webkit-scrollbar { width: 6px; } 
::-webkit-scrollbar-track { background: #030610; } 
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 10px; border: 1px solid #030610; }

.ambient-light { 
    position: absolute; width: 700px; height: 700px; border-radius: 50%; 
    filter: blur(150px); z-index: -1; opacity: 0.2; pointer-events: none;
    animation: moveOrbs 15s infinite alternate ease-in-out; 
    will-change: transform;
}
.light-blue { top: -20%; left: -10%; background: #3B82F6; }
.light-purple { bottom: -20%; right: -10%; background: #8B5CF6; animation-delay: 5s;}

@keyframes moveOrbs { 
    0% { transform: scale(1) translate(0, 0); } 
    100% { transform: scale(1.05) translate(40px, -40px); } 
}

.container { width: 100%; max-width: 1350px; margin: 0 auto; padding: 0 5%; }
.section-padding { padding: 100px 0; }

.gradient-text { 
    background: var(--gradient); background-clip: text; 
    -webkit-background-clip: text; color: transparent; 
    -webkit-text-fill-color: transparent; font-weight: 900; 
    display: inline; line-height: inherit;
}

.section-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 2;}

.section-badge {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; text-transform: uppercase; letter-spacing: 2px;
    color: #60A5FA; font-size: 0.85rem; background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.25); padding: 8px 24px;
    border-radius: 50px; margin-bottom: 25px;
    backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
}

.section-badge i { font-size: 14px; color: var(--accent); }
.section-header h2 { font-size: 2.8rem; }

header { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 25px 0; transition: all 0.3s; }
header.scrolled { background: rgba(5, 10, 21, 0.95); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); padding: 15px 0; border-bottom: 1px solid var(--border-glow); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.6rem; text-decoration: none; display: flex; align-items: center; gap: 10px; color: white;}
.logo-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--gradient); display: flex; justify-content: center; align-items: center; font-size: 20px; box-shadow: 0 0 15px var(--primary-glow);}

.nav-menu { display: flex; gap: 30px; list-style: none; }
.nav-menu a { color: var(--text-muted); text-decoration: none; font-size: 15px; transition: 0.3s; position: relative; }
.nav-menu a:hover { color: white; }
.nav-menu a::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 0%; height: 2px; background: var(--gradient); transition: 0.3s ease-out; }
.nav-menu a:hover::after { width: 100%; }

.btn-call { padding: 12px 28px; border-radius: 50px; background: var(--gradient); color: white; border: none; cursor: pointer; transition: 0.3s; box-shadow: 0 8px 20px var(--primary-glow); text-decoration: none; display:inline-flex; align-items: center; gap: 8px; }
.mobile-toggle { display: none; color: white; font-size: 26px; cursor: pointer; }

.header-line {
    width: 60px; height: 4px; background: var(--gradient);
    border-radius: 10px; margin: 15px auto 0; position: relative;
}
.header-line::before {
    content: ''; position: absolute; top: -3px; left: -10px; width: 10px; height: 10px;
    background: var(--accent); border-radius: 50%; animation: pulseGlow 2s infinite alternate;
}

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

.sv-card { 
    position: relative; display: flex; flex-direction: column; justify-content: space-between;
    padding: 35px 25px; background: rgba(14, 21, 38, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg); backdrop-filter: blur(10px); 
    overflow: hidden; transition: all 0.3s;
}

.sv-card:hover { 
    transform: translateY(-8px); border-color: rgba(var(--c-rgb), 0.5);
    background: rgba(20, 30, 50, 0.9);
}

.sv-watermark { 
    position: absolute; top: -10px; right: 10px; font-size: 80px; font-weight: 900; 
    -webkit-text-stroke: 1px rgba(255,255,255,0.05); color: transparent;
    transition: all 0.3s ease; z-index: 1; pointer-events: none;
}
.sv-card:hover .sv-watermark { -webkit-text-stroke: 1px rgba(var(--c-rgb), 0.2); }

.sv-icon-wrap { 
    position: relative; z-index: 2; width: 60px; height: 60px; border-radius: 16px; 
    background: linear-gradient(135deg, rgba(var(--c-rgb), 0.3), rgba(0,0,0,0.6));
    border: 1px solid rgba(var(--c-rgb), 0.5); display: flex; align-items: center; justify-content: center; 
    font-size: 28px; color: rgb(var(--c-rgb)); margin-bottom: 25px;
}
.sv-card:hover .sv-icon-wrap { background: rgb(var(--c-rgb)); color: white; }

.sv-content { position: relative; z-index: 2; flex-grow: 1; }
.sv-content h3 { font-size: 1.25rem; margin-bottom: 12px; line-height:1.2; color: white;}
.sv-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; transition: 0.3s;}

.sv-action {
    position: absolute; bottom: 25px; right: 25px; width: 35px; height: 35px; border-radius: 50%;
    background: rgb(var(--c-rgb)); display: flex; justify-content: center; align-items: center;
    color: white; opacity: 0; transform: scale(0.8); transition: 0.3s; z-index: 3;
}
.sv-card:hover .sv-action { opacity: 1; transform: scale(1); }

.theme-blue { --c-rgb: 59, 130, 246; }    
.theme-cyan { --c-rgb: 6, 182, 212; }     
.theme-purple { --c-rgb: 139, 92, 246; }  
.theme-red { --c-rgb: 239, 68, 68; }      
.theme-green { --c-rgb: 16, 185, 129; }   
.theme-orange { --c-rgb: 249, 115, 22; }  
.theme-pink { --c-rgb: 236, 72, 153; }    
.theme-teal { --c-rgb: 20, 184, 166; }    

.bento-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }
.software-card { background: rgba(20,28,48,0.85); border: 1px solid var(--border-glow); border-radius: var(--radius-lg); padding: 35px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.software-card h3 { display: flex; align-items: center; gap: 12px; font-size: 1.3rem; margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px;}
.sw-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.s-tag { display: flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; background: #0A0F19; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; font-size: 0.85rem; color: #E2E8F0; }
.app-ico-box { width: 34px; height: 34px; border-radius: 10px; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; }

.brand-blue { background: rgba(43, 87, 154, 0.2); color: #60A5FA; } .brand-green { background: rgba(33, 115, 70, 0.2); color: #4ADE80; } .brand-red { background: rgba(210, 71, 38, 0.2); color: #F87171; } .brand-pdf { background: rgba(244, 15, 2, 0.2); color: #FCA5A5; } .brand-outlook { background: rgba(0, 120, 212, 0.2); color: #93C5FD; } .brand-ps { background: rgba(49, 168, 255, 0.2); color: #93C5FD; } .brand-pr { background: rgba(234, 119, 255, 0.2); color: #F0ABFC; } .brand-fig { background: rgba(242, 78, 30, 0.2); color: #FCA5A5; } .brand-autodesk { background: rgba(0, 136, 206, 0.2); color: #93C5FD; } .brand-acad { background: rgba(219, 36, 39, 0.2); color: #FCA5A5; } .brand-chrome { background: rgba(66, 133, 244, 0.2); color: #93C5FD; } .brand-eset { background: rgba(16, 185, 129, 0.2); color: #6EE7B7; } .brand-zoom { background: rgba(45, 140, 255, 0.2); color: #93C5FD; } .brand-discord { background: rgba(88, 101, 242, 0.2); color: #C4B5FD; } .brand-kplayer { background: rgba(156, 163, 175, 0.2); color: #D1D5DB; } .brand-winrar { background: rgba(234, 179, 8, 0.2); color: #FDE047; }
.system-utility-block { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 20px; }

.process-sec { background: #0A1224; border-top: 1px solid var(--border-glow); border-bottom: 1px solid var(--border-glow); position:relative;}
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; position: relative; }
.process-line { display: none; }
.p-step { text-align: center; background: #0D172A; padding: 25px 20px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05);}
.step-num { width: 60px; height: 60px; margin: 0 auto 15px; background: rgba(59,130,246,0.1); border: 2px solid var(--primary); border-radius: 16px; display: flex; justify-content: center; align-items: center; font-size: 24px; color: var(--primary);}
.p-step h4 { font-size: 1.1rem; margin-bottom: 8px;} .p-step p { color: var(--text-muted); font-size: 0.9rem; }

.pricing-wrap, .modern-pricing-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top:30px;}
.m-price-card { background: rgba(15,23,40,0.85); border: 1px solid var(--border-glow); padding: 40px 30px; border-radius: 24px; }
.m-price-card.m-featured { background: rgba(18,28,50,0.95); border-color: var(--primary); }

.form-grid { display: grid; grid-template-columns: 1fr; gap: 50px; }
.contact-form { background: #0F172A; padding: 30px 20px; border-radius: 20px; border: 1px solid var(--border-glow); }
.input-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
.cool-input input, .cool-input textarea, .cool-input select { padding: 16px 16px 16px 50px; background: #070B14; border-radius: 14px; font-size: 1rem; border: 1px solid rgba(255,255,255,0.1);}
.cool-input textarea { min-height: 120px; padding: 16px; }

footer { border-top: 1px solid var(--border-glow); padding-top: 60px; background: #050A15;}
.f-grid { display: grid; grid-template-columns: 1fr; gap: 40px; text-align: center; }
.f-about p { margin: 15px auto; }
.f-socials { justify-content: center; }
.f-bottom { flex-direction: column; text-align: center; gap: 10px; padding: 25px 0;}
.f-text-glow { display: none; }

.reveal { opacity: 0; transform: translateY(40px); transition: 0.6s ease; } .reveal.visible { opacity: 1; transform: translateY(0); }

a.sv-action::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 10;}

/* MOBILE MEDIA QUERY - OPTIMIZATION */
@media (max-width: 900px) {
    .section-padding { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 2rem; }
    .container { padding: 0 15px; }
    
    .nav-menu { position: fixed; top: 0; left: -100%; height: 100vh; width: 100%; background: #050A15; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; z-index: 99;} 
    .nav-menu.active { left: 0; }
    header .btn-call { display: none; }
    .mobile-toggle { display: block; }
    
    .ambient-light { display: none !important; }
    
    .system-utility-block .sw-tags { justify-content: flex-start; }
    
    .pricing-wrap, .modern-pricing-wrap, .bento-grid, .service-bento { grid-template-columns: 1fr; }
    
    .sv-card { padding: 25px; min-height: 220px; }
    .sv-watermark { font-size: 60px; right: -5px; }
    .sv-action { display: flex !important; transform: scale(1); opacity: 1; right: 20px; bottom: 20px; background: rgba(255,255,255,0.15);}
    
    .cart-actions-bar { flex-direction: column; gap: 15px; }
    .btn-continue, .btn-clear { width: 100%; justify-content: center; }
    .sm-price-row { padding-top: 10px; }
    .process-grid { grid-template-columns: 1fr; gap: 15px; }
    .f-grid { padding-bottom: 20px; }
}