/* ==========================================================
   DustCollectorInspection.ca — light, clean, mobile-first
   ========================================================== */

:root{
  --bg:#ffffff;
  --ink:#0f172a;              /* near-black */
  --muted:rgba(15,23,42,.70);
  --line:rgba(15,23,42,.10);
  --card:#ffffff;
  --soft:#f6f8fc;
  --accent:#1f6fd1;           /* logo blue-ish */
  --accent2:#3c93ff;
  --radius:16px;
  --max:1120px;
  --shadow: 0 18px 55px rgba(2,6,23,.10);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 650px at 15% 0%, rgba(31,111,209,.10), transparent 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(60,147,255,.08), transparent 60%),
    var(--bg);
  color:var(--ink);
  line-height:1.55;
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:18px; top:18px; width:auto; height:auto; padding:10px 12px;
  background:#000; color:#fff; border-radius:10px; z-index:9999;
}

/* Header should blend into white (no visible border) */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}

/* BIG logo on mobile (as requested) */
.brand-logo{
  height:72px;
  width:auto;
  object-fit:contain;
}

/* Simple nav: wraps (no hamburger) */
.nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  font-size:14px;
  color:rgba(15,23,42,.88);
  padding:10px 10px;
  border-radius:12px;
}
.nav a:not(.btn):hover{
  background: rgba(15,23,42,.05);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
}
.btn-primary{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color:#ffffff;
  box-shadow: 0 14px 30px rgba(31,111,209,.22);
}
.btn-ghost{
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.10);
  color: var(--ink);
}

/* Hero */
.hero{padding:34px 0 6px}
.hero-grid{
  display:grid;
  gap:18px;
}
.kicker{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(31,111,209,.08);
  border:1px solid rgba(31,111,209,.12);
  color: rgba(15,23,42,.86);
  font-weight:800;
  font-size:13px;
}
h1{
  margin:12px 0 10px;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height:1.1;
  letter-spacing:-0.02em;
}
.lead{
  margin:0 0 14px;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--muted);
}
.bullets{margin:0; padding-left:18px; color: rgba(15,23,42,.82)}
.bullets li{margin:6px 0}

.cta{display:flex; gap:10px; flex-wrap:wrap; margin:16px 0 10px}
.subtle{margin:0; color: rgba(15,23,42,.60); font-size:13px}

/* Cards */
.hero-card, .tile, .pricecard, .pricebox, .form, .faq details, .contactbox{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.hero-card h2{margin:0 0 6px; font-size:18px}

.muted{color:var(--muted)}
.tiny{font-size:13px}

.check{
  list-style:none;
  padding:0; margin:12px 0 0;
}
.check li{
  position:relative;
  padding-left:26px;
  margin:10px 0;
  color: rgba(15,23,42,.84);
}
.check li:before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  color: var(--accent);
  font-weight:900;
}

.card-note{
  margin-top:14px;
  padding:12px 12px;
  border-radius:14px;
  background: rgba(15,23,42,.03);
  border:1px solid rgba(15,23,42,.08);
  color: rgba(15,23,42,.78);
}

/* Sections */
.section{padding:54px 0}
.section.alt{
  background: var(--soft);
}
.section h2{
  font-size: clamp(24px, 2.6vw, 34px);
  margin:0 0 10px;
  letter-spacing:-0.02em;
}
.section-lead{
  margin:0 0 18px;
  max-width: 72ch;
  color: var(--muted);
}

.grid3{display:grid; grid-template-columns: 1fr; gap:14px}
.grid2{display:grid; grid-template-columns: 1fr; gap:14px}
.mt{margin-top:14px}

.tile h3{margin:0 0 8px; font-size:18px}
.tile p{margin:0 0 8px}
.tile p:last-child{margin:0}

.callout{
  margin-top:18px;
  background: rgba(31,111,209,.06);
  border: 1px solid rgba(31,111,209,.12);
  border-radius: var(--radius);
  padding:18px;
}
.callout h3{margin:0 0 10px}

.pricecard.featured{
  border-color: rgba(31,111,209,.28);
  box-shadow: 0 22px 60px rgba(31,111,209,.14);
}
.badge{
  display:inline-block;
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(31,111,209,.10);
  border:1px solid rgba(31,111,209,.18);
  color: rgba(15,23,42,.86);
  margin-bottom:10px;
}
.price{margin:10px 0 12px; font-size:16px}
.price strong{font-size:20px}

/* FAQ */
.faq summary{cursor:pointer; font-weight:900}
.panel{padding-top:10px; color: var(--muted)}

/* Form */
label{display:block; margin: 10px 0; font-weight:800}
input, textarea{
  margin-top:8px;
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.12);
  background: #ffffff;
  color: var(--ink);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(31,111,209,.40)}

.steps{margin: 10px 0 0; padding-left: 18px; color: rgba(15,23,42,.80)}
.steps li{margin:10px 0}

.contact a{color: rgba(31,111,209,1); text-decoration: underline}

/* Footer */
.footer{
  border-top:1px solid rgba(15,23,42,.08);
  padding:22px 0;
  background:#ffffff;
}
.foot{
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:flex-start;
}
.footnav{display:flex; gap:12px; flex-wrap:wrap}
.footnav a{
  padding:8px 10px;
  border-radius:12px;
  background: rgba(15,23,42,.03);
  border:1px solid rgba(15,23,42,.08);
}

/* Desktop */
@media (min-width: 880px){
  .brand-logo{height:86px}
  .hero{padding:54px 0 8px}
  .hero-grid{
    grid-template-columns: 1.25fr .85fr;
    align-items:start;
    gap:18px;
  }
  .grid3{grid-template-columns: repeat(3, 1fr)}
  .grid2{grid-template-columns: repeat(2, 1fr)}
  .foot{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
  }
}

/* Very small screens */
@media (max-width: 420px){
  .header-inner{align-items:flex-start}
  .nav{justify-content:flex-start}
  .brand-logo{height:92px} /* extra big on small screens */
  .nav a{padding:8px 8px}
}

/* ==========================================================
   Logo Center + Larger
   ========================================================== */

/* Stack header content vertically */
.header-inner {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 18px;
  padding-bottom: 10px;
}

/* Center nav under logo */
.nav {
  justify-content: center;
}

/* Make logo larger */
.brand-logo {
  height: 120px;   /* default */
  max-width: 100%;
}

/* Extra large on very small screens */
@media (max-width: 480px) {
  .brand-logo {
    height: 140px;
  }
}

/* Desktop adjustment */
@media (min-width: 880px) {
  .brand-logo {
    height: 130px;
  }
}


/* ==========================================================
   Service Area section tweaks
   ========================================================== */

#service-area .tile h3{
  margin-top: 0;
}

#service-area .bullets{
  margin: 10px 0 0;
  padding-left: 18px;
}

#service-area .bullets li{
  margin: 8px 0;
}



