:root {
    --primary: #0a0a0a;
    --secondary: #1a1a1a;
    --accent: #3498db;
    --gold: #f39c12;
    --white: #ffffff;
    --gray: #808080;
    --light-gray: #f5f5f5;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--primary);
    background: var(--white);
    line-height: 1.6;
}
.navbar {
    background: var(--white);
    border-bottom: 3px solid var(--primary);
    padding: 1.5rem 0;
}
.brand-name {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -1px;
}
.brand-accent {
    color: var(--accent);
}
.nav-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    padding: 0.5rem 1.5rem !important;
    position: relative;
}
.nav-link::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: 0.3s;
}
.nav-link:hover::before {
    width: 100%;
}
.hero-section {
    min-height: 70vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px);
}
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--white);
    line-height: 0.9;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -3px;
}
.hero-subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}
.btn-modern {
    font-family: 'IBM Plex Mono', monospace;
    padding: 1.2rem 3rem;
    background: var(--gold);
    color: var(--primary);
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}
.btn-modern:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}
.btn-outline-modern {
    font-family: 'IBM Plex Mono', monospace;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
}
.btn-outline-modern:hover {
    background: var(--white);
    color: var(--primary);
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
}
.section-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 1rem;
}
.feature-box {
    background: var(--white);
    border: 3px solid var(--primary);
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    transition: 0.3s;
}
.feature-box:hover {
    transform: translateX(10px);
    box-shadow: -10px 10px 0 var(--gold);
}
.feature-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}
.feature-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.service-card {
    background: var(--light-gray);
    border: 3px solid var(--primary);
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 0 var(--accent);
}
.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.3s;
}
.service-card:hover .service-image {
    filter: grayscale(0%);
}
.service-content {
    padding: 2.5rem;
}
.service-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.contact-section {
    background: var(--primary);
    color: var(--white);
    padding: 6rem 0;
}
.contact-card {
    background: var(--secondary);
    border: 2px solid var(--gold);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}
.contact-card:hover {
    border-color: var(--accent);
    transform: scale(1.05);
}
.contact-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.contact-title {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
footer {
    background: var(--primary);
    color: var(--gray);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--gold);
}
.footer-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .btn-modern,
    .btn-outline-modern {
        width: 100%;
        margin-bottom: 1rem;
    }
}

.navbar {
    background: var(--white);
    border-bottom: 3px solid var(--primary);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-padding-top: 90px; /* Navbar height + some breathing room */
}

.btn-outline-modern {
    position: relative;
    z-index: 100;
}