/* Global Layout & Structural Components */
.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 80px;
}

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.accent-dot {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--text);
}

.btn-cta {
    background-color: var(--accent);
    color: white !important;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
}

.btn-cta:hover {
    background-color: var(--accent-dark);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-alt {
    background: var(--primary-light);
}

/* Footer Styling */
.footer-minimal {
    padding: 6rem 0 4rem;
    border-top: 1px solid var(--border);
    margin-top: 8rem;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.3));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.footer-brand {
    flex: 1;
}

.footer-statement {
    flex: 2;
    max-width: 500px;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-nav {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .footer-right {
        text-align: center;
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    /* Mobile menu would go here */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}