/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --near-black: #1a1a1a;
    --charcoal: #2a2a2a;
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f2f2f2;
    --mid-gray: #6b6b6b;
    --border-gray: #e4e4e4;
    --orange: #ff8c00;
    --orange-dark: #e67a00;
    --text: #1f1f1f;
    --max-width: 1240px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.65;
    color: var(--text);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

a { text-decoration: none; }
ul { list-style: none; }

/* Top utility bar */
.topbar {
    background-color: var(--black);
    color: #b5b5b5;
    font-size: 12.5px;
    letter-spacing: 0.3px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 32px;
}

.topbar-locations {
    color: var(--orange);
    font-weight: 500;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-gray);
    position: sticky;
    top: 0;
    z-index: 200;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--black);
}

.nav-brand span {
    color: var(--orange);
}

.nav-menu {
    display: flex;
    gap: 36px;
}

.nav-link {
    color: var(--text);
    font-size: 14.5px;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    transition: width 0.25s ease;
}

.nav-link:hover {
    color: var(--orange);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--black);
    color: var(--white);
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 2px;
    transition: background-color 0.25s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background-color: var(--orange);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--black);
    transition: all 0.25s ease;
}

/* Hero */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-inner {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 780px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.eyebrow {
    color: var(--orange);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.eyebrow-dark {
    color: var(--orange-dark);
}

.hero-inner h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

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

.hero-lead {
    font-size: 19px;
    font-weight: 300;
    color: #d8d8d8;
    max-width: 560px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 32px;
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

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

.btn-primary:hover {
    background-color: var(--orange-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-sm {
    padding: 11px 24px;
    font-size: 13.5px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 26px;
    height: 42px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    cursor: pointer;
}

.hero-scroll span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--orange);
    border-radius: 2px;
    animation: scrollDown 1.6s infinite;
}

@keyframes scrollDown {
    0% { top: 8px; opacity: 1; }
    70% { top: 20px; opacity: 0; }
    100% { top: 20px; opacity: 0; }
}

/* Stats strip */
.stats {
    background-color: var(--near-black);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
    color: var(--white);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 24px;
}

.stat:first-child {
    border-left: none;
    padding-left: 0;
}

.stat h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 8px;
}

.stat p {
    font-size: 13.5px;
    color: #b5b5b5;
    font-weight: 400;
    line-height: 1.5;
}

/* Section Titles */
.section-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    max-width: 700px;
}

.section-title-light {
    color: var(--white);
}

.section-intro {
    font-size: 17px;
    color: var(--mid-gray);
    max-width: 680px;
    margin-bottom: 56px;
    font-weight: 400;
}

.subsection-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 36px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 90px;
}

.card {
    background-color: var(--off-white);
    padding: 44px;
    border-radius: 6px;
    border-top: 3px solid var(--orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-icon {
    width: 42px;
    height: 42px;
    background-color: var(--black);
    color: var(--orange);
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 20px;
}

.card h3 {
    color: var(--black);
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 700;
}

.card p {
    color: var(--mid-gray);
    line-height: 1.8;
    font-size: 15px;
}

/* Pillars */
.pillars-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.pillar {
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    padding: 28px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.pillar:hover {
    border-color: var(--black);
    background-color: var(--black);
    transform: translateY(-8px);
}

.pillar:hover h4,
.pillar:hover p {
    color: var(--white);
}

.pillar-number {
    color: var(--orange);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
}

.pillar h4 {
    font-size: 15.5px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--black);
    transition: color 0.3s ease;
}

.pillar p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--mid-gray);
    transition: color 0.3s ease;
}

/* Services Section */
.services {
    background-color: var(--off-white);
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background-color: var(--white);
    padding: 38px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-gray);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}

.service-number {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.service-card h3 {
    color: var(--black);
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 700;
}

.service-card p {
    color: var(--mid-gray);
    margin-bottom: 22px;
    line-height: 1.8;
    font-size: 14.5px;
}

.highlight {
    background-color: var(--off-white);
    padding: 14px 16px;
    border-left: 3px solid var(--orange);
    font-size: 12.5px;
    color: var(--black);
    font-weight: 600;
    line-height: 1.5;
}

.service-card-dark {
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-dark h3 {
    color: var(--white);
}

.service-card-dark p {
    color: #b5b5b5;
    margin-bottom: 26px;
}

.service-card-dark:hover {
    border-color: var(--orange);
}

/* Domains Section */
.domains {
    padding: 100px 0;
    background-color: var(--white);
}

.domains-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.domain-block h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 26px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--orange);
}

.domain-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-gray);
    color: var(--mid-gray);
    font-size: 15px;
    line-height: 1.7;
}

.domain-list li:last-child {
    border-bottom: none;
}

.domain-list strong {
    color: var(--black);
    font-weight: 600;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 110px 0;
    background-color: var(--black);
    overflow: hidden;
}

.contact-bg {
    opacity: 0.7;
}

.contact-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact .section-title {
    margin: 0 auto 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-bottom: 22px;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 14px;
    line-height: 1.8;
    color: #d8d8d8;
    font-size: 16px;
}

.contact-info a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.25s ease;
}

.contact-info a:hover {
    color: var(--orange);
}

/* Footer */
.footer {
    background-color: var(--near-black);
    color: var(--white);
    padding: 36px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .nav-brand {
    color: var(--white);
    font-size: 18px;
}

.footer p {
    color: #888888;
    font-size: 13.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pillars-track {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 860px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        background-color: var(--black);
        flex-direction: column;
        padding: 100px 32px;
        gap: 28px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 150;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu .nav-link {
        color: var(--white);
        font-size: 17px;
    }

    .nav-cta {
        display: none;
    }

    .topbar-inner {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        padding: 10px 20px;
    }

    .hero-inner h1 {
        font-size: 38px;
    }

    .hero-lead {
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .stat {
        border-left: none;
        padding-left: 0;
    }

    .vision-mission,
    .domains-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-inner h1 {
        font-size: 30px;
    }

    .pillars-track {
        grid-template-columns: 1fr 1fr;
    }

    .about, .services, .domains, .contact {
        padding: 64px 0;
    }
}
