/* Toledo Rat Control - "Glass City" design system
   Corporate near-black navy + signal red + white and cool gray. Archivo (display) / Inter (body).
   Design language drawn from the reference: dark announcement bar, white header with a red
   square logo, centered hero over a dark photo, red call buttons, red-top-border cards,
   and dark navy bands. */

:root {
  --navy: #16233a;
  --navy-2: #1e3352;
  --navy-3: #294066;
  --navy-dk: #0f1a2c;
  --red: #e0261a;
  --red-2: #c81f14;
  --red-dk: #a81a10;
  --red-lt: #fdeceb;
  --paper: #ffffff;
  --mist: #f4f6f9;
  --mist-2: #e8edf3;
  --ink: #16233a;
  --body-ink: #3a4657;
  --muted: #677385;
  --snow: #eef2f7;
  --muted-d: #a9b6c9;
  --line: rgba(22, 35, 58, 0.13);
  --line-soft: rgba(22, 35, 58, 0.07);
  --line-d: rgba(238, 242, 247, 0.16);
  --line-d-soft: rgba(238, 242, 247, 0.1);
  --maxw: 1180px;
  --r: 8px;
  --r-lg: 14px;
  --r-sm: 5px;
  --disp: "Archivo", system-ui, -apple-system, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--body-ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4, .disp {
  font-family: var(--disp);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.55rem); }
h3 { font-size: 1.22rem; }
p { color: var(--body-ink); }
p strong { color: var(--ink); font-weight: 700; }
a { color: var(--red-dk); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* Kicker */
.kicker {
  font-family: var(--body);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.on-dark .kicker, .band-navy .kicker, .hero .kicker, .call-band .kicker { color: #ff6a5f; }

/* Buttons */
.btn-call {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--red); color: #fff;
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.28rem); letter-spacing: -0.01em;
  padding: 14px 26px; border-radius: var(--r-sm);
  box-shadow: 0 10px 22px -12px rgba(224,38,26,.8);
  transition: background .15s ease, transform .15s ease;
}
.btn-call:hover { background: var(--red-2); text-decoration: none; transform: translateY(-2px); }
.btn-call svg { width: 21px; height: 21px; flex: none; }
.btn-call small { display: block; font-family: var(--body); font-weight: 600; font-size: 0.63rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: .85; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); font-weight: 700; font-family: var(--disp);
  padding: 13px 22px; border-radius: var(--r-sm); border: 2px solid var(--line); background: transparent;
}
.btn-ghost:hover { color: var(--red-dk); border-color: var(--red); text-decoration: none; }
.on-dark .btn-ghost, .btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.5); }
.on-dark .btn-ghost:hover, .btn-ghost.on-dark:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.08); }

/* Announcement bar */
.promo { background: var(--navy-dk); color: #d6deea; font-size: 0.85rem; }
.promo .wrap { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 9px 22px; text-align: center; flex-wrap: wrap; }
.promo strong { color: #fff; font-weight: 700; }
.promo a { color: #ff8079; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.promo a:hover { color: #fff; text-decoration: none; }
.promo svg { width: 14px; height: 14px; flex: none; }

/* Header: white masthead with red square logo, sticky */
.site-header { position: sticky; top: 0; z-index: 60; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 2px 12px -8px rgba(22,35,58,.5); }
.masthead .wrap { display: flex; align-items: center; gap: 20px; padding: 12px 22px; }
.brand { display: flex; align-items: center; gap: 13px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.logo-box { width: 52px; height: 52px; background: var(--red); border-radius: var(--r-sm); display: inline-flex; align-items: center; justify-content: center; flex: none; box-shadow: 0 6px 16px -8px rgba(224,38,26,.7); }
.logo-box svg { width: 34px; height: 34px; }
.wordmark { font-family: var(--disp); font-weight: 800; font-size: 1.3rem; line-height: 1; letter-spacing: -0.03em; color: var(--navy); text-transform: uppercase; }
.wordmark b { color: var(--red); font-weight: 800; }
.wordmark small { display: block; font-family: var(--body); font-weight: 600; font-size: 0.58rem; letter-spacing: 0.12em; color: var(--muted); margin-top: 5px; text-transform: uppercase; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 1px; }
.nav > a, .sub-toggle { color: var(--ink); font-family: var(--disp); font-size: 0.95rem; font-weight: 600; cursor: pointer; padding: 11px 13px; display: inline-flex; align-items: center; gap: 6px; transition: color .12s ease; position: relative; }
.nav > a::after, .sub-toggle::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px; background: var(--red); transform: scaleX(0); transition: transform .14s ease; }
.nav > a:hover, .sub-toggle:hover, .has-sub:hover .sub-toggle { color: var(--red-dk); text-decoration: none; }
.nav > a:hover::after, .sub-toggle:hover::after, .has-sub:hover .sub-toggle::after { transform: scaleX(1); }
.has-sub { position: relative; }
.submenu { display: none; position: absolute; top: 100%; left: 0; min-width: 272px; background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: 0 0 var(--r-sm) var(--r-sm); padding: 8px; z-index: 70; box-shadow: 0 24px 48px -20px rgba(22,35,58,.4); }
.has-sub:hover .submenu, .has-sub:focus-within .submenu { display: block; }
.submenu a { display: block; padding: 9px 12px; border-radius: 4px; color: var(--ink); font-size: 0.92rem; font-weight: 500; }
.submenu a:hover { background: var(--red-lt); color: var(--red-dk); text-decoration: none; }
.nav-call { margin-left: 8px; }
.menu-toggle { display: none; margin-left: auto; align-items: center; gap: 8px; background: var(--navy); border: none; color: #fff; font-family: var(--disp); font-weight: 700; font-size: 0.95rem; padding: 11px 15px; border-radius: var(--r-sm); cursor: pointer; }
.menu-toggle svg { width: 20px; height: 20px; display: block; }

/* Contact strip */
.contactstrip { background: var(--navy); color: #cdd8e8; }
.contactstrip .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 32px; padding: 11px 22px; font-size: 0.9rem; }
.contactstrip .ci { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; }
.contactstrip .ci svg { width: 18px; height: 18px; color: #ff6a5f; flex: none; }
.contactstrip .ci b { color: #fff; font-weight: 700; }
.contactstrip .ci a { color: #fff; }
.contactstrip .ci a:hover { color: #ff8079; text-decoration: none; }

/* Hero (centered on dark photo) */
.hero { background: var(--navy-dk); position: relative; }
.hero-photo { position: absolute; inset: 0; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,26,44,.82) 0%, rgba(15,26,44,.74) 55%, rgba(15,26,44,.9) 100%); }
.hero .wrap { position: relative; z-index: 2; padding: 84px 22px 88px; text-align: center; }
.hero-card { max-width: 780px; margin: 0 auto; }
.hero .kicker { justify-content: center; }
.hero h1 { color: #fff; margin: 15px 0 16px; }
.hero .lede { color: #d3ddea; font-size: 1.18rem; max-width: 40em; margin: 0 auto; }
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-chips { display: flex; justify-content: center; gap: 9px; flex-wrap: wrap; margin-top: 26px; }
.hero-chips span { font-family: var(--body); font-size: 0.8rem; font-weight: 600; color: #e6edf6; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); padding: 7px 13px; border-radius: 4px; display: inline-flex; align-items: center; gap: 7px; }
.hero-chips span svg { width: 14px; height: 14px; color: #ff6a5f; }

/* Trust strip */
.trust-strip { background: var(--navy); border-top: 3px solid var(--red); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 30px; text-align: center; padding-top: 16px; padding-bottom: 16px; }
.trust-strip .t { display: inline-flex; align-items: center; gap: 9px; font-family: var(--disp); font-weight: 600; color: #eaf0f8; font-size: 0.94rem; }
.trust-strip .t svg { width: 19px; height: 19px; color: #ff6a5f; flex: none; }
.trust-strip .sep { color: rgba(255,255,255,.22); }

/* Sections */
section { padding: 78px 0; }
.band { background: var(--mist); }
.band-navy { background: var(--navy); color: var(--snow); }
.band-navy h2, .band-navy h3, .band-navy h4 { color: #fff; }
.band-navy p { color: #c3d0e2; }
.band-navy a { color: #ff8079; }
.sec-head { max-width: 760px; margin-bottom: 42px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { margin: 12px 0 13px; }
.sec-head p { font-size: 1.06rem; }

/* Icon */
.ic { width: 56px; height: 56px; border-radius: var(--r-sm); background: var(--red-lt); color: var(--red); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.ic svg { width: 30px; height: 30px; }
.band-navy .ic { background: rgba(255,255,255,.09); color: #ff8079; }

/* Services grid (photo card + red icon badge) */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--paper); display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; position: relative; }
.svc:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -26px rgba(22,35,58,.42); border-color: var(--red); }
.svc .thumb { position: relative; height: 170px; }
.svc .thumb img { width: 100%; height: 100%; object-fit: cover; }
.svc .badge { position: absolute; left: 18px; bottom: -22px; width: 50px; height: 50px; border-radius: var(--r-sm); background: var(--red); color: #fff; display: inline-flex; align-items: center; justify-content: center; border: 3px solid var(--paper); box-shadow: 0 8px 18px -8px rgba(224,38,26,.65); }
.svc .badge svg { width: 25px; height: 25px; }
.svc-body { padding: 30px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc h3 { margin-bottom: 8px; font-size: 1.16rem; }
.svc h3 a { color: var(--ink); }
.svc h3 a:hover { color: var(--red-dk); text-decoration: none; }
.svc p { font-size: 0.93rem; flex: 1; }
.svc .go { margin-top: 15px; font-family: var(--disp); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.02em; text-transform: uppercase; color: var(--red-dk); display: inline-flex; align-items: center; gap: 6px; }
.svc .go svg { width: 15px; height: 15px; }

/* Why-choose */
.why-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 46px; align-items: center; }
.why-list { display: grid; gap: 15px; }
.why-item { display: flex; gap: 16px; background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--red); border-radius: var(--r-sm); padding: 19px 20px; }
.why-item .ic { width: 46px; height: 46px; }
.why-item .ic svg { width: 23px; height: 23px; }
.why-item h3 { font-size: 1.07rem; margin-bottom: 4px; }
.why-item p { font-size: 0.93rem; }
.why-photo { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 26px 50px -30px rgba(22,35,58,.42); }
.why-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }

/* Local rat cards */
.pests { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pest-card { border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: var(--r); padding: 28px 28px; background: var(--paper); box-shadow: 0 16px 40px -32px rgba(22,35,58,.36); }
.pest-card .ic { margin-bottom: 15px; }
.pest-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.pest-card .latin { font-family: var(--body); font-size: 0.73rem; font-weight: 700; color: var(--red-dk); letter-spacing: 0.06em; text-transform: uppercase; }
.pest-card > p { margin-top: 13px; font-size: 0.97rem; }
.pest-card ul { margin-top: 13px; }
.pest-card li { padding: 8px 0 8px 24px; position: relative; color: var(--body-ink); font-size: 0.94rem; border-top: 1px solid var(--line-soft); }
.pest-card li::before { content: ""; position: absolute; left: 2px; top: 15px; width: 8px; height: 8px; border-radius: 2px; background: var(--red); }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step { text-align: center; }
.step .ic { margin: 0 auto 15px; }
.step .num { font-family: var(--disp); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: #ff8079; }
.step h3 { font-size: 1.04rem; margin: 8px 0 8px; }
.step p { font-size: 0.9rem; }

/* Areas */
.area-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.area-links a { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 17px; color: var(--ink); font-weight: 600; background: var(--paper); display: flex; align-items: center; gap: 10px; transition: border-color .15s ease, color .15s ease, background .15s ease; }
.area-links a svg { width: 16px; height: 16px; color: var(--red); flex: none; }
.area-links a:hover { border-color: var(--red); text-decoration: none; color: var(--red-dk); background: var(--red-lt); }
.band-navy .area-links a { background: var(--navy-2); border-color: var(--line-d-soft); color: #fff; }
.band-navy .area-links a svg { color: #ff8079; }
.band-navy .area-links a:hover { border-color: #ff6a5f; color: #ff8079; background: var(--navy-3); }

/* Factors */
.factors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.factor { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 25px 27px; border-left: 3px solid var(--red); }
.factor h3 { font-size: 1.1rem; margin-bottom: 8px; }
.factor p { font-size: 0.94rem; }

/* FAQ */
.faq { max-width: 860px; }
.faq details { border: 1px solid var(--line); border-radius: var(--r-sm); margin-bottom: 12px; background: var(--paper); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 18px; padding: 18px 22px; font-family: var(--disp); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 1.5rem; flex: none; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding: 0 22px 20px; max-width: 62em; }
.band-navy .faq details { background: var(--navy-2); border-color: var(--line-d-soft); }
.band-navy .faq summary { color: #fff; }
.band-navy .faq summary::after { color: #ff8079; }

/* Call band */
.call-band { background: var(--navy); color: var(--snow); text-align: center; }
.call-band h2 { color: #fff; font-size: clamp(2rem, 4.4vw, 3rem); margin: 13px 0 14px; }
.call-band p { color: #c3d0e2; max-width: 44em; margin: 0 auto 28px; font-size: 1.06rem; }
.call-band .kicker { color: #ff8079; justify-content: center; }

/* CTA strip (red) */
.cta-strip { background: var(--red); }
.cta-strip .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.cta-strip h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-strip p { color: #ffe2df; margin-top: 4px; }
.cta-strip .btn-call { background: #fff; color: var(--red-dk); box-shadow: none; }
.cta-strip .btn-call:hover { background: #fff2f1; }

/* Prose pages + service/area layout */
.page-hero { background: var(--navy); color: var(--snow); position: relative; border-bottom: 3px solid var(--red); }
.page-hero .inner { padding: 52px 0 46px; position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2rem,4.2vw,3rem); margin: 12px 0 13px; }
.page-hero .lede { color: #c3d0e2; font-size: 1.12rem; max-width: 44em; }
.page-hero .kicker { color: #ff8079; }
.page-hero .hero-cta { margin-top: 22px; display: flex; gap: 14px; flex-wrap: wrap; }
.crumbs { font-family: var(--body); font-size: 0.8rem; font-weight: 600; color: #a9b6c9; margin-bottom: 4px; }
.crumbs a { color: #a9b6c9; }
.crumbs a:hover { color: #ff8079; }

.article { padding: 56px 0 70px; }
.article-grid { display: grid; grid-template-columns: 1fr 330px; gap: 52px; align-items: start; }
.prose > * + * { margin-top: 1.2em; }
.prose h2 { margin-top: 1.9em; font-size: clamp(1.4rem,2.5vw,1.95rem); }
.prose p { font-size: 1.03rem; }
.prose ul { margin-top: 1em; }
.prose li { padding: 11px 0 11px 27px; position: relative; color: var(--body-ink); border-top: 1px solid var(--line-soft); }
.prose li::before { content: ""; position: absolute; left: 2px; top: 19px; width: 8px; height: 8px; border-radius: 2px; background: var(--red); }
.prose li strong { color: var(--ink); }
.prose img { border-radius: var(--r); border: 1px solid var(--line); }
.side { position: sticky; top: 96px; display: grid; gap: 20px; }
.side-card { border: 1px solid var(--line); border-radius: var(--r); padding: 25px 25px; background: var(--paper); }
.side-card.navy { background: var(--navy); border-color: var(--navy-2); }
.side-card.navy h3 { color: #fff; }
.side-card.navy p { color: #c3d0e2; }
.side-card h3 { margin-bottom: 12px; }
.side-card p { font-size: 0.94rem; }
.side-card .btn-call { width: 100%; justify-content: center; margin-top: 16px; font-size: 1.02rem; padding: 14px 18px; }
.side-card ul { margin-top: 6px; }
.side-card li { border-top: 1px solid var(--line-soft); padding: 9px 0; font-size: 0.93rem; }
.side-card li:first-child { border-top: none; }
.side-card li a { color: var(--ink); font-weight: 600; }
.side-card li a:hover { color: var(--red-dk); }

/* Footer */
.site-footer { background: var(--navy-dk); color: var(--snow); border-top: 4px solid var(--red); }
.footer-call-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: 50px 0 42px; border-bottom: 1px solid var(--line-d-soft); }
.footer-call-row h2 { color: #fff; font-size: clamp(1.55rem,3vw,2.2rem); max-width: 15em; }
.giant-phone { font-family: var(--disp); font-weight: 800; font-size: clamp(1.7rem,4.2vw,2.5rem); color: #ff8079; letter-spacing: -0.02em; }
.giant-phone:hover { color: #ffa39d; text-decoration: none; }
.giant-phone small { display: block; font-family: var(--body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; color: #a9b6c9; margin-top: 4px; text-transform: uppercase; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 44px 0; }
.footer-grid h4 { font-family: var(--disp); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: #ff8079; margin-bottom: 15px; }
.footer-grid > div > p { color: #b6c2d4; font-size: 0.93rem; }
.footer-grid li { padding: 5px 0; }
.footer-grid li a { color: #b6c2d4; font-size: 0.93rem; }
.footer-grid li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line-d-soft); padding: 26px 0 100px; }
.disclaimer { font-size: 0.81rem; color: #8a99af; max-width: 76em; line-height: 1.6; }
.copyright { font-family: var(--body); font-size: 0.78rem; color: #74839b; margin-top: 14px; }

/* Sticky mobile call bar */
.mobile-call { display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; background: var(--red); color: #fff; font-family: var(--disp); font-weight: 700; font-size: 1.1rem; padding: 15px; border-radius: var(--r-sm); text-align: center; align-items: center; justify-content: center; gap: 10px; box-shadow: 0 10px 30px -6px rgba(22,35,58,.55); }
.mobile-call svg { width: 20px; height: 20px; }
.mobile-call:hover { text-decoration: none; }

/* Responsive */
@media (max-width: 1000px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .article-grid { grid-template-columns: 1fr; }
  .side { position: static; }
  .why-grid { grid-template-columns: 1fr; }
  .pests { grid-template-columns: 1fr; }
  .area-links { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .contactstrip { display: none; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); flex-direction: column; align-items: stretch; padding: 10px 16px 16px; box-shadow: 0 24px 40px -20px rgba(22,35,58,.4); border-bottom: 1px solid var(--line); max-height: calc(100dvh - 120px); overflow-y: auto; z-index: 70; }
  .nav.open { display: flex; }
  .masthead .wrap { position: relative; }
  .menu-toggle { display: inline-flex; }
  .nav > a, .sub-toggle { padding: 12px 8px; border-bottom: 1px solid var(--line-soft); }
  .nav > a::after, .sub-toggle::after { display: none; }
  .submenu { display: block; position: static; border: none; border-top: none; background: none; padding: 0 0 8px 14px; min-width: 0; box-shadow: none; }
  .submenu a { padding: 8px 0; }
  .nav-call { display: none; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  section { padding: 54px 0; }
  .svc-grid, .steps, .factors, .area-links, .footer-grid { grid-template-columns: 1fr; }
  .mobile-call { display: flex; }
  .btn-call { width: 100%; justify-content: center; }
  .cta-strip .wrap { flex-direction: column; text-align: center; }
  .hero .wrap { padding: 56px 22px 60px; }
}
