/* ============================================================
   RIVERSIDE MOBILE MECHANICS BY SUPERCANIC
   Brand: green #3AAB22 / purple #4D217F
   Display: Bebas Neue   Body: Nunito
============================================================ */

:root {
  --sc-green: #3AAB22;
  --sc-green-light: #4dcc2e;
  --sc-green-dim: #267a17;
  --sc-green-glow: rgba(58, 171, 34, 0.22);

  --sc-purple: #4D217F;
  --sc-purple-light: #6b30aa;
  --sc-purple-dark: #2e1250;
  --sc-purple-deep: #0d0618;
  --sc-purple-mid: #1a0a38;

  --bg: #0d0618;
  --bg-soft: #14082c;
  --bg-card: rgba(20, 8, 48, 0.85);
  --bg-card-solid: #1a0a38;
  --surface: #ffffff;
  --surface-soft: #f5f3fb;
  --surface-alt: #ede7f6;

  --ink: #0d0618;
  --ink-soft: #3d2860;
  --ink-muted: #7a6a8c;
  --on-dark: #f5f5f0;
  --on-dark-dim: #b8a8d0;

  --line: rgba(77, 33, 127, 0.35);
  --line-bright: rgba(77, 33, 127, 0.7);
  --line-soft: #e0d4f0;

  --sc-amber: #ffb300;

  --display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--sc-purple);
}

h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); letter-spacing: 0.04em; }
h4 { font-size: 1.2rem; letter-spacing: 0.06em; text-transform: uppercase; }

a { color: var(--sc-purple); text-decoration: none; }
a:hover { color: var(--sc-green); }

p { margin-bottom: 1rem; color: var(--ink-soft); }

/* ===== Top bar ===== */
.top-bar {
  background: var(--sc-purple-deep);
  color: var(--on-dark-dim);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-bright);
}
.top-bar .wrap {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.top-bar strong { color: var(--sc-green-light); font-weight: 700; }

/* ===== Nav ===== */
.nav {
  background: var(--bg);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--line-bright);
}
.nav .wrap {
  max-width: var(--max); margin: 0 auto; padding: 16px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display); font-size: 1.4rem;
  color: var(--on-dark); letter-spacing: 0.06em;
}
.brand:hover { color: var(--sc-green-light); }
.brand-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--sc-green) 0%, var(--sc-green-dim) 100%);
  border-radius: 8px;
  display: grid; place-items: center;
  color: white; font-family: var(--display);
  font-size: 1.4rem;
  box-shadow: 0 4px 18px var(--sc-green-glow);
  border: 1px solid var(--sc-green-light);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.brand-text .sub {
  font-family: var(--body); font-size: 0.6rem;
  color: var(--on-dark-dim); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
}

.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  font-family: var(--body); font-weight: 700; font-size: 0.95rem;
  color: var(--on-dark);
  text-transform: uppercase; letter-spacing: 0.05em;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--sc-green-light); }
.nav-cta {
  background: var(--sc-green);
  color: white !important;
  padding: 10px 20px; border-radius: 6px;
  border: 1px solid var(--sc-green-light);
  box-shadow: 0 0 0 0 var(--sc-green-glow);
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--sc-green-light); color: white !important;
  box-shadow: 0 0 0 5px var(--sc-green-glow);
}
.nav-toggle { display: none; background: none; border: 0; color: var(--on-dark); font-size: 1.6rem; cursor: pointer; }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 70% 30%, var(--sc-purple-dark) 0%, var(--sc-purple-deep) 60%, #050208 100%);
  color: var(--on-dark);
  padding: 80px 0 100px;
  border-bottom: 4px solid var(--sc-green);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(77,33,127,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,33,127,0.18) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--sc-green-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero .wrap {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 800; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--sc-green-light);
  padding: 8px 14px;
  border: 1px solid var(--sc-green-dim);
  border-radius: 100px;
  background: rgba(58,171,34,0.08);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ""; width: 8px; height: 8px;
  background: var(--sc-green-light); border-radius: 50%;
  box-shadow: 0 0 12px var(--sc-green-light);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  color: var(--on-dark); font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase; line-height: 0.95;
  margin-bottom: 28px;
}
.hero h1 .hl { color: var(--sc-green-light); display: block; }
.hero-lead {
  font-size: 1.25rem; line-height: 1.55; color: var(--on-dark-dim);
  max-width: 580px; margin-bottom: 36px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 1.4rem; letter-spacing: 0.05em;
  padding: 16px 30px; border-radius: 6px;
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--sc-green); color: white;
  border-color: var(--sc-green-light);
  box-shadow: 0 6px 28px var(--sc-green-glow);
}
.btn-primary:hover {
  background: var(--sc-green-light); color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px var(--sc-green-glow);
}
.btn-secondary {
  background: transparent; color: var(--on-dark);
  border-color: var(--on-dark-dim);
}
.btn-secondary:hover {
  border-color: var(--sc-green-light); color: var(--sc-green-light);
}

.hero-trust {
  display: flex; gap: 30px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid var(--line-bright);
}
.hero-trust .t-item { display: flex; flex-direction: column; }
.hero-trust .t-num {
  font-family: var(--display); font-size: 2.4rem;
  color: var(--sc-green-light); line-height: 1;
}
.hero-trust .t-lbl {
  font-size: 0.78rem; color: var(--on-dark-dim);
  text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; margin-top: 4px;
}

/* Hero card (right column) */
.hero-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-bright);
  border-radius: 14px; padding: 30px;
  position: relative;
}
.hero-card::before {
  content: "SERVING"; position: absolute;
  top: -10px; left: 24px;
  background: var(--sc-green); color: white;
  font-family: var(--display); font-size: 0.85rem;
  letter-spacing: 0.2em;
  padding: 4px 12px; border-radius: 4px;
}
.hero-card h3 {
  color: var(--on-dark); font-size: 1.6rem;
  text-transform: uppercase; margin-bottom: 16px;
}
.hero-card ul { list-style: none; }
.hero-card li {
  padding: 10px 0; border-bottom: 1px dashed var(--line-bright);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--on-dark-dim); font-size: 0.95rem;
}
.hero-card li:last-child { border-bottom: 0; }
.hero-card li::after {
  content: "→"; color: var(--sc-green-light); font-weight: 700;
}

/* ===== Sections ===== */
section { padding: 90px 0; }
.section-wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--body); font-weight: 800; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--sc-green);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sc-green);
  margin-bottom: 24px;
}
.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  text-transform: uppercase; max-width: 850px;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 1.2rem; color: var(--ink-soft); max-width: 750px; margin-bottom: 60px;
}

/* ===== Services grid ===== */
.services {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 12px; padding: 32px 28px;
  position: relative;
  transition: all 0.25s;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--sc-green) 0%, var(--sc-purple) 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  border-color: var(--sc-green);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(77,33,127,0.15);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 54px; height: 54px;
  background: var(--surface-soft);
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line-soft);
  color: var(--sc-purple);
  transition: all 0.2s;
}
.service-card:hover .service-icon {
  background: var(--sc-green); color: white; border-color: var(--sc-green-dim);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  color: var(--sc-purple); font-size: 1.5rem;
  text-transform: uppercase; margin-bottom: 10px;
}
.service-card p { color: var(--ink-muted); font-size: 0.96rem; line-height: 1.55; }

/* ===== How it works ===== */
.how {
  background: var(--surface-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.step {
  position: relative; padding: 0 20px;
}
.step-num {
  font-family: var(--display); font-size: 4.5rem;
  line-height: 1; color: var(--sc-green);
  -webkit-text-stroke: 0;
  display: block; margin-bottom: 8px;
}
.step h4 {
  color: var(--sc-purple); font-family: var(--display);
  font-size: 1.5rem; text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 12px;
}
.step p { color: var(--ink-soft); font-size: 0.98rem; }

/* ===== Coverage map / cities ===== */
.coverage {
  background: var(--bg);
  color: var(--on-dark);
  position: relative; overflow: hidden;
}
.coverage::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, var(--sc-green-glow) 0%, transparent 60%);
  pointer-events: none;
}
.coverage .section-title { color: var(--on-dark); position: relative; }
.coverage .section-eyebrow { color: var(--sc-green-light); border-color: var(--sc-green-light); position: relative; }
.coverage .section-lead { color: var(--on-dark-dim); position: relative; }

.city-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  position: relative;
}
.city-tag {
  background: rgba(77,33,127,0.3);
  border: 1px solid var(--line-bright);
  padding: 14px 18px; border-radius: 8px;
  font-family: var(--body); font-weight: 700;
  font-size: 0.95rem;
  display: flex; align-items: center; gap: 10px;
  color: var(--on-dark);
  transition: all 0.2s;
}
.city-tag::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--sc-green-light);
  box-shadow: 0 0 10px var(--sc-green-light);
}
.city-tag:hover {
  background: var(--sc-green);
  border-color: var(--sc-green-light);
  transform: translateX(3px);
}

/* ===== Why us ===== */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px; margin-top: 40px;
}
.why-card {
  padding: 30px;
  border-left: 4px solid var(--sc-green);
  background: var(--surface);
}
.why-card h4 {
  color: var(--sc-purple); margin-bottom: 12px; font-size: 1.3rem;
}
.why-card p { color: var(--ink-soft); font-size: 1rem; }

/* ===== Testimonials ===== */
.reviews {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
}
.review-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.review {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 32px;
  position: relative;
}
.review::before {
  content: "“";
  position: absolute; top: -14px; left: 24px;
  font-family: 'Georgia', serif; font-size: 5rem;
  color: var(--sc-green); line-height: 1;
}
.review .stars {
  color: var(--sc-amber); margin-bottom: 12px; font-size: 1.1rem; letter-spacing: 2px;
}
.review p {
  font-style: italic; color: var(--ink); margin-bottom: 18px;
  font-size: 1.02rem; line-height: 1.6;
}
.review .who {
  font-family: var(--display); color: var(--sc-purple);
  font-size: 1.2rem; letter-spacing: 0.04em;
}
.review .where { color: var(--ink-muted); font-size: 0.85rem; }

/* ===== Final CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--sc-purple-dark) 0%, var(--sc-purple-deep) 100%);
  color: var(--on-dark);
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, var(--sc-green-glow) 0%, transparent 65%);
}
.final-cta .section-wrap { position: relative; }
.final-cta h2 {
  color: var(--on-dark); font-size: clamp(2.6rem, 6vw, 5rem);
  text-transform: uppercase; margin-bottom: 18px;
}
.final-cta h2 .hl { color: var(--sc-green-light); }
.final-cta p { color: var(--on-dark-dim); font-size: 1.2rem; max-width: 650px; margin: 0 auto 36px; }
.big-phone {
  display: inline-block;
  font-family: var(--display); font-size: clamp(3rem, 7vw, 5rem);
  color: var(--sc-green-light);
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 4px solid var(--sc-green);
  margin-bottom: 30px;
}
.final-cta .big-phone:hover { color: white; border-color: var(--sc-green-light); }

/* ===== Footer ===== */
footer {
  background: var(--sc-purple-deep);
  color: var(--on-dark-dim);
  padding: 60px 0 28px;
  border-top: 4px solid var(--sc-green);
}
footer .section-wrap {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
footer h5 {
  color: var(--on-dark); font-family: var(--display);
  font-size: 1.2rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer p, footer a, footer li {
  color: var(--on-dark-dim); font-size: 0.92rem; line-height: 1.8;
}
footer ul { list-style: none; }
footer a:hover { color: var(--sc-green-light); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto; padding: 24px 24px 0;
  border-top: 1px solid var(--line-bright);
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 0.85rem; flex-wrap: wrap;
}

/* ===== Sub-page hero (smaller) ===== */
.sub-hero {
  background: radial-gradient(ellipse at 30% 50%, var(--sc-purple-dark) 0%, var(--sc-purple-deep) 70%);
  color: var(--on-dark);
  padding: 70px 0 60px;
  position: relative; overflow: hidden;
  border-bottom: 4px solid var(--sc-green);
}
.sub-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(77,33,127,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,33,127,0.18) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at left, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at left, black 20%, transparent 70%);
}
.sub-hero .section-wrap { position: relative; }
.sub-hero h1 {
  color: var(--on-dark); text-transform: uppercase; margin-bottom: 16px;
}
.sub-hero h1 .hl { color: var(--sc-green-light); }
.sub-hero p { color: var(--on-dark-dim); font-size: 1.2rem; max-width: 700px; }
.crumbs {
  font-family: var(--body); font-size: 0.85rem;
  color: var(--on-dark-dim);
  text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.crumbs a { color: var(--sc-green-light); }
.crumbs a:hover { color: white; }

/* ===== Content rows (used in services pages) ===== */
.content-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; margin-bottom: 80px;
}
.content-row.reverse { direction: rtl; }
.content-row.reverse > * { direction: ltr; }
.content-img {
  background: linear-gradient(135deg, var(--sc-purple) 0%, var(--sc-green-dim) 100%);
  border-radius: 14px; aspect-ratio: 4/3;
  position: relative; overflow: hidden;
  display: grid; place-items: center;
  color: white;
}
.content-img::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.content-img svg { width: 50%; height: 50%; position: relative; z-index: 1; opacity: 0.85; }

.content-text h2 {
  font-size: 2.6rem; margin-bottom: 18px;
  text-transform: uppercase;
}
.content-text h2 .hl { color: var(--sc-green); }
.content-text p { font-size: 1.05rem; margin-bottom: 14px; }
.content-text ul {
  list-style: none; margin-top: 14px;
}
.content-text li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--ink-soft);
}
.content-text li::before {
  content: "▸"; position: absolute; left: 0; color: var(--sc-green); font-weight: 700;
}

/* ===== Pricing / packages ===== */
.price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 36px 30px;
  position: relative;
  text-align: center;
}
.price-card.featured {
  border: 2px solid var(--sc-green);
  background: linear-gradient(180deg, white 0%, rgba(58,171,34,0.04) 100%);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(77,33,127,0.15);
}
.price-card.featured::before {
  content: "MOST CALLED";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--sc-green); color: white;
  font-family: var(--display); font-size: 0.85rem;
  letter-spacing: 0.15em; padding: 5px 14px;
  border-radius: 4px;
}
.price-card h3 {
  text-transform: uppercase; margin-bottom: 10px;
}
.price-tag {
  font-family: var(--display); font-size: 3.6rem;
  color: var(--sc-purple); margin: 12px 0;
}
.price-tag .small { font-size: 1rem; color: var(--ink-muted); }
.price-card ul {
  list-style: none; text-align: left; margin: 20px 0;
}
.price-card li {
  padding: 8px 0 8px 26px; position: relative;
  color: var(--ink-soft); font-size: 0.95rem;
}
.price-card li::before {
  content: "✓"; position: absolute; left: 0; color: var(--sc-green); font-weight: 800;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line-soft);
  padding: 24px 0;
}
.faq-item h4 {
  color: var(--sc-purple); margin-bottom: 10px;
  font-family: var(--body); font-weight: 800;
  font-size: 1.1rem; text-transform: none; letter-spacing: 0;
}
.faq-item p { color: var(--ink-soft); margin: 0; }

/* ===== Sticky mobile call ===== */
.sticky-call {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--sc-green); color: white;
  text-align: center; padding: 14px;
  font-family: var(--display); font-size: 1.4rem;
  letter-spacing: 0.05em; border-top: 2px solid var(--sc-green-light);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .content-row { grid-template-columns: 1fr; gap: 30px; }
  .content-row.reverse { direction: ltr; }
  footer .section-wrap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  body { padding-bottom: 60px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); padding: 20px;
    border-bottom: 1px solid var(--line-bright);
    gap: 16px;
  }
  section { padding: 60px 0; }
  .hero { padding: 50px 0 70px; }
  footer .section-wrap { grid-template-columns: 1fr; }
  .sticky-call { display: block; }
  .top-bar { font-size: 0.72rem; }
  .top-bar .wrap { justify-content: center; text-align: center; }
}
