/* -----------------------------
   Base / Theme
------------------------------ */
:root {
  --bg: #1e2328;
  --bg2: #22282e;
  --panel: #242b32;
  --panel2: #1a1f25;
  --border: rgba(255, 255, 255, 0.1);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted2: rgba(255, 255, 255, 0.52);

  --lime: #7cff2b;
  --lime2: #5fe01f;
  --cta: #ffc83d;

  --radius: 22px;
  --radius2: 28px;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

[id] {
  scroll-margin-top: 108px;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.95;
}

.muted {
  color: var(--muted);
}
.center {
  text-align: center;
}

/* -----------------------------
   Top strip
------------------------------ */
.topstrip {
  background: rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid var(--border);
}
.topstrip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  flex-wrap: nowrap;
}
.topstrip__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.topstrip__text {
  color: var(--muted);
  font-size: 13px;
}
.topstrip__link {
  color: var(--muted);
  font-size: 13px;
}
.topstrip__btn {
  font-size: 12px;
  padding: 8px 12px;
  white-space: nowrap;
}
.sep {
  opacity: 0.35;
  margin: 0 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.badge--demo {
  border-color: rgba(255, 255, 255, 0.16);
}
.badge--lime {
  background: rgba(124, 255, 43, 0.12);
  border-color: rgba(124, 255, 43, 0.32);
  color: rgba(255, 255, 255, 0.88);
}

/* -----------------------------
   Header / Nav
------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(30, 35, 40, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.5px;
  background: rgba(124, 255, 43, 0.14);
  border: 1px solid rgba(124, 255, 43, 0.35);
  color: rgba(255, 255, 255, 0.92);
}
.brand__name {
  display: block;
  font-weight: 900;
  line-height: 1.1;
}
.brand__tag {
  display: block;
  font-size: 12px;
  color: var(--muted2);
  margin-top: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.18)),
    rgba(0, 0, 0, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}
.nav a {
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* dropdown */
.dd {
  position: relative;
}
.dd.is-open {
  z-index: 5;
}
.dd__btn {
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 10px;
}
.dd__btn:hover {
  background: rgba(255, 255, 255, 0.06);
}
.dd__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(18, 22, 26, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10;
  transform: translateY(8px) scale(0.98);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}
.dd.is-open .dd__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.dd__chev {
  display: inline-block;
  transition: transform 0.2s ease;
}
.dd.is-open .dd__chev {
  transform: rotate(180deg);
}
.dd__menu a {
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.82);
}
.dd__menu a:hover {
  background: rgba(255, 255, 255, 0.07);
}
.dd__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 8px 6px;
}

/* nav toggle (optional) */
.iconbtn {
  display: none;
}

/* -----------------------------
   Buttons / Pills
------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition:
    transform 0.06s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}
.btn:hover {
  background: rgba(255, 255, 255, 0.08);
}
.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--lime);
  border-color: rgba(124, 255, 43, 0.55);
  color: rgba(0, 0, 0, 0.88);
}
.btn--primary:hover {
  background: var(--lime2);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn--cta {
  background: var(--cta);
  border-color: rgba(255, 200, 61, 0.55);
  color: rgba(0, 0, 0, 0.88);
}
.btn--sm {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
}
.btn--xs {
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 12px;
}
.btn--full {
  width: 100%;
}

.btn--lime {
  background: rgba(124, 255, 43, 0.14);
  border-color: rgba(124, 255, 43, 0.38);
  color: rgba(255, 255, 255, 0.9);
}
.btn--lime:hover {
  background: rgba(124, 255, 43, 0.18);
}

.bolt {
  font-size: 14px;
}
.icon-bolt {
  width: 14px;
  height: 14px;
  display: inline-block;
  fill: currentColor;
}
.icon-glyph {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
}
.pill--soft {
  background: rgba(255, 255, 255, 0.04);
}
.pill--lime {
  background: rgba(124, 255, 43, 0.14);
  border-color: rgba(124, 255, 43, 0.35);
}

.link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* -----------------------------
   Hero
------------------------------ */
.hero {
  position: relative;
  padding: 44px 0 26px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("/pressurewashing/assets/img/hero/hero.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: scale(1.02);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: 13px;
  margin-bottom: 10px;
}
.hero h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.03;
  margin: 0 0 10px;
}
.lead {
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.65;
  max-width: 54ch;
  margin: 0 0 14px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 14px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 14px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.proof {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  padding: 12px 12px;
}
.proof__num {
  font-weight: 900;
  font-size: 20px;
}
.proof__text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
}

.hero__note {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.18);
}
.note__tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(124, 255, 43, 0.14);
  border: 1px solid rgba(124, 255, 43, 0.3);
  font-weight: 900;
  font-size: 12px;
}

/* -----------------------------
   Cards / Form
------------------------------ */
.card {
  background: rgba(24, 28, 33, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
}

.formcard {
  padding: 16px;
}
.formcard__head h2 {
  margin: 8px 0 6px;
  font-size: 30px;
}
.formcard__head p {
  margin: 0 0 12px;
}

.form {
  display: grid;
  gap: 12px;
}
.field label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 6px;
}
.field input,
.field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  padding: 12px 12px;
  outline: none;
}
.field input:focus,
.field textarea:focus {
  border-color: rgba(124, 255, 43, 0.45);
}

.callout {
  border-radius: 18px;
  border: 1px solid rgba(124, 255, 43, 0.22);
  background: rgba(124, 255, 43, 0.08);
  padding: 12px;
}
.callout__row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.callout__icon {
  font-size: 18px;
}
.callout__icon .icon-bolt {
  width: 18px;
  height: 18px;
}

.check {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}
.check input {
  accent-color: var(--lime);
  width: 16px;
  height: 16px;
  margin: 0;
}
.check span {
  line-height: 1.2;
}

.toggles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.toggle {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.84);
}
.toggle input {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
}
.toggle input:checked {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}
.toggle input:checked::after {
  content: "✓";
  color: #0b0b0b;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.toggle span {
  font-weight: 700;
}

.radios {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.radio {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.84);
}
.radio input {
  accent-color: var(--lime);
  width: 16px;
  height: 16px;
  margin: 0;
}
.radio span {
  line-height: 1.2;
}

.form-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.formcard__alt {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.miniCard {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}
.miniCard__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.miniCard__icon .icon-glyph {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.88);
}
.miniCard__title {
  font-weight: 900;
}
.miniCard--list {
  grid-template-columns: 1fr;
}
.miniCard__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
}
.miniCard__list li {
  position: relative;
  padding-left: 18px;
}
.miniCard__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(124, 255, 43, 0.4);
}

/* -----------------------------
   Sections
------------------------------ */
.section {
  padding: 54px 0;
}
.section--tight {
  padding: 44px 0;
}
.section--mint {
  background: rgba(124, 255, 43, 0.06);
}
.section--sand {
  background: rgba(255, 200, 61, 0.06);
}
.section--slate {
  background: rgba(118, 176, 255, 0.06);
}
.section__head {
  margin-bottom: 18px;
}
.section__head h2 {
  font-size: 42px;
  line-height: 1.05;
  margin: 0 0 8px;
}
.section__head p {
  margin: 0;
}

.section-break {
  --break-line: rgba(124, 255, 43, 0.45);
  --break-wash: rgba(124, 255, 43, 0.1);
  --break-dot: rgba(124, 255, 43, 0.28);
  --break-trim: rgba(255, 255, 255, 0.2);
  height: 50px;
  margin: 0;
  position: relative;
  background: transparent;
  overflow: hidden;
}
.section-break::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      transparent 0,
      var(--break-line) 14%,
      var(--break-line) 86%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      transparent 0 38%,
      var(--break-wash) 38% 68%,
      transparent 68% 100%
    );
  background-repeat: no-repeat;
  background-size: 100% 2px, 100% 100%;
  background-position: center 24px, center;
}
.section-break::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  width: min(680px, calc(100% - 120px));
  height: 24px;
  transform: translateX(-50%);
  border-top: 1px solid var(--break-trim);
  border-bottom: 1px solid var(--break-trim);
  background: radial-gradient(circle at center, var(--break-dot), transparent 58%);
  border-radius: 999px;
}
.section-break--mint {
  --break-line: rgba(124, 255, 43, 0.5);
  --break-wash: rgba(124, 255, 43, 0.12);
  --break-dot: rgba(124, 255, 43, 0.3);
  --break-trim: rgba(146, 255, 93, 0.28);
}
.section-break--sand {
  --break-line: rgba(255, 200, 61, 0.52);
  --break-wash: rgba(255, 200, 61, 0.12);
  --break-dot: rgba(255, 214, 116, 0.3);
  --break-trim: rgba(255, 216, 124, 0.26);
}
.section-break--slate {
  --break-line: rgba(118, 176, 255, 0.5);
  --break-wash: rgba(118, 176, 255, 0.11);
  --break-dot: rgba(152, 196, 255, 0.32);
  --break-trim: rgba(155, 200, 255, 0.25);
}
.section-break--accent {
  --break-line: rgba(255, 255, 255, 0.38);
  --break-wash: rgba(124, 255, 43, 0.06);
  --break-dot: rgba(255, 200, 61, 0.28);
  --break-trim: rgba(255, 255, 255, 0.22);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  align-items: start;
}
.split__left,
.split__right {
  display: grid;
  gap: 16px;
  align-content: start;
}
.split__left h2,
.split__left p {
  margin: 0;
}
.photoCard {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
  box-shadow: var(--shadow);
}
.photoCard img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.bigPhoto {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}
.bigPhoto img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.svcGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 0;
}
.svcLine {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.16);
}
.svcLine__icon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(124, 255, 43, 0.14);
  border: 1px solid rgba(124, 255, 43, 0.26);
  font-weight: 900;
}
.svcLine__body strong {
  display: block;
  margin-bottom: 6px;
}

/* Why */
.whyGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.whyCard {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.14);
}
.whyCard__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(124, 255, 43, 0.32);
  background: rgba(124, 255, 43, 0.12);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}
.whyCard h3 {
  margin: 0 0 8px;
}
.whyCard p {
  margin: 0;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stepCard {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.14);
  text-align: center;
}
.stepCard__num {
  width: 54px;
  height: 54px;
  margin: 0 auto 10px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 1000;
  font-size: 18px;
}

/* Reviews */
.reviewGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.reviewCard {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.14);
}
.stars {
  color: var(--lime);
  letter-spacing: 1px;
  font-weight: 900;
  margin-bottom: 8px;
}
.reviewCard p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.86);
}

/* City section */
.cityGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.cityCard {
  display: grid;
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  border: 0;
  background: rgba(16, 18, 22, 0.72);
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}
.cityCard:hover {
  transform: translateY(-2px);
  background: rgba(16, 18, 22, 0.85);
}
.cityCard__media {
  height: 120px;
  border-radius: 14px;
  border: 0;
  background: var(--city-image);
  background-size: cover;
  background-position: center;
}
.cityCard__meta {
  display: grid;
  gap: 2px;
  padding: 0 2px 2px;
}
.cityCard__name {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
}
.cityCard__cta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.section--areas {
  padding-bottom: 70px;
}

/* CTA band (green strip like screenshot) */
.ctaBand {
  margin-top: 26px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(124, 255, 43, 0.18);
  background:
    linear-gradient(0deg, rgba(124, 255, 43, 0.16), rgba(124, 255, 43, 0.16)),
    radial-gradient(
      600px 240px at 30% 30%,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    ),
    rgba(124, 255, 43, 0.1);
}
.ctaBand__inner {
  padding: 28px 18px;
  text-align: center;
}
.ctaBand__inner h2 {
  margin: 0 0 8px;
  font-size: 42px;
}
.ctaBand__inner p {
  margin: 0 0 14px;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  margin-top: auto;
}
.footer__inner {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
  align-items: start;
}
.footer__brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer__logo {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 1000;
  background: rgba(124, 255, 43, 0.14);
  border: 1px solid rgba(124, 255, 43, 0.3);
}
.footer__title {
  font-weight: 1000;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.footer__col {
  display: grid;
  gap: 10px;
}
.footer__head {
  font-weight: 1000;
  opacity: 0.9;
}
.footer__col a {
  color: rgba(255, 255, 255, 0.78);
}
.footer__col a:hover {
  color: rgba(255, 255, 255, 0.92);
}

.footer__col a.footer-accent {
  color: var(--cta);
  font-weight: 700;
}

.footer__col a.footer-accent:hover {
  color: var(--lime);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__bottomInner {
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.toTop {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(124, 255, 43, 0.14);
  border: 1px solid rgba(124, 255, 43, 0.3);
}
.footer .toTop {
  display: none;
}

.toTopFab {
  position: fixed;
  right: 32px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(124, 255, 43, 0.38);
  background: rgba(124, 255, 43, 0.2);
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  font-weight: 900;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}
.toTopFab:hover {
  background: rgba(124, 255, 43, 0.3);
}
.toTopFab.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* -----------------------------
   Service page layout helpers
------------------------------ */
.header--compact .header__inner {
  padding: 10px 0;
}

.pageHero {
  padding: 30px 0 10px;
}
.pageHero--city {
  padding: 34px 0 16px;
  background: radial-gradient(
    900px 420px at 20% 0%,
    rgba(124, 255, 43, 0.1),
    transparent 60%
  );
}
.city-theme--seattle {
  background: radial-gradient(
    900px 420px at 18% 0%,
    rgba(124, 255, 43, 0.14),
    transparent 60%
  );
}
.city-theme--bellevue {
  background: radial-gradient(
    960px 420px at 65% 0%,
    rgba(255, 200, 61, 0.13),
    transparent 60%
  );
}
.city-theme--kent {
  background: radial-gradient(
    920px 420px at 25% 0%,
    rgba(85, 220, 255, 0.13),
    transparent 62%
  );
}
.city-theme--renton {
  background: radial-gradient(
    920px 420px at 78% 0%,
    rgba(124, 255, 43, 0.13),
    transparent 62%
  );
}
.city-theme--auburn {
  background: radial-gradient(
    920px 420px at 28% 0%,
    rgba(255, 200, 61, 0.14),
    transparent 62%
  );
}
.city-theme--issaquah {
  background: radial-gradient(
    980px 420px at 70% 0%,
    rgba(105, 170, 255, 0.14),
    transparent 62%
  );
}
.city-theme--redmond {
  background: radial-gradient(
    900px 420px at 30% 0%,
    rgba(180, 120, 255, 0.12),
    transparent 62%
  );
}
.city-theme--sammamish {
  background: radial-gradient(
    950px 420px at 72% 0%,
    rgba(124, 255, 43, 0.11),
    rgba(105, 170, 255, 0.08),
    transparent 64%
  );
}
.crumbs {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  margin-bottom: 10px;
}
.crumbs a {
  color: rgba(255, 255, 255, 0.7);
}
.pageHero__title {
  font-size: clamp(44px, 6vw, 70px);
  margin: 0 0 10px;
}
.pageHero__sub {
  color: rgba(255, 255, 255, 0.78);
  max-width: 78ch;
  line-height: 1.65;
  margin: 0;
}

.twoCol {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  align-items: start;
}
.sideStack {
  display: grid;
  gap: 14px;
}

.bullets {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.8);
}
.bullets li {
  margin: 8px 0;
}
.bullets--fancy {
  list-style: none;
  padding-left: 0;
}
.bullets--fancy li {
  position: relative;
  margin: 10px 0;
  padding: 10px 12px 10px 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.16);
}
.bullets--fancy li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 10px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  color: #0d1a09;
  background: var(--lime);
}
.stepsList {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.8);
}
.stepsList li {
  margin: 8px 0;
}

.quoteCard {
  padding: 16px;
  border-radius: 26px;
}
.quoteCard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.miniList {
  padding: 16px;
  border-radius: 26px;
}
.miniList ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
}
.miniList li {
  position: relative;
  padding-left: 18px;
}
.miniList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.45);
}
.miniList a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.miniList a:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}
.miniList .btn {
  margin-top: 5px;
}

.ctaWide {
  margin-top: 18px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* City mini */
.whyMini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.whyMini__item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.12);
}
.whyMini__item span {
  color: var(--lime);
  font-weight: 1000;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    filter 0.55s ease;
}
.reveal.reveal--anim {
  transition: none;
  animation: revealIn 0.95s ease forwards;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
@keyframes revealIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* -----------------------------
   Quick “keep in mind” mobile
------------------------------ */
@media (max-width: 980px) {
  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    padding: 10px;
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    z-index: 60;
    background: rgba(10, 12, 14, 0.96);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
  }
  .dd__menu {
    background: rgba(8, 10, 12, 0.98);
    border-color: rgba(255, 255, 255, 0.14);
  }
  .nav.is-open {
    display: flex;
  }
  .iconbtn {
    display: inline-block;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
  }
  .iconbtn__bar {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
  }
  .header__actions {
    gap: 8px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__actions .btn {
    justify-content: center;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .svcGrid {
    grid-template-columns: 1fr 1fr;
  }
  .svcLine {
    grid-template-columns: 32px 1fr;
    gap: 8px;
    padding: 12px;
  }
  .svcLine__icon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    font-size: 14px;
  }
  .svcLine__body strong {
    margin-bottom: 4px;
  }
  .svcLine__body .muted {
    margin-bottom: 6px;
  }
  .whyGrid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .reviewGrid {
    grid-template-columns: 1fr 1fr;
  }
  .cityGrid {
    grid-template-columns: 1fr 1fr;
  }
  .twoCol {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__cols {
    grid-template-columns: 1fr 1fr;
  }
  .toTopFab {
    right: 18px;
    bottom: 14px;
  }
}

@media (max-width: 620px) {
  .cityGrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.force-motion) .reveal,
  html:not(.force-motion) .reveal.is-visible,
  html:not(.force-motion) .toTopFab {
    transition: none;
    transform: none;
    filter: none;
  }
}
