﻿:root {
    --bg-body: #020617;       
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(15, 23, 42, 0.65);      
    --glass-border: rgba(255, 255, 255, 0.06); 
    --glass-highlight: rgba(255, 255, 255, 0.03);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    --primary: #6366f1;       
    --primary-hover: #4f46e5;
    --accent: #06b6d4;        
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --container-width: 1240px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}
[data-theme="light"] {
    --bg-body: #f8fafc; 
    --text-main: #0f172a; 
    --text-muted: #475569;
    --glass-bg: #ffffff; 
    --glass-border: #e2e8f0; 
    --glass-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-body); 
    color: var(--text-main); 
    font-family: var(--font-body); 
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.1), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.1), transparent 40%);
    background-attachment: fixed;
}
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; color: var(--text-main); margin-bottom: 1rem; }
p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; }
img { max-width: 100%; display: block; }
.container { width: 90%; max-width: var(--container-width); margin: 0 auto; position: relative; z-index: 2; }
.section-pad { padding: 120px 0; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.bg-darker { 
    background: rgba(0,0,0,0.15); 
    border-top: 1px solid var(--glass-border); 
    border-bottom: 1px solid var(--glass-border); 
}
[data-theme="light"] .bg-darker { background: #f1f5f9; }
.bg-glow { position: fixed; width: 800px; height: 800px; border-radius: 50%; filter: blur(140px); opacity: 0.12; z-index: -1; pointer-events: none; }
.top-left { top: -200px; left: -200px; background: var(--primary); }
.bottom-right { bottom: -200px; right: -200px; background: var(--accent); }
.navbar { 
    position: sticky; top: 0; z-index: 1000; width: 100%; height: 80px; 
    background: rgba(2,6,23,0.7); backdrop-filter: blur(15px); 
    border-bottom: none !important; transition: var(--transition);
}
[data-theme="light"] .navbar { background: rgba(255,255,255,0.9); border-bottom: 1px solid #e2e8f0 !important; }
.navbar.scrolled { box-shadow: 0 10px 30px rgba(0,0,0,0.1); background: rgba(2,6,23,0.95); }
[data-theme="light"] .navbar.scrolled { background: #fff; }
.navbar-inner { width: 100%; height: 100%; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.5px; }
.logo-icon { color: var(--primary); font-size: 1.8rem; }
.desktop-menu { display: flex; gap: 5px; padding: 5px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.02); }
[data-theme="light"] .desktop-menu { border-color: transparent; background: transparent; }
.nav-link { padding: 10px 20px; font-size: 0.9rem; font-weight: 600; color: var(--text-muted); border-radius: 50px; background: transparent; border: none; cursor: pointer; display: flex; align-items: center; gap: 6px; }
.nav-link:hover { color: var(--text-main); background: rgba(255,255,255,0.05); }
[data-theme="light"] .nav-link:hover { background: #f1f5f9; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); width: 280px; padding: 10px; opacity: 0; visibility: hidden; background: var(--bg-body); border: 1px solid var(--glass-border); border-radius: var(--radius-md); box-shadow: 0 20px 40px rgba(0,0,0,0.2); transition: 0.2s; z-index: 1100; }
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop-item { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 8px; color: var(--text-muted); }
.drop-item:hover { background: var(--primary); color: #fff !important; }
.drop-item:hover * { color: #fff; }
.drop-item strong { display: block; color: var(--text-main); font-size: 0.95rem; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.8rem; color: var(--text-main); cursor: pointer; }
.mobile-side-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--bg-body); border-left: 1px solid var(--glass-border); padding: 30px; transition: 0.4s; z-index: 1002; display: flex; flex-direction: column; }
.mobile-side-menu.active { right: 0; }
.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 1001; visibility: hidden; opacity: 0; transition: 0.3s; }
.mobile-menu-overlay.active { visibility: visible; opacity: 1; }
.m-head { display: flex; justify-content: space-between; margin-bottom: 30px; border-bottom: 1px solid var(--glass-border); padding-bottom: 15px; }
.m-links a { display: block; padding: 15px 0; border-bottom: 1px solid var(--glass-border); font-size: 1.1rem; color: var(--text-main); }
.footer-new { padding: 100px 0 40px; border-top: 1px solid var(--glass-border); background: rgba(2,6,23,0.95); margin-top: 0; }
[data-theme="light"] .footer-new { background: #fff; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-title { color: var(--text-main); font-size: 1.1rem; margin-bottom: 25px; font-weight: 700; display: inline-block; position: relative; }
.footer-title::after { content:''; position: absolute; bottom: -8px; left: 0; width: 30px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer-links a { display: block; color: var(--text-muted); margin-bottom: 12px; font-size: 0.95rem; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 40px; display: flex; justify-content: space-between; color: var(--text-muted); font-size: 0.9rem; }
.btn { padding: 14px 28px; border-radius: 12px; font-weight: 600; cursor: pointer; border: 1px solid transparent; display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; transition: var(--transition); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 15px rgba(99,102,241,0.3); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(99,102,241,0.5); }
.btn-outline { border-color: var(--glass-border); background: transparent; color: var(--text-main); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(99,102,241,0.1); }
.btn-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid var(--glass-border); background: transparent; color: var(--text-muted); cursor: pointer; transition: 0.3s; }
.btn-icon:hover { color: var(--warning); border-color: var(--warning); transform: rotate(15deg); }
[data-theme="light"] #icon-sun { display: none; }
[data-theme="dark"] #icon-moon { display: none; }
.page-hero { padding: 180px 0 100px; text-align: center; }
.page-hero h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.1; letter-spacing: -1px; }
.page-hero p { font-size: 1.15rem; max-width: 700px; margin: 0 auto; color: var(--text-muted); }
.badge-glow { display: inline-block; padding: 8px 16px; border-radius: 50px; background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.3); color: var(--primary); font-weight: 600; margin-bottom: 25px; font-size: 0.9rem; }
.gradient-text { background: linear-gradient(135deg, var(--text-main) 20%, var(--primary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.glass-panel {
    background: var(--glass-bg); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-top: 1px solid var(--glass-highlight);
    border-radius: var(--radius-lg); padding: 50px; box-shadow: var(--glass-shadow);
}
.colo-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.form-section-title { font-size: 1.25rem; font-weight: 700; color: var(--text-main); margin-bottom: 25px; border-left: 4px solid var(--primary); padding-left: 15px; }
.static-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 35px; }
.info-box { display: flex; align-items: center; gap: 15px; background: rgba(125,125,125,0.05); padding: 15px; border-radius: 12px; border: 1px solid var(--glass-border); }
.info-box i { font-size: 2rem; color: var(--primary); }
.info-box span { font-size: 0.9rem; color: var(--text-muted); display: block; }
.info-box strong { display: block; color: var(--text-main); }
.form-group { margin-bottom: 30px; }
.form-group label { display: block; margin-bottom: 12px; font-weight: 600; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.form-group label i { color: var(--primary); }
.select-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 15px; }
.opt-card {
    background: rgba(125,125,125,0.02); border: 1px solid var(--glass-border);
    border-radius: 12px; padding: 15px; text-align: center; cursor: pointer; transition: 0.2s;
    display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 80px;
}
.opt-card:hover { background: rgba(125,125,125,0.08); border-color: var(--text-muted); transform: translateY(-2px); }
.opt-card.active { 
    background: rgba(99,102,241,0.1); 
    border-color: var(--primary); 
    color: var(--primary); 
    box-shadow: 0 0 15px rgba(99,102,241,0.2); 
    font-weight: 700; 
}
.opt-val { font-size: 1rem; }
.opt-desc { font-size: 0.75rem; opacity: 0.7; margin-top: 4px; font-weight: 400; }
.contact-form-area { margin-top: 20px; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-input { 
    width: 100%; padding: 14px; background: rgba(125,125,125,0.05); border: 1px solid var(--glass-border); 
    border-radius: 12px; color: var(--text-main); font-size: 1rem; transition: 0.3s;
}
.form-input:focus { border-color: var(--primary); background: rgba(125,125,125,0.1); box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }
.textarea { min-height: 120px; resize: vertical; }
.colo-sidebar { position: relative; }
.summary-card { position: sticky; top: 100px; border: 1px solid var(--primary); } 
.summary-card h3 { margin-bottom: 5px; font-size: 1.3rem; }
.summary-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 25px; }
.summary-list .s-row { display: flex; justify-content: space-between; border-bottom: 1px solid var(--glass-border); padding: 12px 0; font-size: 0.95rem; }
.summary-list .s-row span { color: var(--text-muted); }
.summary-list .s-row strong { color: var(--text-main); }
.summary-list .s-row:last-child { border-bottom: none; margin-bottom: 25px; }
.support-badges { margin-top: 25px; display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); }
.support-badges span { display: flex; align-items: center; gap: 6px; }
.features-grid-advanced { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.adv-card {
    padding: 30px; transition: 0.3s; display: flex; flex-direction: column; border-radius: 24px;
    background: var(--glass-bg); border: 1px solid var(--glass-border); border-top: 1px solid var(--glass-highlight);
}
.adv-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 20px 40px -10px rgba(99,102,241,0.15); }
.ac-icon {
    width: 60px; height: 60px; border-radius: 18px; background: rgba(99,102,241,0.1); 
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.8rem; color: var(--primary);
}
.adv-card h4 { margin-bottom: 10px; font-size: 1.2rem; }
.process-steps { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-top: 60px; position: relative; }
.step-card { flex: 1; text-align: center; position: relative; z-index: 2; }
.step-icon { 
    width: 60px; height: 60px; background: var(--glass-bg); border: 2px solid var(--primary); border-radius: 50%; 
    margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; color: var(--text-main);
    box-shadow: 0 0 20px rgba(99,102,241,0.3);
}
.step-content h4 { font-size: 1.1rem; margin-bottom: 10px; }
.step-content p { font-size: 0.9rem; color: var(--text-muted); }
.step-line { flex: 1; height: 2px; background: var(--glass-border); margin-top: 30px; position: relative; z-index: 1; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-box { margin-bottom: 20px; overflow: hidden; padding: 0; background: rgba(125,125,125,0.03); border-radius: 16px; border: 1px solid var(--glass-border); }
.faq-box summary { padding: 25px; cursor: pointer; font-weight: 700; display: flex; justify-content: space-between; align-items: center; list-style: none; color: var(--text-main); font-size: 1.05rem; }
.faq-box summary::-webkit-details-marker { display: none; }
.faq-box[open] { border-color: var(--primary); background: rgba(99,102,241,0.05); }
.faq-body { padding: 0 25px 25px; color: var(--text-muted); border-top: 1px solid var(--glass-border); margin-top: 0; line-height: 1.7; }
@media (max-width: 1024px) {
    .colo-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; gap: 40px; }
    .step-line { display: none; }
    .desktop-menu, .nav-actions .btn:not(.mobile-toggle) { display: none; }
    .mobile-toggle { display: block; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .colo-sidebar { position: static; margin-top: 40px; }
}
@media (max-width: 600px) {
    .input-row { grid-template-columns: 1fr; }
    .select-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 2.5rem; }
}
.newsletter-box { background: rgba(125,125,125,0.05); padding: 20px; border-radius: 12px; border: 1px solid var(--glass-border); margin-top: 20px; }
.newsletter-form { display: flex; gap: 10px; margin-top: 15px; }
.newsletter-input { width: 100%; padding: 10px; background: rgba(0,0,0,0.1); border: 1px solid var(--glass-border); border-radius: 8px; color: var(--text-main); }
.dropdown-menu.wide-menu {
    width: 340px; 
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}
.dropdown-menu {
    min-width: 260px; 
    padding: 15px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: var(--bg-body); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
[data-theme="light"] .dropdown-menu {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 99999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 90%;
    max-width: 500px;
    opacity: 0;
    pointer-events: none;
}
.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}
.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.4;
    flex: 1;
    font-family: 'Inter', sans-serif;
}
.cookie-banner a {
    color: #818cf8;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}
.cookie-banner a:hover {
    color: #fff;
    text-decoration: underline;
}
.cookie-banner .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    border-radius: 30px;
    white-space: nowrap;
    background: #6366f1;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
}
.cookie-banner .btn:hover {
    background: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.5);
}
[data-theme="light"] .cookie-banner {
    background: rgba(255, 255, 255, 0.95);
    border-color: #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
[data-theme="light"] .cookie-banner p {
    color: #475569;
}
[data-theme="light"] .cookie-banner a {
    color: #4f46e5;
}


