/* Marketing Pages Common Styles - Header & Footer */

/* Variables */
:root {
    --primary: #00f5a0;
    --secondary: #00c2a8;
    --primary-dark: #00d98a;
    --text: #03110b;
    --text-light: #475569;
    --bg: #f5f7fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Space Grotesk", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
}

.brand {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand span {
    -webkit-text-fill-color: initial;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.95rem;
}

.nav-links a {
    color: var(--text);
    font-weight: 600;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.nav-btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--text);
}

.nav-btn-outline:hover {
    background: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* Footer */
.site-footer,
.footer {
    padding: 60px 5% 30px;
    background: #1e293b;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.footer-links,
.footer-links-grid {
    list-style: none;
    display: grid;
    grid-template-columns: auto auto;
    gap: 8px 40px;
    justify-content: center;
}

.footer-links a,
.footer-links-grid a {
    color: #94a3b8 !important;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links-grid a:hover {
    color: var(--primary) !important;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.2s;
}

.social-link:hover {
    background: var(--primary);
}

.social-link:hover svg {
    fill: #1e293b;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 0.85rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Page Hero */
.page-hero {
    padding: 120px 5% 50px;
    background: linear-gradient(180deg, #f2fbf7 0%, #ffffff 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-actions {
        gap: 10px;
    }

    .nav-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}