
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #0F0F0F;
    background: #FFFFFF;
}

.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;
}

/* Colors */
:root {
    --luna-purple: #875aff;
    --luna-purple-dark: #6541c7;
    --luna-purple-light: #ddd0ff;
    --luna-black: #0F0F0F;
    --luna-gray-dark: #1F1F1F;
    --luna-gray-light: #F5F5F5;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--luna-purple);
    color: white;
}

.btn-primary:hover {
    background: var(--luna-purple-dark);
}

.btn-outline {
    background: transparent;
    color: var(--luna-purple);
    border: 1px solid var(--luna-purple);
}

.btn-outline:hover {
    background: var(--luna-purple);
    color: white;
}

.btn-lg {
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E5E7EB;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--luna-black);
}

.logo-image {
    width: 70%;
    height: 70%;
    object-fit: contain;
}


.logo-accent {
    color: var(--luna-purple);
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: var(--luna-black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.nav-link:hover {
    color: var(--luna-purple);
}

.cta-buttons {
    display: none;
    gap: 1rem;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--luna-black);
    font-size: 1.25rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--luna-black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.mobile-nav-link:hover {
    color: var(--luna-purple);
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, white 0%, var(--luna-gray-light) 50%, var(--luna-purple-light) 100%);
    padding-top: 5rem;
    display: flex;
    align-items: center;
}

.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(--luna-purple-light);
    color: var(--luna-purple);
    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: var(--luna-black);
    line-height: 1.1;
}

.title-accent {
    color: var(--luna-purple);
}

.hero-description {
    font-size: 1.25rem;
    color: #6B7280;
    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(--luna-purple);
}

.stat-label {
    font-size: 0.875rem;
    color: #6B7280;
}

.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: #6B7280;
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--luna-purple);
}

.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.25);
    border: 2px solid rgba(135, 90, 255, 0.2);
}

.panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(135, 90, 255, 0.1), transparent);
    border-radius: 1rem;
}

.status-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(15, 15, 15, 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: white;
    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(135, 90, 255, 0.2);
}

.floating-2 {
    bottom: -1rem;
    left: -1rem;
    width: 4rem;
    height: 4rem;
    background: rgba(135, 90, 255, 0.3);
    animation-delay: 1s;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-left {
    position: relative;
    animation: fadeIn 0.6s ease-out;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(135, 90, 255, 0.2), transparent);
    border-radius: 1rem;
}

.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(--luna-purple-light);
    color: var(--luna-purple);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    width: fit-content;
}

.section-title {
    font-size: 2.5rem;
    color: var(--luna-black);
    line-height: 1.2;
}

.about-text {
    font-size: 1.125rem;
    color: #6B7280;
    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(--luna-purple);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    font-size: 1.25rem;
    color: #6B7280;
    max-width: 48rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.feature-header {
    text-align: center;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--luna-purple-light);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--luna-purple);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--luna-purple);
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    color: var(--luna-black);
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #6B7280;
    text-align: center;
    line-height: 1.6;
}

.features-cta {
    text-align: center;
}

.cta-card {
    display: inline-block;
    background: var(--luna-black);
    border-radius: 1rem;
    padding: 2rem;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-icon {
    width: 3rem;
    height: 3rem;
    background: var(--luna-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.cta-text h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.cta-text p {
    color: #9CA3AF;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: var(--luna-gray-light);
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: var(--luna-black);
    font-size: 1.125rem;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    background: #F9FAFB;
}

.faq-chevron {
    color: var(--luna-purple);
    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: #E5E7EB;
    margin-bottom: 1rem;
}

.faq-answer p {
    color: #6B7280;
    line-height: 1.6;
}

.faq-contact {
    text-align: center;
    margin-top: 3rem;
}

.faq-contact p {
    color: #6B7280;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--luna-black);
    color: white;
    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: white;
}

.footer-description {
    color: #9CA3AF;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--luna-gray-dark);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: var(--luna-purple);
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--luna-purple);
}

.footer-bottom {
    border-top: 1px solid var(--luna-gray-dark);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.copyright {
    color: #9CA3AF;
    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 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        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;
    }
}
