/* 502 Wash & Seal — minimal, clean, responsive */
:root {
  --primary: #1e66ff;
  --primary-dark: #0f3fa8;
  --bg: #ffffff;
  --text: #0f172a;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji';
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.wrap { max-width: 1100px; margin: 0 auto; padding: 1.25rem; }
.wrap.narrow { max-width: 720px; }

.site-header { border-bottom: 1px solid #e5e7eb; background: #fff; position: sticky; top: 0; z-index: 20; }
.site-header .wrap { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; }
.logo { height: 56px; width: auto; }
.brand h1 { margin: 0; font-size: 1.5rem; }
.tagline { margin: 0; color: var(--primary-dark); font-weight: 600; font-size: .9rem; letter-spacing: .02em; }

.cta { display: flex; gap: .75rem; align-items: center; }
.cta .tel { text-decoration: none; color: var(--primary-dark); font-weight: 600; }

.hero { background: linear-gradient(180deg, rgba(30,102,255,.08), rgba(30,102,255,0)); }
.hero .hero-text { text-align: left; padding: 3rem 0; }
.hero h2 { font-size: clamp(1.6rem, 2.5vw + 1rem, 2.6rem); margin: 0 0 .5rem; }
.hero p { margin-top: 0; color: #334155; }
.badges { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; gap: .5rem; flex-wrap: wrap; }
.badges li { background: #eef2ff; color: var(--primary-dark); border: 1px solid rgba(30,102,255,.25); padding: .4rem .6rem; border-radius: 999px; font-weight: 600; font-size: .85rem; }

.features .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card { border: 1px solid #e5e7eb; border-radius: 16px; padding: 1rem; background: #fff; }
.card h3 { margin-top: 0; }

.quote { background: #fff; border-top: 1px solid #e5e7eb; }
.quote h2 { margin-bottom: .25rem; }
.quote p { margin-top: 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.grid-2 label { display: block; font-weight: 600; }
label input, label textarea { width: 100%; padding: .75rem; border: 1px solid #cbd5e1; border-radius: 12px; font-family: inherit; }
label textarea { resize: vertical; }
.hidden { display: none; }

.checkboxes { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .25rem 1rem; margin-top: .5rem; }
.checkboxes label { font-weight: 500; }

.btn { display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 999px; padding: .75rem 1.1rem; text-decoration: none; font-weight: 700; cursor: pointer; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: #fff; border-color: var(--primary); color: var(--primary-dark); }
.btn-secondary:hover { background: #eef2ff; }

.privacy { color: #64748b; font-size: .9rem; }

.site-footer { border-top: 1px solid #e5e7eb; background: #f8fafc; }
.site-footer p { margin: .25rem 0; }
.tiny { color: #64748b; font-size: .85rem; }

@media (max-width: 820px) {
  .features .grid { grid-template-columns: 1fr; }
  .site-header .wrap { grid-template-columns: auto 1fr; }
  .cta { margin-top: .25rem; justify-self: end; }
  .grid-2 { grid-template-columns: 1fr; }
}
