
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700;800&display=swap');
:root {
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --accent: #00f2ff;
    --dark: #050505;
    --light: #fdfdfd;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #020202;
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}


.bg-glow {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% -20%, #003366 0%, transparent 50%);
    z-index: -1;
    opacity: 0.5;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 40px; 
}


.main-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgba(2, 2, 2, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 40px;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo-area { display: flex; align-items: center; gap: 15px; }
.logo-hex img { height: 42px; filter: drop-shadow(0 0 10px var(--primary)); }
.brand-name { font-weight: 800; font-size: 1.3rem; letter-spacing: 1px; }
.blue-text { color: var(--primary); }

.main-nav { display: flex; align-items: center; gap: 35px; }

.nav-item { 
    color: #cecece; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 0.9rem; 
    transition: var(--transition); 
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-item:hover { color: var(--light); }
.nav-item:hover::after { width: 100%; }

.btn-auth {
    background: var(--primary); 
    color: white !important;
    padding: 11px 24px; 
    border-radius: 12px; 
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
    transition: var(--transition);
}

.btn-auth:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
    box-shadow: 0 15px 25px rgba(0, 102, 255, 0.4);
}

.auth-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

.auth-link:hover {
    color: var(--primary);
}


.hamburger {
    display: none; 
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1100;
}

.hamburger .bar {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: 0.3s;
}



.page-wrapper { padding-top: 100px; }

.hero-section { padding: 120px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }

.badge-new {
    display: inline-block; padding: 8px 16px; background: rgba(0, 102, 255, 0.1);
    color: var(--accent); border-radius: 30px; font-weight: 800; font-size: 0.7rem;
    margin-bottom: 25px; border: 1px solid rgba(0, 242, 255, 0.2);
    text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.1; font-weight: 800; margin-bottom: 30px; }
.blue-gradient {
    background: linear-gradient(135deg, #0066ff, #00f2ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc { color: #999; font-size: 1.15rem; margin-bottom: 40px; max-width: 550px; }

.hero-actions { display: flex; gap: 20px; margin-bottom: 60px; }

.btn-main {
    background: var(--light); color: var(--dark); padding: 18px 35px;
    border-radius: 14px; font-weight: 800; text-decoration: none; transition: var(--transition);
}
.btn-main:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15); }

.btn-sub {
    border: 1px solid var(--border); color: var(--light); padding: 18px 35px;
    border-radius: 14px; font-weight: 700; text-decoration: none; transition: var(--transition);
}
.btn-sub:hover { background: var(--border); }

.hero-stats { display: flex; gap: 40px; border-top: 1px solid var(--border); padding-top: 40px; }
.stat strong { display: block; font-size: 1.8rem; color: var(--light); }
.stat span { color: #666; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }


.image-wrapper { position: relative; }
.main-img { 
    width: 100%; border-radius: 35px; 
    border: 1px solid var(--border);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.exp-badge {
    position: absolute; bottom: 25px; right: -15px;
    background: var(--primary); color: white; padding: 12px 22px;
    border-radius: 14px; font-weight: 800; font-size: 0.9rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}


.info-section { padding: 80px 0; }
.glass-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
    background: var(--glass); border: 1px solid var(--border);
    border-radius: 45px; padding: 50px; backdrop-filter: blur(15px);
    align-items: center;
}

.work-time-card { margin-top: 35px; background: rgba(255,255,255,0.02); padding: 25px; border-radius: 20px; border: 1px solid var(--border); }
.time-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); }
.time-item:last-child { border-bottom: none; }
.time-item span { color: #888; }
.time-item strong { color: var(--accent); }

.glass-image img { width: 100%; border-radius: 25px; height: 100%; object-fit: cover; }


.reviews-dark {
    padding: 100px 0; 
    background: #030303; 
    border-radius: 60px 60px 0 0; 
}
.section-title { 
    text-align: center; 
    margin-bottom: 50px; 
}
.reviews-flex { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 25px; 
}
.review-box {
    flex: 1; 
    min-width: 320px; 
    background: #080808; 
    padding: 45px;
    border-radius: 30px; 
    border: 1px solid var(--border); 
    transition: var(--transition);
}

.review-box:hover { border-color: var(--primary); transform: translateY(-8px); background: #0c0c0c; }
.quote-mark { font-size: 4rem; color: var(--primary); line-height: 0; margin-bottom: 20px; opacity: 0.3; }
.r-author { margin-top: 25px; font-weight: 800; color: var(--primary); font-size: 0.85rem; text-transform: uppercase; }
.p-footer {
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #010101;
    width: 100%;
    position: relative;
    z-index: 10;
}
.p-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.p-f-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}
.p-f-info p {
    margin-top: 15px;
    color: #666;
    font-size: 0.95rem;
    max-width: 300px;
}
.p-f-legal { display: flex; flex-direction: column; gap: 15px; }
.p-legal-link { 
    color: var(--primary); 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 0.9rem; 
    transition: 0.3s;
}
.p-legal-link:hover { filter: brightness(1.2); text-decoration: underline; }
.p-business-info { 
    color: #666; 
    font-size: 0.85rem; 
    line-height: 1.8; 
    display: flex; 
    flex-direction: column; 
}
.p-f-contact a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    transition: 0.3s;
}
.p-f-contact a:hover {
    color: var(--primary);
}
.p-f-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    color: #333;
    font-size: 0.85rem;
}
.revealOnScroll {
    opacity: 0;
}
.revealOnScroll.animated {
    opacity: 1;
}
@media (max-width: 1024px) {
    .container { padding: 0 25px; }
    .logo-hex { display: none; }
    .hero-grid, .glass-layout { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-text { order: 1; }
    .hero-visual { order: 2; }
    .p-f-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }
    .p-f-contact a {
        font-size: 1.3rem;
    }
    .hamburger { display: flex; }
    .main-nav {
        align-items: center;
        backdrop-filter: blur(20px);
        background: rgba(2, 2, 2, 0.98);
        display: flex;
        flex-direction: column;
        gap: 40px;
        height: 100vh;
        justify-content: center;
        position: fixed;
        top: 0; right: -100%;
        width: 100%;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-item { font-size: 1.5rem; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}
.services-section { padding: 100px 0; background: #020202; }
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 25px; 
    margin-top: 50px; 
}
.service-card {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 30px;
    transition: var(--transition);
}
.service-card:hover {
    border-color: var(--primary);
    background: rgba(0, 102, 255, 0.05);
    transform: translateY(-10px);
}
.s-icon { font-size: 2.5rem; margin-bottom: 20px; }
.service-card h3 { margin-bottom: 15px; color: var(--light); }
.service-card p { color: #888; font-size: 0.95rem; }
.process-section { padding: 100px 0; background: #050505; }
.process-steps { 
    display: flex; 
    gap: 30px; 
    margin-top: 60px; 
    flex-wrap: wrap; 
}
.step {
    flex: 1;
    min-width: 200px;
    position: relative;
}
.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 102, 255, 0.2);
    line-height: 1;
    margin-bottom: 15px;
}
.step h4 { color: var(--primary); margin-bottom: 10px; font-size: 1.2rem; }
.step p { color: #777; font-size: 0.9rem; }
.faq-section { padding: 100px 0; }
.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    background: #0a0a0a;
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid var(--primary);
}
.faq-item h4 { margin-bottom: 10px; color: var(--light); }
.faq-item p { color: #888; }


@media (max-width: 768px) {
    .process-steps { flex-direction: column; gap: 40px; }
    .step { text-align: center; }
}


.auth-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000; 
    display: flex; 
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.auth-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.auth-modal-content {
    background: #0a0a0a;
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 24px;
    width: 100%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--primary);
}

.close-modal {
    position: absolute; top: 15px; right: 20px;
    background: none; border: none; color: #666;
    font-size: 2rem; cursor: pointer; transition: 0.2s;
}
.close-modal:hover { color: var(--light); }

.auth-form-box h2 { text-align: center; margin-bottom: 10px; color: var(--light); }
.auth-desc { text-align: center; color: #888; margin-bottom: 30px; font-size: 0.9rem; }

.input-group { margin-bottom: 20px; }
.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 14px 20px;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}
.input-group input:focus { border-color: var(--primary); background: rgba(0, 102, 255, 0.05); }

.btn-full-auth {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}
.btn-full-auth:hover { background: var(--primary-dark); transform: translateY(-2px); }

.auth-switch { text-align: center; margin-top: 20px; font-size: 0.9rem; color: #888; }
.auth-switch a { color: var(--accent); text-decoration: none; font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }

.auth-error-msg {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4d4d;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid rgba(255, 0, 0, 0.2);
    font-size: 0.9rem;
}

body.no-scroll {
    overflow: hidden;
}



html {
    scrollbar-width: thin;
    scrollbar-color: #333 var(--dark);
}


::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    border: 3px solid var(--dark); 
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}


@media (max-width: 480px) {
    .auth-modal-content {
        width: 90%;
        padding: 30px 20px;
    }
    
    .auth-form-box h2 {
        font-size: 1.6rem;
    }
}
