/* --- High-End Tech Brand Identity & Variables --- */
:root {
    --primary-bg: #030a16;      /* Extreme Premium Deep Dark Space Navy */
    --surface-bg: #0b1528;      /* Cybernetic Card Navy Base */
    --accent-glow: #00e5ff;    /* Deep Electric Hyper-Cyan Accent */
    --accent-hover: #00b4d8;
    --text-main: #f1f5f9;       /* Bright Crisp Text for Luxury Tech Contrast */
    --text-muted: #94a3b8;      /* Soft tech slate label text */
    --card-bg: #ffffff;
    --section-bg-alt: #070f1e;  /* Distinct Dark Background Section Separation */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-tech: 'Space Grotesk', sans-serif;
    --transition-premium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
    scroll-behavior: smooth;
}

body {
    color: var(--text-main);
    background-color: var(--primary-bg);
    overflow-x: hidden;
}

/* --- High-End Futuristic Header --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(3, 10, 22, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: var(--font-tech);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-glow);
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    margin: 0 24px;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-premium);
}

.nav-links a:hover {
    color: var(--accent-glow);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.cta-btn {
    background: linear-gradient(135deg, var(--accent-glow) 0%, #00b4d8 100%);
    color: var(--primary-bg);
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition-premium);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.2);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 229, 255, 0.4);
}

/* --- Immersive Interactive Hero Segment with Tech Layout --- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 8%;
    position: relative;
    background-color: var(--primary-bg);
}

.tech-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.25;
}
.orb-1 { top: 10%; right: 15%; width: 400px; height: 400px; background: var(--accent-glow); }
.orb-2 { bottom: 5%; left: 10%; width: 350px; height: 350px; background: #7d00ff; }

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 5;
}

.badge {
    background: rgba(0, 229, 255, 0.08);
    color: var(--accent-glow);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 229, 255, 0.15);
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.65;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-btns a {
    text-decoration: none;
    padding: 14px 34px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition-premium);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-glow) 0%, #00b4d8 100%);
    color: var(--primary-bg) !important;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
}

/* --- Premium Dynamic Animate Dashboard Asset Mockup --- */
.hero-dashboard-preview {
    background: rgba(11, 21, 40, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
    overflow: hidden;
    animation: dashboardFloat 6s ease-in-out infinite;
}

@keyframes dashboardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.db-header {
    background: rgba(3, 10, 22, 0.9);
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}
.db-dots span { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.db-dots span:nth-child(1) { background: #ff5f56; }
.db-dots span:nth-child(2) { background: #ffbd2e; }
.db-dots span:nth-child(3) { background: #27c93f; }
.db-title { font-size: 12px; color: var(--text-muted); font-family: var(--font-tech); font-weight: 500; }

.db-body { padding: 24px; }
.db-metric-row { display: flex; gap: 16px; margin-bottom: 24px; }
.db-mini-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 16px;
    border-radius: 10px;
    flex: 1;
}
.db-mini-card span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; display: block; margin-bottom: 6px;}
.db-mini-card h4 { font-size: 24px; font-weight: 700; color: #ffffff; font-family: var(--font-tech); }
.counter-glow { color: var(--accent-glow) !important; text-shadow: 0 0 10px rgba(0,229,255,0.3); }

.db-chart-placeholder {
    background: rgba(3, 10, 22, 0.4);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    height: 140px;
    display: flex;
    align-items: flex-end;
}
.chart-bar-wrapper { display: flex; justify-content: space-around; width: 100%; height: 100%; align-items: flex-end; gap: 12px;}
.chart-bar {
    background: linear-gradient(to top, rgba(0, 229, 255, 0.1), var(--accent-glow));
    width: 100%;
    height: var(--h);
    border-radius: 4px 4px 0 0;
    position: relative;
    animation: barGrow 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: bottom;
}
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.chart-bar span { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); font-size: 9px; color: var(--text-muted); }

.db-status-log { background: rgba(0,0,0,0.3); font-family: monospace; padding: 12px; border-radius: 6px; font-size: 11px;}
.log-item { color: #27c93f; display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.log-item i { font-size: 8px; }

/* --- Performance Metric Bar --- */
.metrics-bar {
    display: flex;
    justify-content: space-around;
    background: var(--surface-bg);
    padding: 35px 8%;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.metric-item h3 { font-family: var(--font-tech); font-size: 38px; color: var(--accent-glow); margin-bottom: 4px; }
.metric-item p { font-size: 13px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px;}

/* --- Section Global Templates --- */
.services-section { padding: 100px 8%; background-color: var(--section-bg-alt); }
.process-section { padding: 100px 8%; background-color: var(--primary-bg); }

.sub-title {
    color: var(--accent-glow);
    font-family: var(--font-tech);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    display: block;
    margin-bottom: 14px;
}
.section-header h2 { font-size: 42px; font-weight: 800; color: #ffffff; margin-bottom: 18px; letter-spacing: -1px; }
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 650px; line-height: 1.6; }

/* --- High-End Dark Grid Card Implementations --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 60px;
}
.service-card {
    background: var(--surface-bg);
    padding: 48px 40px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-premium);
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.05);
}
.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-glow);
    margin-bottom: 28px;
    transition: var(--transition-premium);
    border: 1px solid rgba(0, 229, 255, 0.1);
}
.service-card:hover .icon-box {
    background: var(--accent-glow);
    color: var(--primary-bg);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}
.service-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; color: #ffffff; }
.service-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* --- Execution Roadmap Steps --- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
.step-num { font-family: var(--font-tech); font-size: 58px; font-weight: 700; color: rgba(255,255,255,0.03); line-height: 1; margin-bottom: 16px; transition: var(--transition-premium);}
.step:hover .step-num { color: var(--accent-glow); text-shadow: 0 0 20px rgba(0,229,255,0.2); }
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; color: #ffffff; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* --- Soft Strategic Promotional Area --- */
.app-promo-banner {
    background: linear-gradient(180deg, var(--section-bg-alt) 0%, var(--primary-bg) 100%);
    padding: 90px 8%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.promo-content h2 { font-size: 32px; font-weight: 800; margin-bottom: 14px; color: #ffffff; }
.promo-content p { font-size: 17px; color: var(--text-muted); margin-bottom: 32px; }
.promo-btn {
    background: transparent;
    color: var(--accent-glow);
    border: 2px solid rgba(0, 229, 255, 0.3);
    padding: 14px 38px;
    font-size: 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-premium);
}
.promo-btn:hover {
    background: var(--accent-glow);
    color: var(--primary-bg);
    box-shadow: 0 0 25px rgba(0,229,255,0.3);
}

/* --- Deep Tech Advanced Mobility Cluster --- */
.app-section { padding: 100px 8%; background-color: var(--section-bg-alt); border-top: 1px solid rgba(255,255,255,0.04); animation: fadeIn 0.8s ease forwards; }
.hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.app-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; margin: 50px 0; }
.app-card { background: var(--surface-bg); padding: 44px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.03); }
.icon-style { font-size: 32px; color: var(--accent-glow); margin-bottom: 22px; display: block; }
.app-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 14px; color: #ffffff; }
.app-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.tech-stack-wrapper { text-align: center; padding: 30px; background: rgba(255,255,255,0.01); border-radius: 12px; border: 1px solid rgba(255,255,255,0.03);}
.tech-stack-wrapper span { font-weight: 700; color: #ffffff; display: block; margin-bottom: 18px; font-family: var(--font-tech); }
.stack-tags { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.stack-tags span { background: var(--surface-bg); padding: 8px 18px; border-radius: 6px; font-size: 13px; font-weight: 600; color: var(--accent-glow); border: 1px solid rgba(0,229,255,0.1); }

/* --- High Authority Conversion Footer Module --- */
.footer-section { background-color: #020710; padding: 100px 8% 40px 8%; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; margin-bottom: 60px; }
.footer-info h2 { font-family: var(--font-tech); font-size: 28px; font-weight: 700; margin-bottom: 24px; letter-spacing: 1.5px; color: #ffffff;}
.footer-info h2 span { color: var(--accent-glow); }
.footer-info p { color: var(--text-muted); line-height: 1.7; margin-bottom: 30px; font-size: 15px;}
.contact-details p { color: var(--text-muted); margin-bottom: 18px; font-size: 15px; line-height: 1.6; }
.contact-details i { margin-right: 12px; color: var(--accent-glow); font-size: 16px; }

.social-icons a { color: var(--text-muted); font-size: 20px; margin-right: 24px; transition: var(--transition-premium); }
.social-icons a:hover { color: var(--accent-glow); }

.footer-form { background: var(--surface-bg); padding: 44px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.04); }
.footer-form h3 { font-size: 24px; font-weight: 700; margin-bottom: 24px; color: #ffffff; }
.footer-form input, .footer-form select, .footer-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    background: var(--primary-bg);
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: var(--transition-premium);
}
.footer-form input:focus, .footer-form select:focus, .footer-form textarea:focus { border-color: var(--accent-glow); box-shadow: 0 0 15px rgba(0,229,255,0.1); }
.footer-form option { color: #ffffff; background: var(--surface-bg); }

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent-glow) 0%, #00b4d8 100%);
    color: var(--primary-bg);
    border: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-premium);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(0, 229, 255, 0.4); }

.footer-bottom { text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 30px; font-size: 13px; color: var(--text-muted); }

/* --- Fully Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-btns { justify-content: center; }
    .footer-container { grid-template-columns: 1fr; gap: 50px; }
    .navbar { padding: 20px 4%; }
    .hero { padding: 60px 4%; }
    .services-section, .process-section, .app-section, .footer-section { padding-left: 4%; padding-right: 4%; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 42px; }
    .footer-form { padding: 28px; }
}