html, body {
  margin: 0;
  padding: 0; }

:root {
  --gp-green:#46b14b;
  --gp-green-700:#2f8a3a;
  --gp-green-900:#1d6b2c;
  --gp-green-50:#eef8ee;
  --gp-green-100:#dcefdd;
  --gp-line:#dceadd;
  --gp-blue:#2f7fd1;
  --gp-orange:#ff6f00;
  --gp-orange-600:#e56400;
  --gp-gold:#ffb400;
  --ink:#1c2a20;
  --slate:#5f6f63;
  --cloud:#f7faf6;
  --white:#fff;
  --shadow-sm:0 1px 2px rgba(28,42,32,.05),0 2px 10px rgba(28,42,32,.05);
  --shadow-md:0 10px 30px rgba(28,42,32,.09);
  --shadow-lg:0 22px 60px rgba(28,42,32,.14);
  --r:16px;
  --r-lg:26px;
  --r-pill:999px;
  --maxw:1140px;
  --font:"ProximaNova",system-ui,-apple-system,"Segoe UI",sans-serif; }

.lm * {
  box-sizing: border-box; }

.lm h1, .lm h2, .lm h3, .lm h4, .lm p, .lm ul, .lm ol, .lm figure, .lm blockquote {
  margin: 0;
  padding: 0; }

.lm ul, .lm ol {
  list-style: none; }

.lm {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden; }

.lm h1, .lm h2, .lm h3 {
  line-height: 1.13;
  color: var(--gp-green-900);
  letter-spacing: -.01em;
  font-weight: 900; }

.lm a {
  color: inherit; }

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

.lm .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px; }

.lm .eyebrow {
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gp-green); }

.lm .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.02rem;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s,box-shadow .15s,background .15s;
  white-space: nowrap; }

.lm .btn-primary {
  background: linear-gradient(0deg, #ff6f00 0%, #ff9b00 92.39%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 111, 0, 0.3); }

.lm .btn-primary:hover {
  background: linear-gradient(0deg, #e56400 0%, #ff8c00 92.39%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 111, 0, 0.4); }

.lm .btn-green {
  background: var(--gp-green);
  color: #fff;
  box-shadow: 0 6px 16px rgba(70, 177, 75, 0.28); }

.lm .btn-green:hover {
  background: var(--gp-green-700);
  transform: translateY(-2px); }

.lm .btn-ghost {
  background: #fff;
  color: var(--gp-green-900);
  border: 1.5px solid var(--gp-line); }

.lm .btn-ghost:hover {
  border-color: var(--gp-green);
  color: var(--gp-green-700); }

.lm .btn-block {
  width: 100%; }

.lm .btn .arrow {
  transition: transform .15s; }

.lm .btn:hover .arrow {
  transform: translateX(3px); }

.lm header.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--gp-line); }

.lm .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px; }

.lm .logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none; }

.lm .logo svg {
  width: 30px;
  height: 30px;
  flex: none; }

.lm .logo .wm {
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--gp-green-900);
  letter-spacing: -.02em; }

.lm .logo .wm b {
  color: var(--gp-green); }

.lm .nav-links {
  display: flex;
  align-items: center;
  gap: 24px; }

.lm .nav-links a {
  font-weight: 700;
  font-size: .94rem;
  color: var(--gp-green-900);
  text-decoration: none;
  opacity: .82; }

.lm .nav-links a:hover {
  opacity: 1;
  color: var(--gp-green); }

.lm .nav-cta {
  padding: 9px 18px;
  font-size: .92rem; }

.lm .nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px; }

.lm .nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gp-green-900);
  margin: 5px 0;
  border-radius: 2px; }

.lm .crumbs {
  background: var(--gp-green-50); }

.lm .crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  font-size: .8rem;
  padding: 10px 0;
  color: var(--slate); }

.lm .crumbs a {
  color: var(--slate);
  text-decoration: none; }

.lm .crumbs a:hover {
  color: var(--gp-green); }

.lm .crumbs li[aria-current] {
  color: var(--gp-green-900);
  font-weight: 700; }

.lm .crumbs li + li::before {
  content: "\203A";
  margin-right: 8px;
  color: #b6cdb8; }

.lm .hero {
  position: relative;
  padding: 54px 0 60px;
  background: radial-gradient(900px 420px at 88% -10%, var(--gp-green-100) 0%, rgba(220, 239, 221, 0) 62%), linear-gradient(180deg, #fff 0%, var(--cloud) 100%); }

.lm .hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 50px;
  align-items: center; }

.lm .badge-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--gp-line);
  padding: 6px 14px 6px 8px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px; }

.lm .badge-row .pin {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gp-green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none; }

.lm .badge-row b {
  color: var(--gp-green-900);
  font-weight: 800;
  font-size: .84rem; }

.lm .hero h1 {
  font-size: clamp(2.15rem, 4.8vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -.02em; }

.lm .hero h1 .hl {
  color: var(--gp-green); }

.lm .hero-sub {
  font-size: 1.14rem;
  color: var(--slate);
  max-width: 35ch;
  margin-bottom: 26px;
  font-weight: 600; }

.lm .zip-form {
  display: flex;
  gap: 8px;
  background: #fff;
  padding: 8px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  max-width: 440px;
  border: 1px solid var(--gp-line); }

.lm .zip-form input {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 1.04rem;
  font-family: var(--font);
  font-weight: 600;
  padding: 11px 8px 11px 18px;
  background: transparent;
  color: var(--ink); }

.lm .zip-form input::placeholder {
  color: #9aab9c;
  font-weight: 600; }

.lm .zip-note {
  font-size: .82rem;
  color: var(--slate);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600; }

.lm .zip-note svg {
  flex: none; }

.lm .trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 24px; }

.lm .trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--gp-green-900); }

.lm .stars {
  display: inline-flex;
  gap: 1px; }

.lm .stars svg {
  width: 15px;
  height: 15px; }

.lm .bidcard {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gp-line);
  overflow: hidden;
  position: relative; }

.lm .bidcard-head {
  background: linear-gradient(120deg, var(--gp-green) 0%, var(--gp-green-700) 100%);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.lm .bidcard-head .addr {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: .92rem; }

.lm .bidcard-head .live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  padding: 5px 11px;
  border-radius: var(--r-pill); }

.lm .dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bbf7c4;
  animation: lmpulse 1.8s infinite; }

@keyframes lmpulse {
  0% {
    box-shadow: 0 0 0 0 rgba(187, 247, 196, 0.7); }
  70% {
    box-shadow: 0 0 0 8px rgba(187, 247, 196, 0); }
  100% {
    box-shadow: 0 0 0 0 rgba(187, 247, 196, 0); } }

.lm .bidcard-body {
  padding: 14px 16px 16px; }

.lm .bidcard-label {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 4px 4px 10px; }

.lm .bid {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  margin-bottom: 9px;
  background: var(--gp-green-50);
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(10px);
  animation: lmbidIn .5s forwards; }

.lm .bid:nth-child(2) {
  animation-delay: .3s; }

.lm .bid:nth-child(3) {
  animation-delay: 1s; }

.lm .bid:nth-child(4) {
  animation-delay: 1.8s; }

.lm .bid.best {
  background: #fff;
  border-color: var(--gp-green);
  box-shadow: 0 6px 16px rgba(70, 177, 75, 0.16); }

@keyframes lmbidIn {
  to {
    opacity: 1;
    transform: translateY(0); } }

.lm .bid-ava {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: .84rem;
  background: var(--gp-green);
  box-shadow: var(--shadow-sm); }

.lm .bid-info {
  flex: 1;
  min-width: 0; }

.lm .bid-name {
  font-weight: 800;
  font-size: .95rem;
  color: var(--gp-green-900);
  display: flex;
  align-items: center;
  gap: 6px; }

.lm .verified {
  width: 14px;
  height: 14px;
  flex: none; }

.lm .bid-meta {
  font-size: .78rem;
  color: var(--slate);
  margin-top: 2px;
  font-weight: 600; }

.lm .bid-price {
  text-align: right;
  flex: none; }

.lm .bid-price .amt {
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--gp-green-900);
  line-height: 1; }

.lm .bid-price .per {
  font-size: .7rem;
  color: var(--slate);
  font-weight: 600; }

.lm .tag-best {
  display: inline-block;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gp-green-700);
  background: var(--gp-green-100);
  padding: 2px 8px;
  border-radius: var(--r-pill);
  margin-bottom: 4px; }

.lm .bidcard-foot {
  padding: 2px 16px 18px; }

.lm .bidcard-foot .reassure {
  text-align: center;
  font-size: .78rem;
  color: var(--slate);
  margin-top: 10px;
  font-weight: 600; }

.lm .proofbar {
  background: #fff;
  border-top: 1px solid var(--gp-line);
  border-bottom: 1px solid var(--gp-line); }

.lm .proofbar .wrap {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  padding: 18px 20px;
  justify-content: space-between; }

.lm .proofbar .lab {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate); }

.lm .proofbar .press {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap; }

.lm .proofbar .press a {
  font-family: Georgia,serif;
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--ink);
  text-decoration: none;
  opacity: .62;
  transition: opacity .15s,color .15s; }

.lm .proofbar .press a:hover {
  opacity: 1;
  color: var(--gp-green-700); }

.lm .proof-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .92rem;
  font-weight: 700;
  color: var(--gp-green-900);
  white-space: nowrap; }

.lm .proof-rating .stars svg {
  width: 15px;
  height: 15px; }

.lm section {
  padding: 66px 0; }

.lm .section-head {
  max-width: 660px;
  margin: 0 auto 42px;
  text-align: center; }

.lm .section-head h2 {
  font-size: clamp(1.75rem, 3.3vw, 2.45rem);
  font-weight: 900;
  margin: 10px 0 12px; }

.lm .section-head p {
  color: var(--slate);
  font-size: 1.06rem;
  font-weight: 600; }

.lm .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px; }

.lm .step {
  background: #fff;
  border: 1px solid var(--gp-line);
  border-radius: var(--r);
  padding: 26px 22px;
  position: relative;
  transition: transform .15s,box-shadow .15s; }

.lm .step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md); }

.lm .step .ic {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--gp-green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px; }

.lm .step .n {
  position: absolute;
  top: 22px;
  right: 20px;
  font-weight: 900;
  font-size: .9rem;
  color: var(--gp-green-100); }

.lm .step h3 {
  font-size: 1.08rem;
  margin-bottom: 6px; }

.lm .step p {
  font-size: .92rem;
  color: var(--slate);
  font-weight: 600; }

.lm .wedge {
  background: linear-gradient(135deg, var(--gp-green-900) 0%, var(--gp-green-700) 100%);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden; }

.lm .wedge::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05); }

.lm .wedge .wrap {
  padding: 52px 38px;
  position: relative; }

.lm .wedge h2 {
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  text-align: center;
  margin-bottom: 10px; }

.lm .wedge .lead {
  text-align: center;
  color: #cdeccd;
  max-width: 60ch;
  margin: 0 auto 38px;
  font-weight: 600; }

.lm .wedge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px; }

.lm .wedge-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--r);
  padding: 26px; }

.lm .wedge-card .wic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--gp-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px; }

.lm .wedge-card h3 {
  color: #fff;
  font-size: 1.12rem;
  margin-bottom: 7px; }

.lm .wedge-card p {
  color: #cdeccd;
  font-size: .93rem;
  font-weight: 600; }

.lm .wedge-card .vs {
  font-size: .76rem;
  color: #9ccf9c;
  margin-top: 11px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  padding-top: 9px;
  font-weight: 700; }

.lm .pricewrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center; }

.lm .price-card {
  background: #fff;
  border: 1px solid var(--gp-line);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm); }

.lm .price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px dashed var(--gp-line); }

.lm .price-row:last-of-type {
  border-bottom: 0; }

.lm .price-row .k {
  font-size: .96rem;
  color: var(--ink);
  font-weight: 700; }

.lm .price-row .v {
  font-weight: 900;
  color: var(--gp-green-700);
  font-size: 1.28rem; }

.lm .price-row .v small {
  font-size: .72rem;
  color: var(--slate);
  font-weight: 700; }

.lm .price-note {
  font-size: .84rem;
  color: var(--slate);
  margin-top: 10px;
  font-weight: 600; }

.lm .freqbar {
  margin: 15px 0; }

.lm .freqbar .ftop {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  margin-bottom: 7px;
  color: var(--ink);
  font-weight: 700; }

.lm .freqbar .track {
  height: 11px;
  background: var(--gp-green-50);
  border-radius: var(--r-pill);
  overflow: hidden; }

.lm .freqbar .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gp-green), var(--gp-green-700));
  border-radius: var(--r-pill); }

.lm .pros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; }

.lm .pro {
  background: #fff;
  border: 1px solid var(--gp-line);
  border-radius: var(--r);
  padding: 24px;
  text-align: center;
  position: relative;
  transition: transform .15s,box-shadow .15s; }

.lm .pro:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md); }

.lm .pro .rank {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gp-gold);
  color: #6b4e00;
  font-weight: 900;
  font-size: .72rem;
  padding: 4px 13px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm); }

.lm .pro .pava {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin: 10px auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.3rem;
  background: var(--gp-green);
  box-shadow: var(--shadow-sm); }

.lm .pro h3 {
  font-size: 1.08rem;
  margin-bottom: 4px; }

.lm .pro .prate {
  font-size: .84rem;
  color: var(--slate);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700; }

.lm .pro .pstats {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--gp-line);
  padding-top: 15px;
  margin-bottom: 16px; }

.lm .pro .pstat b {
  display: block;
  font-weight: 900;
  color: var(--gp-green-700);
  font-size: 1.06rem; }

.lm .pro .pstat span {
  font-size: .72rem;
  color: var(--slate);
  font-weight: 700; }

.lm .reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px; }

.lm .review {
  background: #fff;
  border: 1px solid var(--gp-line);
  border-radius: var(--r);
  padding: 24px; }

.lm .review .rhead {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px; }

.lm .review .ravatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gp-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .86rem;
  flex: none; }

.lm .review .rname {
  font-weight: 800;
  font-size: .92rem;
  color: var(--gp-green-900); }

.lm .review .rwhere {
  font-size: .76rem;
  color: var(--slate);
  font-weight: 600; }

.lm .review .rstars {
  margin-bottom: 8px; }

.lm .review p {
  font-size: .93rem;
  color: var(--ink);
  font-weight: 600; }

.lm .review .rsvc {
  font-size: .74rem;
  color: var(--gp-green-700);
  font-weight: 800;
  margin-top: 11px; }

.lm .faq {
  max-width: 780px;
  margin: 0 auto; }

.lm .faq-item {
  background: #fff;
  border: 1px solid var(--gp-line);
  border-radius: var(--r);
  margin-bottom: 12px;
  overflow: hidden; }

.lm .faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 20px 22px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--gp-green-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px; }

.lm .faq-q .chev {
  flex: none;
  transition: transform .25s;
  color: var(--gp-green); }

.lm .faq-item.open .faq-q .chev {
  transform: rotate(180deg); }

.lm .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s; }

.lm .faq-a p {
  padding: 0 22px 20px;
  color: var(--slate);
  font-size: .95rem;
  font-weight: 600; }

.lm .links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px; }

.lm .links-col h3 {
  font-size: 1.04rem;
  margin-bottom: 14px; }

.lm .links-col ul {
  list-style: none; }

.lm .links-col li {
  margin-bottom: 9px; }

.lm .links-col a {
  font-size: .92rem;
  color: var(--slate);
  text-decoration: none;
  font-weight: 600; }

.lm .links-col a:hover {
  color: var(--gp-green);
  text-decoration: underline; }

.lm .finalcta {
  background: linear-gradient(135deg, var(--gp-green) 0%, var(--gp-green-700) 100%);
  color: #fff;
  text-align: center; }

.lm .finalcta .wrap {
  padding: 66px 20px; }

.lm .finalcta h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  margin-bottom: 12px; }

.lm .finalcta p {
  color: #e0f5e0;
  max-width: 48ch;
  margin: 0 auto 26px;
  font-size: 1.06rem;
  font-weight: 600; }

.lm footer.lm-foot {
  background: #14241a;
  color: #9cb6a1;
  padding: 48px 0 30px;
  font-size: .88rem; }

.lm footer.lm-foot .fgrid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 30px; }

.lm footer.lm-foot h4 {
  color: #fff;
  font-size: .92rem;
  margin-bottom: 14px;
  font-weight: 800; }

.lm footer.lm-foot a {
  color: #9cb6a1;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  font-weight: 600; }

.lm footer.lm-foot a:hover {
  color: #fff; }

.lm footer.lm-foot .flogo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px; }

.lm footer.lm-foot .flogo .wm {
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff; }

.lm footer.lm-foot .flogo .wm b {
  color: #7fe089; }

.lm footer.lm-foot p.ftag {
  max-width: 34ch;
  font-weight: 600; }

.lm footer.lm-foot .fbottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  color: #7c9580; }

.lm .mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: #fff;
  border-top: 1px solid var(--gp-line);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(28, 42, 32, 0.1); }

@media (max-width: 980px) {
  .lm .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px; }
  .lm .bidcard {
    max-width: 460px;
    margin: 0 auto; }
  .lm .wedge-grid {
    grid-template-columns: 1fr; }
  .lm .steps {
    grid-template-columns: repeat(2, 1fr); }
  .lm .pros, .lm .reviews, .lm .pricewrap {
    grid-template-columns: 1fr; }
  .lm .links-grid {
    grid-template-columns: 1fr 1fr; } }

@media (max-width: 680px) {
  .lm .nav-links {
    position: fixed;
    inset: 66px 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--gp-line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform .25s; }
  .lm .nav-links.open {
    transform: translateY(0); }
  .lm .nav-links a {
    padding: 13px 22px;
    opacity: 1; }
  .lm .nav-links .nav-cta {
    margin: 8px 22px; }
  .lm .nav-toggle {
    display: block; }
  .lm section {
    padding: 48px 0; }
  .lm .steps, .lm .links-grid {
    grid-template-columns: 1fr; }
  .lm .wedge .wrap {
    padding: 40px 22px; }
  .lm .mobile-cta {
    display: block; }
  .lm {
    padding-bottom: 74px; }
  .lm .hero {
    padding: 34px 0 40px; }
  .lm .hero h1 {
    font-size: clamp(1.95rem, 8vw, 2.5rem); }
  .lm .zip-form {
    flex-direction: column;
    border-radius: 18px;
    max-width: 100%; }
  .lm .zip-form input {
    text-align: center;
    padding: 14px 16px; }
  .lm .zip-form .btn {
    width: 100%; } }

@media (prefers-reduced-motion: reduce) {
  .lm * {
    animation: none !important;
    transition: none !important; }
  .lm .bid {
    opacity: 1;
    transform: none; } }

.lm .statband {
  background: var(--gp-green-50);
  border-bottom: 1px solid var(--gp-line); }

.lm .statband .wrap {
  padding-top: 28px;
  padding-bottom: 28px; }

.lm .stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  text-align: center; }

.lm .stat .snum {
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--gp-green-700);
  line-height: 1;
  letter-spacing: -.01em; }

.lm .stat .snum .sstar {
  color: var(--gp-gold);
  font-size: 1.15rem;
  margin-left: 3px; }

.lm .stat .slabel {
  font-size: .82rem;
  color: var(--slate);
  font-weight: 700;
  margin-top: 7px; }

.lm .compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto; }

.lm .compare-col {
  border-radius: var(--r-lg);
  padding: 28px 28px 22px; }

.lm .compare-col.old {
  background: #fafafa;
  border: 1px solid var(--gp-line); }

.lm .compare-col.gp {
  background: #fff;
  border: 2px solid var(--gp-green);
  box-shadow: var(--shadow-sm); }

.lm .compare-col h3 {
  font-size: 1.2rem;
  margin-bottom: 14px; }

.lm .compare-col.gp h3 {
  color: var(--gp-green-700); }

.lm .compare-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .98rem;
  color: var(--slate);
  font-weight: 600;
  padding: 11px 0;
  border-bottom: 1px dashed var(--gp-line); }

.lm .compare-col li:last-child {
  border-bottom: 0; }

.lm .compare-col .x {
  color: #c2502f;
  font-weight: 900;
  font-size: 1.05rem;
  flex: none;
  line-height: 1.3; }

.lm .compare-col .c {
  color: var(--gp-green);
  font-weight: 900;
  font-size: 1.05rem;
  flex: none;
  line-height: 1.3; }

.lm .freq-choose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 820px;
  margin: 0 auto; }

.lm .fc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gp-line);
  border-radius: var(--r);
  padding: 26px; }

.lm .fc-card.best {
  border: 2px solid var(--gp-green);
  box-shadow: var(--shadow-sm); }

.lm .fc-card .fc-tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gp-orange);
  color: #fff;
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm); }

.lm .fc-card h3 {
  font-size: 1.16rem;
  margin-bottom: 8px; }

.lm .fc-card.best h3 {
  color: var(--gp-green-700); }

.lm .fc-card p {
  font-size: .94rem;
  color: var(--slate);
  font-weight: 600; }

.lm .guarantee {
  display: flex;
  align-items: center;
  gap: 22px;
  background: linear-gradient(120deg, var(--gp-green) 0%, var(--gp-green-700) 100%);
  border-radius: var(--r-lg);
  padding: 30px 34px;
  color: #fff;
  box-shadow: var(--shadow-md); }

.lm .guarantee .g-ic {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none; }

.lm .guarantee h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 5px; }

.lm .guarantee p {
  color: #e0f5e0;
  font-weight: 600;
  font-size: .98rem; }

@media (max-width: 680px) {
  .lm .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 16px; }
  .lm .compare, .lm .freq-choose {
    grid-template-columns: 1fr; }
  .lm .guarantee {
    flex-direction: column;
    text-align: center;
    padding: 26px 22px; } }

.local-service-navbar {
  box-sizing: border-box;
  position: sticky;
  top: 0;
  left: auto;
  transform: none;
  max-width: none;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--gp-green) 0%, var(--gp-green-700) 100%);
  box-shadow: 0 2px 12px rgba(28, 42, 32, 0.12);
  z-index: 60; }

.local-service-navbar * {
  box-sizing: border-box; }

.local-service-navbar__phone, .local-service-navbar .hero_services_trigger {
  color: #fff; }

.local-service-navbar .hero_services_trigger {
  font-family: ProximaNova-Semibold,system-ui,-apple-system,sans-serif;
  font-size: 1rem;
  font-weight: 700; }

.local-service-navbar .hero_services_dropdown {
  padding-top: 14px; }

.local-service-navbar .hero_services_dropdown::after {
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(28, 42, 32, 0.18); }

.local-service-navbar .hero_services_dropdown_wrapper .hero_services_dropdown a {
  font-family: ProximaNova-Semibold,system-ui,-apple-system,sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: #373737;
  padding: 11px 22px; }

.local-service-navbar .hero_services_dropdown_wrapper .hero_services_dropdown a:hover {
  background: var(--gp-green-50);
  color: var(--gp-green-700); }

@media screen and (max-width: 767px) {
  .local-service-navbar {
    padding: 14px 18px; } }
