/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: #0F0F0F; /* Darker background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
}

/* ========================================
   COLOR PALETTE – Deep Blue-Toned Dark Theme
   ======================================== */
:root {
    --prime-red: #6080ff;                    /* Your current blue accent */
    --prime-red-dark: #536fdf;
    --prime-red-light: #162347;              /* Badge & subtle backgrounds */

    /* Main dark backgrounds – rich blue-gray, same perceived darkness as #0F0F0F */
    --bg-primary:   #0d0f1a;     /* Body & hero fallback */
    --bg-secondary: #11131f;     /* Sections like About, Features */
    --bg-card:      #161825;     /* Feature cards, FAQ items, footer */
    --bg-header:    rgba(17, 19, 31, 0.95);   /* Header with slight transparency */
    --border-subtle:#222433;     /* Borders & dividers */
}

/* Apply the new blue-toned backgrounds */
body {
    background: var(--bg-primary);
    color: #FFFFFF;
}

.hero {
    background-color: var(--bg-primary); /* fallback if bg.png fails */
}

.header,
.header.scrolled {
    background: rgba(13, 15, 26, 0.92) !important;   /* Deep blue with glass feel */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(96, 128, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Mobile menu background */
.mobile-menu {
    background: rgba(13, 15, 26, 0.98);
    border-top: 1px solid rgba(96, 128, 255, 0.15);
    backdrop-filter: blur(12px);
}

.about,
.features {
    background: var(--bg-secondary);
}

.feature-card,
.faq-item,
.cta-card,
.social-link,
.footer {
    background: var(--bg-card) !important;
    border-color: var(--border-subtle) !important;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
}

/* Subtle borders & dividers */
.faq-divider,
.mobile-menu {
    border-color: var(--border-subtle);
}

/* Update panel overlay & floating elements to match blue theme */
.panel-overlay {
    background: linear-gradient(to right, rgba(96, 128, 255, 0.12), transparent);
}

.floating-1 { background: rgba(96, 128, 255, 0.22); }
.floating-2 { background: rgba(96, 128, 255, 0.32); }

.status-badge {
    background: var(--prime-red-light);
    color: var(--prime-red);
}

.feature-icon,
.key-point-icon,
.cta-icon {
    background: var(--prime-red-light);
    color: var(--prime-red);
}
.feature-card:hover .feature-icon {
    background: var(--prime-red);
    color: #FFFFFF;
}
/* ========================================
   BUTTONS – Updated & Enhanced
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.8rem;        /* Reduced height + better horizontal padding */
    height: 48px;                    /* Fixed shorter height */
    border: none;
    border-radius: 1rem;           /* Much more rounded */
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s ease;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Force white text + icons */
.btn,
.btn i {
    color: #FFFFFF !important;
}

/* Primary Button – Red with glow */
.btn-primary {
    background: var(--prime-red);
    box-shadow: 0 0 20px rgba(96, 128, 255, 0.4);   /* Subtle red glow */
}

.btn-primary:hover {
    background: var(--prime-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(96, 128, 255, 0.6);   /* Stronger glow on hover */
}

/* Outline Button – Thicker white border, more rounded */
.btn-outline {
    background: transparent;
    color: #FFFFFF !important;
    border: 2px solid #FFFFFF;        /* Thicker white border */
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(96, 128, 255, 0.3);
    border-color: var(--prime-red);
    box-shadow: 0 0 20px rgba(96, 128, 255, 0.3);
    transform: translateY(-2px);
}

/* Large Buttons (used in hero) */
.btn-lg {
    height: 58px;                     /* Slightly taller but still compact */
    padding: 0 2.2rem;
    font-size: 1.05rem;
    border-radius: 1rem;             /* Even rounder for large buttons */
}

/* Optional: Add a subtle pulse glow to the main Download button */
.glow {
    animation: gentlePulse 3s infinite;
}

@keyframes gentlePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(96, 128, 255, 0.4); }
    50%      { box-shadow: 0 0 35px rgba(96, 128, 255, 0.7); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(22, 23, 37, 1); /* Darker, consistent background */
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease; /* Smooth transition */
}

.header.scrolled {
    background: rgba(22, 23, 37, 1); /* Ensure dark background on scroll */
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO – Only image, perfect visible size, navbar stays slim */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
    margin: 0;
}

.logo-icon {
    width: auto;           /* Perfect visible size (~44px) */
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;   /* No colored background */
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-accent {
    color: var(--prime-red);
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.nav-link:hover {
    color: var(--prime-red);
}

.cta-buttons {
    display: none;
    gap: 1rem;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.25rem;
    cursor: poOutfit;
}

.mobile-menu {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #2A2A2A;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.mobile-nav-link:hover {
    color: var(--prime-red);
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Hero Section - Now uses img/bg.png as background */
.hero {
    min-height: 100vh;
    background: url('img/bg.png') center/cover no-repeat;
    padding-top: 5rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}



/* Ensure hero content appears above the overlay */
.hero > .container {
    position: relative;
    z-index: 2;
}

/* Optional: fallback if image fails to load */
.hero {
    background-color: #0F0F0F; /* matches your dark theme */
}
.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    padding: 5rem 0;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeIn 0.6s ease-out;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--prime-red-light);
    color: var(--prime-red);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    width: fit-content;
}

.hero-title {
    font-size: 3rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
}

.title-accent {
    color: var(--prime-red);
}

.hero-description {
    font-size: 1.25rem;
    color: #D1D5DB;
    line-height: 1.6;
    max-width: 32rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--prime-red);
}

.stat-label {
    font-size: 0.875rem;
    color: #D1D5DB;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #D1D5DB;
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--prime-red);
}

.hero-right {
    position: relative;
    animation: slideInRight 0.6s ease-out;
}

.panel-container {
    position: relative;
}

.panel-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(38, 102, 220, 0.2);
}

.panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(38, 102, 220, 0.1), transparent);
    border-radius: 1rem;
}

.status-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-text {
    color: #FFFFFF;
    font-family: 'Orbitron', monospace;
    font-size: 0.875rem;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 2s infinite;
}

.floating-1 {
    top: -1rem;
    right: -1rem;
    width: 5rem;
    height: 5rem;
    background: rgba(38, 102, 220, 0.2);
}

.floating-2 {
    bottom: -1rem;
    left: -1rem;
    width: 4rem;
    height: 4rem;
    background: rgba(38, 102, 220, 0.3);
    animation-delay: 1s;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--prime-black);
}

.about-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-left {
    position: relative;
    animation: fadeIn 0.6s ease-out;
}

/* About section image now uses full panel style */
.about .panel-image {
    border: 2px solid rgba(38, 102, 220, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.about .panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(38, 102, 220, 0.1), transparent);
    border-radius: 1rem;
    pointer-events: none;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: slideInRight 0.6s ease-out;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--prime-red-light);
    color: var(--prime-red);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    width: fit-content;
}

.section-title {
    font-size: 2.5rem;
    color: #FFFFFF;
    line-height: 1.2;
}

.about-text {
    font-size: 1.125rem;
    color: #D1D5DB;
    line-height: 1.6;
}

.key-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.key-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.key-point-icon {
    width: 2rem;
    height: 2rem;
    background: var(--prime-red);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 0.875rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--prime-black);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    font-size: 1.25rem;
    color: #D1D5DB;
    max-width: 48rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--prime-gray-dark);
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border: 1px solid #2A2A2A;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.feature-header {
    text-align: center;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--prime-red-light);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--prime-red);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--prime-red);
    color: #FFFFFF;
}

.feature-title {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #D1D5DB;
    text-align: center;
    line-height: 1.6;
}

.features-cta {
    text-align: center;
}

.cta-card {
    display: inline-block;
    background: var(--prime-gray-dark);
    border-radius: 1rem;
    padding: 2rem;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-icon {
    width: 3rem;
    height: 3rem;
    background: var(--prime-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.25rem;
}

.cta-text h3 {
    color: #FFFFFF;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.cta-text p {
    color: #D1D5DB;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
background: #0b0d18;                    /* Deepest blue-black */}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #11131f; /* Darker background for FAQ items */
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border: 1px solid #1d2133;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: poOutfit;
    font-weight: 600;
    color: #FFFFFF;
    font-size: 1.125rem;
    transition: background-color 0.3s ease;
    font-family: 'Outfit', sans-serif; /* Explicitly Outfit font */
}

.faq-question:hover {
    background: #222538; /* Slightly darker hover effect */
}

.faq-chevron {
    color: var(--prime-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 24rem;
    opacity: 1;
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
}

.faq-divider {
    height: 1px;
    background: #1d2133;
    margin-bottom: 1rem;
}

.faq-answer p {
    color: #D1D5DB;
    line-height: 1.6;
    font-family: 'Outfit', sans-serif; /* Explicitly Outfit font */
}

.faq-contact {
    text-align: center;
    margin-top: 3rem;
}

.faq-contact p {
    color: #D1D5DB;
    font-family: 'Outfit', sans-serif; /* Explicitly Outfit font */
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--prime-gray-dark);
    color: #FFFFFF;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand .logo-text {
    color: #FFFFFF;
}

.footer-description {
    color: #D1D5DB;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--prime-gray-dark);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: var(--prime-red);
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--prime-red);
}

.footer-bottom {
    border-top: 1px solid var(--prime-gray-dark);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.copyright {
    color: #D1D5DB;
    font-size: 0.875rem;
}

.status-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10B981;
    font-size: 0.875rem;
}

.status-dot-small {
    width: 0.5rem;
    height: 0.5rem;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .cta-buttons {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-cta {
        flex-direction: row;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .cta-content {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .stats {
        gap: 1rem;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trust-indicators {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .key-points {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
}