/* ============================================================
   Wish Junk Removal — Landing Page
   Built 1:1 from Figma: TmGi4rZnbYj6uzUfN6GwJ1 / node 2355:811
   Base canvas 1440px. Fluid below that, reflowing at 1080/900/620.
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --ink:          #1b1f24;
  --blue:         #177acc;
  --yellow:       #fdc301;
  --muted:        #9aa1ae;
  --tint:         #f3fcff;   /* pale blue section / card fill */
  --tint-border:  #beefff;
  --amber-fill:   rgba(255, 196, 0, .1);
  --amber-border: #ffeba7;
  --rail:         #bbe0ff;
  --footer-bg:    #111318;   /* raw Figma fill (frame renders it at 80% opacity) */
  --footer-rule:  #707070;
  --footer-dim:   #707070;
  --field-bg:     #f7f7f9;
  --field-border: #e5e7eb;
  --label:        #5b6270;

  --pad: 95px;               /* page gutter */
  --content: 1250px;         /* 1440 − 2×95 */

  --fs-h1: 60px;
  --fs-h2: 60px;
  --fs-h3: 28px;
  --fs-card-title: 21px;
  --fs-lede: 20px;
  --fs-body: 18px;
  --fs-btn: 15px;

  --shadow-btn:  0 2px 6px rgba(0, 0, 0, .15);
  --shadow-soft: 0 0 6px rgba(0, 0, 0, .15);
  --shadow-card: 0 0 3px rgba(0, 0, 0, .15);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, figure, dl, dd, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
hr { border: 0; margin: 0; }

/* ---------- shared type ---------- */
.c-blue   { color: var(--blue); }
.c-yellow { color: var(--yellow); }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.2308;   /* 16px @13 */
  text-transform: uppercase;
}
.eyebrow--yellow { color: var(--yellow); }
.eyebrow--blue   { color: var(--blue); }

.h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.0833;  /* 65px @60 */
  color: var(--ink);
}
.h2--center { text-align: center; }
.h2--white  { color: #fff; }

.lede {
  font-size: var(--fs-lede);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
}
.lede--black  { color: #000; }
.lede--white  { color: #fff; }
.lede--center { text-align: center; }
.lede--sm     { font-size: var(--fs-body); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 10px;
  border: 0;
  border-radius: 60px;
  font-size: var(--fs-btn);
  font-weight: 500;
  line-height: 1.2;      /* 18px @15 */
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn--lg { padding: 16px 32px; border-radius: 48px; }

.btn--yellow { background: var(--yellow); color: var(--ink); box-shadow: var(--shadow-btn); }
.btn--white  { background: #fff;          color: var(--ink); box-shadow: var(--shadow-soft); }

.btn:hover  { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0, 0, 0, .18); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.btn__ico { width: 19px; height: 19px; flex: none; }

.textLink {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.0909;  /* 24px @22 */
  color: var(--blue);
}
.textLink img { width: 19px; height: 19px; flex: none; transition: transform .2s ease; }
.textLink:hover img { transform: translateX(4px); }

/* icon chip: the SVG ships its own 52px white card + 6px shadow bleed (64px box) */
.icoBox {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  flex: none;
}
.icoBox img {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 64px;
  height: 64px;
  max-width: none;
}

/* ============================================================
   NAV — 1440×84
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 rgba(27, 31, 36, .06);  /* hairline that doesn't add height */
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 0;
}
.nav__logo img { width: 100px; height: 63px; object-fit: contain; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 54px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: var(--fs-btn);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}
.nav__links a { position: relative; padding: 2px 0; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { width: 174px; }

.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
body.nav-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav__burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — 1440×591
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 591px;
  padding: 65px var(--pad);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 19.34%, rgba(0, 0, 0, 0) 66.187%);
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 636px;
  max-width: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 317px;
  max-width: 100%;
  height: 29px;
  border: 1px solid #10312d;
  border-radius: 37px;
  background: rgba(255, 255, 255, .05);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2308;
  letter-spacing: 1.5px;
  color: var(--yellow);
  white-space: nowrap;
}
.pill__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); flex: none; }

.hero__title {
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: 1.0833;  /* 65px @60 */
  color: #fff;
}
.hero__lede {
  width: 560px;
  max-width: 100%;
  font-size: var(--fs-lede);
  line-height: 1.55;
  color: #fff;
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }

.stats { display: flex; flex-wrap: wrap; align-items: center; gap: 48px; }
.stat { width: 111px; }
.stat dt { font-size: 34px; font-weight: 900; line-height: 1.2059; color: var(--blue); }   /* 41px @34 */
.stat dd { margin: 0; font-size: 14px; line-height: 1.5; color: var(--muted); }            /* 21px @14 */

/* ============================================================
   SERVICES — 1440×1375 split
   ============================================================ */
.services { display: flex; align-items: stretch; }

.services__media {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  flex: 0 0 736px;
  width: 736px;
  min-height: 1375px;
  padding: 28px var(--pad);
  overflow: hidden;
}
.services__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.services__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%); }
.services__quote { position: relative; }
.services__quoteText { font-size: 28px; font-weight: 700; line-height: 1.0714; color: #fff; }  /* 30px @28 */
.services__quoteBy   { margin-top: 5px; font-size: 14px; line-height: 1.5714; color: #fff; }   /* 22px @14 */

.services__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  flex: 0 0 704px;
  width: 704px;
  padding: 65px 0;
}
.services__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding-left: 106px;   /* Figma insets from the left only; the copy runs past the right inset */
}
.services__head .h2   { width: 492px; max-width: 100%; }
.services__head .lede { width: 504px; max-width: 100%; }

.svcList { display: flex; flex-direction: column; align-items: center; gap: 24px; width: 100%; }

.svcCard {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  width: 488px;
  max-width: 100%;
  padding: 19px 30px;
  background: var(--tint);
  outline: 1px solid var(--tint-border);   /* inside stroke — matches Figma, adds no height */
  outline-offset: -1px;
  border-radius: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.svcCard:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(23, 122, 204, .1); }
.svcCard__txt { display: flex; flex-direction: column; gap: 6px; width: 335px; max-width: 100%; }
.svcCard__txt h3 { font-size: var(--fs-card-title); font-weight: 700; line-height: 1.0952; }  /* 23px @21 */
.svcCard__txt p  { font-size: var(--fs-body); line-height: 1.5556; }                          /* 28px @18 */

/* ============================================================
   WHY WISH — 1440×752, #f3fcff
   ============================================================ */
.why { background: var(--tint); padding: 65px var(--pad); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 289px);
  gap: 32px;
  max-width: var(--content);
  margin: 0 auto;
  justify-content: center;
}
.why__head {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.why__head .lede { max-width: 562px; }

.whyCard {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px;
  background: var(--amber-fill);
  outline: 1px solid var(--amber-border);  /* inside stroke */
  outline-offset: -1px;
  border-radius: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whyCard:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(253, 195, 1, .18); }
.whyCard h3 { font-size: var(--fs-card-title); font-weight: 700; line-height: 1.0952; }
.whyCard p  { font-size: var(--fs-body); line-height: 1.5556; }

/* ============================================================
   PROCESS — 1440×578, white
   ============================================================ */
.process {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 65px var(--pad);
  background: #fff;
}
.process__wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1249px;
}
.process__rail { display: flex; align-items: center; justify-content: center; }
.rail { width: 333px; max-width: 100%; height: 1px; background: var(--rail); }

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 102px;
  height: 102px;
  border-radius: 80px;
  background: #fff;
  font-size: 39px;
  font-weight: 700;
  line-height: 1.0769;   /* 42px @39 */
}
.step--blue   { border: 5px solid var(--blue);   color: var(--blue); }
.step--yellow { border: 5px solid var(--yellow); color: var(--yellow); }
.step--inline { display: none; }

.process__steps {
  display: flex;
  justify-content: center;
  gap: 100px;
  width: 100%;
  text-align: center;
}
.process__steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 335px;
}
.process__steps h3 { font-size: var(--fs-h3); font-weight: 700; line-height: 1.0714; }   /* 30px @28 */
.process__steps p  { font-size: var(--fs-body); line-height: 1.5556; }

/* ============================================================
   CTA BAND — 1440×428, #f3fcff
   ============================================================ */
.band { background: var(--tint); padding: 65px 10px; }

.band__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: var(--content);
  min-height: 298px;
  margin: 0 auto;
  padding: 65px 70px;
  border-radius: 15px;
  overflow: hidden;
}
.band__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band__scrim { position: absolute; inset: 0; background: rgba(23, 122, 204, .8); }
.band__title { position: relative; font-size: 42px; font-weight: 800; line-height: 1.0714; color: #fff; }  /* 45px @42 */
.band .btn { position: relative; align-self: flex-start; width: 211px; box-shadow: 0 0 6px rgba(0, 0, 0, .2); }

/* ============================================================
   TRANSFORMATION — 1440×921, white
   ============================================================ */
.transform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 65px var(--pad);
  background: #fff;
}
.compare {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  max-width: var(--content);
}
.compare__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 620px;
  min-width: 0;
  height: 562px;
  padding: 29px 50px;
  overflow: hidden;
}
.compare__panel--left  { border-radius: 15px 0 0 15px; }
.compare__panel--right { border-radius: 0 15px 15px 0; }
.compare__panel > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 63.167%, #000 100%); }

.tag {
  position: relative;
  align-self: flex-start;
  padding: 16px 32px;
  border-radius: 48px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: var(--shadow-soft);
}
.tag--dark   { background: var(--ink);    color: #fff; }
.tag--yellow { background: var(--yellow); color: var(--ink); }

.compare__panel figcaption { position: relative; display: flex; flex-direction: column; gap: 5px; max-width: 575px; color: #fff; }
.compare__panel figcaption h3 { font-size: var(--fs-h3); font-weight: 700; line-height: 1.0714; text-shadow: 0 0 4.5px rgba(0, 0, 0, .25); }
.compare__panel figcaption p  { font-size: 14px; line-height: 1.5714; }

/* ============================================================
   TESTIMONIALS — 1440×937, #f3fcff
   ============================================================ */
.reviews { background: var(--tint); padding: 65px var(--pad); }
.reviews__inner {
  display: flex;
  gap: 32px;
  max-width: var(--content);
  margin: 0 auto;
}
.reviews__left { display: flex; flex-direction: column; gap: 24px; flex: 0 0 502px; min-width: 0; }
.reviews__head { display: flex; flex-direction: column; gap: 24px; padding: 28px 20px; }
.reviews__headTop { display: flex; flex-direction: column; }
.reviews__stars { margin-bottom: -6px; font-size: 36px; font-weight: 900; line-height: 1.2222; color: var(--yellow); letter-spacing: -2px; }

.googleBadge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 182px;
  height: 62px;
  background: #fff;
  border-radius: 10px;
  filter: drop-shadow(var(--shadow-card));
}
.googleBadge > p { width: 129px; }   /* left-aligned inside a centred 129px column */
.googleBadge__score { font-size: 19px; font-weight: 700; line-height: 1.2105; }   /* 23px @19 */
.googleBadge__count { font-size: 14px; line-height: 1.5; color: var(--muted); }

.reviews__photo { position: relative; height: 387px; border-radius: 15px; box-shadow: var(--shadow-soft); overflow: hidden; }
.reviews__photo img {
  position: absolute;
  left: -21.46%;
  top: -2.75%;
  width: 138.94%;
  height: 120.16%;
  max-width: none;
  object-fit: cover;
}

.reviews__list { display: flex; flex-direction: column; gap: 24px; flex: 1 1 716px; min-width: 0; }

.review {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  min-height: 253px;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  filter: drop-shadow(var(--shadow-card));
}
.review__stars { display: flex; align-items: center; }
.review__stars img { width: 24px; height: 24px; }
.review__text { font-size: var(--fs-body); line-height: 1.5556; }
.review__rule { width: 321px; max-width: 100%; height: 1px; background: #dedede; }
.review__author { display: flex; align-items: center; gap: 15px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: none; }
.review__name  { font-size: 19px; font-weight: 700; line-height: 1.1053; }        /* 21px @19 */
.review__place { margin-top: 2px; font-size: 14px; line-height: 1.5714; color: #8f8f8f; }

/* ============================================================
   LEAD FORM — 1440×772
   ============================================================ */
.lead { position: relative; padding: 65px var(--pad); overflow: hidden; }
.lead__bg { position: absolute; inset: 0; pointer-events: none; }
.lead__bg img { width: 100%; height: 100%; object-fit: cover; }
.lead__scrim { position: absolute; inset: 0; background: rgba(23, 122, 204, .9); }

.lead__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
  max-width: var(--content);
  margin: 0 auto;
}
.lead__copy { display: flex; flex-direction: column; gap: 24px; flex: 0 1 608px; min-width: 0; }

.checks { display: flex; flex-direction: column; gap: 14px; }
.checks li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1.5556;
  color: #fff;
}
.checks img { width: 24px; height: 24px; flex: none; }

.leadForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 0 1 609px;
  min-width: 0;
  padding: 40px 32px;
  background: rgba(255, 255, 255, .95);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}
.leadForm__head { display: flex; flex-direction: column; gap: 11px; width: 100%; }
.leadForm__head h3 { font-size: 27px; font-weight: 700; line-height: 1.0741; }   /* 29px @27 */
.leadForm__head p  { font-size: var(--fs-body); line-height: 1.5556; }

.leadForm__fields { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .5px;
  line-height: 1.25;      /* 15px @12 */
  text-transform: uppercase;
  color: var(--label);
}
.field input,
.field textarea {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--field-bg);
  border: 1px solid var(--field-border);
  border-radius: 8px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { height: 120px; padding: 12px 14px; resize: vertical; line-height: 1.5; }
.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 122, 204, .15);
}

.leadForm__submit { width: 100%; border-radius: 9px; padding: 16px 32px; font-size: 16px; font-weight: 600; color: #37331f; }
.leadForm__note { font-size: 12px; line-height: 1.4167; text-align: center; color: #c9c9c9; }

/* ---------- SMS consent (A2P 10DLC) ----------
   Its own box so a reviewer can see the opt-in is separate from every other
   agreement on the form. Never pre-checked, never required. */
.consent {
  display: flex;
  gap: 11px;
  width: 100%;
  padding: 14px 15px;
  background: var(--tint);
  border-radius: 10px;
  outline: 1px solid var(--tint-border);
  outline-offset: -1px;
}
.consent__box {
  flex: none;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--blue);
  cursor: pointer;
}
.consent__box:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.consent__body { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.consent__text {
  font-size: 12px;
  line-height: 1.5;
  color: #3b4350;
  cursor: pointer;
}
.consent__links { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; line-height: 1.5; }
.consent__links a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent__links a:hover { color: var(--ink); }
.consent__links span { color: var(--muted); }
.consent__note { font-size: 11px; line-height: 1.5; color: #6b7280; }

/* ============================================================
   LEGAL PAGES (privacy.html) — prose column under the nav
   ============================================================ */
.legal {
  max-width: 800px;               /* ~740px measure — comfortable for long prose */
  margin: 0 auto;
  padding: 72px 30px 96px;
}
.legal__head { padding-bottom: 34px; border-bottom: 1px solid var(--tint-border); }
.legal__title { margin-bottom: 14px; font-size: 46px; font-weight: 800; line-height: 1.1; color: var(--ink); }
.legal__date  { font-size: 16px; font-weight: 600; color: var(--blue); }

.legal__intro { margin-top: 34px; font-size: var(--fs-body); line-height: 1.7; color: var(--ink); }
.legal__intro p + p { margin-top: 16px; }

.legal section { margin-top: 44px; }
.legal h2 {
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--ink);
}
.legal h3 {
  margin-top: 26px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}
.legal p { font-size: 17px; line-height: 1.7; color: #3b4350; }
.legal p + p { margin-top: 14px; }

.legal ul { margin: 14px 0 0; padding-left: 4px; list-style: none; }
.legal li {
  position: relative;
  padding-left: 24px;
  font-size: 17px;
  line-height: 1.65;
  color: #3b4350;
}
.legal li + li { margin-top: 8px; }
.legal li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}
.legal ul + p { margin-top: 16px; }

.legal a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--ink); }

.legal__callout {
  margin-top: 16px;
  padding: 18px 22px;
  border: 1px solid var(--amber-border);
  border-radius: 12px;
  background: var(--amber-fill);
}
.legal__contact {
  margin-top: 20px;
  padding: 24px 26px;
  border: 1px solid var(--tint-border);
  border-radius: 12px;
  background: var(--tint);
}
.legal__contact p { color: var(--ink); }
.legal__entity { font-weight: 700; }

.legal__back { display: inline-flex; margin-top: 56px; }

@media (max-width: 900px) {
  .legal { padding: 56px var(--pad) 72px; }
  .legal__title { font-size: 36px; }
  .legal h2 { font-size: 22px; }
}
@media (max-width: 620px) {
  .legal__title { font-size: 30px; }
  .legal section { margin-top: 36px; }
  .legal p, .legal li { font-size: 16px; }
  .legal__back { width: 100%; }
}

/* ============================================================
   FOOTER — 1440×530, #3f4044
   ============================================================ */
.footer { background: var(--footer-bg); padding: 65px var(--pad) 65px; }

.footer__top {
  display: flex;
  gap: 93px;
  max-width: var(--content);
  margin: 0 auto;
}
.footer__brand { flex: 1 1 auto; min-width: 0; }
.footer__logo  { width: 182px; height: 115px; object-fit: contain; }
.footer__blurb { max-width: 443px; margin-top: 27px; font-size: 16px; line-height: 1.5625; color: var(--muted); }  /* 25px @16 */
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  transition: color .2s ease;
}
.footer__phone img { width: 18px; height: 18px; flex: none; }
.footer__phone:hover { color: var(--yellow); }

.socials { display: flex; align-items: center; gap: 8px; margin-top: 27px; }
.socials a { display: block; opacity: .85; transition: opacity .2s ease, transform .2s ease; }
.socials a:hover { opacity: 1; transform: translateY(-2px); }
.socials img { width: 21px; height: 21px; }

.footer__col { flex: none; }
.footer__col--services { width: 149px; }
.footer__col--company  { width: 125px; }
.footer__col--contact  { width: 262px; }

/* location line is the one contact row that needs to wrap */
.footer__col li .footer__loc { align-items: flex-start; white-space: normal; }
.footer__col li .footer__loc img { margin-top: 2px; }

.footer__col h4 {
  padding: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;      /* 24px @20 */
  color: #fff;
}
.footer__col ul { margin-top: 20px; }
.footer__col li a,
.footer__col li span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  font-size: 16px;
  line-height: 19px;
  white-space: nowrap;
  color: var(--muted);
  transition: color .2s ease;
}
.footer__col li a:hover { color: #fff; }
.footer__col li img { width: 16px; height: 16px; flex: none; }

.footer__rule {
  height: 1px;
  max-width: var(--content);
  margin: 41px auto 0;
  background: var(--footer-rule);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--content);
  margin: 41px auto 0;
  font-size: 16px;
  line-height: 1.1875;   /* 19px @16 */
  color: var(--footer-dim);
}
.footer__starRow { font-weight: 700; letter-spacing: -1px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- >1440: keep the 1250px content column centred, let backgrounds bleed ---- */
@media (min-width: 1441px) {
  :root { --pad: calc((100vw - var(--content)) / 2); }   /* == 95px at 1440 */

  .services__media { flex: 0 0 51.111%; width: 51.111%; }  /* 736/1440 */
  .services__body  { flex: 1 1 auto; width: auto; min-width: 0; }  /* takes the exact remainder */
}

/* ---- ≤1440: fluid gutters ---- */
@media (max-width: 1439px) {
  :root { --pad: 5.5vw; }

  .services__media { flex: 0 0 51.1%; width: 51.1%; }
  .services__body  { flex: 1 1 48.9%; width: auto; min-width: 0; padding-left: 2vw; padding-right: 2vw; }
  .services__head  { padding: 0 4vw; }
  /* the fixed Figma widths become ceilings once the column narrows */
  .services__head .h2   { width: auto; }
  .services__head .lede { width: auto; max-width: 504px; }
  .svcList         { align-items: stretch; }
  .svcCard         { width: 100%; max-width: 488px; margin: 0 auto; }
  .svcCard__txt    { width: auto; min-width: 0; }
  .process__steps  { gap: 4vw; }
  .rail            { flex: 1 1 auto; width: auto; }
  .process__rail   { gap: 0; }
}

/* ---- ≤1240: why-grid becomes 3 across, process tightens ---- */
@media (max-width: 1240px) {
  :root { --fs-h2: 48px; --fs-h1: 48px; }

  .why__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .why__head { grid-column: span 3; }
  .why__head .lede { max-width: 720px; }

  .services__media { min-height: 0; }
}

/* ---- ≤1080: tablet — split sections stack ---- */
@media (max-width: 1080px) {
  :root { --fs-h1: 44px; --fs-h2: 44px; --fs-h3: 26px; --fs-lede: 18px; --fs-body: 17px; }

  /* nav */
  .nav__links { gap: 24px; }
  .nav__right { gap: 28px; }

  /* hero: darken the whole frame so copy stays legible over the photo */
  .hero { min-height: 520px; }
  .hero__scrim { background: linear-gradient(90deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .6) 70%, rgba(0, 0, 0, .35) 100%); }
  .hero__content { width: 100%; }

  /* services: image on top, list below */
  .services { flex-direction: column; }
  .services__media {
    flex: none;
    width: 100%;
    min-height: 420px;
    padding: 40px var(--pad);
  }
  .services__body { flex: none; width: 100%; padding: 55px var(--pad); }
  .services__head { padding: 0; }
  .services__head .lede { width: auto; }
  .svcList { align-items: stretch; }
  .svcCard { width: 100%; max-width: none; margin: 0; }   /* full-bleed once stacked */
  .svcCard__txt { width: auto; }

  /* transformation: panels stack */
  .compare { flex-direction: column; gap: 16px; }
  .compare__panel { height: 440px; border-radius: 15px; }
  .compare__panel--left, .compare__panel--right { border-radius: 15px; }

  /* reviews: stack columns */
  .reviews__inner { flex-direction: column; }
  .reviews__left { flex: none; }
  .reviews__head { padding: 0; }

  /* lead form: stack */
  .lead__inner { flex-direction: column; align-items: stretch; gap: 40px; }
  .lead__copy, .leadForm { flex: none; }

  /* footer: brand on its own row */
  .footer__top { flex-wrap: wrap; gap: 48px 60px; }
  .footer__brand { flex: 1 1 100%; }
}

/* ---- ≤900: mobile nav ---- */
@media (max-width: 900px) {
  .nav__burger { display: block; }

  .nav__right {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px var(--pad) 24px;
    background: #fff;
    border-bottom: 1px solid rgba(27, 31, 36, .08);
    box-shadow: 0 16px 28px rgba(0, 0, 0, .1);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  body.nav-open .nav__right { opacity: 1; visibility: visible; transform: translateY(0); }

  .nav__links { flex-direction: column; align-items: stretch; gap: 0; font-size: 17px; }
  .nav__links a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(27, 31, 36, .07); }
  .nav__links a::after { display: none; }
  .nav__cta { width: 100%; margin-top: 16px; padding: 14px 10px; }

  .nav { position: relative; }

  /* why: 2 across */
  .why__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why__head { grid-column: span 2; }

  /* process: stacked steps with inline numbers */
  .process__rail { display: none; }
  .process__steps { flex-direction: column; align-items: center; gap: 44px; }
  .process__steps li { width: 100%; max-width: 420px; }
  .step--inline { display: inline-flex; }

  /* band */
  .band__card { padding: 48px 40px; }
  .band__title { font-size: 34px; }
}

/* ---- ≤620: phone ---- */
@media (max-width: 620px) {
  :root {
    --pad: 20px;
    --fs-h1: 34px;
    --fs-h2: 32px;
    --fs-h3: 22px;
    --fs-lede: 16px;
    --fs-body: 16px;
    --fs-card-title: 19px;
  }

  .nav__inner { height: 72px; }
  .nav__logo img { width: 84px; height: 53px; }

  .hero { min-height: 0; padding: 56px var(--pad) 48px; }
  .pill { width: auto; padding: 0 14px; font-size: 11px; letter-spacing: 1px; }
  .hero__lede { width: auto; }
  .hero__actions { gap: 12px; width: 100%; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; padding: 14px 20px; }
  .stats { gap: 16px; flex-wrap: nowrap; }
  .stat { width: auto; min-width: 0; }
  .stat dt { font-size: 26px; }
  .stat dd { font-size: 13px; }

  .services__media { min-height: 320px; padding: 28px var(--pad); }
  .services__quoteText { font-size: 22px; }
  .services__body { padding: 48px var(--pad); gap: 28px; }
  .svcCard { gap: 18px; padding: 18px 20px; }

  .why { padding: 48px var(--pad); }
  .why__grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .why__head { grid-column: span 1; }
  .whyCard { padding: 24px; gap: 16px; }

  .process { padding: 48px var(--pad); }
  .process__steps { gap: 36px; }
  .step { width: 82px; height: 82px; font-size: 31px; border-width: 4px; }

  .band { padding: 48px var(--pad); }
  .band__card { padding: 36px 24px; min-height: 0; }
  .band__title { font-size: 27px; }
  .band .btn { width: 100%; }

  .transform { padding: 48px var(--pad); }
  .compare__panel { height: 360px; padding: 22px 24px; }
  .tag { padding: 12px 24px; font-size: 13px; }
  .textLink { font-size: 18px; text-align: center; }

  .reviews { padding: 48px var(--pad); }
  .reviews__photo { height: 300px; }
  .reviews__stars { font-size: 28px; }
  .review { padding: 24px; min-height: 0; }
  .review__rule { width: 100%; }

  .lead { padding: 48px var(--pad); }
  .leadForm { padding: 28px 20px; }
  .leadForm__head h3 { font-size: 23px; }

  .footer { padding: 48px var(--pad); }
  .footer__top { gap: 32px; }
  .footer__col { flex: 1 1 45%; width: auto !important; }
  .footer__col--contact { flex-basis: 100%; }   /* email + city list are too long for a half column */
  .footer__col h4 { padding-left: 0; }
  .footer__col li a, .footer__col li span { padding-left: 0; }
  .footer__col--contact li a, .footer__col--contact li span { white-space: normal; }
  .footer__phone { font-size: 20px; }
  .footer__logo { width: 150px; height: 95px; }
  .footer__rule { margin-top: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 28px; font-size: 14px; }
}

/* ---- reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
