:root{
  --green: #00B94F;
  --green-dark: #008525;
  --ink: #0f172a;
  --muted: #475569;
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(15,23,42,.08);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji"; color:var(--ink); background:var(--bg); }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }
img{ max-width:100%; height:auto; display:block; }
.container{ width:min(1100px, 92vw); margin:0 auto; }

.skip-link{ position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus{ left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#fff; border:1px solid var(--border); border-radius:12px; z-index:9999; }

.site-header{ position:sticky; top:0; z-index:50; background:rgba(248,250,252,.85); backdrop-filter: blur(10px); border-bottom:1px solid var(--border); }
.header-inner{ display:flex; gap:16px; align-items:center; padding:12px 0; }
.brand{ display:flex; gap:12px; align-items:center; min-width: 240px; }
.brand-logo{ width:44px; height:44px; border-radius:999px; border:1px solid var(--border); box-shadow: 0 6px 16px rgba(15,23,42,.08); background:#fff; }
.brand-name{ font-weight:900; letter-spacing:.2px; line-height:1.1; }
.brand-tagline{ font-size:12px; color:var(--muted); margin-top:2px; }

.site-nav{ margin-left:auto; display:flex; gap:12px; align-items:center; }
.site-nav a{ padding:10px 12px; border-radius:999px; color:var(--muted); font-weight:600; }
.site-nav a.active{ background:rgba(0,185,79,.12); color:var(--green-dark); text-decoration:none; }
.site-nav a:hover{ background:#fff; text-decoration:none; }

.call-cta{ margin-left:8px; padding:10px 14px; border-radius:999px; background:var(--green); color:#fff; font-weight:800; box-shadow: var(--shadow); white-space:nowrap; }
.call-cta:hover{ filter:brightness(.95); text-decoration:none; }

.nav-toggle{ display:none; margin-left:auto; background:#fff; border:1px solid var(--border); border-radius:14px; padding:10px; box-shadow: var(--shadow); }
.nav-toggle span{ display:block; width:22px; height:2px; background:var(--ink); margin:4px 0; border-radius:999px; }

@media (max-width: 860px){
  .nav-toggle{ display:block; }
  .site-nav{ display:none; position:absolute; left:0; right:0; top:72px; background:#fff; border-bottom:1px solid var(--border); padding:10px 4vw; flex-direction:column; align-items:stretch; gap:6px; }
  .site-nav.open{ display:flex; }
  .site-nav a{ border-radius:12px; }
  .call-cta{ display:none; }
  .brand{ min-width:unset; }
}

.hero{ padding:34px 0 26px; }
.hero-grid{ display:grid; grid-template-columns: 1.2fr .8fr; gap:22px; align-items:stretch; }
@media (max-width: 960px){ .hero-grid{ grid-template-columns:1fr; } }

.card{ background:var(--card); border:1px solid var(--border); border-radius:var(--radius); box-shadow: var(--shadow); }
.card-pad{ padding:22px; }
.badge{ display:inline-flex; align-items:center; gap:8px; font-weight:800; color:var(--green-dark); background:rgba(0,185,79,.12); border:1px solid rgba(0,185,79,.22); padding:7px 10px; border-radius:999px; }
.h1{ font-size:42px; line-height:1.05; letter-spacing:-.5px; margin:12px 0 10px; }
.lead{ font-size:16px; color:var(--muted); line-height:1.6; margin:0 0 14px; }
.hero-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:12px 14px; border-radius:14px; font-weight:800; border:1px solid var(--border); background:#fff; }
.btn-primary{ background:var(--green); border-color: transparent; color:#fff; }
.btn:hover{ text-decoration:none; filter:brightness(.98); }
.kicker{ font-weight:800; color:var(--muted); font-size:12px; letter-spacing:.12em; text-transform:uppercase; }

.hero-media{ overflow:hidden; position:relative; }
.hero-media img{ width:100%; height:100%; object-fit:cover; min-height:280px; }
.hero-media::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(15,23,42,.08), rgba(15,23,42,.10)); }

.section{ padding:22px 0 10px; }
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.grid-2{ display:grid; grid-template-columns: repeat(2, 1fr); gap:16px; }
@media (max-width: 900px){ .grid-3{ grid-template-columns:1fr; } .grid-2{ grid-template-columns:1fr; } }

.service-card h3{ margin:10px 0 6px; font-size:18px; }
.service-card p{ margin:0; color:var(--muted); line-height:1.55; }
.service-card img{ border-radius:16px; border:1px solid var(--border); height:170px; width:100%; object-fit:cover; }

.pill{ display:inline-block; padding:6px 10px; border-radius:999px; background:#fff; border:1px solid var(--border); color:var(--muted); font-weight:700; font-size:12px; }

.content h1{ margin:0 0 8px; font-size:30px; }
.content h2{ margin:24px 0 8px; font-size:20px; }
.content p, .content li{ color:var(--muted); line-height:1.7; }
.content ul{ padding-left:18px; }

.form{ display:grid; gap:12px; }
.field label{ display:block; font-weight:800; margin-bottom:6px; }
.field input, .field textarea, .field select{ width:100%; padding:12px 12px; border:1px solid var(--border); border-radius:14px; background:#fff; font:inherit; }
.field textarea{ min-height:140px; resize:vertical; }
.notice{ padding:12px 14px; border-radius:14px; border:1px solid var(--border); background:#fff; }
.notice.ok{ border-color: rgba(0,185,79,.28); background: rgba(0,185,79,.08); }
.notice.bad{ border-color: rgba(220,38,38,.28); background: rgba(220,38,38,.06); }

.site-footer{ margin-top:34px; background:#0b1220; color:#e2e8f0; }
.footer-grid{ display:grid; grid-template-columns: 1.2fr .8fr .8fr; gap:18px; padding:26px 0; }
.footer-title{ font-weight:900; margin-bottom:8px; }
.footer-muted{ color:#cbd5e1; line-height:1.6; margin:4px 0; }
.footer-links{ list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.footer-links a{ color:#e2e8f0; }
.footer-links a:hover{ text-decoration:underline; }
.footer-bottom{ border-top:1px solid rgba(226,232,240,.14); padding:14px 0 22px; display:flex; justify-content:space-between; gap:12px; align-items:center; color:#cbd5e1; flex-wrap:wrap; }
.staff-link{ color:#cbd5e1; opacity:.9; font-weight:700; }
.staff-link:hover{ opacity:1; text-decoration:underline; }

.table{ width:100%; border-collapse:separate; border-spacing:0; background:#fff; border:1px solid var(--border); border-radius:16px; overflow:hidden; }
.table th, .table td{ padding:12px 12px; border-bottom:1px solid var(--border); text-align:left; }
.table th{ background:rgba(0,185,79,.10); color:var(--green-dark); font-weight:900; }
.table tr:last-child td{ border-bottom:none; }

.small{ font-size:12px; color:var(--muted); }

.coverage-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 25px;
}

.coverage-map {
    max-width: 1000px;
    margin: 0 auto 40px;
}

.coverage-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}