:root {
    --ink: #10231f;
    --muted: #66746f;
    --line: #d9e5df;
    --green: #15803d;
    --green-dark: #0f5f31;
    --mint: #e9f8ef;
    --cream: #f7faf4;
    --white: #fff;
    --danger: #b42318;
    --gold: #f2c14e;
    --sky: #dff3f5;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--cream);
}
a { color: inherit; }
.site-header {
    min-height: 72px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 10;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
}
.brand span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: inset 8px -4px 0 #93d7a5;
}
nav { display: flex; gap: 8px; align-items: center; }
nav a {
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--muted);
}
nav a.active, nav a:hover { background: var(--mint); color: var(--green-dark); }
main { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 34px 0 60px; }
.home-hero {
    position: relative;
    min-height: min(680px, calc(100vh - 124px));
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    padding: clamp(32px, 7vw, 72px);
    color: white;
    background:
        linear-gradient(90deg, rgba(9, 42, 34, .94), rgba(9, 42, 34, .78) 48%, rgba(9, 42, 34, .25)),
        linear-gradient(135deg, #0d3d2d 0%, #167545 45%, #d6f5e1 100%);
    box-shadow: 0 24px 70px rgba(16, 35, 31, .14);
}
.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, transparent 0 52%, rgba(255,255,255,.22) 52% 53%, transparent 53%),
        repeating-linear-gradient(112deg, rgba(255,255,255,.12) 0 2px, transparent 2px 44px);
    opacity: .55;
}
.home-hero::after {
    content: "";
    position: absolute;
    right: clamp(18px, 7vw, 90px);
    bottom: clamp(18px, 6vw, 60px);
    width: min(430px, 42vw);
    aspect-ratio: 1.25;
    border-radius: 8px;
    background:
        linear-gradient(145deg, #163a4a 0 45%, #0f2d3b 45% 100%);
    box-shadow:
        0 30px 80px rgba(0,0,0,.25),
        inset 0 0 0 10px rgba(255,255,255,.12);
    clip-path: polygon(8% 40%, 50% 8%, 92% 40%, 92% 88%, 8% 88%);
}
.home-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 650px;
}
.eyebrow {
    display: inline-block;
    color: #b9f6d1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .9px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.home-hero h1 {
    font-size: clamp(42px, 7vw, 78px);
    line-height: .96;
    margin: 0 0 20px;
    letter-spacing: 0;
}
.home-hero p, .lead { color: rgba(255,255,255,.86); font-size: 19px; line-height: 1.6; }
.home-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.home-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.home-trust-row span {
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    background: rgba(255,255,255,.11);
    font-size: 13px;
    font-weight: 700;
}
.home-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: 18px;
    margin-top: 22px;
}
.home-quick-panel,
.home-status-panel,
.home-steps {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 18px 50px rgba(16, 35, 31, .06);
}
.home-quick-panel .eyebrow,
.home-steps .eyebrow {
    color: var(--green-dark);
}
.home-quick-panel h2,
.home-status-panel h2,
.home-steps h2 {
    margin: 0 0 16px;
    font-size: clamp(25px, 3vw, 36px);
}
.home-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.home-service-card {
    min-height: 122px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, #f0fbf5);
    text-decoration: none;
}
.home-service-card strong {
    font-size: 17px;
}
.home-service-card span,
.home-status-panel p,
.home-step-grid p {
    color: var(--muted);
    line-height: 1.5;
}
.home-status-panel {
    display: grid;
    align-content: center;
    gap: 14px;
    background: linear-gradient(180deg, #fff, #eef9f1);
}
.home-steps {
    margin-top: 22px;
}
.home-step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.home-step-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    background: #fbfefc;
}
.home-step-grid article span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-weight: 800;
}
.home-step-grid h3 {
    margin: 15px 0 8px;
}
.hero-panel, .panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 18px 50px rgba(16, 35, 31, .08);
}
.hero-panel h2, .panel h2, .panel h3 { margin-top: 0; }
.actions, .toolbar { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn, button {
    border: 0;
    background: var(--green);
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.home-hero .btn {
    background: #fff;
    color: var(--green-dark);
}
.home-hero .btn.secondary {
    background: rgba(255,255,255,.16);
    color: white;
    border: 1px solid rgba(255,255,255,.35);
}
.btn.secondary, button.secondary { background: #eef4f0; color: var(--ink); }
.btn.danger, button.danger { background: var(--danger); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-row { display: grid; gap: 7px; margin-bottom: 16px; }
label { font-weight: 700; }
input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 12px;
    font: inherit;
    background: white;
}
textarea { min-height: 130px; resize: vertical; }
.muted { color: var(--muted); }
.alert {
    padding: 14px 16px;
    border-radius: 6px;
    margin-bottom: 18px;
    background: var(--mint);
    color: var(--green-dark);
}
.alert.error { background: #fff1f0; color: var(--danger); }
.job-list { display: grid; gap: 14px; }
.job-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    text-decoration: none;
}
.badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--mint);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 700;
}
.site-footer {
    border-top: 1px solid var(--line);
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    background: white;
}
@media (max-width: 760px) {
    .site-header, .site-footer { padding: 18px; align-items: flex-start; flex-direction: column; gap: 14px; }
    nav { flex-wrap: wrap; }
    .home-hero { min-height: auto; padding: 34px 22px; }
    .home-hero::after { opacity: .18; width: 70vw; }
    .home-intro-grid, .home-service-grid, .home-step-grid, .form-grid { grid-template-columns: 1fr; }
    .job-card { grid-template-columns: 1fr; }
}
