/* Local SEO site generator — Colorado Springs Leveling-inspired theme
   Cyan #0891b2 primary, green #22c55e trust, orange #f97316 secondary,
   Public Sans, light #f8fafc body, dark hero with overlay. Mobile-first. */
:root {
  --primary: #0891b2;
  --primary-dark: #0e7490;
  --primary-light: #22d3ee;
  --accent: #22c55e;
  --secondary: #f97316;
  --tint: #e0f2fe;
  --glow: rgba(8, 145, 178, .35);
  --on-primary: #cffafe;
  --chip: rgba(8, 145, 178, .10);
  --ink: #0d141b;
  --muted: #64748b;
  --bg: #f8fafc;
  --surface: #ffffff;
  --border: #e2e8f0;
  --overlay: rgba(13, 20, 27, .74);
  --shadow: 0 6px 24px rgba(13, 20, 27, .10);
  --radius: 14px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font: 16px/1.65 "Public Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: "Public Sans", system-ui, sans-serif; color: var(--ink); line-height: 1.2; }
a { color: var(--primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ── topbar ── */
.topbar {
  display: flex; justify-content: center; align-items: center;
  background: var(--ink); color: #cbd5e1;
  font-size: 13.5px; padding: 7px 16px; gap: 10px;
  flex-wrap: wrap; text-align: center;
}
.topbar .badge { color: #fff; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }
.topbar .badge b { color: var(--accent); }
.topbar .telfix { color: #fff; font-weight: 700; white-space: nowrap; }
.topbar .telfix:hover { color: var(--primary-light); }

/* ── nav ── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; background: #fff; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50; gap: 10px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; color: var(--ink); letter-spacing: .2px; }
.logo:hover { text-decoration: none; }
.logo em { font-style: normal; color: var(--primary); }
.logomark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  box-shadow: 0 2px 8px var(--glow);
}
.logomark svg { width: 22px; height: 22px; }
.logomark img { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; }
/* real logo image (factsheet "logo") — contains the brand name, so let it size naturally.
   Big at top (80px), shrinks to 44px on scroll (.nav.scrolled toggled by inline JS). */
.logo .logomark-img { width: auto; height: 80px; border-radius: 0; background: none; box-shadow: none; transition: height .25s ease; }
.logo .logomark-img img { width: auto; height: 100%; border-radius: 0; }
.nav { transition: padding .25s ease, box-shadow .25s ease; }
.nav.scrolled { padding-top: 6px; padding-bottom: 6px; box-shadow: 0 3px 14px rgba(13,20,27,.14); }
.nav.scrolled .logo .logomark-img { height: 44px; }
@media (max-width: 700px) { .logo .logomark-img { height: 56px; } .nav.scrolled .logo .logomark-img { height: 34px; } }
.links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.links > a, .ddbtn {
  display: inline-block; padding: 8px 12px; color: var(--ink);
  font-weight: 600; font-size: 15px; border-radius: 8px;
}
.links > a:hover, .ddbtn:hover, .links > a.active { color: var(--primary-dark); background: var(--tint); text-decoration: none; }
.drop { position: relative; }
.dd {
  display: none; position: absolute; top: 100%; left: 0; min-width: 260px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow); padding: 8px; z-index: 60;
}
.dd a { display: block; padding: 9px 12px; font-size: 14.5px; color: var(--ink); border-radius: 8px; }
.dd a:hover { background: var(--tint); color: var(--primary-dark); text-decoration: none; }
.dd .ddhead { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); padding: 6px 12px 4px; }
.drop:hover .dd, .drop:focus-within .dd { display: block; }
.cta {
  background: var(--primary); color: #fff !important; font-weight: 700;
  padding: 10px 18px; border-radius: 10px; font-size: 15px; white-space: nowrap;
  box-shadow: 0 2px 8px var(--glow);
}
.cta:hover { background: var(--primary-dark); text-decoration: none; }
.burger { display: none; color: var(--ink); cursor: pointer; padding: 2px 6px; border-radius: 6px; }
.burger svg { width: 26px; height: 26px; display: block; }
.burger:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
#burger { display: none; }

/* ── layout ── */
main { max-width: 1280px; margin: 0 auto; padding: 0 16px 48px; }
.crumbs { font-size: 13px; color: var(--muted); padding: 14px 0 6px; }
.crumbs a { color: var(--muted); }

/* ── dark hero ── */
.hero {
  position: relative; border-radius: 0 0 22px 22px; overflow: hidden;
  color: #fff; padding: 96px 16px 88px; margin: 0 -16px;
  min-height: 520px; display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.hero .heroimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 0; max-width: none; }
.hero:after { content: ""; position: absolute; inset: 0; background: rgba(13, 20, 27, .82); z-index: 1; }
.hero > * { position: relative; z-index: 2; max-width: 720px; margin-left: 0; }
.hero h1 { color: #fff; font-size: 46px; margin-bottom: 12px; }
.hero h1 em { font-style: normal; color: var(--primary-light); }
.hero .lede { color: #e2e8f0; font-size: 18px; max-width: 60ch; margin-bottom: 8px; }
.hero .badge {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(13, 20, 27, .55);
  border: 1px solid rgba(255,255,255,.35); border-radius: 999px;
  padding: 7px 16px; font-size: 13.5px; font-weight: 700; color: #fff; margin-bottom: 16px;
}
.hero .badge b { color: var(--accent); }
.hero .ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero .ctas .cta, .hero .ctas .btn2 { margin: 0; }
.hero .trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.hero .trust span {
  background: rgba(13, 20, 27, .55); border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px; padding: 7px 14px; font-size: 13.5px; font-weight: 600; color: #fff;
  white-space: nowrap;
}
.hero .trust b { color: var(--accent); margin-right: 5px; }
.hero .trust .badge { margin-bottom: 0; }
.btn2 {
  display: inline-block;
  border: 2px solid #fff; color: #fff !important; font-weight: 700;
  padding: 12px 22px; border-radius: 10px; font-size: 15.5px;
}
.btn2:hover { background: rgba(255,255,255,.15); text-decoration: none; }

/* ── content ── */
.content { padding-top: 8px; }
.content h2 { font-size: 28px; margin: 34px 0 14px; }
.content h3 { font-size: 19px; margin: 22px 0 8px; }
.content p { margin-bottom: 14px; max-width: 78ch; color: #334155; }
.content ul, .content ol { margin: 0 0 16px 22px; }
.content li { margin-bottom: 6px; }
.content strong { color: var(--ink); }
.content table { border-collapse: collapse; width: 100%; margin: 14px 0; font-size: 15px; background: #fff; border-radius: 10px; overflow: hidden; }
.content th, .content td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.content th { background: var(--tint); font-weight: 700; }

/* ── sections ── */
.section { margin: 44px 0; }
.section h2 { text-align: center; font-size: 30px; }
.section .sub { text-align: center; color: var(--muted); max-width: 60ch; margin: 0 auto 24px; }

/* why choose: two columns */
.whychoose { display: grid; gap: 22px; align-items: center; margin: 40px 0; }
.whychoose .col { min-width: 0; }
.wc-card {
  display: flex; gap: 14px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; margin-bottom: 14px;
}
.wc-card .ic {
  flex: 0 0 44px; height: 44px; border-radius: 50%; background: var(--tint);
  display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary-dark);
}
.wc-card h3 { font-size: 17px; margin-bottom: 2px; }
.wc-card p { font-size: 14.5px; color: var(--muted); margin: 0; }
.wc-photo { position: relative; border-radius: var(--radius); overflow: hidden; }
.wc-photo img { width: 100%; display: block; }
.wc-stat {
  position: absolute; right: 16px; bottom: 16px; background: var(--primary);
  color: #fff; border-radius: 10px; padding: 12px 20px; text-align: center;
}
.wc-stat b { display: block; font-size: 26px; line-height: 1.1; }
.wc-stat span { font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; }

/* stats row */
.statsrow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 34px 0 10px; }
.stat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; text-align: center; box-shadow: var(--shadow); }
.stat b { display: block; font-size: 28px; color: var(--primary-dark); font-family: "Public Sans", sans-serif; }
.stat span { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* service cards */
.svccards { display: grid; gap: 14px; margin: 18px 0 8px; }
.svccard {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow);
}
.svccard h3 { font-size: 18px; margin-bottom: 4px; }
.svccard p { color: var(--muted); font-size: 14.5px; margin-bottom: 8px; }
.svccard .price { color: var(--secondary); font-weight: 800; font-size: 17px; margin: 0 0 8px; }
.svccard ul { list-style: none; margin: 0 0 12px; }
.svccard li { font-size: 14px; margin-bottom: 4px; }
.svccard li:before { content: "✓"; color: var(--accent); font-weight: 700; margin-right: 6px; }
.svccard a.read { font-weight: 700; font-size: 15px; }

/* steps */
.steps { display: grid; gap: 14px; margin: 16px 0 8px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); counter-increment: step; }
.step:before { content: counter(step, decimal-leading-zero); font-size: 26px; font-weight: 800; color: var(--primary); display: block; margin-bottom: 6px; }
.step h3 { margin-top: 0; font-size: 18px; }
.step p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* testimonials */
.testis { display: grid; gap: 14px; margin: 18px 0; }
.testi { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.testi .stars { color: var(--secondary); letter-spacing: 2px; font-size: 15px; }
.testi p { font-size: 15px; color: #334155; margin: 10px 0; }
.testi .who { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.testi .who b { color: var(--ink); }

/* trust badges on service pages */
.svc-trust { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 4px; }
.svc-trust span {
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 16px; font-size: 14px; font-weight: 600; color: var(--ink);
  box-shadow: 0 2px 8px rgba(13,20,27,.06);
}
.svc-trust b { color: var(--accent); margin-right: 5px; }

/* pricing block (service pages) */
.pricing {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff;
  border-radius: var(--radius); padding: 24px; margin: 24px 0;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
}
.pricing .amt { font-size: 30px; font-weight: 800; }
.pricing .amt small { font-size: 14px; font-weight: 400; display: block; color: var(--on-primary); }
.pricing p { color: var(--on-primary); margin: 0; font-size: 14.5px; }
.pricing .cta { background: #fff; color: var(--primary-dark) !important; box-shadow: none; }

/* before / after */
.ba { display: grid; gap: 14px; margin: 18px 0; }
.ba .card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.ba .card img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.ba .card span { display: block; text-align: center; font-weight: 700; font-size: 13.5px; text-transform: uppercase; letter-spacing: .08em; padding: 8px; color: var(--muted); }
.ba .card span.before { color: var(--secondary); }
.ba .card span.after { color: var(--accent); }

/* gallery */
.gallery { display: grid; gap: 12px; margin: 18px 0; }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }

/* FAQ */
.faq { margin-top: 34px; }
.faq h2 { font-size: 26px; margin-bottom: 14px; }
details {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 16px; margin-bottom: 10px; box-shadow: var(--shadow);
}
summary { cursor: pointer; font-weight: 700; font-size: 17px; color: var(--ink); list-style: none; }
summary::-webkit-details-marker { display: none; }
summary:after { content: "＋"; float: right; color: var(--primary); font-weight: 700; }
details[open] summary:after { content: "－"; }
details p { margin-top: 10px; color: var(--muted); }

/* related */
.relwrap { margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--border); }
.relwrap:before { content: "Related"; display: block; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 8px; }
.rel { margin-bottom: 6px; font-size: 15px; }

/* ── quote form section (full-width bg + floating card) ── */
.quote-sec {
  position: relative; margin: 48px -16px 0; padding: 56px 16px;
  background-size: cover; background-position: center;
}
.quote-sec:before { content: ""; position: absolute; inset: 0; background: var(--overlay); }
.quote-sec > * { position: relative; z-index: 2; }
.quote-grid { display: grid; gap: 22px; align-items: center; max-width: 1280px; margin: 0 auto; }
.quote-grid .right { color: #fff; }
.quote-grid .right h2 { color: #fff; font-size: 30px; }
.quote-grid .right .serving { margin-top: 16px; }
.quote-grid .right .serving span { display: block; font-size: 14px; color: #e2e8f0; margin-bottom: 4px; }
.quote-grid .right .chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.quote-grid .right .chips span {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px; padding: 8px 16px; font-size: 13.5px; font-weight: 700; color: #fff;
}
.quote-grid .right .chips b { color: var(--primary-light); margin-right: 5px; }

/* lead form (floating card) */
.leadform {
  background: #fff; border-radius: 16px; box-shadow: 0 18px 50px rgba(13,20,27,.35);
  padding: 24px; display: grid; gap: 12px;
}
/* contact page: form card directly under the hero */
.contactform { max-width: 720px; margin: -56px auto 0; position: relative; z-index: 3; }

/* contact page: compact banner — small + unique, form visible immediately */
.hero.hero-compact {
  min-height: 0; padding: 56px 16px 96px; justify-content: flex-start;
}
.hero.hero-compact h1 { font-size: 32px; }
.hero.hero-compact .lede { font-size: 16.5px; max-width: 52ch; }
.leadform h2 { font-size: 22px; margin: 0; }
.leadform .row { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.leadform label { font-size: 13px; font-weight: 700; color: var(--muted); display: block; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .05em; }
.leadform input, .leadform select, .leadform textarea {
  width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 10px;
  font: inherit; font-size: 15.5px; background: var(--bg);
}
.leadform button {
  background: var(--primary); color: #fff; border: none; border-radius: 10px;
  padding: 14px; font-weight: 700; font-size: 16.5px; cursor: pointer;
}
.leadform button:hover { background: var(--primary-dark); }
.leadform .ok { color: var(--accent); font-weight: 700; }

/* estimator */
.estimator { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; margin: 20px 0; }
.estimator .field { margin-bottom: 16px; }
.estimator label { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; display: block; margin-bottom: 6px; }
.estimator input[type=range] { width: 100%; accent-color: var(--primary); }
.estimator .val { font-size: 22px; font-weight: 800; color: var(--primary-dark); }
.estimator select { width: 100%; padding: 11px; border: 1px solid var(--border); border-radius: 10px; font: inherit; font-size: 15.5px; background: var(--bg); }
.estimator .result { background: var(--tint); border-radius: 12px; padding: 16px; margin-top: 6px; text-align: center; }
.estimator .result b { font-size: 26px; color: var(--primary-dark); display: block; }
.estimator .result span { color: var(--muted); font-size: 14px; }
.estimator .note { font-size: 12.5px; color: var(--muted); margin-top: 10px; }

/* CTA band */
.ctaband {
  margin-top: 40px; border-radius: 18px; padding: 30px 24px 38px; text-align: center;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff;
}
.ctaband h2 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.ctaband p { color: var(--on-primary); margin-bottom: 18px; }
.ctaband .cta { background: #fff; color: var(--primary-dark) !important; box-shadow: none; }
.ctaband .btn2 { border: 2px solid #fff; }
.ctaband .ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 18px; }
/* identical pill sizing so both buttons line up perfectly */
.ctaband .ctas .cta, .ctaband .ctas .btn2 {
  height: 42px; padding: 0 22px; font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* call button with number-on-hover tooltip */
.telbtn { position: relative; }
.telbtn .teltip {
  position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; padding: 6px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 600; white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity .15s ease; box-shadow: 0 4px 14px rgba(13,20,27,.35);
}
.telbtn .teltip::after {
  content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: var(--ink);
}
.telbtn:hover .teltip, .telbtn:focus .teltip { opacity: 1; }

/* footer */
footer { background: var(--ink); color: #cbd5e1; padding: 40px 16px 20px; display: grid; gap: 26px; font-size: 14px; }
footer h3 { color: #fff; font-size: 15px; margin-bottom: 10px; }
footer a { color: #cbd5e1; display: block; margin-bottom: 5px; }
footer a:hover { color: var(--primary-light); }
footer .legal { color: #64748b; margin-top: 16px; grid-column: 1 / -1; border-top: 1px solid #1e293b; padding-top: 14px; font-size: 12.5px; text-align: center; }
footer .legal a { display: inline; }
footer .credit { color: #64748b; grid-column: 1 / -1; text-align: center; font-size: 12.5px; margin-top: 8px; }
footer .credit a { display: inline; color: var(--primary-light); }
footer .credit a:hover { color: var(--primary); }
footer .disc { color: #64748b; grid-column: 1 / -1; font-size: 12px; line-height: 1.5; }

/* floating call button */
.callfloat {
  position: fixed; bottom: 18px; right: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--primary); color: #fff !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; box-shadow: 0 4px 14px var(--glow);
}
.callfloat:hover { background: var(--primary-dark); text-decoration: none; transform: scale(1.06); }

/* ── blog index ── */
.blogcards { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px; margin: 18px 0 8px; }
.blogcards.featured { grid-template-columns: 1fr; margin-top: 14px; }
.blogcard {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 8px;
}
.blogcard.featured { border-left: 4px solid var(--primary); }
.blogcard.featured.lead { grid-column: 1 / -1; padding: 24px; }
.blogcard.featured.lead h3 { font-size: 21px; }
.blogcard .chip {
  align-self: flex-start;
  background: var(--chip); color: var(--primary-dark);
  border-radius: 999px; padding: 4px 12px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
}
.blogcard .bdate { color: var(--muted); font-size: 13px; }
.blogcard h3 { font-size: 18px; margin: 2px 0 0; line-height: 1.3; }
.blogcard p { color: var(--muted); font-size: 14.5px; margin: 0; }
.blogcard a.read { color: var(--primary-dark); font-weight: 700; font-size: 15px; margin-top: auto; }
.blogcard img.bthumb {
  width: 100%; height: 160px; object-fit: cover;
  border-radius: 14px 14px 0 0;
  margin: -18px -18px 14px;
}
.blogcard.featured.lead img.bthumb { margin: -24px -24px 14px; }
.blogcard[hidden] { display: none; }
.blogpills { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 8px; }
.blogpills .pill {
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 16px; font-size: 13.5px; font-weight: 600; color: var(--ink);
  font-family: inherit; cursor: pointer; transition: .15s;
  box-shadow: 0 2px 6px rgba(13, 20, 27, .05);
}
.blogpills .pill:hover { border-color: var(--primary); color: var(--primary-dark); }
.blogpills .pill.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.blogpills .pill.active:hover { color: #fff; }

/* ── responsive ── */
@media (max-width: 860px) {
  .burger { display: block; }
  #burger:checked ~ .links { display: flex; }
  .links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; padding: 10px 14px 14px;
    box-shadow: var(--shadow);
  }
  .links > a, .ddbtn { padding: 11px 10px; font-size: 16.5px; }
  .drop { position: static; }
  .dd { position: static; box-shadow: none; border: none; padding: 0 0 0 12px; min-width: 0; }
  /* mobile accordion: JS toggles .open on the .drop (first tap opens, second navigates) */
  .drop.open .dd { display: block; }
  .hero { padding: 60px 14px 52px; }
  .hero h1 { font-size: 32px; }
  .hero .trust span { white-space: normal; }
  .content h2 { font-size: 24px; }
  .btn2 { margin-left: 0; }
  .leadform .row { grid-template-columns: 1fr; }
}
@media (min-width: 861px) {
  .whychoose { grid-template-columns: 1fr 1fr; }
  .svccards { grid-template-columns: repeat(2, 1fr); }
  .blogcards.featured { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .testis { grid-template-columns: repeat(3, 1fr); }
  .statsrow { grid-template-columns: repeat(4, 1fr); }
  .ba { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .quote-grid { grid-template-columns: 1.1fr 1fr; }
  footer { grid-template-columns: repeat(4, 1fr); padding: 48px 26px 24px; }
  main { padding: 0 20px 60px; }
}
