:root {
      --blue: #1291df;
      --blue-d: #0e7bc2;
      --blue-xd: #0a5c93;
      --navy: #0d1f3c;
      --navy2: #162a50;
      --g1: #f4f7fc;
      --g2: #e8edf6;
      --g3: #c8d2e4;
      --g4: #8899b8;
      --ink-60: rgba(13, 31, 60, .6);
      --hero-image: url('../../images/option4-banner.png');
      --hero-desktop-position: 74% 16%;
      --hero-mobile-position: 78% 18%;
      --fn: 'Inter', system-ui, sans-serif;
      --fs: 'Inter', system-ui, sans-serif;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--fn);
      color: var(--navy);
      -webkit-font-smoothing: antialiased;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* ── TOP BAR ── */
    .top-bar {
      background: var(--navy);
      padding: 7px 0;
      font-size: 12.5px;
    }
    @media (max-width: 575px) {
      .top-bar .d-flex { flex-wrap:wrap; gap:4px 0; justify-content:center !important; }
      .top-bar .d-flex .d-flex { justify-content:center; width:100%; }
      .top-bar .sep { margin:0 6px; }
    }

    .top-bar a {
      color: rgba(255, 255, 255, .6);
      transition: color .15s;
    }

    .top-bar a:hover {
      color: #fff;
    }

    .top-bar .top-trust {
      color: rgba(255, 255, 255, .72);
      cursor: default;
      display: inline-flex;
      align-items: center;
    }

    .top-bar .top-trust:hover {
      color: rgba(255, 255, 255, .72);
    }

    .top-bar .sep {
      color: rgba(255, 255, 255, .2);
      margin: 0 10px;
    }

    /* ── NAVBAR ── */
    .site-nav {
      background: rgba(255, 255, 255, .97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(18, 145, 223, .1);
      box-shadow: 0 2px 18px rgba(13, 31, 60, .06);
      position: sticky;
      top: 0;
      z-index: 999;
    }

    .site-nav .navbar-brand img {
      height: 46px;
      width: auto;
    }

    .site-nav .navbar-nav .nav-link {
      font-size: 14px;
      font-weight: 500;
      color: var(--ink-60);
      padding: 8px 9px !important;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color .15s, background .15s;
    }

    .site-nav .navbar-nav .nav-link:hover,
    .site-nav .navbar-nav .nav-link.show {
      color: var(--blue);
      background: rgba(18, 145, 223, .07);
    }

    .site-nav .navbar-nav .nav-link i {
      font-size: 15px;
    }

    .site-nav .dropdown-menu {
      border: none;
      border-radius: 14px;
      box-shadow: 0 20px 60px rgba(13, 31, 60, .15), 0 0 0 1px rgba(13, 31, 60, .05);
      padding: 10px;
      min-width: 220px;
      margin-top: 8px !important;
    }

    .site-nav .dropdown-item {
      border-radius: 8px;
      padding: 9px 14px;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--ink-60);
      display: flex;
      align-items: center;
      gap: 10px;
      transition: background .12s, color .12s;
    }

    .site-nav .dropdown-item:hover {
      background: rgba(18, 145, 223, .08);
      color: var(--blue);
    }

    .site-nav .dropdown-item i {
      font-size: 16px;
      color: var(--blue);
      width: 20px;
    }

    .btn-npro {
      font-size: 12px;
      font-weight: 600;
      color: var(--blue);
      padding: 7px 12px;
      border-radius: 8px;
      transition: background .15s;
    }

    .btn-npro:hover {
      background: rgba(18, 145, 223, .08);
    }

    .btn-nlogin {
      font-size: 12px;
      font-weight: 600;
      color: var(--navy);
      border: 1.5px solid var(--g3);
      padding: 7px 12px;
      border-radius: 8px;
      transition: all .15s;
    }

    .btn-nlogin:hover {
      border-color: var(--blue);
      color: var(--blue);
    }

    .btn-nsignup {
      font-size: 12px;
      font-weight: 700;
      background: var(--blue);
      color: #fff;
      padding: 8px 15px;
      border-radius: 8px;
      box-shadow: 0 4px 14px rgba(18, 145, 223, .35);
      transition: all .15s;
    }

    .btn-nsignup:hover {
      background: var(--blue-d);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(18, 145, 223, .4);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 78vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--hero-image) no-repeat;
      background-size: cover;
      background-position: var(--hero-desktop-position);
      transition: background-image .45s ease, background-position .35s ease;

    }

    /* .hero__bg {
      position: absolute;
      inset: 0;
      background-image: url('../../images/pro-team.png');
      background-size: cover;
      background-position: center top;
      transition: transform .1s linear;
    } */
    .hero__overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(90deg,
          rgba(8, 18, 45, 0.96) 0%,
          rgba(8, 18, 45, 0.90) 28%,
          rgba(8, 18, 45, 0.65) 48%,
          rgba(8, 18, 45, 0.25) 64%,
          rgba(8, 18, 45, 0.05) 78%,
          rgba(8, 18, 45, 0) 100%);
    }

    @media (max-width: 767px) {
      .hero__overlay {
        background: linear-gradient(90deg,
            rgba(8, 18, 45, 0.96) 0%,
            rgba(8, 18, 45, 0.85) 55%,
            rgba(8, 18, 45, 0.45) 100%);
      }
    }

    /* .hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(8, 18, 45, .9) 0%, rgba(8, 18, 45, .78) 35%, rgba(8, 18, 45, .42) 62%, rgba(8, 18, 45, .1) 100%);
    } */

    .hero__content {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      min-height: inherit;
      padding: 38px 0 38px;
      width: 100%;
    }

    .hero__content>.container-xl {
      width: 100%;
    }

    .hero__badge-row {
      margin-bottom: 6px;
    }

    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(18, 145, 223, .18);
      border: 1px solid rgba(18, 145, 223, .38);
      border-radius: 30px;
      padding: 6px 16px;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .hero__h1 {
      font-family: var(--fn);
      font-size: clamp(36px, 5.5vw, 50px);
      font-weight: 800;
      color: #fff;
      line-height: 1;
      margin-bottom: 16px;
      text-shadow: 0 2px 20px rgba(0, 0, 0, .25);
    }

    .hero__h1 .hl {
      color: var(--blue);
    }

    .hero__sub {
      color: rgba(255, 255, 255, .78);
      font-size: 16px;
      line-height: 1.65;
      max-width: 70ch;
      margin: 0 auto 20px auto;
    }

    /* Glass search card */
    .hero-trust-points {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 18px;
      margin: 18px 0 16px;
      color: #fff;
      font-size: 13.5px;
      font-weight: 700;
    }

    .hero-trust-points span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      text-shadow: 0 1px 8px rgba(0,0,0,.25);
    }

    .hero-trust-points i {
      color: #22c55e;
      font-size: 16px;
    }

    .glass-card {
      background: rgba(255, 255, 255, .7);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 20px;
      padding: 20px;
      max-width: 620px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .15);
  
    }

    .glass-label {
      color: #000;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .07em;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .glass-label i {
      color: var(--blue);
      font-size: 15px;
    }

    .glass-row {
      display: flex;
      gap: 10px;
      margin-bottom: 14px;
    }

    .sel-wrap {
      flex: 1;
      position: relative;
    }

    .sel-wrap .si {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--blue);
      font-size: 16px;
      pointer-events: none;
      z-index: 1;
    }

    .sel-wrap .sc {
      left: auto;
      right: 13px;
      color: #000;
      font-size: 12px;
    }

    .glass-select {
      width: 100%;
      padding: 9px 38px 9px 40px;
      background: rgba(255, 255, 255, 1);
      border: 1.5px solid rgba(255, 255, 255, .22);
      border-radius: 12px;
      color: #000;
      font-size: 15px;
      font-family: var(--fn);
      font-weight: 500;
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
      outline: none;
      transition: border-color .15s, background .15s;
    }

    .glass-select:focus {
      border-color: var(--blue);
      background: rgba(255, 255, 255, .2);
    }

    .glass-select option {
      background: #fff;
      color: #000;
    }

    .zip-wrap {
      width: 148px;
      position: relative;
      flex-shrink: 0;
    }

    .zip-wrap i {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--blue);
      font-size: 16px;
      pointer-events: none;
    }

    .glass-zip {
      width: 100%;
      padding: 9px 12px 9px 36px;
      background: rgba(255, 255, 255, 1);
      border: 1.5px solid rgba(255, 255, 255, .22);
      border-radius: 12px;
      color: #000;
      font-size: 15px;
      font-family: var(--fn);
      font-weight: 500;
      outline: none;
      transition: border-color .15s, background .15s;
    }

    .glass-zip::placeholder {
      color: #000;
    }

    .glass-zip:focus {
      border-color: var(--blue);
      background: rgba(255, 255, 255, .2);
    }

    .glass-btn {
      width: 100%;
      padding: 9px 24px;
      background: var(--blue);
      color: #fff;
      border: none;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      box-shadow: 0 4px 20px rgba(18, 145, 223, .5);
      transition: all .15s;
    }

    .glass-btn:hover {
      background: var(--blue-d);
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(18, 145, 223, .55);
    }

    .assures {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 14px;
    }

    .assures span {
      color: #000;
      font-size: 12.5px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .assures span i {
      color: green;
      font-size: 13px;
    }

    /* Stats row */
    .hero-stats {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .hstat {
      text-align: center;
      padding: 13px 18px;
      background: rgba(255, 255, 255, .7);
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 14px;
      backdrop-filter: blur(8px);
    }

    .hstat__n {
      font-family: var(--fs);
      font-size: 20px;
      font-weight: 700;
      color: #000;
      line-height: 1;
    }

    .hstat__n em {
      font-style: normal;
      color: #000;
      font-size: 17px;
    }

    .hstat__l {
      font-size: 11.5px;
      color: #000;
      margin-top: 3px;
    }

    /* ── SERVICES ── */
    .services-section {
      background: #fff;
      padding: 72px 0;
    }

    .eyebrow {
      font-size: 12.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--blue);
      margin-bottom: 9px;
    }

    .section-h {
      font-family: var(--fs);
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .section-sub {
      color: var(--ink-60);
      font-size: 15px;
      margin-bottom: 40px;
    }

    .svc-card {
      background: var(--g1);
      border-radius: 18px;
      padding: 24px 18px 20px;
      text-align: center;
      cursor: pointer;
      transition: all .22s cubic-bezier(.16, 1, .3, 1);
      border: 2px solid transparent;
      display: block;
      color: inherit;
      height: 100%;
    }

    .svc-card:hover {
      background: #fff;
      border-color: var(--blue);
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(18, 145, 223, .15);
      color: inherit;
    }

    .svc-card .d-inline-flex {
      width: 100%;
      justify-content: center;
      text-align: center;
    }

    .svc-icon {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
      transition: transform .22s;
    }

    .svc-card:hover .svc-icon {
      transform: scale(1.1);
    }

    .svc-icon i {
      font-size: 28px;
    }

    .svc-name {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .svc-desc {
      font-size: 11.5px;
      color: var(--ink-60);
      line-height: 1.4;
    }

    .ic-b {
      background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    }

    .ic-b i {
      color: #0284c7;
    }

    .ic-g {
      background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    }

    .ic-g i {
      color: #16a34a;
    }

    .ic-p {
      background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    }

    .ic-p i {
      color: #9333ea;
    }

    .ic-a {
      background: linear-gradient(135deg, #fef3c7, #fde68a);
    }

    .ic-a i {
      color: #d97706;
    }

    .ic-r {
      background: linear-gradient(135deg, #fee2e2, #fecaca);
    }

    .ic-r i {
      color: #dc2626;
    }

    .ic-t {
      background: linear-gradient(135deg, #ccfbf1, #99f6e4);
    }

    .ic-t i {
      color: #0d9488;
    }

    .ic-i {
      background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    }

    .ic-i i {
      color: #4f46e5;
    }

    .ic-pk {
      background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    }

    .ic-pk i {
      color: #db2777;
    }

    .ic-sk {
      background: linear-gradient(135deg, #e0f2fe, #7dd3fc);
    }

    .ic-sk i {
      color: #0369a1;
    }

    .ic-l {
      background: linear-gradient(135deg, #ecfccb, #d9f99d);
    }

    .ic-l i {
      color: #65a30d;
    }

    .ic-o {
      background: linear-gradient(135deg, #fff7ed, #fed7aa);
    }

    .ic-o i {
      color: #ea580c;
    }

    /* ── DEMAND ── */
    .demand-section {
      background: var(--g1);
      padding: 72px 0;
    }

    .dcard {
      background: #fff;
      border-radius: 16px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      border: 1.5px solid var(--g2);
      cursor: pointer;
      transition: all .2s;
      text-decoration: none;
      color: inherit;
    }

    .dcard:hover {
      border-color: var(--blue);
      box-shadow: 0 8px 30px rgba(18, 145, 223, .13);
      transform: translateY(-2px);
      color: inherit;
    }

    .dcard__ic {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--g1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background .2s;
    }

    .dcard:hover .dcard__ic {
      background: rgba(18, 145, 223, .1);
    }

    .dcard__ic i {
      font-size: 22px;
      color: var(--blue);
    }

    .dcard__name {
      font-weight: 700;
      font-size: 15px;
      color: var(--navy);
    }

    .dcard__meta {
      font-size: 12px;
      color: var(--ink-60);
      margin-top: 2px;
    }

    .dcard__arr {
      margin-left: auto;
      color: var(--g4);
      font-size: 20px;
      flex-shrink: 0;
      transition: color .2s, transform .2s;
    }

    .dcard:hover .dcard__arr {
      color: var(--blue);
      transform: translateX(3px);
    }

    /* ── STATS ── */
    .stats-strip {
      background: linear-gradient(135deg, var(--navy) 0%, #162a50 100%);
      padding: 52px 0;
    }

    .st-n {
      font-family: var(--fs);
      font-size: 42px;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }

    .st-n sup {
      font-size: 22px;
      color: #90d5ff;
      vertical-align: super;
    }

    .st-l {
      color: rgba(255, 255, 255, .48);
      font-size: 13px;
      margin-top: 6px;
    }

    /* ── HOW ── */
    .how-section {
      background: #fff;
      padding: 60px 0;
    }

    .step-card {
      background: var(--g1);
      border-radius: 20px;
      padding: 36px 28px;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: all .2s;
    }

    .step-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(18, 145, 223, .12);
      background: #fff;
    }

    .step-num {
      position: absolute;
      top: 18px;
      right: 18px;
      font-family: var(--fs);
      font-size: 82px;
      font-weight: 800;
      color: var(--g2);
      line-height: 1;
      user-select: none;
    }

    .step-ic {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: linear-gradient(135deg, #e0f2fe, #bae6fd);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .step-ic i {
      font-size: 26px;
      color: var(--blue);
    }

    .step-title {
      font-weight: 700;
      font-size: 19px;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .step-text {
      color: var(--ink-60);
      font-size: 14.5px;
      line-height: 1.7;
    }

    /* ── REVIEWS ── */
    .reviews-section {
      background: var(--g1);
      padding: 80px 0;
    }

    .rv-card {
      background: #fff;
      border-radius: 18px;
      padding: 28px 26px;
      height: 100%;
      border: 1.5px solid var(--g2);
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: all .2s;
    }

    .rv-card:hover {
      box-shadow: 0 12px 40px rgba(18, 145, 223, .12);
      transform: translateY(-3px);
    }

    .rv-card--feat {
      background: var(--navy);
      border-color: var(--navy);
    }

    .rv-stars {
      color: #f5b942;
      font-size: 17px;
      letter-spacing: 2px;
    }

    .rv-card--feat .rv-stars {
      color: #ffd166;
    }

    .rv-text {
      font-size: 15px;
      line-height: 1.75;
      color: var(--ink-60);
      flex: 1;
    }

    .rv-card--feat .rv-text {
      color: rgba(255, 255, 255, .75);
    }

    .rv-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .rv-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background-size: cover;
      background-position: center;
      flex-shrink: 0;
    }

    .rv-name {
      font-weight: 700;
      font-size: 14px;
      color: var(--navy);
    }

    .rv-card--feat .rv-name {
      color: #fff;
    }

    .rv-meta {
      font-size: 12.5px;
      color: var(--ink-60);
      margin-top: 2px;
    }

    .rv-card--feat .rv-meta {
      color: rgba(255, 255, 255, .42);
    }

    /* ── CONTRACTOR ── */
    .contractor-section {
      background: linear-gradient(135deg, var(--navy) 0%, #162a50 100%);
      overflow: hidden;
    }

    .contractor-text-col {
      padding: 70px 50px 70px 0;
    }

    .ctag {
      font-size: 12px;
      font-weight: 700;
      color: #90d5ff;
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: 14px;
      display: block;
    }

    .contractor-h {
      font-family: var(--fs);
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 18px;
    }

    .contractor-h em {
      font-style: normal;
      color: var(--blue);
    }

    .contractor-p {
      color: rgba(255, 255, 255, .58);
      font-size: 15.5px;
      max-width: 48ch;
      margin-bottom: 26px;
    }

    .cbullet {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, .8);
      font-size: 14.5px;
      margin-bottom: 10px;
    }

    .cbullet i {
      color: #4ecca3;
      font-size: 18px;
    }

    .img-col {
      position: relative;
      overflow: hidden;
      min-height: 500px;
    }

    .img-col img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .img-col::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--navy) 0%, transparent 35%);
      z-index: 1;
    }

    /* Lead card */
    .lcard {
      background: #fff;
      border-radius: 18px;
      padding: 22px;
      box-shadow: 0 30px 70px rgba(0, 0, 0, .3);
    }

    .lbadge {
      background: #dcfce7;
      color: #16a34a;
      font-size: 12px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      display: inline-block;
    }

    .lid {
      font-size: 11.5px;
      color: var(--g4);
      font-family: monospace;
      float: right;
    }

    .ltitle {
      font-weight: 700;
      font-size: 15.5px;
      color: var(--navy);
      margin: 12px 0 14px;
    }

    .lmeta {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 14px;
      margin-bottom: 16px;
    }

    .lmeta dt {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .05em;
      color: var(--g4);
    }

    .lmeta dd {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--navy);
      margin: 2px 0 0;
    }

    .lfoot {
      border-top: 1px solid var(--g2);
      padding-top: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12.5px;
      color: var(--g4);
    }

    .pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #22c55e;
      animation: blink 1.4s ease infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .4
      }
    }

    /* ── FINAL CTA ── */
    .final-section {
      background: var(--g1);
      padding: 90px 0;
      text-align: center;
    }

    .final-h {
      font-family: var(--fs);
      font-size: clamp(30px, 4vw, 50px);
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 14px;
    }

    .final-h em {
      font-style: normal;
      color: var(--blue);
    }

    .final-sub {
      color: var(--ink-60);
      font-size: 16.5px;
      max-width: 50ch;
      margin: 0 auto 40px;
    }

    /* ── FOOTER ── */
    .site-footer {
      background: var(--navy);
      padding: 60px 0 0;
    }

    .foot-logo img {
      height: 40px;
      filter: brightness(0) invert(1);
      margin-bottom: 16px;
    }

    .foot-tagline {
      color: rgba(255, 255, 255, .38);
      font-size: 13.5px;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .fbadge {
      font-size: 11.5px;
      font-weight: 600;
      color: rgba(255, 255, 255, .43);
      background: rgba(255, 255, 255, .06);
      border-radius: 6px;
      padding: 4px 10px;
      display: inline-block;
      margin: 0 4px 6px 0;
    }

    .site-footer h6 {
      color: rgba(255, 255, 255, .85);
      font-size: 12.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .07em;
      margin-bottom: 16px;
    }

    .flink {
      display: block;
      color: rgba(255, 255, 255, .38);
      font-size: 13.5px;
      margin-bottom: 9px;
      transition: color .15s;
    }

    .flink:hover {
      color: #fff;
    }

    .foot-disclaimer {
      border-top: 1px solid rgba(255, 255, 255, .07);
      padding: 22px 0 0;
      margin-top: 32px;
    }

    .foot-disclaimer__card {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 14px;
      padding: 16px 18px;
    }

    .foot-disclaimer__title {
      color: rgba(255, 255, 255, .82);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin: 0 0 10px;
    }

    .foot-disclaimer p {
      color: rgba(255, 255, 255, .3);
      font-size: 11.5px;
      line-height: 1.6;
      margin: 0;
    }
    .foot-bottom {
      border-top: 1px solid rgba(255, 255, 255, .07);
      padding: 18px 0;
      margin-top: 48px;
    }

    .foot-copy {
      color: rgba(255, 255, 255, .26);
      font-size: 12.5px;
    }

    .flinks a {
      color: rgba(255, 255, 255, .3);
      font-size: 12.5px;
      transition: color .15s;
    }

    .flinks {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px 18px;
    }

    .flinks a:hover {
      color: rgba(255, 255, 255, .7);
    }

    /* ── BUTTONS ── */
    .btn-hp {
      background: var(--blue);
      color: #fff !important;
      border: none;
      padding: 13px 28px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all .15s;
      box-shadow: 0 4px 18px rgba(18, 145, 223, .35);
      cursor: pointer;
      text-decoration: none;
    }

    .btn-hp:hover {
      background: var(--blue-d);
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(18, 145, 223, .45);
    }

    .btn-hp-xl {
      padding: 16px 36px;
      font-size: 16px;
      border-radius: 12px;
    }

    .btn-out {
      background: transparent;
      color: var(--navy) !important;
      border: 1.5px solid var(--g3);
      padding: 13px 28px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all .15s;
      text-decoration: none;
    }

    .btn-out:hover {
      border-color: var(--blue);
      color: var(--blue) !important;
    }

    .browse-services-cta {
      background: linear-gradient(135deg, #fff6dd 0%, #ffe9b5 100%);
      color: var(--navy) !important;
      border-color: rgba(217, 119, 6, .28);
      font-weight: 700;
      box-shadow: 0 10px 26px rgba(217, 119, 6, .14);
    }

    .browse-services-cta:hover {
      background: linear-gradient(135deg, #fff2cf 0%, #ffe09d 100%);
      border-color: rgba(217, 119, 6, .44);
      color: #8a4b08 !important;
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(217, 119, 6, .18);
    }

    .btn-out-xl {
      padding: 16px 36px;
      font-size: 16px;
      border-radius: 12px;
    }

    .btn-gl {
      background: transparent;
      color: rgba(255, 255, 255, .8) !important;
      border: 1.5px solid rgba(255, 255, 255, .24);
      padding: 13px 28px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all .15s;
      text-decoration: none;
    }

    .btn-gl:hover {
      border-color: rgba(255, 255, 255, .6);
      background: rgba(255, 255, 255, .08);
    }

    /* ── MODAL ── */
    .modal-ov {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(8, 18, 45, .78);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      overflow-y: auto;
      animation: fadein .2s ease;
    }

    @keyframes fadein {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    .modal-ov[hidden] {
      display: none;
    }

    .modal-box {
      background: #fff;
      border-radius: 22px;
      width: 100%;
      max-width: 900px;
      padding: 38px 38px 30px;
      position: relative;
      box-shadow: 0 40px 100px rgba(0, 0, 0, .35);
      animation: slideup .3s cubic-bezier(.16, 1, .3, 1);
      max-height: min(900px, calc(100vh - 26px));
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    @keyframes slideup {
      from {
        transform: translateY(28px);
        opacity: 0
      }

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

    .mclosebtn {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: none;
      background: var(--g1);
      color: var(--g4);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      transition: all .15s;
    }

    .mclosebtn:hover {
      background: var(--navy);
      color: #fff;
    }

    .mstepbadge {
      display: inline-block;
      background: rgba(18, 145, 223, .1);
      color: var(--blue);
      font-size: 12.5px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 10px;
    }

    .mtitle {
      font-family: var(--fs);
      font-size: 24px;
      line-height: 1.12;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .msub {
      color: var(--ink-60);
      font-size: 14px;
      line-height: 1.5;
      margin-bottom: 18px;
    }

    body.modal-open {
      overflow: hidden;
    }

    /* Lead form */
    .lf-grid {
      display: grid;
      grid-template-columns: 210px 1fr;
      gap: 24px;
      flex: 1 1 auto;
      min-height: 0;
    }

    .lf-side {
      border-right: 1px solid var(--g2);
      padding-right: 22px;
    }

    .lf-bar {
      height: 5px;
      background: var(--g2);
      border-radius: 5px;
      overflow: hidden;
      margin-bottom: 5px;
    }

    .lf-fill {
      height: 100%;
      background: linear-gradient(to right, var(--blue), #60b8f5);
      width: 25%;
      transition: width .4s ease;
      border-radius: 5px;
    }

    .lf-pct {
      font-size: 12px;
      color: var(--g4);
      margin-bottom: 14px;
    }

    .lf-nav {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .lf-nav li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--ink-60);
      padding: 7px 10px;
      border-radius: 8px;
      cursor: pointer;
      margin-bottom: 4px;
      transition: background .12s, color .12s;
    }

    .lf-nav.is-locked li {
      pointer-events: none;
      cursor: default;
      opacity: .86;
    }

    .lf-nav li .dot {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 2px solid var(--g3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .lf-nav li.is-active {
      background: rgba(18, 145, 223, .08);
      color: var(--blue);
    }

    .lf-nav li.is-active .dot {
      background: var(--blue);
      border-color: var(--blue);
      color: #fff;
    }

    .lf-nav li.is-done .dot {
      background: #16a34a;
      border-color: #16a34a;
      color: #fff;
    }

    .lf-assure {
      margin-top: 14px;
      padding: 12px;
      background: var(--g1);
      border-radius: 12px;
    }

    .lf-assure h6 {
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .lf-assure h6 i {
      color: var(--blue);
    }

    .lf-assure p {
      color: var(--ink-60);
      font-size: 12.5px;
      line-height: 1.55;
      margin: 0;
    }

    .leadstep {
      display: none;
      border: none;
      padding: 0;
    }

    .leadstep.is-active {
      display: flex;
      flex-direction: column;
    }

    .leadstep legend {
      font-weight: 700;
      font-size: 16px;
      color: var(--navy);
      margin-bottom: 12px;
      padding: 0;
    }

    .lgrid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .lf {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .lfs2 {
      grid-column: span 2;
    }

    .lfs3 {
      grid-column: span 3;
    }

    .you-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .call-time-block {
      margin-top: 10px;
    }

    .date-field {
      position: relative;
    }

    .date-field input[type="date"] {
      padding-left: 36px;
      padding-right: 11px;
      appearance: textfield;
      -webkit-appearance: textfield;
    }

    .date-field input[type="date"]::-webkit-calendar-picker-indicator {
      opacity: 0;
    }

    .date-field .date-icon {
      position: absolute;
      left: 12px;
      bottom: 11px;
      color: var(--ink-40);
      pointer-events: none;
      font-size: 15px;
    }

    .lfl {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--navy);
    }

    .lfh {
      font-weight: 400;
      color: var(--g4);
      font-size: 11px;
    }

    .lf select,
    .lf input,
    .lf textarea {
      padding: 9px 11px;
      border: 1.5px solid var(--g3);
      border-radius: 8px;
      font-size: 13.5px;
      font-family: var(--fn);
      color: var(--navy);
      background: #fff;
      outline: none;
      transition: border-color .15s, box-shadow .15s;
    }

    .lf select:focus,
    .lf input:focus,
    .lf textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(18, 145, 223, .12);
    }

    .lf textarea {
      resize: vertical;
      min-height: 62px;
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .chip {
      padding: 6px 12px;
      border-radius: 20px;
      border: 1.5px solid var(--g3);
      font-size: 12.5px;
      font-weight: 500;
      color: var(--ink-60);
      background: #fff;
      cursor: pointer;
      transition: all .15s;
    }

    .chip:hover {
      border-color: var(--blue);
      color: var(--blue);
    }

    .chip.sel {
      background: var(--blue);
      border-color: var(--blue);
      color: #fff;
    }

    .lf-ck {
      flex-direction: row;
      align-items: flex-start;
      gap: 10px;
    }

    .lf-ck input {
      margin-top: 3px;
    }

    .lf-ck span {
      font-size: 13px;
      color: var(--ink-60);
    }

    .lf-ck a {
      color: var(--blue);
    }

    .lf-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid var(--g2);
      gap: 14px;
    }

    .lf-sec {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11.5px;
      color: var(--g4);
    }

    .leaddone {
      text-align: center;
      padding: 20px 0 0;
      display: none;
      flex: 1 1 auto;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .leaddone.is-active {
      display: flex;
    }

    .leaddone .ic {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      background: #dcfce7;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .leaddone .ic i {
      font-size: 36px;
      color: #16a34a;
    }

    .leaddone h3 {
      font-family: var(--fs);
      font-size: 28px;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .leaddone p {
      color: var(--ink-60);
      font-size: 15px;
      max-width: 44ch;
      margin: 0 auto 24px;
    }

    /* ── UTILS ── */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }


    .hero-flow-note {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
    }

    .hero-flow-note span {
      flex: 1 1 210px;
      background: rgba(255, 255, 255, .82);
      border: 1px solid rgba(18, 145, 223, .18);
      border-radius: 10px;
      padding: 8px 10px;
      color: var(--navy);
      font-size: 12.5px;
      line-height: 1.35;
    }

    .hero-flow-note strong {
      color: var(--blue);
    }


    .site-nav .navbar-nav .nav-link {
      color: var(--navy);
    }

    .glass-service-search::-webkit-calendar-picker-indicator {
      opacity: 0;
    }

    .lf-ref {
      grid-column: span 3;
      background: var(--g1);
      border: 1.5px solid var(--g2);
      border-radius: 12px;
      padding: 12px 14px;
      font-size: 13.5px;
      color: var(--ink-60);
    }

    .lf-ref strong {
      color: var(--navy);
    }

    .req {
      color: #dc2626;
      font-weight: 800;
      margin-left: 2px;
    }

    .lf-error {
      display: none;
      grid-column: span 3;
      color: #dc2626;
      background: #fef2f2;
      border: 1px solid #fecaca;
      border-radius: 10px;
      padding: 9px 12px;
      font-size: 12.5px;
      font-weight: 600;
    }

    .lf-error.show {
      display: block;
    }

    .photo-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .lf input[type="file"] {
      line-height: 1.35;
      min-height: 44px;
    }

    .lf input.is-invalid,
    .lf textarea.is-invalid,
    .lf select.is-invalid {
      border-color: #dc2626;
      box-shadow: 0 0 0 3px rgba(220, 38, 38, .1);
    }

    .modal-box {
      min-height: 620px;
    }

    .leadstep {
      min-height: 350px;
    }

    .step-card--compact {
      padding: 20px 22px;
    }

    .step-card--compact .step-num {
      font-size: 54px;
      top: 12px;
      right: 14px;
    }

    .how-image {
      border-radius: 24px;
      overflow: hidden;
      min-height: 480px;
      box-shadow: 0 24px 60px rgba(13, 31, 60, .14);
      background: var(--g1);
    }

    .how-image img {
      width: 100%;
      height: 100%;
      min-height: 480px;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .footer-link-grid .flink,
    .foot-tagline,
    .fbadge {
      color: rgba(255, 255, 255, .72);
    }

    .foot-copy,
    .flinks a {
      color: rgba(255, 255, 255, .58);
    }

    .lf-foot .btn-hp,
    .lf-foot .btn-out {
      white-space: normal;
      text-align: center;
    }

    /* ── RESPONSIVE ── */
    @media(max-width:991px) {
      .hero__bg {
        background-attachment: scroll;
      }

      .hero__overlay {
        background: linear-gradient(180deg, rgba(8, 18, 45, .88) 0%, rgba(8, 18, 45, .75) 100%);
      }

      .hero__content {
        padding: 80px 0 60px;
      }

      .hero-trust-points {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 18px;
      margin: 18px 0 16px;
      color: #fff;
      font-size: 13.5px;
      font-weight: 700;
    }

    .hero-trust-points span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      text-shadow: 0 1px 8px rgba(0,0,0,.25);
    }

    .hero-trust-points i {
      color: #22c55e;
      font-size: 16px;
    }

    .glass-card {
        max-width: 100%;
      }

      .contractor-text-col {
        padding: 50px 20px;
      }

      .img-col {
        min-height: 360px;
      }

      .lf-grid {
        grid-template-columns: 1fr;
      }

      .lf-side {
        border-right: none;
        border-bottom: 1px solid var(--g2);
        padding-right: 0;
        padding-bottom: 20px;
      }

      .lf-nav {
        flex-direction: row;
        flex-wrap: wrap;
      }
    }

    @media(max-width:767px) {

      .hero {
        min-height: auto;
        background-position: center top;
      }

      .hero__content {
        padding: 38px 0 40px;
      }

      .hero__badge {
        margin-bottom: 14px;
        font-size: 12px;
      }

      .hero__h1,
      .hero__sub {
        text-align: left;
      }

      .hero__h1 {
        font-size: 33px;
        line-height: 1.08;
      }

      .hero__sub {
        font-size: 14.5px;
        line-height: 1.55;
      }

      .hero-trust-points {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 18px;
      margin: 18px 0 16px;
      color: #fff;
      font-size: 13.5px;
      font-weight: 700;
    }

    .hero-trust-points span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      text-shadow: 0 1px 8px rgba(0,0,0,.25);
    }

    .hero-trust-points i {
      color: #22c55e;
      font-size: 16px;
    }

    .glass-card {
        padding: 16px;
        border-radius: 18px;
      }

      .glass-label {
        font-size: 12px;
        margin-bottom: 12px;
      }

      .glass-select,
      .glass-zip,
      .glass-btn {
        min-height: 52px;
        font-size: 15px;
      }

      .hero-flow-note {
        display: grid;
        grid-template-columns: 1fr;
      }

      .assures {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }

      .assures span {
        font-size: 11.5px;
      }

      .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
      }

      .hstat {
        padding: 12px 10px;
        text-align: left;
      }

      .hstat__n {
        font-size: 17px;
      }

      .hstat__n em {
        font-size: 14px;
      }

      .services-section,
      .demand-section,
      .how-section,
      .final-section {
        padding: 48px 0;
      }

      .svc-card,
      .dcard,
      .step-card {
        min-height: 100%;
      }

      .svc-card {
        padding: 16px 10px 14px;
        border-radius: 14px;
      }

      .svc-icon {
        width: 50px;
        height: 50px;
        border-radius: 13px;
        margin-bottom: 10px;
      }

      .svc-icon i {
        font-size: 23px;
      }

      .svc-name {
        font-size: 12.5px;
      }

      .svc-desc {
        font-size: 10.8px;
      }

      .demand-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
      }

      .demand-grid > [class*="col-"] {
        flex: 0 0 78%;
        max-width: 78%;
        scroll-snap-align: start;
      }

      .how-image,
      .how-image img {
        min-height: 300px;
      }


      .modal-ov {
        align-items: flex-end;
        padding: 10px;
      }

      .modal-box {
        width: 100%;
        max-height: 92vh;
        padding: 24px 16px 18px;
        border-radius: 22px 22px 12px 12px;
      }

      .mclosebtn {
        top: 12px;
        right: 12px;
      }

      .mtitle {
        font-size: 22px;
        padding-right: 42px;
      }

      .msub {
        font-size: 13.5px;
        margin-bottom: 20px;
      }

      .lf-grid {
        gap: 18px;
      }

      .lf-side {
        padding-bottom: 14px;
      }

      .lf-nav {
        display: grid;
        grid-template-columns: repeat(4, minmax(106px, 1fr));
        overflow-x: auto;
        gap: 6px;
        padding-bottom: 2px;
      }

      .lf-nav li {
        margin-bottom: 0;
        white-space: nowrap;
      }

      .lf-assure {
        margin-top: 12px;
      }

      .lf-foot {
        gap: 10px;
        flex-wrap: wrap;
      }

      .lf-sec {
        order: 3;
        width: 100%;
        justify-content: center;
      }

      .lf-foot .btn-out,
      .lf-foot .btn-hp {
        flex: 1;
        justify-content: center;
      }
      .glass-row {
        flex-direction: column;
      }

      .zip-wrap {
        width: 100%;
      }

      .modal-box {
        padding: 28px 20px;
        border-radius: 16px;
      }

      .lgrid {
        grid-template-columns: 1fr;
      }

      .lfs2,
      .lfs3 {
        grid-column: span 1;
      }

      .hero-stats {
        gap: 10px;
      }
    }
       .nav-item.dropdown:hover > .dropdown-menu,
.nav-item.dropdown:focus-within > .dropdown-menu {
  display: block;
}

    /* HPF 4/30 Sach review adjustments */
    .top-bar { display:block !important; }
    .top-bar a { color: rgba(255,255,255,.92) !important; font-weight: 600; }
    .top-bar a:hover { color: #fff !important; }
    .top-bar .top-trust { color: rgba(255,255,255,.92) !important; cursor: default; display:inline-flex; align-items:center; font-weight:600; }
    .site-nav .dropdown-menu { margin-top: 0 !important; }
    @media (min-width: 992px) {
      .site-nav .nav-item.dropdown:hover > .dropdown-menu,
      .site-nav .nav-item.dropdown:focus-within > .dropdown-menu { display: block; }
    }
    .btn-nsignup, .glass-btn, .btn-hp, .btn-out {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 7px;
    }
    .hero {
      min-height: clamp(660px, calc(100vh - 118px), 760px);
      align-items: stretch;
    }
    .hero__content {
      padding-top: clamp(78px, 11vh, 112px) !important;
      padding-bottom: clamp(26px, 4vh, 42px) !important;
    }
    .hero__badge-row {
      transform: translateY(-52px);
    }
    .glass-btn { min-height: 48px; line-height: 1.2; }
    .dcard { min-height: 92px; height: 100%; align-items: center; }
    .dcard > div { min-width: 0; }
    .dcard__name { line-height: 1.2; }
    .dcard__meta { line-height: 1.25; }
    .svc-card { height: 100%; }
    .browse-mobile-cta { display: none; }
    .modal-box { min-height: 680px; overflow-x: hidden; }
    .leadstep { min-height: 365px; }
    .lf-ck { display:flex; gap:10px; align-items:flex-start; line-height:1.45; }
    .lf-ck input { margin-top:4px; flex:0 0 auto; }
    .lf-foot { overflow: visible; }
    .lf-foot .btn-hp, .lf-foot .btn-out { white-space: nowrap; }
    .photo-note, .address-note { color: var(--ink-60); font-size: 12.5px; margin-top: 6px; }
    .service-mobile-open { margin-top:10px; width:100%; border:1px solid var(--g3); background:#fff; color:var(--navy); border-radius:12px; padding:11px 14px; font-weight:500; display:flex; align-items:center; justify-content:flex-start; gap:8px; min-height:50px; }
    .service-mobile-open.service-mobile-open--selected { border-color: rgba(18,145,223,.42); background: rgba(18,145,223,.08); color: var(--blue); }
    .service-mobile-open__label { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-align:left; }
    .service-mobile-panel[hidden] { display:none !important; }
    .service-mobile-panel { position:fixed; inset:0; background:rgba(8,18,45,.48); z-index:2000; overflow:hidden; overscroll-behavior:contain; }
    .service-mobile-sheet { position:absolute; inset:12px 0 0; background:#fff; border-radius:22px 22px 0 0; overflow:hidden; display:flex; flex-direction:column; box-shadow:0 30px 90px rgba(0,0,0,.35); }
    .service-mobile-head { display:flex; justify-content:space-between; gap:12px; align-items:center; padding:18px 18px 12px; border-bottom:1px solid var(--g2); flex:0 0 auto; }
    .service-mobile-head h3 { margin:0; font-size:18px; font-weight:800; color:var(--navy); }
    .service-mobile-sub { margin:4px 0 0; color:var(--ink-60); font-size:13px; line-height:1.45; }
    .service-mobile-close { border:0; background:var(--g1); width:36px; height:36px; border-radius:50%; color:var(--navy); }
    .service-mobile-list { flex:1 1 auto; min-height:0; overflow-y:auto; overscroll-behavior-y:contain; -webkit-overflow-scrolling:touch; touch-action:pan-y; padding:8px 18px calc(24px + env(safe-area-inset-bottom, 0px)); }
    .service-mobile-group { margin-top:18px; }
    .service-mobile-group:first-child { margin-top:0; }
    .service-mobile-title { font-weight:800; text-transform:uppercase; color:var(--navy); margin-bottom:8px; font-size:14px; letter-spacing:.02em; }
    .service-mobile-grid { display:grid; grid-template-columns:1fr; gap:7px; }
    .service-mobile-choice { border:1px solid var(--g2); background:#fff; border-radius:12px; padding:12px 13px; text-align:left; font-size:14px; font-weight:400; color:var(--navy); }
    .service-mobile-choice:hover { border-color:var(--blue); color:var(--blue); background:rgba(18,145,223,.06); }
    .span-blue { color: var(--blue); }
    .service-detail-card { background:#fff; border:1px solid var(--g2); border-radius:16px; padding:20px; box-shadow:0 10px 30px rgba(13,31,60,.06); height:100%; }
    .service-detail-card h3 { font-size:18px; font-weight:800; margin-bottom:10px; color:var(--navy); }
    .service-detail-card ul { margin:0; padding-left:20px; color:var(--ink-60); line-height:1.8; }
    .service-disclaimer { font-size:13px; color:var(--ink-60); background:var(--g1); border-radius:12px; padding:12px 14px; border:1px solid var(--g2); }
    .es-services-grid .svc-card { min-height: 174px; overflow:hidden; padding:0; }
    .es-thumb { height:74px; background-size:cover; background-position:center; border-radius:14px 14px 0 0; margin:-22px -22px 14px; }
    .es-service-desc { color:var(--ink-60); font-size:13px; line-height:1.45; margin-top:5px; }
    .es-confirm { display:none; border:1px solid rgba(22,163,74,.25); background:rgba(22,163,74,.08); color:#166534; border-radius:12px; padding:12px 14px; font-weight:700; margin-top:14px; }
    .es-confirm.show { display:block; }
    @media (max-width: 991px) {
      .browse-mobile-cta { display:block; margin-top:18px; }
      .site-nav .navbar-nav .dropdown-menu { display:none; }
      .modal-ov {
        align-items: flex-end;
        padding: 0;
      }
      .modal-box {
        width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        min-height: 100dvh;
        min-width: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border-radius: 22px 22px 0 0;
        padding: 18px 14px calc(10px + env(safe-area-inset-bottom, 0px));
      }
      form[data-leadform] {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        min-height: 0;
      }
      .lf-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex: 1 1 auto;
        min-height: 0;
      }
      .lf-side {
        flex: 0 0 auto;
        padding-bottom: 8px;
      }
      .lf-grid > div:last-child {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        min-height: 0;
      }
      .leadstep {
        min-height: 0;
        margin: 0;
      }
      .leadstep.is-active {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        min-height: 0;
      }
      .leadstep legend {
        margin-bottom: 14px;
      }
      .leadstep.is-active > .lgrid {
        grid-template-columns: 1fr;
        align-content: start;
        overflow: visible;
        flex: 1 1 auto;
        min-height: 0;
        padding-right: 0;
        padding-bottom: 8px;
      }
      .lf,
      .lf > * {
        min-width: 0;
      }
      .lfs2,
      .lfs3,
      .lf-error {
        grid-column: 1 / -1;
      }
      .lf-nav {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        overflow: visible;
        gap: 6px;
        padding-bottom: 0;
      }
      .lf-nav li {
        min-width: 0;
        margin-bottom: 0;
        padding: 7px 4px;
        font-size: 10.5px;
        line-height: 1.25;
        text-align: center;
        white-space: normal;
        justify-content: center;
        gap: 5px;
      }
      .lf-nav li .dot {
        width: 20px;
        height: 20px;
        font-size: 10px;
      }
      .lf-assure {
        display: none;
      }
      .lf-foot {
        position: sticky;
        bottom: 0;
        z-index: 10;
        margin-top: 0;
        padding: 10px 0 0;
        background: linear-gradient(to top, #fff 82%, rgba(255,255,255,.92) 100%);
        border-top: 1px solid var(--g2);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        align-items: stretch;
        flex: 0 0 auto;
      }
      .lf-foot .btn-out,
      .lf-foot .btn-hp {
        width: 100%;
        min-width: 0;
        justify-content: center;
        padding: 8px 14px !important;
        font-size: 13px !important;
        border-radius: 10px !important;
      }
      .lf-sec {
        grid-column: 1 / -1;
        order: 3;
        width: auto;
        line-height: 1.25;
        text-align: center;
        justify-content: center;
        font-size: 10.5px;
      }
      .lf input[type="file"] {
        width: 100%;
        max-width: 100%;
        min-height: 40px;
      }
      .photo-list {
        max-width: 100%;
      }
      .mtitle {
        font-size: 19px;
        line-height: 1.08;
        margin-bottom: 6px;
      }
      .msub {
        font-size: 12.5px;
        line-height: 1.35;
        margin-bottom: 12px;
      }
      .lf-pct {
        margin-bottom: 10px;
      }
      .leadstep legend {
        font-size: 15px;
        margin-bottom: 10px;
      }
      .lgrid {
        gap: 10px;
      }
      .you-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .you-grid .lf-phone,
      .you-grid .lf-email {
        grid-column: span 2;
      }
      .lfl {
        font-size: 12px;
      }
      .lfh {
        font-size: 10.5px;
      }
      .lf select,
      .lf input,
      .lf textarea {
        padding: 8px 10px;
        font-size: 12.5px;
      }
      .lf textarea {
        min-height: 48px;
      }
      .chips {
        gap: 5px;
      }
      .chip {
        padding: 4px 8px;
        font-size: 11.5px;
      }
      .photo-note,
      .address-note {
        font-size: 11px;
        line-height: 1.3;
        margin-top: 4px;
      }
      .photo-note {
        display: none;
      }
      .address-note {
        display: none;
      }
      .lf-sec {
        display: none;
      }
      .hero {
        min-height: auto;
        background-position: var(--hero-mobile-position);
      }
      .hero__content {
        min-height: auto;
        align-items: flex-start;
        padding-top: 52px !important;
        padding-bottom: 38px !important;
      }
      .hero__badge-row {
        transform: none;
      }
      /* Hide text-type service input on mobile; use browse button only */
      .glass-service-search { display:none !important; }
      .sc { display:none !important; }
      .si:not(.service-mobile-open .bi) { display:none !important; }
      .sel-wrap { position:relative; }
    }
    @media (max-width: 767px) {
      .hero { min-height:auto; }
      .hero__content {
        padding-top: 36px !important;
        padding-bottom: 28px !important;
      }
      .hero__badge-row {
        margin-bottom: 0;
      }
      .dcard { min-height: 84px; }
      /* Prevent full-page scroll when mobile service panel is open */
      html.svc-panel-open, body.svc-panel-open { overflow:hidden !important; overscroll-behavior:none; }
    }
    /* Service card button text alignment */
    .svc-card { text-align:center; }
    .svc-desc { text-align:center; }
    .dcard { text-align:left; }

  
    /* foot-bottom-mobile-polish */
    @media (max-width: 767px) {
      .foot-bottom .d-flex { justify-content: center !important; text-align: center; flex-direction: column; }
      .foot-bottom .flinks { justify-content: center; text-align: center; gap: 8px 12px; flex-wrap: wrap; }
      .foot-bottom .foot-copy { width: 100%; text-align: center; }
    }

    /* final-feedback-0507 */
    .hero { min-height: 68vh; }
    .hero__content { padding-top: 30px; padding-bottom: 34px; }
    .hero-trust-points { max-width: 640px; justify-content: center; margin: 22px 0 22px; }
    .lf-side { display: flex; flex-direction: column; }
    .lf-assure { margin-top: auto; padding: 14px; border: 1px solid rgba(18,145,223,.14); background: linear-gradient(180deg,#f8fbff,#f1f7fd); box-shadow: 0 8px 22px rgba(13,31,60,.06); }
    .lf-assure ul { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 7px; }
    .lf-assure li { color: var(--ink-60); font-size: 12.5px; line-height: 1.35; display: flex; align-items: center; gap: 7px; }
    .lf-assure li i { color: #16a34a; font-size: 13px; }
    .you-grid .lf-phone, .you-grid .lf-email { grid-column: span 2; }
    .lf-ck { flex-direction: row !important; align-items: flex-start !important; gap: 10px !important; line-height: 1.5; }
    .lf-ck input { width: auto !important; min-width: 16px; flex: 0 0 auto; margin-top: 3px; }
    .lf-ck span { flex: 1 1 auto; }
    .date-field input[type="date"] { padding-left: 36px; }
    .date-field input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0; }
    @media (max-width: 767px) {
      .hero { min-height: auto; }
      .hero-trust-points { justify-content: center; gap: 10px 16px; margin: 16px 0 16px; }
      .hero-trust-points span:nth-child(2) { display: none; }
      .lf-assure { margin-top: 14px; }
    }


    /* may12-mobile-nav-accordion */
    @media (max-width: 1199.98px) {
      html.mobile-nav-open,
      body.mobile-nav-open {
        overflow: hidden !important;
        overscroll-behavior: none;
      }
      body.mobile-nav-open {
        position: fixed;
        width: 100%;
        left: 0;
        right: 0;
      }
      .site-nav .navbar-collapse.show {
        max-height: calc(100dvh - var(--mobile-nav-top, 72px));
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
      }
      .site-nav .navbar-nav .dropdown-menu {
        max-height: none !important;
        overflow: visible !important;
      }
      .site-nav .navbar-nav .nav-item.dropdown > .dropdown-menu {
        display: none !important;
      }
      .site-nav .navbar-nav .nav-item.dropdown.mobile-accordion-open > .dropdown-menu {
        display: block !important;
      }
      .site-nav .navbar-nav .nav-link.dropdown-toggle {
        width: 100%;
        justify-content: space-between;
      }
    }



    /* may12-round2-mobile-menu */
    @media (max-width: 1199.98px) {
      .hpf-mobile-menu[hidden] { display: none !important; }
      .hpf-mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 20050;
        background: #fff;
        color: var(--navy);
        display: block;
      }
      .hpf-mobile-menu__panel {
        min-height: 100dvh;
        max-height: 100dvh;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        background: #fff;
      }
      .hpf-mobile-menu__view { min-height: 100dvh; background: #fff; }
      .hpf-mobile-menu__head {
        min-height: 68px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 18px;
        border-bottom: 1px solid var(--g2);
      }
      .hpf-mobile-menu__logo {
        height: 28px;
        width: auto;
      }
      .hpf-mobile-menu__close,
      .hpf-mobile-menu__back {
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 50%;
        background: #fff;
        color: var(--navy);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
      }
      .hpf-mobile-menu__back { font-size: 22px; margin-left: -8px; }
      .hpf-mobile-menu__title {
        flex: 1 1 auto;
        min-width: 0;
        font-size: 14px;
        font-weight: 700;
        color: var(--navy);
      }
      .hpf-mobile-menu__rows {
        display: grid;
        padding: 10px 0 24px;
      }
      .hpf-mobile-menu__row,
      .hpf-mobile-menu__service {
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        width: 100%;
        padding: 0 20px;
        border: 0;
        border-bottom: 1px solid var(--g2);
        background: #fff;
        color: var(--navy);
        text-align: left;
        font-size: 14px;
        font-weight: 600;
      }
      .hpf-mobile-menu__row i:first-child {
        color: var(--blue);
        width: 22px;
        flex: 0 0 22px;
      }
      .hpf-mobile-menu__row span {
        flex: 1 1 auto;
        min-width: 0;
      }
      .hpf-mobile-menu__row .bi-chevron-right {
        color: var(--navy);
        opacity: .9;
      }
      .hpf-mobile-menu__section-label {
        padding: 22px 20px 10px;
        font-size: 20px;
        line-height: 1.2;
        font-weight: 800;
        color: var(--navy);
      }
      .hpf-mobile-menu__service {
        min-height: 54px;
        justify-content: flex-start;
        font-weight: 600;
      }
      .hpf-mobile-menu__service i {
        color: var(--blue);
        width: 22px;
        flex: 0 0 22px;
      }
      .hpf-mobile-menu__service:hover,
      .hpf-mobile-menu__row:hover {
        background: rgba(18,145,223,.06);
        color: var(--blue);
      }
      html.hpf-menu-open,
      body.hpf-menu-open {
        overflow: hidden !important;
        overscroll-behavior: none;
      }
      body.hpf-menu-open {
        position: fixed;
        width: 100%;
        left: 0;
        right: 0;
      }
    }



    /* may12-round2-date-icon-align */
    .date-field { position: relative; }
    .date-field input[type="date"] {
      min-height: 46px;
      line-height: 1.25;
      padding-left: 42px !important;
      padding-right: 12px !important;
      color: var(--navy);
    }
    .date-field input[type="date"]::-webkit-calendar-picker-indicator {
      opacity: 0;
    }
    .date-field input[type="date"]::-webkit-date-and-time-value {
      text-align: left;
      min-height: 1.3em;
    }
    .date-field .date-icon {
      left: 14px !important;
      top: auto !important;
      bottom: 15px !important;
      transform: none !important;
      line-height: 1;
      font-size: 15px;
      pointer-events: none;
    }

.modal-ov{display:none !important;}
.modal-ov.is-open{display:flex !important;}

.service-mobile-panel{display:none !important;}
.service-mobile-panel.is-open{display:block !important;}

