* {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #070714;
    overflow-x: hidden;
}

/* Background */
.bg-future {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 30% 40%, #0a0a24, #02010f);
}

.bg-future::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, rgba(90, 70, 200, 0.03) 0px, rgba(90,70,200,0.03) 2px, transparent 2px, transparent 10px);
    pointer-events: none;
}

/* Navigation Logo */
.navbar-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c084fc;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.3);
}

/* Step Badge */
.step-badge {
    background: rgba(100, 70, 200, 0.6);
    backdrop-filter: blur(4px);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    border: 1px solid #b77eff;
    flex-shrink: 0;
    color: white;
}

/* Toast */
.toast-copy {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #1e1a3a;
    backdrop-filter: blur(10px);
    border: 1px solid #b77eff;
    border-radius: 40px;
    padding: 8px 20px;
    color: #e0d6ff;
    z-index: 999;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    font-size: 14px;
}

.toast-copy.show {
    opacity: 1;
}

/* FAQ Accordion */
.faq-q {
    cursor: pointer;
    user-select: none;
}

.faq-q i {
    transition: transform 0.3s ease;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.open .faq-answer {
    max-height: 2000px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Media Queries */
@media (max-width: 768px) {
    .step-badge {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .navbar-logo {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 640px) {
    .step-badge {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .toast-copy {
        bottom: 15px;
        right: 15px;
        padding: 6px 16px;
        font-size: 12px;
    }
}

/* Utilities */
.transition {
    transition: all 0.3s ease;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #a78bfa;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7c3aed;
}


