:root {
    --bg-color: #050508;
    --text-main: #E4E4E7;
    --text-muted: #71717A;
    --accent-color: #00E5FF;
    /* Cyan/Turquoise */
    --accent-blue: #007AFF;
    /* Standard Blue */
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #050508 !important;
    color: #E4E4E7 !important;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

/* --- NAVBAR --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(5, 5, 8, 0.7);
    border-bottom: 1px solid var(--border-color);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-placeholder {
    font-size: 1.5rem;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #FFFFFF;
    text-decoration: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-right {
    position: relative;
}

.nav-cta {
    background: var(--accent-color);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

/* LAUNCH APP DROPDOWN PANEL */
.app-panel {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    min-width: 180px;
    background: rgba(8, 8, 12, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 1.2rem;
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 200;
}

.app-panel.open {
    display: flex;
}

.store-btn {
    background: transparent;
    padding: 0;
    border-radius: 8px;
    line-height: 0;
    transition: transform 0.2s ease;
}

.store-btn img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.store-btn:hover {
    transform: scale(1.03);
}

/* --- HERO & COCKPIT --- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1200px;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--bg-color));
    z-index: 5;
    pointer-events: none;
}

.cockpit-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    z-index: 0;
    transition: transform 0.1s ease-out;
}

.cockpit-bg {
    position: absolute;
    top: -30%;
    left: -40%;
    width: 180%;
    height: 160%;
    /* Local Asset Integration */
    background-image: url('assets/jet-canopy-frame.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.9) contrast(1.1);
    z-index: 0;
}

.hud-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 720px;
    padding: 3rem 3.5rem;
    background: rgba(8, 8, 12, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero h1 span {
    color: var(--accent-color);
}

.hero p {
    font-size: 1.2rem;
    color: #CCCCCC;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--text-muted);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #FFF;
}

/* --- SECTIONS --- */
.section {
    padding: 8rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.feature-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.feature-content {
    padding: 1.5rem;
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ASK ANYTHING / EXPERTISE */
.ask-section {
    background: #080810;
    max-width: 100%;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.expertise-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.8) grayscale(0.2);
}

.expertise-content {
    padding: 2rem;
}

.expertise-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #FFF;
}

.expertise-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* STATS SECTION */
.stats-section {
    max-width: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 229, 255, 0.02), transparent);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FOOTER */
footer {
    padding: 3rem 4rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
    background: #030305;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.cookie-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
    transition: transform 0.2s ease;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    transform: scale(1.1);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--accent-color);
    text-decoration: underline;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-btn:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.contact-logo {
    font-size: 1.1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .stats-grid {
        gap: 2rem;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right {
        align-items: flex-start;
        width: 100%;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }
}

/* --- PRIVACY POLICY PAGE STYLES --- */
.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 10rem 4rem 5rem;
}

.privacy-container h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    color: #FFFFFF;
}

.privacy-container .last-updated {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    font-family: 'JetBrains Mono', monospace;
}

.privacy-container h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.privacy-container p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.privacy-container ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.privacy-container li {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.privacy-container li strong {
    color: var(--text-main);
}

.privacy-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.privacy-container th,
.privacy-container td {
    border: 1px solid var(--border-color);
    padding: 1rem 1.2rem;
    text-align: left;
    vertical-align: top;
    color: var(--text-muted);
}

.privacy-container th {
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.privacy-container td strong {
    color: var(--text-main);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-container {
        padding: 8rem 1.5rem 4rem;
    }

    .privacy-container h1 {
        font-size: 2.2rem;
    }

    .privacy-container h2 {
        font-size: 1.4rem;
    }

    .privacy-container table {
        font-size: 0.85rem;
    }

    .privacy-container th,
    .privacy-container td {
        padding: 0.8rem;
    }
}

.privacy-container a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.privacy-container a:hover {
    opacity: 0.7;
}

/* --- COOKIE MODAL STYLES --- */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.cookie-modal-card {
    background: rgba(8, 8, 12, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.cookie-modal-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.cookie-option {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.cookie-option span {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-left: 1.7rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-cookie-primary {
    background: var(--accent-color);
    color: #000;
    border: 1px solid var(--accent-color);
}

.btn-cookie-primary:hover {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.btn-cookie-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-muted);
}

.btn-cookie-secondary:hover {
    border-color: #FFF;
    background: rgba(255, 255, 255, 0.05);
}

/* --- NAVBAR LOGO --- */
.nav-left {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-link:hover .logo-img {
    opacity: 0.85;
    transform: scale(1.02);
}

.feature-card img,
.expertise-card img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
}