/* --- RESET & VARIABLES --- */
:root {
    --bg-dark: #050505; 
    --bg-card: #0F0F0F;
    --bg-card-hover: #161616;
    --text-main: #ffffff;
    --text-muted: #94a3b8; 
    --accent-yellow: #FFC107; 
    --border-color: rgba(255, 255, 255, 0.08);
    
    /* Icon Colors */
    --icon-purple: #8b5cf6;
    --icon-blue: #3b82f6;
    --icon-green: #10b981;
    --icon-orange: #f97316;
    --icon-pink: #ec4899;
    --icon-indigo: #6366f1;
    --icon-teal: #14b8a6;
    --icon-yellow: #eab308;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- BACKGROUND SYSTEM --- */
.bg-system {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.grid-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

.glow-spot {
    position: absolute;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.7;
    mix-blend-mode: screen;
}

.glow-green { background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 60%); left: -200px; top: 0%; }
.glow-gold { background: radial-gradient(circle, rgba(255, 193, 7, 0.25) 0%, transparent 60%); right: -200px; top: -100px; }
.glow-center { background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 60%); right: 5%; top: 50%; }
.glow-purple { background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 60%); left: -100px; bottom: -100px; }
.glow-cyan { background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 60%); right: 20%; top: 10%; }

/* --- TYPOGRAPHY UTILS --- */
.section-label {
    display: block;
    color: var(--accent-yellow);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.accent-dot { color: var(--accent-yellow); }

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-primary { background: var(--accent-yellow); color: black; }
.btn-primary:hover { transform: translateY(-2px); background: #e0a800; }
.btn-outline { background: transparent; border: 1px solid var(--border-color); color: white; }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.05); }

/* --- HEADER --- */
header { padding: 2rem 0; position: absolute; width: 100%; top: 0; z-index: 100; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo img { width: 120px; filter: invert(1); display: block; }
.nav-links { display: flex; gap: 3rem; }
.nav-links a { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; color: var(--text-main); }
.nav-links a:hover { color: var(--accent-yellow); }

/* --- HERO SECTION --- */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 4rem; position: relative; border-bottom: 1px solid var(--border-color); }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; width: 100%; align-items: center; }
.pill-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); padding: 6px 16px; border-radius: 50px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2rem; border: 1px solid var(--border-color); }
.pill-badge .dot { width: 6px; height: 6px; background: #10b981; border-radius: 50%; }
.hero h1 { font-size: 5rem; line-height: 0.95; margin-bottom: 2rem; letter-spacing: -1px; }
.outline-text { color: transparent; -webkit-text-stroke: 1px var(--accent-yellow); }
.hero-sub { color: var(--text-muted); font-size: 1.1rem; max-width: 500px; margin-bottom: 3rem; }
.cta-group { display: flex; gap: 1rem; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-box { background: rgba(10, 10, 10, 0.6); border: 1px solid var(--border-color); padding: 2.5rem 2rem; position: relative; backdrop-filter: blur(5px); }
.stat-box h3 { font-size: 2.5rem; color: var(--accent-yellow); margin-bottom: 0.5rem; font-family: 'Space Grotesk', sans-serif; }
.stat-box p { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.stat-dot { position: absolute; right: 20px; top: 50%; width: 6px; height: 6px; background: #10b981; border-radius: 50%; }

/* --- SECTIONS --- */
.services, .process, .faq-section, .contact, .why-us { padding: 8rem 0; }
.section-header { display: grid; grid-template-columns: 1fr 1fr; align-items: flex-end; margin-bottom: 5rem; gap: 2rem; }
.header-left h2 { font-size: 5rem; line-height: 0.9; margin-top: 0.5rem; color: var(--text-main); }
.header-right { padding-bottom: 10px; }
.section-desc { color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; max-width: 480px; margin-left: auto; }

/* --- SERVICES GRID --- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.service-card { background: var(--bg-card); border: 1px solid var(--border-color); padding: 2rem; transition: 0.3s; display: flex; flex-direction: column; }
.service-card:hover { background: var(--bg-card-hover); transform: translateY(-5px); border-color: rgba(255,255,255,0.2); }
.card-top { display: flex; justify-content: space-between; margin-bottom: 1.5rem; width: 100%; }
.icon-box { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 4px; color: white; font-size: 1.1rem; }
.purple { background: var(--icon-purple); } .blue { background: var(--icon-blue); } .green { background: var(--icon-green); } .orange { background: var(--icon-orange); } .pink { background: var(--icon-pink); } .indigo { background: var(--icon-indigo); } .teal { background: var(--icon-teal); } .yellow { background: var(--icon-yellow); } .white { background: rgba(255,255,255,0.15); color: white; }
.card-num { font-family: 'Space Grotesk'; font-size: 2rem; font-weight: 700; color: rgba(255,255,255,0.03); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 1.5rem; color: white; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1rem; }
.product-list { display: flex; flex-direction: column; gap: 1.5rem; }
.product-item h4 { font-size: 0.85rem; color: var(--accent-yellow); margin-bottom: 0.3rem; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.5px; }
.product-item p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.learn-more { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.learn-more:hover { color: white; gap: 12px; }
.service-card.full-width { grid-column: 1 / -1; align-items: center; text-align: center; background: linear-gradient(180deg, var(--bg-card) 0%, rgba(255,255,255,0.02) 100%); border: 1px solid rgba(255,255,255,0.1); }
.service-card.full-width .card-top { justify-content: center; position: relative; }
.service-card.full-width .card-num { position: absolute; right: 0; }
.service-card.full-width h3 { font-size: 2rem; border-bottom: none; margin-bottom: 1rem; color: white; }
.highlight-text { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; color: var(--accent-yellow); margin-bottom: 1rem; }
.custom-sub { max-width: 600px; margin: 0 auto 2rem auto; font-size: 1.1rem; color: var(--text-muted); }
.custom-btn { margin-top: 1rem; }

/* --- PROCESS SECTION --- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.process-item { background: var(--bg-card); padding: 2.5rem 2rem; border: 1px solid var(--border-color); position: relative; transition: 0.3s; }
.process-item:hover { border-color: var(--accent-yellow); }
.process-icon { font-size: 1.5rem; color: var(--accent-yellow); margin-bottom: 1.5rem; }
.process-num { font-family: 'Space Grotesk'; font-size: 4rem; font-weight: 700; color: rgba(255,255,255,0.03); position: absolute; top: 1rem; right: 1.5rem; }
.process-item h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.process-item p { font-size: 0.9rem; color: var(--text-muted); }

/* --- TERMINAL FAQ STYLES --- */
.terminal-wrapper { background: #050505; border: 1px solid #333; border-radius: 12px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.8); display: flex; flex-direction: column; }
.terminal-header { background: #111; padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; }
.header-controls { display: flex; align-items: center; gap: 20px; }
.terminal-dots { display: flex; gap: 8px; }
.dot-btn { width: 12px; height: 12px; border-radius: 50%; }
.dot-btn.red { background: #ff5f56; } .dot-btn.yellow { background: #ffbd2e; } .dot-btn.green { background: #27c93f; }
.terminal-title { font-family: 'Space Grotesk', monospace; font-size: 0.85rem; color: #666; letter-spacing: 1px; }
.system-status { font-size: 0.7rem; color: var(--accent-yellow); font-weight: 600; display: flex; align-items: center; gap: 8px; letter-spacing: 1px; }
.status-indicator { width: 6px; height: 6px; background: var(--accent-yellow); border-radius: 50%; box-shadow: 0 0 10px var(--accent-yellow); animation: blink 2s infinite; }
.terminal-body { display: grid; grid-template-columns: 280px 1fr; min-height: 450px; }
.terminal-sidebar { background: #0a0a0a; border-right: 1px solid #333; padding: 1.5rem; display: flex; flex-direction: column; }
.sidebar-label { font-size: 0.7rem; color: #555; font-weight: 700; margin-bottom: 1rem; letter-spacing: 1px; }
.cmd-list { display: flex; flex-direction: column; gap: 4px; }
.terminal-cmd { background: transparent; border: 1px solid transparent; text-align: left; color: #888; font-family: 'Inter', sans-serif; padding: 12px 14px; cursor: pointer; transition: all 0.2s ease; border-radius: 6px; font-size: 0.95rem; display: flex; align-items: center; gap: 12px; line-height: 1.4; }
.cmd-arrow { color: #444; font-family: 'Space Grotesk', monospace; font-weight: 700; transition: 0.2s; }
.terminal-cmd:hover { background: rgba(255,255,255,0.05); color: #fff; }
.terminal-cmd:hover .cmd-arrow { color: var(--accent-yellow); }
.terminal-cmd.active { background: rgba(255, 193, 7, 0.1); color: white; border: 1px solid rgba(255, 193, 7, 0.2); font-weight: 500; }
.terminal-cmd.active .cmd-arrow { color: var(--accent-yellow); }
.terminal-screen { background: #000; padding: 3rem; position: relative; overflow-y: auto; }
.screen-content { max-width: 600px; }
.response-header { display: flex; justify-content: space-between; border-bottom: 1px solid #222; padding-bottom: 1rem; margin-bottom: 1.5rem; font-family: 'Space Grotesk', monospace; font-size: 0.8rem; }
.res-source { color: #555; } .res-time { color: var(--accent-yellow); }
.response-text { color: #e0e0e0; font-size: 1.15rem; line-height: 1.7; font-family: 'Space Grotesk', sans-serif; font-weight: 300; }
.blinking-cursor { color: var(--accent-yellow); font-weight: 700; animation: blink 1s infinite; margin-left: 4px; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* --- WHY US SECTION (SUMMARIZED) --- */
.why-us {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0a 100%);
    text-align: center;
}

.why-us-content {
    max-width: 800px;
    margin: 0 auto;
}

.why-us-content h2 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 2.5rem;
    color: var(--text-main);
}

.text-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.text-block .lead-text {
    font-size: 1.5rem;
    color: white;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.why-text-body {
    max-width: 650px;
    margin: 0 auto;
}

.highlight-punch {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    color: var(--accent-yellow);
    margin: 2rem 0;
    font-weight: 700;
    text-transform: uppercase;
}

/* --- CONTACT SECTION --- */
.contact { border-top: 1px solid var(--border-color); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }
.contact-left h2 { font-size: 4rem; line-height: 1; margin-bottom: 2rem; }
.contact-sub { color: var(--text-muted); margin-bottom: 2rem; max-width: 450px; font-size: 1.1rem; }
.check-list li { display: flex; align-items: center; gap: 12px; color: white; margin-bottom: 1rem; font-size: 0.95rem; }
.check-list li i { color: var(--accent-yellow); font-size: 0.8rem; }
.check-list { margin-bottom: 3rem; }
.contact-right { display: flex; justify-content: flex-end; }
.contact-card { background: var(--bg-card); border: 1px solid var(--border-color); padding: 3rem; width: 100%; max-width: 450px; backdrop-filter: blur(10px); }
.contact-card h3 { font-size: 1.5rem; margin-bottom: 2.5rem; }
.contact-row { margin-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1.5rem; }
.contact-row:last-child { border: none; padding-bottom: 0; margin-bottom: 0; }
.contact-row label { display: block; font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.contact-row a, .contact-row p { font-size: 1rem; color: white; }
.contact-row a:hover { color: var(--accent-yellow); }
.dot-green { display: inline-block; width: 8px; height: 8px; background: #10b981; border-radius: 50%; margin-right: 8px; }

/* --- FOOTER --- */
footer { background: #020202; padding: 5rem 0 2rem 0; border-top: 1px solid var(--border-color); }
.footer-content { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo { width: 100px; filter: invert(1); margin-bottom: 1.5rem; }
.footer-left p { color: var(--text-muted); font-size: 0.9rem; max-width: 300px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); }
.footer-links h4 { font-size: 0.75rem; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 1.5rem; }
.footer-links a, .footer-links p { display: block; font-size: 0.9rem; color: white; margin-bottom: 0.8rem; }
.footer-links a:hover { color: var(--accent-yellow); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.social-links { display: flex; gap: 1.5rem; margin-top: 1.5rem; }
.social-links a { color: var(--text-muted); font-size: 1.2rem; transition: 0.3s; }
.social-links a:hover { color: var(--accent-yellow); transform: translateY(-3px); }

/* --- ANIMATIONS --- */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* --- RESPONSIVE --- */
@media (max-width: 968px) {
    .hero h1 { font-size: 3rem; }
    .hero-grid, .contact-grid, .footer-content, .services-grid, .process-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero { padding-top: 8rem; }
    .nav-links { display: none; }
    .section-header { grid-template-columns: 1fr; gap: 1.5rem; }
    .header-left h2 { font-size: 3.5rem; }
    .section-desc { margin-left: 0; max-width: 100%; }
    .footer-links { grid-template-columns: 1fr; gap: 2rem; }
    .terminal-body { grid-template-columns: 1fr; }
    .terminal-sidebar { border-right: none; border-bottom: 1px solid #333; max-height: 300px; overflow-y: auto; }
    .terminal-screen { min-height: 300px; padding: 2rem; }
    .services-grid { grid-template-columns: 1fr; } 
    .service-card.full-width { grid-column: 1; }
    .why-us-content h2 { font-size: 3rem; }
    .highlight-punch { font-size: 2.5rem; }
}

/* --- MODAL STYLING --- */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: 0.3s; z-index: 999; }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-content { background: #111; border: 1px solid var(--border-color); padding: 3rem; width: 100%; max-width: 600px; position: relative; max-height: 85vh; display: flex; flex-direction: column; }
.modal-content.scrollable { overflow-y: auto; }
.modal-content input, .modal-content textarea { width: 100%; padding: 1rem; background: #050505; border: 1px solid #333; color: white; margin-bottom: 1rem; font-family: inherit; }
.close-modal { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; z-index: 10; }
.legal-text h3 { color: white; margin-top: 1.5rem; font-size: 1.1rem; }
.legal-text p, .legal-text li { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.legal-text ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; color: var(--text-muted); }

/* --- SUCCESS MODAL --- */
.success-content { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.success-icon { font-size: 4rem; color: #10b981; margin-bottom: 1rem; animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes popIn { 0% { transform: scale(0); } 100% { transform: scale(1); } }