/* Orange Analytics - Clean Professional BI Portfolio */

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

:root {
    /* Colors - Exactly as specified */
    --white: #FFFFFF;
    --near-black: #1D1D1F;
    --gray: #6E6E73;
    --blue: #0071E3;
    --light-gray: #F5F5F7;
    --border: #D2D2D7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--near-black);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation - Clean minimal */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 20px;
    font-weight: 600;
    color: var(--near-black);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--near-black);
}

/* Hero - Large, centered, generous spacing */
.hero {
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.subhead {
    font-size: 21px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Buttons - Clean, no shadows */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
}

.btn-primary:hover {
    background: #0077ED;
}

.btn-secondary {
    background: var(--white);
    color: var(--near-black);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--near-black);
}

/* Industries - Grid layout, minimal icons */
.industries {
    padding: 80px 0;
    background: var(--light-gray);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.industry-item {
    text-align: center;
}

.industry-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.industry-item h3 {
    font-size: 17px;
    font-weight: 500;
    color: var(--near-black);
}

.capability-statement {
    text-align: center;
    font-size: 17px;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Work - Card grid */
.featured-work {
    padding: 80px 0;
}

.featured-work h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 48px;
    text-align: center;
}

.project-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.project-card {
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 12px;
    background: var(--white);
}

.project-tag {
    display: inline-block;
    font-size: 12px;
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 16px;
}

.project-card h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
}

.project-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.text-link {
    color: var(--blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.text-link:hover {
    text-decoration: underline;
}

/* Contact CTA - Centered section */
.contact-cta {
    padding: 80px 0;
    text-align: center;
    background: var(--light-gray);
}

.contact-cta h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-cta p {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 32px;
}

/* Footer - Minimal, grid layout */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    color: var(--gray);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--near-black);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--gray);
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .subhead {
        font-size: 17px;
    }

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

    .project-preview {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {
    .nav-menu {
        display: none;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .industry-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
