
:root {
  --bg: #ffffff;
  --text: #0b1220;
  --muted: #64748b;
  --line: #e2e8f0;
  --brand: #0F172A;
  --accent: #16A34A;
  --accent-2: #F59E0B;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: var(--text); background: var(--bg); }
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }

.site-header { position: sticky; top: 0; z-index: 50; background: var(--bg); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 1rem; }
.brand, .brand-alt { font-weight: 800; color: var(--brand); text-decoration: none; }
.brand-mark { background: var(--accent-2); color: #111827; padding: .15rem .4rem; border-radius: .4rem; margin-right: .4rem; }
.nav a { margin-left: 1rem; font-weight: 600; color: var(--text); }
.cta-emergency { color: #fff; background: var(--accent-2); padding: .5rem .8rem; border-radius: .6rem; }
.nav-toggle { display: none; background: transparent; border: 1px solid var(--line); padding: .4rem .6rem; border-radius: .5rem; }

@media (max-width: 800px) {
  .nav-toggle { display: inline-block; }
  .nav { position: absolute; right: 1rem; top: 64px; background: var(--bg); border: 1px solid var(--line); border-radius: .6rem; padding: .75rem; display: none; }
  .nav a { display: block; margin: .4rem 0; }
}

.site-footer { background: #0f172a; color: #e2e8f0; margin-top: 3rem; }
.site-footer a { color: #e2e8f0; }
.footer-grid { display: grid; gap: 1.5rem; grid-template-columns: 2fr 1fr 1fr; padding: 2rem 0; }
.footer-bottom { border-top: 1px solid #1f2937; padding: 1rem 0; display: flex; gap: 1rem; justify-content: space-between; font-size: .9rem; }
.list { list-style: none; padding: 0; margin: 0; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; } }

.hero { background: linear-gradient(180deg, #f8fafc 0%, #fff 100%); border-bottom: 1px solid var(--line); }
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center; padding: 2rem 0; }
.hero-copy h1 { font-size: clamp(1.8rem, 2.5vw, 3rem); margin: 0 0 1rem; }
.actions { display: flex; gap: .75rem; margin: 1rem 0; }
.trust-points { display: flex; gap: 1rem; padding: 0; margin: 1rem 0 0; list-style: none; color: var(--muted); font-weight: 600; }
.hero-art { position: relative; }
.hero-art .badge { position: absolute; top: .5rem; left: .5rem; background: var(--accent-2); color: #111827; padding: .4rem .6rem; font-weight: 800; border-radius: .5rem; }

.grid-features { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; padding: 2rem 0; }
.card { border: 1px solid var(--line); border-radius: .8rem; padding: 1rem; background: #fff; }
.card.highlight { background: #f8fafc; border-color: #dbeafe; }

@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } .grid-features { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .grid-features { grid-template-columns: 1fr; } }

.btn { display: inline-block; background: var(--brand); color: #fff; padding: .65rem 1rem; border-radius: .7rem; font-weight: 700; border: none; }
.btn:hover { opacity: .95; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--brand); border: 1px solid var(--brand); }
.btn-accent { background: var(--accent); }
.cta-band { background: #0b1220; color: #e2e8f0; margin: 2rem 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; }
@media (max-width: 700px) { .cta-band-inner { flex-direction: column; align-items: start; } }

.two-col { display: grid; gap: 2rem; grid-template-columns: 1fr 1.2fr; align-items: start; margin: 2rem 0; }
.masonry { columns: 2; column-gap: 1rem; }
.masonry img { margin-bottom: 1rem; border-radius: .6rem; border: 1px solid var(--line); }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } .masonry { columns: 1; } }

.prose { padding: 2rem 0; }
.services .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.services .service-grid section { border: 1px solid var(--line); border-radius: .8rem; padding: 1rem; }
.services .service-grid section.highlight { border-color: #86efac; background: #f0fdf4; }
@media (max-width: 900px) { .services .service-grid { grid-template-columns: 1fr; } }

.callout { border: 2px dashed var(--accent); border-radius: .8rem; padding: 1rem; background: #f8fffb; }
.form { display: grid; gap: .9rem; }
.field label { display: block; font-weight: 700; margin-bottom: .25rem; }
input, textarea, select { width: 100%; padding: .65rem .7rem; border-radius: .6rem; border: 1px solid var(--line); font: inherit; }

.note { margin-top: 1rem; color: var(--muted); font-size: .95rem; }
