:root {
    /* User-Defined Prime Blues */
    --primary: #219ac9;
    --accent: #32beef;
    --light-blue: #56c5f2;

    /* Content Colors */
    --hellgrau: #f8f9fa;
    /* Hellgrau for Hero */
    --bg-content: #32beef;
    /* Solid Blue for Page Content */

    --text-dark: #1e293b;
    --text-white: #ffffff;
    --text-muted: #64748b;

    --radius-xl: 20px;
    --radius-lg: 12px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- EXACT HEADER FROM HTML_STREAM --- */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: white;
    border-bottom: 2px solid #dee2e6;
    /* Cleaner border like original */
    padding: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    /* Exact height from html_stream */
}

.logo-img {
    height: 80px;
    /* Exact size from html_stream */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    color: #495057;
    /* Exact color from html_stream */
    text-decoration: none;
    font-weight: 400;
    font-size: 1.25rem;
    /* Exact size from html_stream */
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #6c757d;
    /* Secondary color for bar as in html_stream */
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* --- PREMIUM CENTERED HERO (HELLGRAU) --- */
.hero {
    background: var(--hellgrau);
    padding: 12rem 0;
    text-align: center;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

/* Subtle dot pattern for visual depth without gradients */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary) 1.5px, transparent 1.5px);
    background-size: 35px 35px;
    opacity: 0.08;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 0.9;
    letter-spacing: -3px;
    transition: transform 0.5s ease;
}

.hero-title:hover {
    transform: scale(1.02);
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    letter-spacing: -1.5px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.45rem;
    color: var(--text-muted);
    max-width: 850px;
    margin: 0 auto 5rem;
    line-height: 1.5;
    /* Improved flow */
    font-weight: 400;
}

/* --- SPECIALTIES GRID (SOLID CONTENT BLUE) --- */
.job-section {
    padding: 10rem 0;
    background: var(--bg-content);
    /* Solid blue content */
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1.5rem;
}

.section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.job-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 3.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
}

.job-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.card-icon {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 2rem;
}

.job-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: white;
}

.job-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 154, 201, 0.2);
}

.btn-primary i {
    margin-left: 1.25rem;
    /* Better space between text and magnifying glass */
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 154, 201, 0.4);
}

footer {
    padding: 6rem 0;
    background: var(--hellgrau);
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid #dee2e6;
}

@media (max-width: 1200px) {
    .job-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .job-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding: 6rem 0;
    }

    .hero-title {
        font-size: 3.5rem;
        /* Better fit for mobile */
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }
}

/* --- ACCESSIBILITY --- */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}