:root {
    --bg: #050607;
    --panel: #0d0f12;
    --line: #23262b;
    --text: #ffffff;
    --muted: #bfc5ce;
    --accent: #ffd400;
    --deep-blue: #0e2a63;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    color: var(--text);
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #020304;
    border-bottom: 1px solid #111;
}

.site-header .inner {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo { font-weight: 800; letter-spacing: 0.08em; }
.logo small { display: block; font-size: .75rem; letter-spacing: 0.2em; color: var(--muted); }
.logo-image { display: block; max-height: 98px; max-width: 430px; object-fit: contain; }

.nav {
    display: flex;
    gap: 1.3rem;
    align-items: center;
}

.nav a { font-weight: 600; font-size: .95rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: var(--accent);
    color: #111;
    padding: .75rem 1.2rem;
    font-weight: 700;
    cursor: pointer;
}

.hero {
    min-height: 420px;
    background-position: center;
    background-size: cover;
    position: relative;
    border-bottom: 1px solid #101113;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,.35), rgba(0,0,0,.85));
}

.hero-content {
    position: relative;
    z-index: 1;
    min-height: 420px;
    display: grid;
    place-content: center;
    text-align: center;
    gap: 1rem;
}

.hero-title-image { max-width: min(720px, 95%); margin: 0 auto; }
.hero h1 { margin: 0; font-size: clamp(1.9rem, 4.5vw, 3rem); }
.hero p { margin: 0; color: #f2f2f2; font-weight: 600; }

.notice {
    border: 1px solid #453b00;
    background: #1a1604;
    color: #ffe37d;
    padding: .9rem 1rem;
    margin: 1.2rem 0;
}

.section-title { margin: 2rem 0 1rem; font-size: 1.2rem; }

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-card {
    background: linear-gradient(160deg, #0d0f13 0%, #090b0d 100%);
    border: 1px solid var(--line);
    min-height: 110px;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 1rem;
}

.service-card span { font-size: 1.35rem; color: var(--accent); margin-bottom: .4rem; display: block; }
.service-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.stats-band {
    background: var(--accent);
    color: #111;
    border-radius: 8px;
    padding: 1.1rem;
    margin: 1.8rem 0;
}

.stats-band h2 { margin: 0 0 1rem; text-align: center; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .8rem;
}

.stat-card {
    background: var(--deep-blue);
    border-radius: 8px;
    text-align: center;
    color: #fff;
    padding: 1rem;
}

.stat-card strong { display: block; font-size: 1.9rem; }

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 1rem;
    margin: 1.8rem 0;
}

.info-card {
    background: var(--accent);
    color: #111;
    border-radius: 8px;
    padding: 1rem;
}

.info-card h3 { margin-top: 0; }
.info-card .btn { width: 100%; margin-top: .6rem; }

.form-look {
    background: var(--deep-blue);
    color: #fff;
}

.teaser-strip {
    position: relative;
    min-height: 210px;
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.teaser-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.15), rgba(0,0,0,.75));
}

.teaser-text {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    max-width: 520px;
    background: rgba(0,0,0,.6);
    padding: 1rem;
}

.about-section { text-align: center; margin-bottom: 2rem; }
.about-section p { color: var(--muted); max-width: 900px; margin: 0 auto; }

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    padding: 1rem;
}

.card h3 { margin-top: 0; }
.card p { color: var(--muted); }

label { display: block; margin-top: .7rem; font-weight: 700; }
input, textarea, select {
    width: 100%;
    background: #0a0d11;
    border: 1px solid #252a30;
    color: #fff;
    padding: .62rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #0a0d11;
}

th, td {
    border: 1px solid #1e2227;
    padding: .6rem;
    text-align: left;
}

.alert {
    background: #122035;
    border: 1px solid #203a61;
    padding: .7rem;
    margin: .8rem 0;
}

.site-footer {
    border-top: 1px solid #111317;
    background: #040506;
    margin-top: 2rem;
}

.site-footer .inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1rem;
    padding: 1.2rem 0;
}

.site-footer p { margin: 0; color: #f5f5f5; line-height: 1.45; }
.site-footer a { color: #e9f8ff; }

@media (max-width: 980px) {
    .site-header .inner { flex-wrap: wrap; justify-content: center; padding: .6rem 0; }
    .service-grid, .stats-grid, .info-grid { grid-template-columns: 1fr; }
    .site-footer .inner { grid-template-columns: 1fr; }
}
