/* ============================================================
   ASPIRE ENERGY — Design System
   Brand: Orange #FF5800 / #FF8A4C  ·  Grey #8B8D8E / #C5C6C6
   ============================================================ */

:root {
  /* Brand */
  --orange: #FF5800;
  --orange-light: #FF8A4C;
  --orange-dark: #E04E00;
  --orange-tint: #FFF2EB;
  --grey: #8B8D8E;
  --grey-light: #C5C6C6;

  /* Neutrals */
  --ink: #1A1C1E;          /* near-black text */
  --ink-soft: #44484B;
  --slate: #5E6468;
  --line: #E6E8EA;
  --mist: #F5F6F7;         /* section tint */
  --sand: #FBFAF8;         /* warm off-white */
  --white: #FFFFFF;

  /* Support */
  --green: #1E8E5A;        /* success / trust ticks */
  --green-tint: #EAF6F0;

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  /* Scale */
  --container: 1180px;
  --container-narrow: 760px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;
  --shadow-sm: 0 2px 8px rgba(26,28,30,.06);
  --shadow: 0 10px 30px rgba(26,28,30,.09);
  --shadow-lg: 0 24px 60px rgba(26,28,30,.14);
  --shadow-orange: 0 12px 28px rgba(255,88,0,.28);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
h4 { font-size: 1.15rem; }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: var(--slate); line-height: 1.55; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; }
.eyebrow.center::before { display: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 116px) 0; }
.section--mist { background: var(--mist); }
.section--sand { background: var(--sand); }
.section--ink { background: var(--ink); color: var(--white); }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink p { color: rgba(255,255,255,.74); }
.center { text-align: center; }
.section-head { max-width: 660px; margin-bottom: 3.5rem; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin: .65rem 0 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 1rem 1.7rem; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s; 
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255,88,0,.34); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 1.15rem 2.1rem; font-size: 1.06rem; }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 1.5rem; }
.nav-logo img { height: 30px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: .35rem; }
.nav-menu > li { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: .3rem;
  font-weight: 600; font-size: .96rem; color: var(--ink-soft);
  padding: .6rem .85rem; border-radius: 9px; transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--orange); background: var(--orange-tint); }
.nav-link svg { width: 13px; height: 13px; opacity: .6; }
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .22s var(--ease); }
.nav-menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; align-items: center; gap: .6rem; padding: .7rem .8rem; border-radius: 9px; font-size: .94rem; font-weight: 600; color: var(--ink-soft); transition: background .18s, color .18s; }
.dropdown a:hover { background: var(--orange-tint); color: var(--orange); }
.dropdown a .soon { margin-left: auto; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--grey); background: var(--mist); padding: .2rem .45rem; border-radius: 5px; }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-phone { display: flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--ink); font-size: .98rem; }
.nav-phone svg { width: 16px; height: 16px; color: var(--orange); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle span + span { margin-top: 6px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(48px,7vw,88px) 0 clamp(56px,8vw,96px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.trust-pill { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 700; color: var(--ink-soft); background: #fff; border: 1px solid var(--line); padding: .4rem .8rem; border-radius: 100px; box-shadow: var(--shadow-sm); }
.trust-pill svg { width: 14px; height: 14px; color: var(--green); }
.hero h1 { margin-bottom: 1.3rem; }
.hero h1 .accent { color: var(--orange); font-style: italic; }
.hero .lead { margin-bottom: 2rem; max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero-note { display: flex; align-items: center; gap: .5rem; margin-top: 1.5rem; font-size: .9rem; color: var(--slate); font-weight: 600; }
.hero-note svg { width: 16px; height: 16px; color: var(--green); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: linear-gradient(150deg,#FFE9DC,#FFF6F0); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 1rem 1.2rem; display: flex; align-items: center; gap: .8rem;
}
.hero-float--tl { top: 22px; left: -28px; }
.hero-float--br { bottom: 26px; right: -24px; }
.hero-float .icon { width: 42px; height: 42px; border-radius: 11px; background: var(--orange-tint); display: grid; place-items: center; flex-shrink: 0; }
.hero-float .icon svg { width: 22px; height: 22px; color: var(--orange); }
.hero-float .n { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--ink); line-height: 1; }
.hero-float .l { font-size: .76rem; color: var(--slate); font-weight: 600; }
.hero-blob { position: absolute; z-index: -1; width: 520px; height: 520px; right: -180px; top: -120px;
  background: radial-gradient(circle, rgba(255,88,0,.10), transparent 65%); border-radius: 50%; }

/* ---------- Logos / trust strip ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--sand); }
.trust-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-block: 1.5rem; }
.trust-strip .label { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); }
.trust-logos { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.trust-logos .badge { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; color: var(--slate); font-size: .95rem; letter-spacing: .02em; }
.trust-logos .badge svg { width: 22px; height: 22px; color: var(--grey); }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; }
.svc-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: flex; flex-direction: column; overflow: hidden;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card.featured { border-color: var(--orange); background: linear-gradient(180deg,var(--orange-tint),#fff 60%); }
.svc-icon { width: 56px; height: 56px; border-radius: 15px; background: var(--orange); display: grid; place-items: center; margin-bottom: 1.3rem; box-shadow: var(--shadow-orange); }
.svc-icon svg { width: 28px; height: 28px; color: #fff; }
.svc-card.muted .svc-icon { background: var(--grey); box-shadow: none; }
.svc-card h3 { margin-bottom: .5rem; }
.svc-card p { font-size: .96rem; margin-bottom: 1.3rem; flex-grow: 1; }
.svc-link { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--orange); font-size: .95rem; }
.svc-card.muted .svc-link { color: var(--slate); }
.svc-link svg { width: 16px; height: 16px; transition: transform .25s; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }
.svc-tag { position: absolute; top: 1.3rem; right: 1.3rem; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .55rem; border-radius: 6px; }
.svc-tag.now { background: var(--green-tint); color: var(--green); }
.svc-tag.soon { background: var(--mist); color: var(--grey); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding: 2rem; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.step-n { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--orange-light); line-height: 1; margin-bottom: 1rem; }
.step h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.step p { font-size: .95rem; }

/* ---------- Why / features ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.feat { padding: 1.8rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.feat .icon { width: 48px; height: 48px; border-radius: 12px; background: var(--orange-tint); display: grid; place-items: center; margin-bottom: 1.1rem; }
.feat .icon svg { width: 24px; height: 24px; color: var(--orange); }
.feat h3 { font-size: 1.18rem; margin-bottom: .45rem; }
.feat p { font-size: .95rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat .n { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem,4vw,3.2rem); color: var(--orange); line-height: 1; }
.stat .l { margin-top: .5rem; font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.7); }
.section--ink .stat .l { color: rgba(255,255,255,.7); }

/* ---------- Testimonials ---------- */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; }
.stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.stars svg { width: 18px; height: 18px; color: #FFB400; }
.review p { color: var(--ink); font-size: 1.02rem; margin-bottom: 1.2rem; }
.review .who { display: flex; align-items: center; gap: .7rem; }
.review .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--orange-tint); display: grid; place-items: center; font-weight: 800; color: var(--orange); font-size: .9rem; }
.review .who .nm { font-weight: 700; font-size: .92rem; }
.review .who .loc { font-size: .8rem; color: var(--slate); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .inner { background: linear-gradient(135deg,var(--orange),var(--orange-light)); border-radius: var(--radius-lg); padding: clamp(2.5rem,5vw,4rem); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 540px; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-band .btn-white { box-shadow: var(--shadow); }

/* ---------- Form ---------- */
.lead-form { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); padding: clamp(1.6rem,3vw,2.4rem); }
.lead-form h3 { margin-bottom: .4rem; }
.lead-form .sub { font-size: .94rem; color: var(--slate); margin-bottom: 1.4rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: .4rem; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--sand); transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: clamp(3rem,6vw,4.5rem) 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand img { height: 30px; margin-bottom: 1.2rem; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .94rem; max-width: 300px; margin-bottom: 1.3rem; }
.footer-contact a { display: flex; align-items: center; gap: .6rem; color: #fff; font-weight: 700; margin-bottom: .6rem; font-size: 1.05rem; }
.footer-contact a svg { width: 17px; height: 17px; color: var(--orange-light); }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col a { display: block; color: rgba(255,255,255,.66); font-size: .94rem; padding: .35rem 0; transition: color .2s; }
.footer-col a:hover { color: var(--orange-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.8rem; font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.5); }
.footer-accred { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: .8rem; }
.footer-accred span { font-size: .78rem; color: rgba(255,255,255,.45); font-weight: 600; }

/* ---------- Floating contact (chat + whatsapp) ---------- */
.float-contact { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-lg); cursor: pointer; transition: transform .25s var(--ease); border: none; }
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 28px; height: 28px; }
.float-wa { background: #25D366; }
.float-wa svg { fill: #fff; }
.float-tooltip { position: absolute; right: 68px; top: 50%; transform: translateY(-50%); background: var(--ink); color: #fff; font-size: .82rem; font-weight: 600; padding: .5rem .8rem; border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s; }
.float-btn:hover .float-tooltip { opacity: 1; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 1rem 0; font-size: .85rem; color: var(--slate); }
.breadcrumb a { color: var(--slate); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { margin: 0 .5rem; opacity: .5; }

/* ---------- Content (service/location pages) ---------- */
.page-hero { background: linear-gradient(160deg,var(--orange-tint),var(--sand)); padding: clamp(2.5rem,5vw,4.5rem) 0 clamp(3rem,6vw,5rem); }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.page-hero h1 { margin: .8rem 0 1.2rem; }
.page-hero .lead { margin-bottom: 1.8rem; }
.checklist { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
.checklist li { display: flex; align-items: flex-start; gap: .7rem; font-weight: 600; color: var(--ink-soft); }
.checklist li svg { width: 21px; height: 21px; color: var(--green); flex-shrink: 0; margin-top: 1px; }

.prose { max-width: var(--container-narrow); }
.prose h2 { margin: 2.5rem 0 1rem; }
.prose h3 { margin: 1.8rem 0 .8rem; }
.prose p { margin-bottom: 1.1rem; }
.prose ul.bullets { margin: 1rem 0 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.prose ul.bullets li { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink-soft); }
.prose ul.bullets li svg { width: 19px; height: 19px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.info-box { background: var(--orange-tint); border-left: 4px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.4rem 1.6rem; margin: 1.8rem 0; }
.info-box h4 { color: var(--orange-dark); margin-bottom: .4rem; }
.info-box p { margin: 0; font-size: .96rem; }

/* price cards */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin: 2rem 0; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; text-align: center; }
.price-card.pop { border-color: var(--orange); box-shadow: var(--shadow); position: relative; }
.price-card.pop::before { content: "Most popular"; position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: .25rem .7rem; border-radius: 100px; }
.price-card .tier { font-weight: 700; color: var(--slate); font-size: .9rem; margin-bottom: .5rem; }
.price-card .amt { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--ink); }
.price-card .amt small { font-size: .9rem; color: var(--slate); font-weight: 400; }
.price-card .desc { font-size: .9rem; color: var(--slate); margin-top: .6rem; }

/* faq */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.3rem 0; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; transition: transform .3s; }
.faq-q[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding-bottom: 1.3rem; color: var(--ink-soft); }

/* area chips */
.area-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.area-chips a { background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: .5rem 1rem; font-size: .9rem; font-weight: 600; color: var(--ink-soft); transition: all .2s; }
.area-chips a:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-tint); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 440px; margin-inline: auto; }
  .svc-grid, .feat-grid, .steps, .reviews, .price-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-menu, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-menu.open { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: #fff; border-bottom: 1px solid var(--line); padding: 1rem; gap: .2rem; box-shadow: var(--shadow); }
  .nav-menu.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 1rem; }
}
@media (max-width: 620px) {
  .svc-grid, .feat-grid, .steps, .reviews, .price-grid, .field-row { grid-template-columns: 1fr; }
  .hero-float--tl { left: 8px; } .hero-float--br { right: 8px; }
  .trust-strip .container { justify-content: center; text-align: center; }
  .footer-top { grid-template-columns: 1fr; }
}
